content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
########################################
# QUESTION
########################################
# The goal of this exercise is to convert a string to a new string where each character in the new string is "(" if that character appears only once in the original string, or ")" if that character appears more than once in the original string. Ignore capitalization when determining if a character is a duplicate.
# Examples
# "din" => "((("
# "recede" => "()()()"
# "Success" => ")())())"
# "(( @" => "))(("
###################################
# SOLUTION
###################################
def duplicate_encode(word):
x = list(word.lower())
u = []
for k in x:
if x.count(k) == 1:
u.append("(")
elif x.count(k) > 1:
u.append(")")
j = ""
for k in u:
j += k
return j
| def duplicate_encode(word):
x = list(word.lower())
u = []
for k in x:
if x.count(k) == 1:
u.append('(')
elif x.count(k) > 1:
u.append(')')
j = ''
for k in u:
j += k
return j |
try:
None < 0
def NoneAndDictComparable(v):
return v
except TypeError:
# comparator to allow comparisons against None and dict
# comparisons (these were allowed in Python 2, but aren't allowed
# in Python 3 any more)
class NoneAndDictComparable(object):
def __init__(self, value):
self.value = value
def __cmp__(self, other):
if not isinstance(other, self.__class__):
raise TypeError('not comparable')
if self.value == other.value:
return 0
elif self.value is None:
return -1
elif other.value is None:
return 1
elif type(self.value) == tuple and type(other.value) == tuple:
for lhs, rhs in zip(self.value, other.value):
lhsCmp = NoneAndDictComparable(lhs)
rhsCmp = NoneAndDictComparable(rhs)
result = lhsCmp.__cmp__(rhsCmp)
if result != 0:
return result
return len(self.value) - len(other.value)
elif type(self.value) == dict and type(other.value) == dict:
diff = len(self.value) - len(other.value)
if diff == 0:
lhsItems = tuple(sorted(self.value.items(),
key=NoneAndDictComparable))
rhsItems = tuple(sorted(other.value.items(),
key=NoneAndDictComparable))
return -1 if NoneAndDictComparable(lhsItems) < NoneAndDictComparable(rhsItems) else 1
else:
return diff
elif self.value < other.value:
return -1
else:
return 1
def __eq__(self, other):
return self.__cmp__(other) == 0
def __ne__(self, other):
return self.__cmp__(other) != 0
def __lt__(self, other):
return self.__cmp__(other) < 0
def __le__(self, other):
return self.__cmp__(other) <= 0
def __ge__(self, other):
return self.__cmp__(other) >= 0
def __gt__(self, other):
return self.__cmp__(other) > 0
def _test():
Comp = NoneAndDictComparable
assert Comp(None) < Comp(0)
assert Comp(None) < Comp('')
assert Comp(None) < Comp({})
assert Comp((0, None)) < Comp((0, 0))
assert not Comp(0) < Comp(None)
assert not Comp('') < Comp(None)
assert not Comp({}) < Comp(None)
assert not Comp((0, 0)) < Comp((0, None))
assert Comp((0, 0)) < Comp((0, 0, None))
assert Comp((0, None, None)) < Comp((0, 0, 0))
assert Comp(0) < Comp(1)
assert Comp(1) > Comp(0)
assert not Comp(1) < Comp(0)
assert not Comp(0) > Comp(0)
assert Comp({0: None}) < Comp({0: 0})
assert Comp({0: 0}) < Comp({0: 1})
assert Comp({0: 0}) == Comp({0: 0})
assert Comp({0: 0}) != Comp({0: 1})
assert Comp({0: 0, 1: 1}) > Comp({0: 1})
assert Comp({0: 0, 1: 1}) < Comp({0: 0, 2: 2})
if __name__ == '__main__':
_test()
| try:
None < 0
def none_and_dict_comparable(v):
return v
except TypeError:
class Noneanddictcomparable(object):
def __init__(self, value):
self.value = value
def __cmp__(self, other):
if not isinstance(other, self.__class__):
raise type_error('not comparable')
if self.value == other.value:
return 0
elif self.value is None:
return -1
elif other.value is None:
return 1
elif type(self.value) == tuple and type(other.value) == tuple:
for (lhs, rhs) in zip(self.value, other.value):
lhs_cmp = none_and_dict_comparable(lhs)
rhs_cmp = none_and_dict_comparable(rhs)
result = lhsCmp.__cmp__(rhsCmp)
if result != 0:
return result
return len(self.value) - len(other.value)
elif type(self.value) == dict and type(other.value) == dict:
diff = len(self.value) - len(other.value)
if diff == 0:
lhs_items = tuple(sorted(self.value.items(), key=NoneAndDictComparable))
rhs_items = tuple(sorted(other.value.items(), key=NoneAndDictComparable))
return -1 if none_and_dict_comparable(lhsItems) < none_and_dict_comparable(rhsItems) else 1
else:
return diff
elif self.value < other.value:
return -1
else:
return 1
def __eq__(self, other):
return self.__cmp__(other) == 0
def __ne__(self, other):
return self.__cmp__(other) != 0
def __lt__(self, other):
return self.__cmp__(other) < 0
def __le__(self, other):
return self.__cmp__(other) <= 0
def __ge__(self, other):
return self.__cmp__(other) >= 0
def __gt__(self, other):
return self.__cmp__(other) > 0
def _test():
comp = NoneAndDictComparable
assert comp(None) < comp(0)
assert comp(None) < comp('')
assert comp(None) < comp({})
assert comp((0, None)) < comp((0, 0))
assert not comp(0) < comp(None)
assert not comp('') < comp(None)
assert not comp({}) < comp(None)
assert not comp((0, 0)) < comp((0, None))
assert comp((0, 0)) < comp((0, 0, None))
assert comp((0, None, None)) < comp((0, 0, 0))
assert comp(0) < comp(1)
assert comp(1) > comp(0)
assert not comp(1) < comp(0)
assert not comp(0) > comp(0)
assert comp({0: None}) < comp({0: 0})
assert comp({0: 0}) < comp({0: 1})
assert comp({0: 0}) == comp({0: 0})
assert comp({0: 0}) != comp({0: 1})
assert comp({0: 0, 1: 1}) > comp({0: 1})
assert comp({0: 0, 1: 1}) < comp({0: 0, 2: 2})
if __name__ == '__main__':
_test() |
# pylint: disable=W0613, C0111, C0103, C0301
"""
The software package.
version: 4.1
ExtronLibraray version: 3.1r5
ControlScript version: 3.1.8
GlobalScripter version: 2.1.0.116
Release date: 13.11.2018
Author: Roni Starc (roni.starc@gmail.com)
ChangeLog:
v2.0 - Fixed some mistakes, updated GS v2.8.r3, added description texts for the entire library
v3.0 - Updated to ControlScript 2.9.25 with FW 3.00.0000-b022
v4.0 :
- updated/fixed layout of ExtronLibrary, ControlScript and GlobalScripter versions
- Updated to ExtronLibrary 3.1r5 with FW
v4.1 - Fix in other file, increased version number to preserve consistency
Note: This module is work in progress as it is an adapted version of the standard XML module integrated into python
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
"""
exml = {}
| """
The software package.
version: 4.1
ExtronLibraray version: 3.1r5
ControlScript version: 3.1.8
GlobalScripter version: 2.1.0.116
Release date: 13.11.2018
Author: Roni Starc (roni.starc@gmail.com)
ChangeLog:
v2.0 - Fixed some mistakes, updated GS v2.8.r3, added description texts for the entire library
v3.0 - Updated to ControlScript 2.9.25 with FW 3.00.0000-b022
v4.0 :
- updated/fixed layout of ExtronLibrary, ControlScript and GlobalScripter versions
- Updated to ExtronLibrary 3.1r5 with FW
v4.1 - Fix in other file, increased version number to preserve consistency
Note: This module is work in progress as it is an adapted version of the standard XML module integrated into python
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
"""
exml = {} |
class Transect:
def __init__(self, name="Transect", files=[]):
self.name = name
self.files = files
@property
def numFiles(self):
return len(self.files)
@property
def firstLastText(self):
first = self.files[0]
last = self.files[-1]
return f"{first.name} . . . {last.name}"
def addFile(self, fp):
self.files.append(fp)
def clearFiles(self):
self.files.clear()
| class Transect:
def __init__(self, name='Transect', files=[]):
self.name = name
self.files = files
@property
def num_files(self):
return len(self.files)
@property
def first_last_text(self):
first = self.files[0]
last = self.files[-1]
return f'{first.name} . . . {last.name}'
def add_file(self, fp):
self.files.append(fp)
def clear_files(self):
self.files.clear() |
def fib(n):
if n == 0 or n == 1:
return 1
else:
answer = fib(n-1) + fib(n-2)
return answer
def memoise(f):
memo = {}
def g(n):
if n in memo:
return memo[n]
else:
answer = f(n)
memo[n] = answer
return answer
return g
fib = memoise(fib)
| def fib(n):
if n == 0 or n == 1:
return 1
else:
answer = fib(n - 1) + fib(n - 2)
return answer
def memoise(f):
memo = {}
def g(n):
if n in memo:
return memo[n]
else:
answer = f(n)
memo[n] = answer
return answer
return g
fib = memoise(fib) |
f = open('input.txt')
time = int(f.readline()[:-1])
busses = [[int(bus), i] for i, bus in enumerate(f.readline()[:-1].split(',')) if bus != 'x']
product = 1
for bus in busses:
product *= bus[0]
res = 0
for bus in busses:
l = product / bus[0] % bus[0]
k = 1
tmp = l
while l % bus[0] != 1:
k += 1
l = tmp * k
res += (bus[0] - bus[1]) * (product / bus[0]) * k
print(res % product)
| f = open('input.txt')
time = int(f.readline()[:-1])
busses = [[int(bus), i] for (i, bus) in enumerate(f.readline()[:-1].split(',')) if bus != 'x']
product = 1
for bus in busses:
product *= bus[0]
res = 0
for bus in busses:
l = product / bus[0] % bus[0]
k = 1
tmp = l
while l % bus[0] != 1:
k += 1
l = tmp * k
res += (bus[0] - bus[1]) * (product / bus[0]) * k
print(res % product) |
filepath = '/Users/royce/Dropbox/Documents/Memorize/web/blank.txt'
with open(filepath, 'r') as f:
card_count = 0
card = ""
do_skip = False
template = """@Tags: {}
{}
{}
"""
for line in f:
in_html5 = 'Not supported in HTML5' not in line
if line.strip(' ') != "\n":
if not in_html5:
do_skip = True
continue
if do_skip or 'Property\tDescription' in line:
do_skip = False
continue
if line.count("\t") == 0:
tag = line
is_table_header = True
else:
array = [val.strip() for val in line.split("\t")]
card = template.format(tag.strip('\n').strip(), array[0], array[1].strip())
print(card)
card_count += 1
print("Total cards: {}".format(card_count)) | filepath = '/Users/royce/Dropbox/Documents/Memorize/web/blank.txt'
with open(filepath, 'r') as f:
card_count = 0
card = ''
do_skip = False
template = '@Tags: {}\n{}\n\n{}\n\n'
for line in f:
in_html5 = 'Not supported in HTML5' not in line
if line.strip(' ') != '\n':
if not in_html5:
do_skip = True
continue
if do_skip or 'Property\tDescription' in line:
do_skip = False
continue
if line.count('\t') == 0:
tag = line
is_table_header = True
else:
array = [val.strip() for val in line.split('\t')]
card = template.format(tag.strip('\n').strip(), array[0], array[1].strip())
print(card)
card_count += 1
print('Total cards: {}'.format(card_count)) |
#
# PySNMP MIB module ALCATEL-IND1-IPX-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ALCATEL-IND1-IPX-MIB
# Produced by pysmi-0.3.4 at Wed May 1 11:18:07 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)
#
routingIND1Ipx, = mibBuilder.importSymbols("ALCATEL-IND1-BASE", "routingIND1Ipx")
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ConstraintsUnion, ValueSizeConstraint, ConstraintsIntersection, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsUnion", "ValueSizeConstraint", "ConstraintsIntersection", "SingleValueConstraint")
ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup")
ModuleIdentity, Counter64, Gauge32, Bits, ObjectIdentity, MibIdentifier, iso, NotificationType, TimeTicks, Integer32, IpAddress, Counter32, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "Counter64", "Gauge32", "Bits", "ObjectIdentity", "MibIdentifier", "iso", "NotificationType", "TimeTicks", "Integer32", "IpAddress", "Counter32", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn")
DisplayString, TextualConvention, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention", "RowStatus")
alcatelIND1IPXMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1))
alcatelIND1IPXMIB.setRevisions(('2007-04-03 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: alcatelIND1IPXMIB.setRevisionsDescriptions(('The latest version of this MIB Module.',))
if mibBuilder.loadTexts: alcatelIND1IPXMIB.setLastUpdated('200704030000Z')
if mibBuilder.loadTexts: alcatelIND1IPXMIB.setOrganization('Alcatel-Lucent')
if mibBuilder.loadTexts: alcatelIND1IPXMIB.setContactInfo('Please consult with Customer Service to ensure the most appropriate version of this document is used with the products in question: Alcatel-Lucent, Enterprise Solutions Division (Formerly Alcatel Internetworking, Incorporated) 26801 West Agoura Road Agoura Hills, CA 91301-5122 United States Of America Telephone: North America +1 800 995 2696 Latin America +1 877 919 9526 Europe +31 23 556 0100 Asia +65 394 7933 All Other +1 818 878 4507 Electronic Mail: support@ind.alcatel.com World Wide Web: http://alcatel-lucent.com/wps/portal/enterprise File Transfer Protocol: ftp://ftp.ind.alcatel.com/pub/products/mibs')
if mibBuilder.loadTexts: alcatelIND1IPXMIB.setDescription('This module describes an authoritative enterprise-specific Simple Network Management Protocol (SNMP) Management Information Base (MIB): This is the proprietary MIB for the IPX routing sub-sytem. The right to make changes in specification and other information contained in this document without prior notice is reserved. No liability shall be assumed for any incidental, indirect, special, or consequential damages whatsoever arising from or related to this document or the information contained herein. Vendors, end-users, and other interested parties are granted non-exclusive license to use this specification in connection with management of the products for which it is intended to be used. Copyright (C) 1995-2007 Alcatel-Lucent ALL RIGHTS RESERVED WORLDWIDE')
alcatelIND1IPXMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1))
class NetNumber(TextualConvention, OctetString):
description = 'IPX network number. It is a 32-bit value divided into 4 octets.'
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(4, 4)
fixedLength = 4
class HostAddress(TextualConvention, OctetString):
description = 'IPX host MAC address. It is a group of the 6 octets from the MAC address.'
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(6, 6)
fixedLength = 6
alaIpxRoutingGroup = ObjectIdentity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1))
if mibBuilder.loadTexts: alaIpxRoutingGroup.setStatus('current')
if mibBuilder.loadTexts: alaIpxRoutingGroup.setDescription('IPX routing information.')
alaIpxFilterGroup = ObjectIdentity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2))
if mibBuilder.loadTexts: alaIpxFilterGroup.setStatus('current')
if mibBuilder.loadTexts: alaIpxFilterGroup.setDescription('IPX filtering information.')
alaIpxTimerGroup = ObjectIdentity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3))
if mibBuilder.loadTexts: alaIpxTimerGroup.setStatus('current')
if mibBuilder.loadTexts: alaIpxTimerGroup.setDescription('IPX timer information.')
alaIpxStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1), )
if mibBuilder.loadTexts: alaIpxStaticRouteTable.setStatus('current')
if mibBuilder.loadTexts: alaIpxStaticRouteTable.setDescription('The Static Routes table is used and add entries and extract information from the static routes configured in the system.')
alaIpxStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1), ).setIndexNames((0, "ALCATEL-IND1-IPX-MIB", "alaIpxStaticRouteNetNum"))
if mibBuilder.loadTexts: alaIpxStaticRouteEntry.setStatus('current')
if mibBuilder.loadTexts: alaIpxStaticRouteEntry.setDescription('Each entry corresponds to one static route.')
alaIpxStaticRouteNetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1, 1), NetNumber().clone(hexValue="00000000"))
if mibBuilder.loadTexts: alaIpxStaticRouteNetNum.setStatus('current')
if mibBuilder.loadTexts: alaIpxStaticRouteNetNum.setDescription("The IPX network number of the route's destination.")
alaIpxStaticRouteNextHopNet = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1, 2), NetNumber().clone(hexValue="00000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxStaticRouteNextHopNet.setStatus('current')
if mibBuilder.loadTexts: alaIpxStaticRouteNextHopNet.setDescription('The IPX network number of the router used to reach the first hop in the static route.')
alaIpxStaticRouteNextHopNode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1, 3), HostAddress().clone(hexValue="000000000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxStaticRouteNextHopNode.setStatus('current')
if mibBuilder.loadTexts: alaIpxStaticRouteNextHopNode.setDescription('The IPX node number of the router used to reach the first hop in the static route.')
alaIpxStaticRouteTicks = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxStaticRouteTicks.setStatus('current')
if mibBuilder.loadTexts: alaIpxStaticRouteTicks.setDescription("The delay, in ticks, to reach the route's destination.")
alaIpxStaticRouteHopCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxStaticRouteHopCount.setStatus('current')
if mibBuilder.loadTexts: alaIpxStaticRouteHopCount.setDescription('The number of hops necessary to reach the destination.')
alaIpxStaticRouteRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1, 6), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxStaticRouteRowStatus.setStatus('current')
if mibBuilder.loadTexts: alaIpxStaticRouteRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxStaticRouteTable is constrained by the operational state of the corresponding static route. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
alaIpxDefRouteTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 2), )
if mibBuilder.loadTexts: alaIpxDefRouteTable.setStatus('current')
if mibBuilder.loadTexts: alaIpxDefRouteTable.setDescription('The default route table contains information about the destinations to which all packets are sent when the destination network is not known.')
alaIpxDefRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 2, 1), ).setIndexNames((0, "ALCATEL-IND1-IPX-MIB", "alaIpxDefRouteVlanId"))
if mibBuilder.loadTexts: alaIpxDefRouteEntry.setStatus('current')
if mibBuilder.loadTexts: alaIpxDefRouteEntry.setDescription('One table entry per switch for default route.')
alaIpxDefRouteVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094)))
if mibBuilder.loadTexts: alaIpxDefRouteVlanId.setStatus('current')
if mibBuilder.loadTexts: alaIpxDefRouteVlanId.setDescription('The VlanId for this filter. If VlanId equals 0, the filter is applied globally.')
alaIpxDefRouteNet = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 2, 1, 2), NetNumber().clone(hexValue="00000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxDefRouteNet.setStatus('current')
if mibBuilder.loadTexts: alaIpxDefRouteNet.setDescription('The IPX network number of the router used to reach the first hop in the default route.')
alaIpxDefRouteNode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 2, 1, 3), HostAddress().clone(hexValue="000000000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxDefRouteNode.setStatus('current')
if mibBuilder.loadTexts: alaIpxDefRouteNode.setDescription('The IPX node number of the router used to reach the first hop in the default route.')
alaIpxDefRouteRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 2, 1, 4), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxDefRouteRowStatus.setStatus('current')
if mibBuilder.loadTexts: alaIpxDefRouteRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxDefRouteTable is constrained by the operational state of the corresponding default route entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
alaIpxExtMsgTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 3), )
if mibBuilder.loadTexts: alaIpxExtMsgTable.setStatus('current')
if mibBuilder.loadTexts: alaIpxExtMsgTable.setDescription('The extended RIP and SAP messages table contains information about which vlans use extended RIP and SAP packets.')
alaIpxExtMsgEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 3, 1), ).setIndexNames((0, "ALCATEL-IND1-IPX-MIB", "alaIpxExtMsgVlanId"))
if mibBuilder.loadTexts: alaIpxExtMsgEntry.setStatus('current')
if mibBuilder.loadTexts: alaIpxExtMsgEntry.setDescription('One table entry per Vlan.')
alaIpxExtMsgVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094)))
if mibBuilder.loadTexts: alaIpxExtMsgVlanId.setStatus('current')
if mibBuilder.loadTexts: alaIpxExtMsgVlanId.setDescription('The VlanId for this filter. If VlanId equals 0, the filter is applied globally.')
alaIpxExtMsgMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxExtMsgMode.setStatus('current')
if mibBuilder.loadTexts: alaIpxExtMsgMode.setDescription('Indicates whether extended RIP/SAP packets are sent and received.')
alaIpxExtMsgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 3, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxExtMsgRowStatus.setStatus('current')
if mibBuilder.loadTexts: alaIpxExtMsgRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxExtMsgTable is constrained by the operational state of the corresponding watchdog entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
alaIpxFlush = MibScalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("rip", 1), ("sap", 2), ("both", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaIpxFlush.setStatus('current')
if mibBuilder.loadTexts: alaIpxFlush.setDescription('Flushes the routing and the SAP tables. The tables will then be rebuilt from the broadcast messages received from the networks. Reading this variable is undefined')
alaIpxRipSapFilterTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1), )
if mibBuilder.loadTexts: alaIpxRipSapFilterTable.setStatus('current')
if mibBuilder.loadTexts: alaIpxRipSapFilterTable.setDescription('The IPX Rip/Sap Filter Table contains information about all filters that have been defined.')
alaIpxRipSapFilterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1), ).setIndexNames((0, "ALCATEL-IND1-IPX-MIB", "alaIpxRipSapFilterVlanId"), (0, "ALCATEL-IND1-IPX-MIB", "alaIpxRipSapFilterType"), (0, "ALCATEL-IND1-IPX-MIB", "alaIpxRipSapFilterNet"), (0, "ALCATEL-IND1-IPX-MIB", "alaIpxRipSapFilterNetMask"), (0, "ALCATEL-IND1-IPX-MIB", "alaIpxRipSapFilterNode"), (0, "ALCATEL-IND1-IPX-MIB", "alaIpxRipSapFilterNodeMask"), (0, "ALCATEL-IND1-IPX-MIB", "alaIpxRipSapFilterSvcType"))
if mibBuilder.loadTexts: alaIpxRipSapFilterEntry.setStatus('current')
if mibBuilder.loadTexts: alaIpxRipSapFilterEntry.setDescription('Each entry corresponds to one filter.')
alaIpxRipSapFilterVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094)))
if mibBuilder.loadTexts: alaIpxRipSapFilterVlanId.setStatus('current')
if mibBuilder.loadTexts: alaIpxRipSapFilterVlanId.setDescription('The VlanId for this filter. If VlanId equals 0, the filter is applied globally.')
alaIpxRipSapFilterType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("sapOutput", 1), ("sapInput", 2), ("gnsOutput", 3), ("ripOutput", 4), ("ripInput", 5))).clone(1))
if mibBuilder.loadTexts: alaIpxRipSapFilterType.setStatus('current')
if mibBuilder.loadTexts: alaIpxRipSapFilterType.setDescription('The type of filter. ')
alaIpxRipSapFilterNet = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 3), NetNumber().clone(hexValue="00000000"))
if mibBuilder.loadTexts: alaIpxRipSapFilterNet.setStatus('current')
if mibBuilder.loadTexts: alaIpxRipSapFilterNet.setDescription("The IPX Network Address to filter. A network address of all 0 's is used to denote All Networks.")
alaIpxRipSapFilterNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 4), NetNumber().clone(hexValue="ffffffff"))
if mibBuilder.loadTexts: alaIpxRipSapFilterNetMask.setStatus('current')
if mibBuilder.loadTexts: alaIpxRipSapFilterNetMask.setDescription('The IPX Network Mask to be used.')
alaIpxRipSapFilterNode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 5), HostAddress().clone(hexValue="000000000000"))
if mibBuilder.loadTexts: alaIpxRipSapFilterNode.setStatus('current')
if mibBuilder.loadTexts: alaIpxRipSapFilterNode.setDescription("The IPX node address to filter. A node address of all 0 's is used to denote All Nodes.")
alaIpxRipSapFilterNodeMask = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 6), HostAddress().clone(hexValue="ffffffffffff"))
if mibBuilder.loadTexts: alaIpxRipSapFilterNodeMask.setStatus('current')
if mibBuilder.loadTexts: alaIpxRipSapFilterNodeMask.setDescription('The IPX node address mask to be used.')
alaIpxRipSapFilterSvcType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(65535))
if mibBuilder.loadTexts: alaIpxRipSapFilterSvcType.setStatus('current')
if mibBuilder.loadTexts: alaIpxRipSapFilterSvcType.setDescription('The SAP service type on which to filter. The SAP service types are defined by Novell.A value of ALL(65535) indicates that all services will be filtered.')
alaIpxRipSapFilterMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("allow", 1), ("block", 2))).clone('allow')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxRipSapFilterMode.setStatus('current')
if mibBuilder.loadTexts: alaIpxRipSapFilterMode.setDescription('The action defined by this filter. block (1) means packets matching this filter will be blocked, and allow(0) means that packets matching this filter will be allowed.')
alaIpxRipSapFilterRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 10), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxRipSapFilterRowStatus.setStatus('current')
if mibBuilder.loadTexts: alaIpxRipSapFilterRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxRipSapFilterTable is constrained by the operational state of the corresponding filter entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
alaIpxWatchdogSpoofTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 2), )
if mibBuilder.loadTexts: alaIpxWatchdogSpoofTable.setStatus('current')
if mibBuilder.loadTexts: alaIpxWatchdogSpoofTable.setDescription('The IPX Watchdog Spoofing Table contains information about all of the current IPX WAN watchdog spoofing entry statuses.')
alaIpxWatchdogSpoofEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 2, 1), ).setIndexNames((0, "ALCATEL-IND1-IPX-MIB", "alaIpxWatchdogSpoofVlanId"))
if mibBuilder.loadTexts: alaIpxWatchdogSpoofEntry.setStatus('current')
if mibBuilder.loadTexts: alaIpxWatchdogSpoofEntry.setDescription('Each entry corresponds to one WAN routing service.')
alaIpxWatchdogSpoofVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094)))
if mibBuilder.loadTexts: alaIpxWatchdogSpoofVlanId.setStatus('current')
if mibBuilder.loadTexts: alaIpxWatchdogSpoofVlanId.setDescription('The VlanId of the WAN routing service that this entry applies to. If VlanId equals 0, the filter is applied globally to all WAN Vlans.')
alaIpxWatchdogSpoofMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2))).clone('enabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxWatchdogSpoofMode.setStatus('current')
if mibBuilder.loadTexts: alaIpxWatchdogSpoofMode.setDescription('This controls whether the IPX Watchdog Spoofing is enabled or disabled.When enabled, this routing service will spoof IPX Watchdog packets.When disabled, this routing service will not spoof IPX Watchdog packets.')
alaIpxWatchdogSpoofRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 2, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxWatchdogSpoofRowStatus.setStatus('current')
if mibBuilder.loadTexts: alaIpxWatchdogSpoofRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxWatchdogSpoofTable is constrained by the operational state of the corresponding watchdog entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
alaIpxSerialFilterTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 3), )
if mibBuilder.loadTexts: alaIpxSerialFilterTable.setStatus('current')
if mibBuilder.loadTexts: alaIpxSerialFilterTable.setDescription('The IPX Serialization Filtering Table contains information about all of the current IPX WAN serialization filtering entry statuses.')
alaIpxSerialFilterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 3, 1), ).setIndexNames((0, "ALCATEL-IND1-IPX-MIB", "alaIpxSerialFilterVlanId"))
if mibBuilder.loadTexts: alaIpxSerialFilterEntry.setStatus('current')
if mibBuilder.loadTexts: alaIpxSerialFilterEntry.setDescription('Each entry corresponds to one WAN routing service.')
alaIpxSerialFilterVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094)))
if mibBuilder.loadTexts: alaIpxSerialFilterVlanId.setStatus('current')
if mibBuilder.loadTexts: alaIpxSerialFilterVlanId.setDescription('The VlanId of the WAN routing service that this entry applies to. If VlanId equals 0, the filter is applied globally to all WAN Vlans.')
alaIpxSerialFilterMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2))).clone('enabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxSerialFilterMode.setStatus('current')
if mibBuilder.loadTexts: alaIpxSerialFilterMode.setDescription('This controls whether the IPX Serialization Filtering is enabled or disabled.When enabled, this routing service will filter IPX Serialization packets.When disabled, this routing service will not filter IPX Serialization packets.')
alaIpxSerialFilterRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 3, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxSerialFilterRowStatus.setStatus('current')
if mibBuilder.loadTexts: alaIpxSerialFilterRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxSerialFilterTable is constrained by the operational state of the corresponding filter entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
alaSpxKeepaliveSpoofTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 4), )
if mibBuilder.loadTexts: alaSpxKeepaliveSpoofTable.setStatus('current')
if mibBuilder.loadTexts: alaSpxKeepaliveSpoofTable.setDescription('The SPX Keepalive Spoofing Table contains information about all of the current IPX WAN SPX spoofing filtering entry statuses.')
alaSpxKeepaliveSpoofEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 4, 1), ).setIndexNames((0, "ALCATEL-IND1-IPX-MIB", "alaSpxKeepaliveSpoofVlanId"))
if mibBuilder.loadTexts: alaSpxKeepaliveSpoofEntry.setStatus('current')
if mibBuilder.loadTexts: alaSpxKeepaliveSpoofEntry.setDescription('Each entry corresponds to one WAN routing service.')
alaSpxKeepaliveSpoofVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094)))
if mibBuilder.loadTexts: alaSpxKeepaliveSpoofVlanId.setStatus('current')
if mibBuilder.loadTexts: alaSpxKeepaliveSpoofVlanId.setDescription('The VlanId of the WAN routing service that this entry applies to. If VlanId equals 0, the filter is applied globally to all WAN Vlans.')
alaSpxKeepaliveSpoofMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2))).clone('enabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaSpxKeepaliveSpoofMode.setStatus('current')
if mibBuilder.loadTexts: alaSpxKeepaliveSpoofMode.setDescription('This controls whether the SPX Keepalive Spoofing is enabled or disabled.When enabled, this routing service will spoof SPX Keepalive packets.When disabled, this routing service will not spoof SPX Keepalive packets.')
alaSpxKeepaliveSpoofRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 4, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaSpxKeepaliveSpoofRowStatus.setStatus('current')
if mibBuilder.loadTexts: alaSpxKeepaliveSpoofRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxKeepaliveSpoofTable is constrained by the operational state of the corresponding keepalive entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
alaIpxType20Table = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 5), )
if mibBuilder.loadTexts: alaIpxType20Table.setStatus('current')
if mibBuilder.loadTexts: alaIpxType20Table.setDescription('The IPX Type 20 Table contains information about all of the current Type 20 filtering entry statuses.')
alaIpxType20Entry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 5, 1), ).setIndexNames((0, "ALCATEL-IND1-IPX-MIB", "alaIpxType20VlanId"))
if mibBuilder.loadTexts: alaIpxType20Entry.setStatus('current')
if mibBuilder.loadTexts: alaIpxType20Entry.setDescription('Each entry corresponds to one Virtual LAN.')
alaIpxType20VlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094)))
if mibBuilder.loadTexts: alaIpxType20VlanId.setStatus('current')
if mibBuilder.loadTexts: alaIpxType20VlanId.setDescription('The VLAN Id of the routing interface that this entry applies to. If VlanId equals 0, the filter is applied globally.')
alaIpxType20Mode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2))).clone('enabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxType20Mode.setStatus('current')
if mibBuilder.loadTexts: alaIpxType20Mode.setDescription('This controls whether IPX Type 20 packet are enabled or disabled.When enabled, this routing interface will forward Type 20 packets.When disabled, the packets will not.')
alaIpxType20RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 5, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxType20RowStatus.setStatus('current')
if mibBuilder.loadTexts: alaIpxType20RowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxType20Table is constrained by the operational state of the corresponding type 20 entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
alaIpxTimerTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3, 1), )
if mibBuilder.loadTexts: alaIpxTimerTable.setStatus('current')
if mibBuilder.loadTexts: alaIpxTimerTable.setDescription('The IPX Timer Table contains information about all of the current Timer adjustments entry statuses.')
alaIpxTimerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3, 1, 1), ).setIndexNames((0, "ALCATEL-IND1-IPX-MIB", "alaIpxTimerVlanId"))
if mibBuilder.loadTexts: alaIpxTimerEntry.setStatus('current')
if mibBuilder.loadTexts: alaIpxTimerEntry.setDescription('Each entry corresponds to one Virtual LAN.')
alaIpxTimerVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094)))
if mibBuilder.loadTexts: alaIpxTimerVlanId.setStatus('current')
if mibBuilder.loadTexts: alaIpxTimerVlanId.setDescription('The VLAN Id of the routing interface that this entry applies to. If VlanId equals 0, the filter is applied globally.')
alaIpxTimerSap = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 180)).clone(60)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxTimerSap.setStatus('current')
if mibBuilder.loadTexts: alaIpxTimerSap.setDescription('This controls whether IPX SAP packet timer duration.')
alaIpxTimerRip = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 180)).clone(60)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxTimerRip.setStatus('current')
if mibBuilder.loadTexts: alaIpxTimerRip.setDescription('This controls whether IPX RIP packet timer duration.')
alaIpxTimerRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3, 1, 1, 4), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaIpxTimerRowStatus.setStatus('current')
if mibBuilder.loadTexts: alaIpxTimerRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxTimerTable is constrained by the operational state of the corresponding timer entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
alcatelIND1IPXMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2))
alcatelIND1IPXMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 1))
alcatelIND1IPXMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2))
alcatelIND1IPXMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 1, 1)).setObjects(("ALCATEL-IND1-IPX-MIB", "alcatelIND1IPXMIBStaticRouteGroup"), ("ALCATEL-IND1-IPX-MIB", "alcatelIND1IPXMIBDefRouteGroup"), ("ALCATEL-IND1-IPX-MIB", "alcatelIND1IPXMIBExtMsgGroup"), ("ALCATEL-IND1-IPX-MIB", "alcatelIND1IPXMIBFlushGroup"), ("ALCATEL-IND1-IPX-MIB", "alcatelIND1IPXMIBRipSapFilterGroup"), ("ALCATEL-IND1-IPX-MIB", "alcatelIND1IPXMIBWatchdogSpoofGroup"), ("ALCATEL-IND1-IPX-MIB", "alcatelIND1IPXMIBSerialFilterGroup"), ("ALCATEL-IND1-IPX-MIB", "alcatelIND1IPXMIBKeepaliveSpoofGroup"), ("ALCATEL-IND1-IPX-MIB", "alcatelIND1IPXMIBType20Group"), ("ALCATEL-IND1-IPX-MIB", "alcatelIND1IPXMIBTimerGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1IPXMIBCompliance = alcatelIND1IPXMIBCompliance.setStatus('current')
if mibBuilder.loadTexts: alcatelIND1IPXMIBCompliance.setDescription('The compliance statement for IPX Subsystem and ALCATEL-IND1-IPX-MIB.')
alcatelIND1IPXMIBStaticRouteGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 1)).setObjects(("ALCATEL-IND1-IPX-MIB", "alaIpxStaticRouteNextHopNet"), ("ALCATEL-IND1-IPX-MIB", "alaIpxStaticRouteNextHopNode"), ("ALCATEL-IND1-IPX-MIB", "alaIpxStaticRouteTicks"), ("ALCATEL-IND1-IPX-MIB", "alaIpxStaticRouteHopCount"), ("ALCATEL-IND1-IPX-MIB", "alaIpxStaticRouteRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1IPXMIBStaticRouteGroup = alcatelIND1IPXMIBStaticRouteGroup.setStatus('current')
if mibBuilder.loadTexts: alcatelIND1IPXMIBStaticRouteGroup.setDescription('A collection of objects from Static Route Table.')
alcatelIND1IPXMIBDefRouteGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 2)).setObjects(("ALCATEL-IND1-IPX-MIB", "alaIpxDefRouteNet"), ("ALCATEL-IND1-IPX-MIB", "alaIpxDefRouteNode"), ("ALCATEL-IND1-IPX-MIB", "alaIpxDefRouteRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1IPXMIBDefRouteGroup = alcatelIND1IPXMIBDefRouteGroup.setStatus('current')
if mibBuilder.loadTexts: alcatelIND1IPXMIBDefRouteGroup.setDescription('A collection of objects from Default Route Table.')
alcatelIND1IPXMIBExtMsgGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 3)).setObjects(("ALCATEL-IND1-IPX-MIB", "alaIpxExtMsgMode"), ("ALCATEL-IND1-IPX-MIB", "alaIpxExtMsgRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1IPXMIBExtMsgGroup = alcatelIND1IPXMIBExtMsgGroup.setStatus('current')
if mibBuilder.loadTexts: alcatelIND1IPXMIBExtMsgGroup.setDescription('A collection of objects from Extended Message Table.')
alcatelIND1IPXMIBFlushGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 4)).setObjects(("ALCATEL-IND1-IPX-MIB", "alaIpxFlush"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1IPXMIBFlushGroup = alcatelIND1IPXMIBFlushGroup.setStatus('current')
if mibBuilder.loadTexts: alcatelIND1IPXMIBFlushGroup.setDescription('A collection of objects to flush the RIP and SAP tables.')
alcatelIND1IPXMIBRipSapFilterGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 5)).setObjects(("ALCATEL-IND1-IPX-MIB", "alaIpxRipSapFilterMode"), ("ALCATEL-IND1-IPX-MIB", "alaIpxRipSapFilterRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1IPXMIBRipSapFilterGroup = alcatelIND1IPXMIBRipSapFilterGroup.setStatus('current')
if mibBuilder.loadTexts: alcatelIND1IPXMIBRipSapFilterGroup.setDescription('A collection of objects from the RIP and SAP Filter tables.')
alcatelIND1IPXMIBWatchdogSpoofGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 6)).setObjects(("ALCATEL-IND1-IPX-MIB", "alaIpxWatchdogSpoofMode"), ("ALCATEL-IND1-IPX-MIB", "alaIpxWatchdogSpoofRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1IPXMIBWatchdogSpoofGroup = alcatelIND1IPXMIBWatchdogSpoofGroup.setStatus('current')
if mibBuilder.loadTexts: alcatelIND1IPXMIBWatchdogSpoofGroup.setDescription('A collection of objects from the Watchdog spoof tables.')
alcatelIND1IPXMIBSerialFilterGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 7)).setObjects(("ALCATEL-IND1-IPX-MIB", "alaIpxSerialFilterMode"), ("ALCATEL-IND1-IPX-MIB", "alaIpxSerialFilterRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1IPXMIBSerialFilterGroup = alcatelIND1IPXMIBSerialFilterGroup.setStatus('current')
if mibBuilder.loadTexts: alcatelIND1IPXMIBSerialFilterGroup.setDescription('A collection of objects from the Serialization Filter tables.')
alcatelIND1IPXMIBKeepaliveSpoofGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 8)).setObjects(("ALCATEL-IND1-IPX-MIB", "alaSpxKeepaliveSpoofMode"), ("ALCATEL-IND1-IPX-MIB", "alaSpxKeepaliveSpoofRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1IPXMIBKeepaliveSpoofGroup = alcatelIND1IPXMIBKeepaliveSpoofGroup.setStatus('current')
if mibBuilder.loadTexts: alcatelIND1IPXMIBKeepaliveSpoofGroup.setDescription('A collection of objects from the Keepalive Spoof tables.')
alcatelIND1IPXMIBType20Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 9)).setObjects(("ALCATEL-IND1-IPX-MIB", "alaIpxType20Mode"), ("ALCATEL-IND1-IPX-MIB", "alaIpxType20RowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1IPXMIBType20Group = alcatelIND1IPXMIBType20Group.setStatus('current')
if mibBuilder.loadTexts: alcatelIND1IPXMIBType20Group.setDescription('A collection of objects from the Type 20 packet tables.')
alcatelIND1IPXMIBTimerGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 10)).setObjects(("ALCATEL-IND1-IPX-MIB", "alaIpxTimerRip"), ("ALCATEL-IND1-IPX-MIB", "alaIpxTimerSap"), ("ALCATEL-IND1-IPX-MIB", "alaIpxTimerRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1IPXMIBTimerGroup = alcatelIND1IPXMIBTimerGroup.setStatus('current')
if mibBuilder.loadTexts: alcatelIND1IPXMIBTimerGroup.setDescription('A collection of objects from the RIP and SAP Timer tables.')
mibBuilder.exportSymbols("ALCATEL-IND1-IPX-MIB", alaSpxKeepaliveSpoofVlanId=alaSpxKeepaliveSpoofVlanId, alaIpxFlush=alaIpxFlush, alaIpxWatchdogSpoofEntry=alaIpxWatchdogSpoofEntry, alaIpxTimerSap=alaIpxTimerSap, alcatelIND1IPXMIBCompliances=alcatelIND1IPXMIBCompliances, alcatelIND1IPXMIBRipSapFilterGroup=alcatelIND1IPXMIBRipSapFilterGroup, alcatelIND1IPXMIBType20Group=alcatelIND1IPXMIBType20Group, alaIpxWatchdogSpoofMode=alaIpxWatchdogSpoofMode, alaIpxRoutingGroup=alaIpxRoutingGroup, alaIpxTimerVlanId=alaIpxTimerVlanId, alaIpxFilterGroup=alaIpxFilterGroup, alcatelIND1IPXMIBWatchdogSpoofGroup=alcatelIND1IPXMIBWatchdogSpoofGroup, alcatelIND1IPXMIBDefRouteGroup=alcatelIND1IPXMIBDefRouteGroup, alaIpxRipSapFilterType=alaIpxRipSapFilterType, alaIpxSerialFilterTable=alaIpxSerialFilterTable, alaSpxKeepaliveSpoofTable=alaSpxKeepaliveSpoofTable, alaSpxKeepaliveSpoofEntry=alaSpxKeepaliveSpoofEntry, alaIpxType20Mode=alaIpxType20Mode, alaIpxDefRouteNode=alaIpxDefRouteNode, alaIpxType20RowStatus=alaIpxType20RowStatus, alcatelIND1IPXMIB=alcatelIND1IPXMIB, alaIpxRipSapFilterMode=alaIpxRipSapFilterMode, alaIpxStaticRouteEntry=alaIpxStaticRouteEntry, alcatelIND1IPXMIBStaticRouteGroup=alcatelIND1IPXMIBStaticRouteGroup, alaIpxDefRouteVlanId=alaIpxDefRouteVlanId, HostAddress=HostAddress, alaIpxTimerRip=alaIpxTimerRip, alcatelIND1IPXMIBCompliance=alcatelIND1IPXMIBCompliance, alcatelIND1IPXMIBKeepaliveSpoofGroup=alcatelIND1IPXMIBKeepaliveSpoofGroup, alaIpxRipSapFilterNodeMask=alaIpxRipSapFilterNodeMask, alaIpxRipSapFilterEntry=alaIpxRipSapFilterEntry, alaIpxExtMsgRowStatus=alaIpxExtMsgRowStatus, alcatelIND1IPXMIBObjects=alcatelIND1IPXMIBObjects, alaIpxTimerEntry=alaIpxTimerEntry, alaIpxDefRouteTable=alaIpxDefRouteTable, alcatelIND1IPXMIBFlushGroup=alcatelIND1IPXMIBFlushGroup, PYSNMP_MODULE_ID=alcatelIND1IPXMIB, alaIpxSerialFilterVlanId=alaIpxSerialFilterVlanId, alaIpxType20VlanId=alaIpxType20VlanId, alaIpxDefRouteNet=alaIpxDefRouteNet, alcatelIND1IPXMIBTimerGroup=alcatelIND1IPXMIBTimerGroup, alaIpxDefRouteEntry=alaIpxDefRouteEntry, alaIpxSerialFilterMode=alaIpxSerialFilterMode, alaIpxStaticRouteNextHopNet=alaIpxStaticRouteNextHopNet, alaIpxWatchdogSpoofTable=alaIpxWatchdogSpoofTable, alaIpxExtMsgTable=alaIpxExtMsgTable, alaIpxStaticRouteHopCount=alaIpxStaticRouteHopCount, alaIpxStaticRouteNetNum=alaIpxStaticRouteNetNum, alaIpxStaticRouteTicks=alaIpxStaticRouteTicks, alaIpxExtMsgVlanId=alaIpxExtMsgVlanId, alaIpxDefRouteRowStatus=alaIpxDefRouteRowStatus, alaIpxExtMsgMode=alaIpxExtMsgMode, alaIpxType20Entry=alaIpxType20Entry, alaIpxRipSapFilterSvcType=alaIpxRipSapFilterSvcType, alaIpxSerialFilterEntry=alaIpxSerialFilterEntry, alaIpxRipSapFilterVlanId=alaIpxRipSapFilterVlanId, alaIpxRipSapFilterNode=alaIpxRipSapFilterNode, alcatelIND1IPXMIBExtMsgGroup=alcatelIND1IPXMIBExtMsgGroup, alaIpxStaticRouteNextHopNode=alaIpxStaticRouteNextHopNode, alaIpxWatchdogSpoofVlanId=alaIpxWatchdogSpoofVlanId, alcatelIND1IPXMIBGroups=alcatelIND1IPXMIBGroups, alaIpxTimerTable=alaIpxTimerTable, alaIpxStaticRouteRowStatus=alaIpxStaticRouteRowStatus, alaIpxWatchdogSpoofRowStatus=alaIpxWatchdogSpoofRowStatus, alcatelIND1IPXMIBSerialFilterGroup=alcatelIND1IPXMIBSerialFilterGroup, alaIpxRipSapFilterTable=alaIpxRipSapFilterTable, alaIpxRipSapFilterNet=alaIpxRipSapFilterNet, alaIpxStaticRouteTable=alaIpxStaticRouteTable, NetNumber=NetNumber, alaIpxTimerRowStatus=alaIpxTimerRowStatus, alcatelIND1IPXMIBConformance=alcatelIND1IPXMIBConformance, alaIpxExtMsgEntry=alaIpxExtMsgEntry, alaIpxRipSapFilterNetMask=alaIpxRipSapFilterNetMask, alaSpxKeepaliveSpoofRowStatus=alaSpxKeepaliveSpoofRowStatus, alaIpxType20Table=alaIpxType20Table, alaIpxSerialFilterRowStatus=alaIpxSerialFilterRowStatus, alaSpxKeepaliveSpoofMode=alaSpxKeepaliveSpoofMode, alaIpxTimerGroup=alaIpxTimerGroup, alaIpxRipSapFilterRowStatus=alaIpxRipSapFilterRowStatus)
| (routing_ind1_ipx,) = mibBuilder.importSymbols('ALCATEL-IND1-BASE', 'routingIND1Ipx')
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, constraints_union, value_size_constraint, constraints_intersection, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsUnion', 'ValueSizeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint')
(module_compliance, notification_group, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup', 'ObjectGroup')
(module_identity, counter64, gauge32, bits, object_identity, mib_identifier, iso, notification_type, time_ticks, integer32, ip_address, counter32, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'Counter64', 'Gauge32', 'Bits', 'ObjectIdentity', 'MibIdentifier', 'iso', 'NotificationType', 'TimeTicks', 'Integer32', 'IpAddress', 'Counter32', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn')
(display_string, textual_convention, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention', 'RowStatus')
alcatel_ind1_ipxmib = module_identity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1))
alcatelIND1IPXMIB.setRevisions(('2007-04-03 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
alcatelIND1IPXMIB.setRevisionsDescriptions(('The latest version of this MIB Module.',))
if mibBuilder.loadTexts:
alcatelIND1IPXMIB.setLastUpdated('200704030000Z')
if mibBuilder.loadTexts:
alcatelIND1IPXMIB.setOrganization('Alcatel-Lucent')
if mibBuilder.loadTexts:
alcatelIND1IPXMIB.setContactInfo('Please consult with Customer Service to ensure the most appropriate version of this document is used with the products in question: Alcatel-Lucent, Enterprise Solutions Division (Formerly Alcatel Internetworking, Incorporated) 26801 West Agoura Road Agoura Hills, CA 91301-5122 United States Of America Telephone: North America +1 800 995 2696 Latin America +1 877 919 9526 Europe +31 23 556 0100 Asia +65 394 7933 All Other +1 818 878 4507 Electronic Mail: support@ind.alcatel.com World Wide Web: http://alcatel-lucent.com/wps/portal/enterprise File Transfer Protocol: ftp://ftp.ind.alcatel.com/pub/products/mibs')
if mibBuilder.loadTexts:
alcatelIND1IPXMIB.setDescription('This module describes an authoritative enterprise-specific Simple Network Management Protocol (SNMP) Management Information Base (MIB): This is the proprietary MIB for the IPX routing sub-sytem. The right to make changes in specification and other information contained in this document without prior notice is reserved. No liability shall be assumed for any incidental, indirect, special, or consequential damages whatsoever arising from or related to this document or the information contained herein. Vendors, end-users, and other interested parties are granted non-exclusive license to use this specification in connection with management of the products for which it is intended to be used. Copyright (C) 1995-2007 Alcatel-Lucent ALL RIGHTS RESERVED WORLDWIDE')
alcatel_ind1_ipxmib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1))
class Netnumber(TextualConvention, OctetString):
description = 'IPX network number. It is a 32-bit value divided into 4 octets.'
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(4, 4)
fixed_length = 4
class Hostaddress(TextualConvention, OctetString):
description = 'IPX host MAC address. It is a group of the 6 octets from the MAC address.'
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(6, 6)
fixed_length = 6
ala_ipx_routing_group = object_identity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1))
if mibBuilder.loadTexts:
alaIpxRoutingGroup.setStatus('current')
if mibBuilder.loadTexts:
alaIpxRoutingGroup.setDescription('IPX routing information.')
ala_ipx_filter_group = object_identity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2))
if mibBuilder.loadTexts:
alaIpxFilterGroup.setStatus('current')
if mibBuilder.loadTexts:
alaIpxFilterGroup.setDescription('IPX filtering information.')
ala_ipx_timer_group = object_identity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3))
if mibBuilder.loadTexts:
alaIpxTimerGroup.setStatus('current')
if mibBuilder.loadTexts:
alaIpxTimerGroup.setDescription('IPX timer information.')
ala_ipx_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1))
if mibBuilder.loadTexts:
alaIpxStaticRouteTable.setStatus('current')
if mibBuilder.loadTexts:
alaIpxStaticRouteTable.setDescription('The Static Routes table is used and add entries and extract information from the static routes configured in the system.')
ala_ipx_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1)).setIndexNames((0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxStaticRouteNetNum'))
if mibBuilder.loadTexts:
alaIpxStaticRouteEntry.setStatus('current')
if mibBuilder.loadTexts:
alaIpxStaticRouteEntry.setDescription('Each entry corresponds to one static route.')
ala_ipx_static_route_net_num = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1, 1), net_number().clone(hexValue='00000000'))
if mibBuilder.loadTexts:
alaIpxStaticRouteNetNum.setStatus('current')
if mibBuilder.loadTexts:
alaIpxStaticRouteNetNum.setDescription("The IPX network number of the route's destination.")
ala_ipx_static_route_next_hop_net = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1, 2), net_number().clone(hexValue='00000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxStaticRouteNextHopNet.setStatus('current')
if mibBuilder.loadTexts:
alaIpxStaticRouteNextHopNet.setDescription('The IPX network number of the router used to reach the first hop in the static route.')
ala_ipx_static_route_next_hop_node = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1, 3), host_address().clone(hexValue='000000000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxStaticRouteNextHopNode.setStatus('current')
if mibBuilder.loadTexts:
alaIpxStaticRouteNextHopNode.setDescription('The IPX node number of the router used to reach the first hop in the static route.')
ala_ipx_static_route_ticks = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxStaticRouteTicks.setStatus('current')
if mibBuilder.loadTexts:
alaIpxStaticRouteTicks.setDescription("The delay, in ticks, to reach the route's destination.")
ala_ipx_static_route_hop_count = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 16))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxStaticRouteHopCount.setStatus('current')
if mibBuilder.loadTexts:
alaIpxStaticRouteHopCount.setDescription('The number of hops necessary to reach the destination.')
ala_ipx_static_route_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 1, 1, 6), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxStaticRouteRowStatus.setStatus('current')
if mibBuilder.loadTexts:
alaIpxStaticRouteRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxStaticRouteTable is constrained by the operational state of the corresponding static route. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
ala_ipx_def_route_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 2))
if mibBuilder.loadTexts:
alaIpxDefRouteTable.setStatus('current')
if mibBuilder.loadTexts:
alaIpxDefRouteTable.setDescription('The default route table contains information about the destinations to which all packets are sent when the destination network is not known.')
ala_ipx_def_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 2, 1)).setIndexNames((0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxDefRouteVlanId'))
if mibBuilder.loadTexts:
alaIpxDefRouteEntry.setStatus('current')
if mibBuilder.loadTexts:
alaIpxDefRouteEntry.setDescription('One table entry per switch for default route.')
ala_ipx_def_route_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 4094)))
if mibBuilder.loadTexts:
alaIpxDefRouteVlanId.setStatus('current')
if mibBuilder.loadTexts:
alaIpxDefRouteVlanId.setDescription('The VlanId for this filter. If VlanId equals 0, the filter is applied globally.')
ala_ipx_def_route_net = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 2, 1, 2), net_number().clone(hexValue='00000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxDefRouteNet.setStatus('current')
if mibBuilder.loadTexts:
alaIpxDefRouteNet.setDescription('The IPX network number of the router used to reach the first hop in the default route.')
ala_ipx_def_route_node = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 2, 1, 3), host_address().clone(hexValue='000000000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxDefRouteNode.setStatus('current')
if mibBuilder.loadTexts:
alaIpxDefRouteNode.setDescription('The IPX node number of the router used to reach the first hop in the default route.')
ala_ipx_def_route_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 2, 1, 4), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxDefRouteRowStatus.setStatus('current')
if mibBuilder.loadTexts:
alaIpxDefRouteRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxDefRouteTable is constrained by the operational state of the corresponding default route entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
ala_ipx_ext_msg_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 3))
if mibBuilder.loadTexts:
alaIpxExtMsgTable.setStatus('current')
if mibBuilder.loadTexts:
alaIpxExtMsgTable.setDescription('The extended RIP and SAP messages table contains information about which vlans use extended RIP and SAP packets.')
ala_ipx_ext_msg_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 3, 1)).setIndexNames((0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxExtMsgVlanId'))
if mibBuilder.loadTexts:
alaIpxExtMsgEntry.setStatus('current')
if mibBuilder.loadTexts:
alaIpxExtMsgEntry.setDescription('One table entry per Vlan.')
ala_ipx_ext_msg_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 4094)))
if mibBuilder.loadTexts:
alaIpxExtMsgVlanId.setStatus('current')
if mibBuilder.loadTexts:
alaIpxExtMsgVlanId.setDescription('The VlanId for this filter. If VlanId equals 0, the filter is applied globally.')
ala_ipx_ext_msg_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxExtMsgMode.setStatus('current')
if mibBuilder.loadTexts:
alaIpxExtMsgMode.setDescription('Indicates whether extended RIP/SAP packets are sent and received.')
ala_ipx_ext_msg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 3, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxExtMsgRowStatus.setStatus('current')
if mibBuilder.loadTexts:
alaIpxExtMsgRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxExtMsgTable is constrained by the operational state of the corresponding watchdog entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
ala_ipx_flush = mib_scalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('rip', 1), ('sap', 2), ('both', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaIpxFlush.setStatus('current')
if mibBuilder.loadTexts:
alaIpxFlush.setDescription('Flushes the routing and the SAP tables. The tables will then be rebuilt from the broadcast messages received from the networks. Reading this variable is undefined')
ala_ipx_rip_sap_filter_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1))
if mibBuilder.loadTexts:
alaIpxRipSapFilterTable.setStatus('current')
if mibBuilder.loadTexts:
alaIpxRipSapFilterTable.setDescription('The IPX Rip/Sap Filter Table contains information about all filters that have been defined.')
ala_ipx_rip_sap_filter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1)).setIndexNames((0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxRipSapFilterVlanId'), (0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxRipSapFilterType'), (0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxRipSapFilterNet'), (0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxRipSapFilterNetMask'), (0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxRipSapFilterNode'), (0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxRipSapFilterNodeMask'), (0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxRipSapFilterSvcType'))
if mibBuilder.loadTexts:
alaIpxRipSapFilterEntry.setStatus('current')
if mibBuilder.loadTexts:
alaIpxRipSapFilterEntry.setDescription('Each entry corresponds to one filter.')
ala_ipx_rip_sap_filter_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 4094)))
if mibBuilder.loadTexts:
alaIpxRipSapFilterVlanId.setStatus('current')
if mibBuilder.loadTexts:
alaIpxRipSapFilterVlanId.setDescription('The VlanId for this filter. If VlanId equals 0, the filter is applied globally.')
ala_ipx_rip_sap_filter_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('sapOutput', 1), ('sapInput', 2), ('gnsOutput', 3), ('ripOutput', 4), ('ripInput', 5))).clone(1))
if mibBuilder.loadTexts:
alaIpxRipSapFilterType.setStatus('current')
if mibBuilder.loadTexts:
alaIpxRipSapFilterType.setDescription('The type of filter. ')
ala_ipx_rip_sap_filter_net = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 3), net_number().clone(hexValue='00000000'))
if mibBuilder.loadTexts:
alaIpxRipSapFilterNet.setStatus('current')
if mibBuilder.loadTexts:
alaIpxRipSapFilterNet.setDescription("The IPX Network Address to filter. A network address of all 0 's is used to denote All Networks.")
ala_ipx_rip_sap_filter_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 4), net_number().clone(hexValue='ffffffff'))
if mibBuilder.loadTexts:
alaIpxRipSapFilterNetMask.setStatus('current')
if mibBuilder.loadTexts:
alaIpxRipSapFilterNetMask.setDescription('The IPX Network Mask to be used.')
ala_ipx_rip_sap_filter_node = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 5), host_address().clone(hexValue='000000000000'))
if mibBuilder.loadTexts:
alaIpxRipSapFilterNode.setStatus('current')
if mibBuilder.loadTexts:
alaIpxRipSapFilterNode.setDescription("The IPX node address to filter. A node address of all 0 's is used to denote All Nodes.")
ala_ipx_rip_sap_filter_node_mask = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 6), host_address().clone(hexValue='ffffffffffff'))
if mibBuilder.loadTexts:
alaIpxRipSapFilterNodeMask.setStatus('current')
if mibBuilder.loadTexts:
alaIpxRipSapFilterNodeMask.setDescription('The IPX node address mask to be used.')
ala_ipx_rip_sap_filter_svc_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(65535))
if mibBuilder.loadTexts:
alaIpxRipSapFilterSvcType.setStatus('current')
if mibBuilder.loadTexts:
alaIpxRipSapFilterSvcType.setDescription('The SAP service type on which to filter. The SAP service types are defined by Novell.A value of ALL(65535) indicates that all services will be filtered.')
ala_ipx_rip_sap_filter_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('allow', 1), ('block', 2))).clone('allow')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxRipSapFilterMode.setStatus('current')
if mibBuilder.loadTexts:
alaIpxRipSapFilterMode.setDescription('The action defined by this filter. block (1) means packets matching this filter will be blocked, and allow(0) means that packets matching this filter will be allowed.')
ala_ipx_rip_sap_filter_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 1, 1, 10), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxRipSapFilterRowStatus.setStatus('current')
if mibBuilder.loadTexts:
alaIpxRipSapFilterRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxRipSapFilterTable is constrained by the operational state of the corresponding filter entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
ala_ipx_watchdog_spoof_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 2))
if mibBuilder.loadTexts:
alaIpxWatchdogSpoofTable.setStatus('current')
if mibBuilder.loadTexts:
alaIpxWatchdogSpoofTable.setDescription('The IPX Watchdog Spoofing Table contains information about all of the current IPX WAN watchdog spoofing entry statuses.')
ala_ipx_watchdog_spoof_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 2, 1)).setIndexNames((0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxWatchdogSpoofVlanId'))
if mibBuilder.loadTexts:
alaIpxWatchdogSpoofEntry.setStatus('current')
if mibBuilder.loadTexts:
alaIpxWatchdogSpoofEntry.setDescription('Each entry corresponds to one WAN routing service.')
ala_ipx_watchdog_spoof_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 4094)))
if mibBuilder.loadTexts:
alaIpxWatchdogSpoofVlanId.setStatus('current')
if mibBuilder.loadTexts:
alaIpxWatchdogSpoofVlanId.setDescription('The VlanId of the WAN routing service that this entry applies to. If VlanId equals 0, the filter is applied globally to all WAN Vlans.')
ala_ipx_watchdog_spoof_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2))).clone('enabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxWatchdogSpoofMode.setStatus('current')
if mibBuilder.loadTexts:
alaIpxWatchdogSpoofMode.setDescription('This controls whether the IPX Watchdog Spoofing is enabled or disabled.When enabled, this routing service will spoof IPX Watchdog packets.When disabled, this routing service will not spoof IPX Watchdog packets.')
ala_ipx_watchdog_spoof_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 2, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxWatchdogSpoofRowStatus.setStatus('current')
if mibBuilder.loadTexts:
alaIpxWatchdogSpoofRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxWatchdogSpoofTable is constrained by the operational state of the corresponding watchdog entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
ala_ipx_serial_filter_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 3))
if mibBuilder.loadTexts:
alaIpxSerialFilterTable.setStatus('current')
if mibBuilder.loadTexts:
alaIpxSerialFilterTable.setDescription('The IPX Serialization Filtering Table contains information about all of the current IPX WAN serialization filtering entry statuses.')
ala_ipx_serial_filter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 3, 1)).setIndexNames((0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxSerialFilterVlanId'))
if mibBuilder.loadTexts:
alaIpxSerialFilterEntry.setStatus('current')
if mibBuilder.loadTexts:
alaIpxSerialFilterEntry.setDescription('Each entry corresponds to one WAN routing service.')
ala_ipx_serial_filter_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 4094)))
if mibBuilder.loadTexts:
alaIpxSerialFilterVlanId.setStatus('current')
if mibBuilder.loadTexts:
alaIpxSerialFilterVlanId.setDescription('The VlanId of the WAN routing service that this entry applies to. If VlanId equals 0, the filter is applied globally to all WAN Vlans.')
ala_ipx_serial_filter_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2))).clone('enabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxSerialFilterMode.setStatus('current')
if mibBuilder.loadTexts:
alaIpxSerialFilterMode.setDescription('This controls whether the IPX Serialization Filtering is enabled or disabled.When enabled, this routing service will filter IPX Serialization packets.When disabled, this routing service will not filter IPX Serialization packets.')
ala_ipx_serial_filter_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 3, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxSerialFilterRowStatus.setStatus('current')
if mibBuilder.loadTexts:
alaIpxSerialFilterRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxSerialFilterTable is constrained by the operational state of the corresponding filter entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
ala_spx_keepalive_spoof_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 4))
if mibBuilder.loadTexts:
alaSpxKeepaliveSpoofTable.setStatus('current')
if mibBuilder.loadTexts:
alaSpxKeepaliveSpoofTable.setDescription('The SPX Keepalive Spoofing Table contains information about all of the current IPX WAN SPX spoofing filtering entry statuses.')
ala_spx_keepalive_spoof_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 4, 1)).setIndexNames((0, 'ALCATEL-IND1-IPX-MIB', 'alaSpxKeepaliveSpoofVlanId'))
if mibBuilder.loadTexts:
alaSpxKeepaliveSpoofEntry.setStatus('current')
if mibBuilder.loadTexts:
alaSpxKeepaliveSpoofEntry.setDescription('Each entry corresponds to one WAN routing service.')
ala_spx_keepalive_spoof_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 4094)))
if mibBuilder.loadTexts:
alaSpxKeepaliveSpoofVlanId.setStatus('current')
if mibBuilder.loadTexts:
alaSpxKeepaliveSpoofVlanId.setDescription('The VlanId of the WAN routing service that this entry applies to. If VlanId equals 0, the filter is applied globally to all WAN Vlans.')
ala_spx_keepalive_spoof_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2))).clone('enabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaSpxKeepaliveSpoofMode.setStatus('current')
if mibBuilder.loadTexts:
alaSpxKeepaliveSpoofMode.setDescription('This controls whether the SPX Keepalive Spoofing is enabled or disabled.When enabled, this routing service will spoof SPX Keepalive packets.When disabled, this routing service will not spoof SPX Keepalive packets.')
ala_spx_keepalive_spoof_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 4, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaSpxKeepaliveSpoofRowStatus.setStatus('current')
if mibBuilder.loadTexts:
alaSpxKeepaliveSpoofRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxKeepaliveSpoofTable is constrained by the operational state of the corresponding keepalive entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
ala_ipx_type20_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 5))
if mibBuilder.loadTexts:
alaIpxType20Table.setStatus('current')
if mibBuilder.loadTexts:
alaIpxType20Table.setDescription('The IPX Type 20 Table contains information about all of the current Type 20 filtering entry statuses.')
ala_ipx_type20_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 5, 1)).setIndexNames((0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxType20VlanId'))
if mibBuilder.loadTexts:
alaIpxType20Entry.setStatus('current')
if mibBuilder.loadTexts:
alaIpxType20Entry.setDescription('Each entry corresponds to one Virtual LAN.')
ala_ipx_type20_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 4094)))
if mibBuilder.loadTexts:
alaIpxType20VlanId.setStatus('current')
if mibBuilder.loadTexts:
alaIpxType20VlanId.setDescription('The VLAN Id of the routing interface that this entry applies to. If VlanId equals 0, the filter is applied globally.')
ala_ipx_type20_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2))).clone('enabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxType20Mode.setStatus('current')
if mibBuilder.loadTexts:
alaIpxType20Mode.setDescription('This controls whether IPX Type 20 packet are enabled or disabled.When enabled, this routing interface will forward Type 20 packets.When disabled, the packets will not.')
ala_ipx_type20_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 2, 5, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxType20RowStatus.setStatus('current')
if mibBuilder.loadTexts:
alaIpxType20RowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxType20Table is constrained by the operational state of the corresponding type 20 entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
ala_ipx_timer_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3, 1))
if mibBuilder.loadTexts:
alaIpxTimerTable.setStatus('current')
if mibBuilder.loadTexts:
alaIpxTimerTable.setDescription('The IPX Timer Table contains information about all of the current Timer adjustments entry statuses.')
ala_ipx_timer_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3, 1, 1)).setIndexNames((0, 'ALCATEL-IND1-IPX-MIB', 'alaIpxTimerVlanId'))
if mibBuilder.loadTexts:
alaIpxTimerEntry.setStatus('current')
if mibBuilder.loadTexts:
alaIpxTimerEntry.setDescription('Each entry corresponds to one Virtual LAN.')
ala_ipx_timer_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 4094)))
if mibBuilder.loadTexts:
alaIpxTimerVlanId.setStatus('current')
if mibBuilder.loadTexts:
alaIpxTimerVlanId.setDescription('The VLAN Id of the routing interface that this entry applies to. If VlanId equals 0, the filter is applied globally.')
ala_ipx_timer_sap = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 180)).clone(60)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxTimerSap.setStatus('current')
if mibBuilder.loadTexts:
alaIpxTimerSap.setDescription('This controls whether IPX SAP packet timer duration.')
ala_ipx_timer_rip = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 180)).clone(60)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxTimerRip.setStatus('current')
if mibBuilder.loadTexts:
alaIpxTimerRip.setDescription('This controls whether IPX RIP packet timer duration.')
ala_ipx_timer_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 1, 3, 1, 1, 4), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaIpxTimerRowStatus.setStatus('current')
if mibBuilder.loadTexts:
alaIpxTimerRowStatus.setDescription('The row status variable, used in accordance to installation and removal conventions for conceptual rows. The RowStatus of a currenty active row in the alaIpxTimerTable is constrained by the operational state of the corresponding timer entry. The RowStatus values that are supported are the following: active: This indicates that the row is active and valid. createAndGo: This will create the row and activate it. destroy: This value will deactivate the row and delete from the system.')
alcatel_ind1_ipxmib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2))
alcatel_ind1_ipxmib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 1))
alcatel_ind1_ipxmib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2))
alcatel_ind1_ipxmib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 1, 1)).setObjects(('ALCATEL-IND1-IPX-MIB', 'alcatelIND1IPXMIBStaticRouteGroup'), ('ALCATEL-IND1-IPX-MIB', 'alcatelIND1IPXMIBDefRouteGroup'), ('ALCATEL-IND1-IPX-MIB', 'alcatelIND1IPXMIBExtMsgGroup'), ('ALCATEL-IND1-IPX-MIB', 'alcatelIND1IPXMIBFlushGroup'), ('ALCATEL-IND1-IPX-MIB', 'alcatelIND1IPXMIBRipSapFilterGroup'), ('ALCATEL-IND1-IPX-MIB', 'alcatelIND1IPXMIBWatchdogSpoofGroup'), ('ALCATEL-IND1-IPX-MIB', 'alcatelIND1IPXMIBSerialFilterGroup'), ('ALCATEL-IND1-IPX-MIB', 'alcatelIND1IPXMIBKeepaliveSpoofGroup'), ('ALCATEL-IND1-IPX-MIB', 'alcatelIND1IPXMIBType20Group'), ('ALCATEL-IND1-IPX-MIB', 'alcatelIND1IPXMIBTimerGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_ipxmib_compliance = alcatelIND1IPXMIBCompliance.setStatus('current')
if mibBuilder.loadTexts:
alcatelIND1IPXMIBCompliance.setDescription('The compliance statement for IPX Subsystem and ALCATEL-IND1-IPX-MIB.')
alcatel_ind1_ipxmib_static_route_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 1)).setObjects(('ALCATEL-IND1-IPX-MIB', 'alaIpxStaticRouteNextHopNet'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxStaticRouteNextHopNode'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxStaticRouteTicks'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxStaticRouteHopCount'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxStaticRouteRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_ipxmib_static_route_group = alcatelIND1IPXMIBStaticRouteGroup.setStatus('current')
if mibBuilder.loadTexts:
alcatelIND1IPXMIBStaticRouteGroup.setDescription('A collection of objects from Static Route Table.')
alcatel_ind1_ipxmib_def_route_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 2)).setObjects(('ALCATEL-IND1-IPX-MIB', 'alaIpxDefRouteNet'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxDefRouteNode'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxDefRouteRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_ipxmib_def_route_group = alcatelIND1IPXMIBDefRouteGroup.setStatus('current')
if mibBuilder.loadTexts:
alcatelIND1IPXMIBDefRouteGroup.setDescription('A collection of objects from Default Route Table.')
alcatel_ind1_ipxmib_ext_msg_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 3)).setObjects(('ALCATEL-IND1-IPX-MIB', 'alaIpxExtMsgMode'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxExtMsgRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_ipxmib_ext_msg_group = alcatelIND1IPXMIBExtMsgGroup.setStatus('current')
if mibBuilder.loadTexts:
alcatelIND1IPXMIBExtMsgGroup.setDescription('A collection of objects from Extended Message Table.')
alcatel_ind1_ipxmib_flush_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 4)).setObjects(('ALCATEL-IND1-IPX-MIB', 'alaIpxFlush'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_ipxmib_flush_group = alcatelIND1IPXMIBFlushGroup.setStatus('current')
if mibBuilder.loadTexts:
alcatelIND1IPXMIBFlushGroup.setDescription('A collection of objects to flush the RIP and SAP tables.')
alcatel_ind1_ipxmib_rip_sap_filter_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 5)).setObjects(('ALCATEL-IND1-IPX-MIB', 'alaIpxRipSapFilterMode'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxRipSapFilterRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_ipxmib_rip_sap_filter_group = alcatelIND1IPXMIBRipSapFilterGroup.setStatus('current')
if mibBuilder.loadTexts:
alcatelIND1IPXMIBRipSapFilterGroup.setDescription('A collection of objects from the RIP and SAP Filter tables.')
alcatel_ind1_ipxmib_watchdog_spoof_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 6)).setObjects(('ALCATEL-IND1-IPX-MIB', 'alaIpxWatchdogSpoofMode'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxWatchdogSpoofRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_ipxmib_watchdog_spoof_group = alcatelIND1IPXMIBWatchdogSpoofGroup.setStatus('current')
if mibBuilder.loadTexts:
alcatelIND1IPXMIBWatchdogSpoofGroup.setDescription('A collection of objects from the Watchdog spoof tables.')
alcatel_ind1_ipxmib_serial_filter_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 7)).setObjects(('ALCATEL-IND1-IPX-MIB', 'alaIpxSerialFilterMode'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxSerialFilterRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_ipxmib_serial_filter_group = alcatelIND1IPXMIBSerialFilterGroup.setStatus('current')
if mibBuilder.loadTexts:
alcatelIND1IPXMIBSerialFilterGroup.setDescription('A collection of objects from the Serialization Filter tables.')
alcatel_ind1_ipxmib_keepalive_spoof_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 8)).setObjects(('ALCATEL-IND1-IPX-MIB', 'alaSpxKeepaliveSpoofMode'), ('ALCATEL-IND1-IPX-MIB', 'alaSpxKeepaliveSpoofRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_ipxmib_keepalive_spoof_group = alcatelIND1IPXMIBKeepaliveSpoofGroup.setStatus('current')
if mibBuilder.loadTexts:
alcatelIND1IPXMIBKeepaliveSpoofGroup.setDescription('A collection of objects from the Keepalive Spoof tables.')
alcatel_ind1_ipxmib_type20_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 9)).setObjects(('ALCATEL-IND1-IPX-MIB', 'alaIpxType20Mode'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxType20RowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_ipxmib_type20_group = alcatelIND1IPXMIBType20Group.setStatus('current')
if mibBuilder.loadTexts:
alcatelIND1IPXMIBType20Group.setDescription('A collection of objects from the Type 20 packet tables.')
alcatel_ind1_ipxmib_timer_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 10, 8, 1, 2, 2, 10)).setObjects(('ALCATEL-IND1-IPX-MIB', 'alaIpxTimerRip'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxTimerSap'), ('ALCATEL-IND1-IPX-MIB', 'alaIpxTimerRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_ipxmib_timer_group = alcatelIND1IPXMIBTimerGroup.setStatus('current')
if mibBuilder.loadTexts:
alcatelIND1IPXMIBTimerGroup.setDescription('A collection of objects from the RIP and SAP Timer tables.')
mibBuilder.exportSymbols('ALCATEL-IND1-IPX-MIB', alaSpxKeepaliveSpoofVlanId=alaSpxKeepaliveSpoofVlanId, alaIpxFlush=alaIpxFlush, alaIpxWatchdogSpoofEntry=alaIpxWatchdogSpoofEntry, alaIpxTimerSap=alaIpxTimerSap, alcatelIND1IPXMIBCompliances=alcatelIND1IPXMIBCompliances, alcatelIND1IPXMIBRipSapFilterGroup=alcatelIND1IPXMIBRipSapFilterGroup, alcatelIND1IPXMIBType20Group=alcatelIND1IPXMIBType20Group, alaIpxWatchdogSpoofMode=alaIpxWatchdogSpoofMode, alaIpxRoutingGroup=alaIpxRoutingGroup, alaIpxTimerVlanId=alaIpxTimerVlanId, alaIpxFilterGroup=alaIpxFilterGroup, alcatelIND1IPXMIBWatchdogSpoofGroup=alcatelIND1IPXMIBWatchdogSpoofGroup, alcatelIND1IPXMIBDefRouteGroup=alcatelIND1IPXMIBDefRouteGroup, alaIpxRipSapFilterType=alaIpxRipSapFilterType, alaIpxSerialFilterTable=alaIpxSerialFilterTable, alaSpxKeepaliveSpoofTable=alaSpxKeepaliveSpoofTable, alaSpxKeepaliveSpoofEntry=alaSpxKeepaliveSpoofEntry, alaIpxType20Mode=alaIpxType20Mode, alaIpxDefRouteNode=alaIpxDefRouteNode, alaIpxType20RowStatus=alaIpxType20RowStatus, alcatelIND1IPXMIB=alcatelIND1IPXMIB, alaIpxRipSapFilterMode=alaIpxRipSapFilterMode, alaIpxStaticRouteEntry=alaIpxStaticRouteEntry, alcatelIND1IPXMIBStaticRouteGroup=alcatelIND1IPXMIBStaticRouteGroup, alaIpxDefRouteVlanId=alaIpxDefRouteVlanId, HostAddress=HostAddress, alaIpxTimerRip=alaIpxTimerRip, alcatelIND1IPXMIBCompliance=alcatelIND1IPXMIBCompliance, alcatelIND1IPXMIBKeepaliveSpoofGroup=alcatelIND1IPXMIBKeepaliveSpoofGroup, alaIpxRipSapFilterNodeMask=alaIpxRipSapFilterNodeMask, alaIpxRipSapFilterEntry=alaIpxRipSapFilterEntry, alaIpxExtMsgRowStatus=alaIpxExtMsgRowStatus, alcatelIND1IPXMIBObjects=alcatelIND1IPXMIBObjects, alaIpxTimerEntry=alaIpxTimerEntry, alaIpxDefRouteTable=alaIpxDefRouteTable, alcatelIND1IPXMIBFlushGroup=alcatelIND1IPXMIBFlushGroup, PYSNMP_MODULE_ID=alcatelIND1IPXMIB, alaIpxSerialFilterVlanId=alaIpxSerialFilterVlanId, alaIpxType20VlanId=alaIpxType20VlanId, alaIpxDefRouteNet=alaIpxDefRouteNet, alcatelIND1IPXMIBTimerGroup=alcatelIND1IPXMIBTimerGroup, alaIpxDefRouteEntry=alaIpxDefRouteEntry, alaIpxSerialFilterMode=alaIpxSerialFilterMode, alaIpxStaticRouteNextHopNet=alaIpxStaticRouteNextHopNet, alaIpxWatchdogSpoofTable=alaIpxWatchdogSpoofTable, alaIpxExtMsgTable=alaIpxExtMsgTable, alaIpxStaticRouteHopCount=alaIpxStaticRouteHopCount, alaIpxStaticRouteNetNum=alaIpxStaticRouteNetNum, alaIpxStaticRouteTicks=alaIpxStaticRouteTicks, alaIpxExtMsgVlanId=alaIpxExtMsgVlanId, alaIpxDefRouteRowStatus=alaIpxDefRouteRowStatus, alaIpxExtMsgMode=alaIpxExtMsgMode, alaIpxType20Entry=alaIpxType20Entry, alaIpxRipSapFilterSvcType=alaIpxRipSapFilterSvcType, alaIpxSerialFilterEntry=alaIpxSerialFilterEntry, alaIpxRipSapFilterVlanId=alaIpxRipSapFilterVlanId, alaIpxRipSapFilterNode=alaIpxRipSapFilterNode, alcatelIND1IPXMIBExtMsgGroup=alcatelIND1IPXMIBExtMsgGroup, alaIpxStaticRouteNextHopNode=alaIpxStaticRouteNextHopNode, alaIpxWatchdogSpoofVlanId=alaIpxWatchdogSpoofVlanId, alcatelIND1IPXMIBGroups=alcatelIND1IPXMIBGroups, alaIpxTimerTable=alaIpxTimerTable, alaIpxStaticRouteRowStatus=alaIpxStaticRouteRowStatus, alaIpxWatchdogSpoofRowStatus=alaIpxWatchdogSpoofRowStatus, alcatelIND1IPXMIBSerialFilterGroup=alcatelIND1IPXMIBSerialFilterGroup, alaIpxRipSapFilterTable=alaIpxRipSapFilterTable, alaIpxRipSapFilterNet=alaIpxRipSapFilterNet, alaIpxStaticRouteTable=alaIpxStaticRouteTable, NetNumber=NetNumber, alaIpxTimerRowStatus=alaIpxTimerRowStatus, alcatelIND1IPXMIBConformance=alcatelIND1IPXMIBConformance, alaIpxExtMsgEntry=alaIpxExtMsgEntry, alaIpxRipSapFilterNetMask=alaIpxRipSapFilterNetMask, alaSpxKeepaliveSpoofRowStatus=alaSpxKeepaliveSpoofRowStatus, alaIpxType20Table=alaIpxType20Table, alaIpxSerialFilterRowStatus=alaIpxSerialFilterRowStatus, alaSpxKeepaliveSpoofMode=alaSpxKeepaliveSpoofMode, alaIpxTimerGroup=alaIpxTimerGroup, alaIpxRipSapFilterRowStatus=alaIpxRipSapFilterRowStatus) |
def importEXPH(fdata):
ENCHVM = dict()
MOTORI = dict()
cline = 3
while cline < len(fdata):
coduhe = fdata[cline][0:5].strip()
nome = fdata[cline][5:18].strip()
if fdata[cline][17:43].strip():
# Enchimento de Volume Morto
iniench = fdata[cline][17:26].strip()
durmeses = fdata[cline][26:36].strip()
pct = fdata[cline][36:43].strip()
cline = cline + 1
ENCHVM[coduhe] = {'nome': nome, 'iniench': iniench, 'durmeses': durmeses, 'pct': pct}
if fdata[cline].strip() == '9999':
cline = cline + 1
continue
# Motorizacao
MOTORI[coduhe] = list()
while fdata[cline].strip() != '9999':
# loop no bloco
maq = None
conj = None
if len(fdata[cline]) > 61:
# Formato novo, entao informa nro de maq e do cnj
# if fdata[cline][:4].strip() == '':
if '(' in fdata[cline]:
portion = fdata[cline].split('(')[1].split(')')[0].split()
maq = int(portion[0])
conj = int(portion[1])
else:
maq = int(fdata[cline][59:62].strip().replace('(', ''))
conj = int(fdata[cline][62:].strip())
dataexp = fdata[cline][33:51].strip()
potexp = fdata[cline][51:59].strip()
MOTORI[coduhe].append({'data': dataexp, 'pot': potexp, 'nome': nome, 'maq': maq, 'conj': conj})
cline = cline + 1
return ENCHVM, MOTORI
| def import_exph(fdata):
enchvm = dict()
motori = dict()
cline = 3
while cline < len(fdata):
coduhe = fdata[cline][0:5].strip()
nome = fdata[cline][5:18].strip()
if fdata[cline][17:43].strip():
iniench = fdata[cline][17:26].strip()
durmeses = fdata[cline][26:36].strip()
pct = fdata[cline][36:43].strip()
cline = cline + 1
ENCHVM[coduhe] = {'nome': nome, 'iniench': iniench, 'durmeses': durmeses, 'pct': pct}
if fdata[cline].strip() == '9999':
cline = cline + 1
continue
MOTORI[coduhe] = list()
while fdata[cline].strip() != '9999':
maq = None
conj = None
if len(fdata[cline]) > 61:
if '(' in fdata[cline]:
portion = fdata[cline].split('(')[1].split(')')[0].split()
maq = int(portion[0])
conj = int(portion[1])
else:
maq = int(fdata[cline][59:62].strip().replace('(', ''))
conj = int(fdata[cline][62:].strip())
dataexp = fdata[cline][33:51].strip()
potexp = fdata[cline][51:59].strip()
MOTORI[coduhe].append({'data': dataexp, 'pot': potexp, 'nome': nome, 'maq': maq, 'conj': conj})
cline = cline + 1
return (ENCHVM, MOTORI) |
with open('Chal08.txt','r') as f:
sum = 0
for i in f.readlines():
i = i.strip().split(' | ')
output = i[1].split()
for i in output:
if len(i) == 2 or len(i) == 4 or len(i) == 3 or len(i) == 7:
sum += 1
print(sum)
| with open('Chal08.txt', 'r') as f:
sum = 0
for i in f.readlines():
i = i.strip().split(' | ')
output = i[1].split()
for i in output:
if len(i) == 2 or len(i) == 4 or len(i) == 3 or (len(i) == 7):
sum += 1
print(sum) |
# -*- coding: utf-8 -*-
"""
Created on Sun Sep 1 19:39:48 2019
@author: amukher3
"""
def remove_smallest(numbers):
a=numbers[:]
if a ==[]:
return a
else:
a.remove(min(a))
return a
| """
Created on Sun Sep 1 19:39:48 2019
@author: amukher3
"""
def remove_smallest(numbers):
a = numbers[:]
if a == []:
return a
else:
a.remove(min(a))
return a |
class Solution(object):
def maxProfit(self, prices):
"""
:type prices: List[int]
:rtype: int
"""
if not prices:
return 0
ans = 0
pre = prices[0]
for i in range(1, len(prices)):
pre = min(pre, prices[i])
ans = max(prices[i] - pre, ans)
return ans
| class Solution(object):
def max_profit(self, prices):
"""
:type prices: List[int]
:rtype: int
"""
if not prices:
return 0
ans = 0
pre = prices[0]
for i in range(1, len(prices)):
pre = min(pre, prices[i])
ans = max(prices[i] - pre, ans)
return ans |
#!/usr/bin/python
# This file is used as a global config file while PCBmodE is running.
# DO NOT EDIT THIS FILE
cfg = {} # PCBmodE configuration
brd = {} # board data
stl = {} # style data
pth = {} # path database
msg = {} # message database
stk = {} # stackup data
| cfg = {}
brd = {}
stl = {}
pth = {}
msg = {}
stk = {} |
# -*- coding: utf-8 -*-
"""
[memo.py]
Memory Use Illustration Plugin
[Author]
Abdur-Rahmaan Janhangeer, pythonmembers.club
[About]
responds to .memo, demo of a basic memory plugin
[Commands]
>>> .memo add <key> <value>
>>> .memo rem <key>
>>> .memo fetch <key>
"""
class Plugin:
def __init__(self):
pass
def run(self, incoming, methods, info, bot_info):
try:
msgs = info['args'][1:][0].split()
if info['command'] == 'PRIVMSG' and msgs[0] == '.memo' and \
msgs[1] == 'add':
methods['mem_add']('global', 'VALUES', msgs[2], msgs[3])
if info['command'] == 'PRIVMSG' and msgs[0] == '.memo' and \
msgs[1] == 'rem':
methods['mem_rem']('global', 'VALUES', msgs[2])
if info['command'] == 'PRIVMSG' and msgs[0] == '.memo' and \
msgs[1] == 'fetch':
try:
val = methods['mem_fetch']('global', 'VALUES', msgs[2])
methods['send'](info['address'], val)
except KeyError:
methods['send'](info['address'], 'value not found')
except Exception as e:
print('woops plug', e)
| """
[memo.py]
Memory Use Illustration Plugin
[Author]
Abdur-Rahmaan Janhangeer, pythonmembers.club
[About]
responds to .memo, demo of a basic memory plugin
[Commands]
>>> .memo add <key> <value>
>>> .memo rem <key>
>>> .memo fetch <key>
"""
class Plugin:
def __init__(self):
pass
def run(self, incoming, methods, info, bot_info):
try:
msgs = info['args'][1:][0].split()
if info['command'] == 'PRIVMSG' and msgs[0] == '.memo' and (msgs[1] == 'add'):
methods['mem_add']('global', 'VALUES', msgs[2], msgs[3])
if info['command'] == 'PRIVMSG' and msgs[0] == '.memo' and (msgs[1] == 'rem'):
methods['mem_rem']('global', 'VALUES', msgs[2])
if info['command'] == 'PRIVMSG' and msgs[0] == '.memo' and (msgs[1] == 'fetch'):
try:
val = methods['mem_fetch']('global', 'VALUES', msgs[2])
methods['send'](info['address'], val)
except KeyError:
methods['send'](info['address'], 'value not found')
except Exception as e:
print('woops plug', e) |
"""Blacklist particular articles from doing particular activities"""
def publication_email_article_do_not_send_list():
"""
Return list of do not send article DOI id
"""
do_not_send_list = [
"00003", "00005", "00007", "00011", "00012", "00013", "00031", "00036", "00047", "00048",
"00049", "00051", "00065", "00067", "00068", "00070", "00078", "00090", "00093", "00102",
"00105", "00109", "00116", "00117", "00133", "00160", "00170", "00171", "00173", "00178",
"00181", "00183", "00184", "00190", "00205", "00218", "00220", "00230", "00231", "00240",
"00242", "00243", "00247", "00248", "00260", "00269", "00270", "00278", "00281", "00286",
"00288", "00290", "00291", "00299", "00301", "00302", "00306", "00308", "00311", "00312",
"00321", "00324", "00326", "00327", "00329", "00333", "00334", "00336", "00337", "00340",
"00347", "00348", "00351", "00352", "00353", "00354", "00358", "00362", "00365", "00367",
"00378", "00380", "00385", "00386", "00387", "00400", "00411", "00415", "00421", "00422",
"00425", "00426", "00429", "00435", "00444", "00450", "00452", "00458", "00459", "00461",
"00467", "00471", "00473", "00475", "00476", "00477", "00481", "00482", "00488", "00491",
"00498", "00499", "00505", "00508", "00515", "00518", "00522", "00523", "00533", "00534",
"00537", "00542", "00558", "00563", "00565", "00569", "00571", "00572", "00573", "00577",
"00590", "00592", "00593", "00594", "00603", "00605", "00615", "00625", "00626", "00631",
"00632", "00633", "00638", "00639", "00640", "00641", "00642", "00646", "00647", "00648",
"00654", "00655", "00658", "00659", "00662", "00663", "00666", "00668", "00669", "00672",
"00675", "00676", "00683", "00691", "00692", "00699", "00704", "00708", "00710", "00712",
"00723", "00726", "00729", "00731", "00736", "00744", "00745", "00747", "00750", "00757",
"00759", "00762", "00767", "00768", "00772", "00776", "00778", "00780", "00782", "00785",
"00790", "00791", "00792", "00799", "00800", "00801", "00802", "00804", "00806", "00808",
"00813", "00822", "00824", "00825", "00828", "00829", "00842", "00844", "00845", "00855",
"00856", "00857", "00861", "00862", "00863", "00866", "00868", "00873", "00882", "00884",
"00886", "00895", "00899", "00903", "00905", "00914", "00924", "00926", "00932", "00933",
"00940", "00943", "00947", "00948", "00951", "00953", "00954", "00958", "00960", "00961",
"00963", "00966", "00967", "00969", "00971", "00983", "00992", "00994", "00996", "00999",
"01004", "01008", "01009", "01020", "01029", "01030", "01042", "01045", "01061", "01064",
"01067", "01071", "01074", "01084", "01085", "01086", "01089", "01096", "01098", "01102",
"01104", "01108", "01114", "01115", "01119", "01120", "01123", "01127", "01133", "01135",
"01136", "01138", "01139", "01140", "01149", "01157", "01159", "01160", "01169", "01179",
"01180", "01197", "01201", "01202", "01206", "01211", "01213", "01214", "01221", "01222",
"01228", "01229", "01233", "01234", "01236", "01239", "01252", "01256", "01257", "01267",
"01270", "01273", "01279", "01287", "01289", "01291", "01293", "01294", "01295", "01296",
"01298", "01299", "01305", "01308", "01310", "01311", "01312", "01319", "01322", "01323",
"01326", "01328", "01339", "01340", "01341", "01345", "01350", "01355", "01369", "01370",
"01374", "01381", "01385", "01386", "01387", "01388", "01402", "01403", "01412", "01414",
"01426", "01428", "01433", "01434", "01438", "01439", "01440", "01456", "01457", "01460",
"01462", "01465", "01469", "01473", "01479", "01481", "01482", "01483", "01488", "01489",
"01494", "01496", "01498", "01501", "01503", "01514", "01515", "01516", "01519", "01524",
"01530", "01535", "01539", "01541", "01557", "01561", "01566", "01567", "01569", "01574",
"01579", "01581", "01584", "01587", "01596", "01597", "01599", "01603", "01604", "01605",
"01607", "01608", "01610", "01612", "01621", "01623", "01630", "01632", "01633", "01637",
"01641", "01658", "01659", "01662", "01663", "01671", "01680", "01681", "01684", "01694",
"01695", "01699", "01700", "01710", "01715", "01724", "01730", "01738", "01739", "01741",
"01749", "01751", "01754", "01760", "01763", "01775", "01776", "01779", "01808", "01809",
"01812", "01816", "01817", "01820", "01828", "01831", "01832", "01833", "01834", "01839",
"01845", "01846", "01849", "01856", "01857", "01861", "01867", "01873", "01879", "01883",
"01888", "01892", "01893", "01901", "01906", "01911", "01913", "01914", "01916", "01917",
"01926", "01928", "01936", "01939", "01944", "01948", "01949", "01958", "01963", "01964",
"01967", "01968", "01977", "01979", "01982", "01990", "01993", "01998", "02001", "02008",
"02009", "02020", "02024", "02025", "02028", "02030", "02040", "02041", "02042", "02043",
"02046", "02053", "02057", "02061", "02062", "02069", "02076", "02077", "02078", "02087",
"02088", "02094", "02104", "02105", "02109", "02112", "02115", "02130", "02131", "02137",
"02148", "02151", "02152", "02164", "02171", "02172", "02181", "02184", "02189", "02190",
"02196", "02199", "02200", "02203", "02206", "02208", "02217", "02218", "02224", "02230",
"02236", "02238", "02242", "02245", "02252", "02257", "02260", "02265", "02270", "02272",
"02273", "02277", "02283", "02286", "02289", "02304", "02313", "02322", "02324", "02349",
"02362", "02365", "02369", "02370", "02372", "02375", "02384", "02386", "02387", "02391",
"02394", "02395", "02397", "02403", "02407", "02409", "02419", "02439", "02440", "02443",
"02444", "02445", "02450", "02451", "02475", "02478", "02481", "02482", "02490", "02501",
"02504", "02510", "02511", "02515", "02516", "02517", "02523", "02525", "02531", "02535",
"02536", "02555", "02557", "02559", "02564", "02565", "02576", "02583", "02589", "02590",
"02598", "02615", "02618", "02619", "02626", "02630", "02634", "02637", "02641", "02653",
"02658", "02663", "02667", "02669", "02670", "02671", "02674", "02676", "02678", "02687",
"02715", "02725", "02726", "02730", "02734", "02736", "02740", "02743", "02747", "02750",
"02755", "02758", "02763", "02772", "02777", "02780", "02784", "02786", "02791", "02792",
"02798", "02805", "02809", "02811", "02812", "02813", "02833", "02839", "02840", "02844",
"02848", "02851", "02854", "02860", "02862", "02863", "02866", "02872", "02875", "02882",
"02893", "02897", "02904", "02907", "02910", "02917", "02923", "02935", "02938", "02945",
"02949", "02950", "02951", "02956", "02963", "02964", "02975", "02978", "02981", "02993",
"02996", "02999", "03005", "03007", "03011", "03023", "03025", "03031", "03032", "03035",
"03043", "03058", "03061", "03068", "03069", "03075", "03077", "03080", "03083", "03091",
"03100", "03104", "03110", "03115", "03116", "03125", "03126", "03128", "03145", "03146",
"03159", "03164", "03176", "03178", "03180", "03185", "03191", "03197", "03198", "03205",
"03206", "03222", "03229", "03233", "03235", "03239", "03245", "03251", "03254", "03255",
"03271", "03273", "03275", "03282", "03285", "03293", "03297", "03300", "03307", "03311",
"03318", "03342", "03346", "03348", "03351", "03357", "03363", "03371", "03372", "03374",
"03375", "03383", "03385", "03397", "03398", "03399", "03401", "03405", "03406", "03416",
"03421", "03422", "03427", "03430", "03433", "03435", "03440", "03443", "03464", "03467",
"03468", "03473", "03475", "03476", "03487", "03496", "03497", "03498", "03502", "03504",
"03521", "03522", "03523", "03526", "03528", "03532", "03542", "03545", "03549", "03553",
"03558", "03563", "03564", "03568", "03573", "03574", "03575", "03579", "03581", "03582",
"03583", "03587", "03596", "03600", "03602", "03604", "03606", "03609", "03613", "03626",
"03635", "03638", "03640", "03641", "03648", "03650", "03653", "03656", "03658", "03663",
"03665", "03671", "03674", "03676", "03678", "03679", "03680", "03683", "03695", "03696",
"03697", "03701", "03702", "03703", "03706", "03711", "03714", "03720", "03722", "03724",
"03726", "03727", "03728", "03735", "03737", "03743", "03751", "03753", "03754", "03756",
"03764", "03765", "03766", "03772", "03778", "03779", "03781", "03785", "03790", "03804",
"03811", "03819", "03821", "03830", "03842", "03848", "03851", "03868", "03881", "03883",
"03891", "03892", "03895", "03896", "03908", "03915", "03925", "03939", "03941", "03943",
"03949", "03952", "03962", "03970", "03971", "03977", "03978", "03980", "03981", "03997",
"04000", "04006", "04008", "04014", "04024", "04034", "04037", "04040", "04046", "04047",
"04057", "04059", "04066", "04069", "04070", "04094", "04105", "04106", "04111", "04114",
"04120", "04121", "04123", "04126", "04132", "04135", "04137", "04147", "04158", "04165",
"04168", "04177", "04180", "04187", "04193", "04205", "04207", "04220", "04234", "04235",
"04236", "04246", "04247", "04249", "04251", "04263", "04265", "04266", "04273", "04279",
"04287", "04288", "04300", "04316", "04333", "04353", "04363", "04366", "04371", "04378",
"04380", "04387", "04389", "04390", "04395", "04402", "04406", "04415", "04418", "04433",
"04437", "04449", "04476", "04478", "04489", "04491", "04494", "04499", "04501", "04506",
"04517", "04525", "04530", "04531", "04534", "04543", "04551", "04553", "04563", "04565",
"04577", "04580", "04581", "04586", "04591", "04600", "04601", "04603", "04605", "04617",
"04629", "04630", "04631", "04645", "04660", "04664", "04686", "04692", "04693", "04711",
"04729", "04741", "04742", "04766", "04775", "04779", "04785", "04801", "04806", "04811",
"04851", "04854", "04869", "04875", "04876", "04878", "04885", "04889", "04901", "04902",
"04909", "04919", "04969", "04970", "04986", "04995", "04996", "04997", "04998", "05000",
"05007", "05025", "05031", "05033", "05041", "05048", "05055", "05060", "05075", "05087",
"05105", "05115", "05116", "05125", "05151", "05161", "05169", "05178", "05179", "05198",
"05216", "05218", "05244", "05256", "05259", "05269", "05289", "05290", "05334", "05352",
"05375", "05377", "05394", "05401", "05418", "05419", "05422", "05427", "05438", "05490",
"05504", "05508", "05553", "05558", "05564", "05570", "05580", "05597", "05614", "05657",
"05663", "05720", "05770", "05787", "05789", "05816", "05846", "05896", "05983", "06156",
"06193", "06200", "06235", "06303", "06306", "06351", "06424", "06430", "06453", "06494",
"06656", "06720", "06740", "06900", "06986"]
# More do not send circa July 2015
# Do not send email if they are revised, since the duplicate check will not
# trigger since they were not sent in the first place
do_not_send_list = do_not_send_list + ["04186", "06416", "06847", "06938", "06959", "07072"]
return do_not_send_list
def pub_router_deposit_article_blacklist(workflow):
"""
Return list of do not send article DOI id
"""
if workflow == "HEFCE":
article_blacklist = [
"00003", "00005", "00007", "00011", "00013",
"00031", "00047", "00048", "00049", "00051",
"00065", "00067", "00068", "00070", "00078",
"00090", "00093", "00102", "00109", "00117",
"00171", "00173", "00181", "00184", "00205",
"00240", "00242", "00243", "00248", "00270",
"00281", "00286", "00301", "00302", "00311",
"00326", "00340", "00347", "00351", "00352",
"00353", "00365", "00385", "00386", "00387",
"00475", "00012", "00036", "00105", "00116",
"00133", "00160", "00170", "00178", "00183",
"00190", "00218", "00220", "00230", "00231",
"00247", "00260", "00269", "00278", "00288",
"00290", "00291", "00299", "00306", "00308",
"00312", "00321", "00324", "00327", "00329",
"00333", "00334", "00336", "00337", "00348",
"00354", "00358", "00362", "00367", "00378",
"00380", "00400", "00411", "00415", "00421",
"00422", "00425", "00426", "00429", "00435",
"00444", "00450", "00452", "00458", "00459",
"00461", "00467", "00471", "00473", "00476",
"00477", "00481", "00482", "00488", "00491",
"00498", "00499", "00505", "00508", "00515",
"00518", "00522", "00523", "00533", "00534",
"00537", "00542", "00558", "00563", "00565",
"00569", "00571", "00572", "00573", "00577",
"00592", "00593", "00594", "00603", "00605",
"00615", "00625", "00626", "00631", "00632",
"00633", "00638", "00639", "00640", "00641",
"00642", "00646", "00647", "00648", "00654",
"00655", "00658", "00659", "00663", "00666",
"00668", "00669", "00672", "00675", "00676",
"00683", "00691", "00692", "00699", "00704",
"00708", "00710", "00712", "00723", "00726",
"00729", "00731", "00736", "00744", "00745",
"00747", "00750", "00757", "00759", "00762",
"00767", "00768", "00772", "00776", "00778",
"00780", "00782", "00785", "00790", "00791",
"00792", "00799", "00800", "00801", "00802",
"00804", "00806", "00808", "00813", "00822",
"00824", "00825", "00828", "00842", "00844",
"00845", "00855", "00856", "00857", "00861",
"00862", "00863", "00866", "00868", "00873",
"00882", "00884", "00886", "00895", "00899",
"00903", "00905", "00914", "00924", "00926",
"00932", "00933", "00940", "00943", "00947",
"00948", "00951", "00953", "00954", "00958",
"00960", "00961", "00963", "00966", "00967",
"00969", "00971", "00983", "00992", "00994",
"00996", "00999", "01004", "01008", "01009",
"01020", "01029", "01030", "01042", "01045",
"01061", "01064", "01067", "01071", "01074",
"01084", "01085", "01086", "01089", "01096",
"01098", "01102", "01104", "01108", "01114",
"01115", "01119", "01120", "01123", "01127",
"01133", "01135", "01136", "01138", "01139",
"01140", "01149", "01157", "01159", "01160",
"01169", "01179", "01180", "01197", "01202",
"01206", "01211", "01213", "01214", "01221",
"01222", "01228", "01229", "01233", "01234",
"01236", "01252", "01256", "01270", "01273",
"01279", "01287", "01289", "01291", "01293",
"01294", "01295", "01296", "01298", "01299",
"01305", "01312", "01319", "01323", "01326",
"01328", "01339", "01340", "01341", "01345",
"01350", "01387", "01388", "01402", "01403",
"01414", "01426", "01428", "01456", "01462",
"01469", "01482", "01494", "01501", "01503",
"01514", "01515", "01516", "01519", "01541",
"01557", "01561", "01574", "01587", "01597",
"01599", "01605", "01608", "01633", "01658",
"01662", "01663", "01680", "01700", "01710",
"01738", "01749", "01760", "01779", "01809",
"01816", "01820", "01839", "01845", "01873",
"01893", "01926", "01968", "01979", "02094",
"00590", "00662", "00829", "01201", "01239",
"01257", "01267", "01308", "01310", "01311",
"01322", "01355", "01369", "01370", "01374",
"01381", "01385", "01386", "01412", "01433",
"01434", "01438", "01439", "01440", "01457",
"01460", "01465", "01473", "01479", "01481",
"01483", "01488", "01489", "01496", "01498",
"01524", "01530", "01535", "01539", "01566",
"01567", "01569", "01579", "01581", "01584",
"01596", "01603", "01604", "01607", "01610",
"01612", "01621", "01623", "01630", "01632",
"01637", "01641", "01659", "01671", "01681",
"01684", "01694", "01695", "01699", "01715",
"01724", "01730", "01739", "01741", "01751",
"01754", "01763", "01775", "01776", "01808",
"01812", "01817", "01828", "01831", "01832",
"01833", "01834", "01846", "01849", "01856",
"01857", "01861", "01867", "01879", "01883",
"01888", "01892", "01901", "01906", "01911",
"01913", "01914", "01916", "01917", "01928",
"01936", "01939", "01944", "01948", "01949",
"01958", "01963", "01964", "01967", "01977",
"01982", "01990", "01993", "01998", "02001",
"02008", "02009", "02020", "02024", "02025",
"02028", "02030", "02040", "02041", "02042",
"02043", "02046", "02053", "02057", "02061",
"02062", "02069", "02076", "02077", "02078",
"02087", "02088", "02104", "02105", "02109",
"02112", "02115", "02130", "02131", "02137",
"02148", "02151", "02152", "02164", "02171",
"02172", "02181", "02184", "02189", "02190",
"02196", "02199", "02200", "02203", "02206",
"02208", "02217", "02218", "02224", "02230",
"02236", "02238", "02242", "02245", "02252",
"02257", "02260", "02265", "02270", "02272",
"02273", "02277", "02283", "02286", "02289",
"02304", "02313", "02322", "02324", "02349",
"02362", "02365", "02369", "02370", "02372",
"02375", "02384", "02386", "02387", "02391",
"02394", "02395", "02397", "02403", "02407",
"02409", "02419", "02439", "02440", "02443",
"02444", "02445", "02450", "02451", "02475",
"02478", "02481", "02482", "02490", "02501",
"02504", "02510", "02511", "02515", "02516",
"02517", "02523", "02525", "02531", "02535",
"02536", "02555", "02557", "02559", "02564",
"02565", "02576", "02583", "02589", "02590",
"02598", "02615", "02618", "02619", "02626",
"02630", "02634", "02637", "02641", "02653",
"02658", "02663", "02667", "02669", "02670",
"02671", "02674", "02676", "02678", "02687",
"02715", "02725", "02726", "02730", "02734",
"02736", "02740", "02743", "02747", "02750",
"02755", "02758", "02763", "02772", "02777",
"02780", "02784", "02786", "02791", "02792",
"02798", "02805", "02809", "02811", "02812",
"02813", "02833", "02839", "02840", "02844",
"02848", "02851", "02854", "02860", "02862",
"02863", "02866", "02869", "02872", "02875",
"02882", "02893", "02897", "02904", "02907",
"02910", "02917", "02923", "02935", "02938",
"02945", "02949", "02950", "02951", "02956",
"02963", "02964", "02975", "02978", "02981",
"02993", "02996", "02999", "03005", "03007",
"03011", "03023", "03025", "03031", "03032",
"03035", "03043", "03058", "03061", "03068",
"03069", "03075", "03077", "03080", "03083",
"03091", "03100", "03104", "03110", "03115",
"03116", "03125", "03126", "03128", "03145",
"03146", "03159", "03164", "03176", "03178",
"03180", "03185", "03191", "03197", "03198",
"03205", "03206", "03222", "03229", "03233",
"03235", "03239", "03245", "03251", "03254",
"03255", "03271", "03273", "03275", "03282",
"03285", "03293", "03297", "03300", "03307",
"03311", "03318", "03342", "03346", "03348",
"03351", "03357", "03363", "03371", "03372",
"03374", "03375", "03383", "03385", "03397",
"03398", "03399", "03401", "03405", "03406",
"03416", "03421", "03422", "03427", "03430",
"03433", "03435", "03440", "03443", "03445",
"03464", "03467", "03468", "03473", "03475",
"03476", "03487", "03496", "03497", "03498",
"03502", "03504", "03521", "03522", "03523",
"03526", "03528", "03532", "03542", "03545",
"03549", "03553", "03558", "03563", "03564",
"03568", "03573", "03574", "03575", "03579",
"03581", "03582", "03583", "03587", "03596",
"03600", "03602", "03604", "03606", "03609",
"03613", "03626", "03635", "03638", "03640",
"03641", "03648", "03650", "03653", "03656",
"03658", "03663", "03665", "03671", "03674",
"03676", "03678", "03679", "03680", "03683",
"03695", "03696", "03697", "03701", "03702",
"03703", "03706", "03711", "03714", "03720",
"03722", "03724", "03726", "03727", "03728",
"03735", "03737", "03743", "03751", "03753",
"03754", "03756", "03764", "03765", "03766",
"03772", "03778", "03779", "03781", "03785",
"03790", "03804", "03811", "03819", "03821",
"03830", "03842", "03848", "03851", "03868",
"03881", "03883", "03891", "03892", "03895",
"03896", "03908", "03915", "03925", "03939",
"03941", "03943", "03949", "03952", "03962",
"03970", "03971", "03977", "03978", "03980",
"03981", "03997", "04000", "04006", "04008",
"04014", "04024", "04034", "04037", "04040",
"04046", "04047", "04057", "04059", "04066",
"04069", "04070", "04094", "04105", "04106",
"04111", "04114", "04120", "04121", "04123",
"04126", "04132", "04135", "04137", "04147",
"04158", "04165", "04168", "04177", "04180",
"04187", "04193", "04205", "04207", "04220",
"04234", "04235", "04236", "04246", "04247",
"04249", "04251", "04263", "04265", "04266",
"04273", "04279", "04287", "04288", "04300",
"04316", "04333", "04353", "04363", "04366",
"04371", "04378", "04380", "04387", "04389",
"04390", "04395", "04402", "04406", "04407",
"04415", "04418", "04433", "04437", "04449",
"04476", "04478", "04489", "04491", "04494",
"04499", "04501", "04506", "04517", "04525",
"04530", "04531", "04534", "04543", "04551",
"04553", "04563", "04565", "04577", "04580",
"04581", "04586", "04591", "04600", "04601",
"04603", "04605", "04617", "04629", "04630",
"04631", "04645", "04660", "04664", "04686",
"04692", "04693", "04711", "04729", "04741",
"04742", "04766", "04775", "04779", "04785",
"04801", "04806", "04811", "04851", "04854",
"04869", "04875", "04876", "04878", "04885",
"04889", "04901", "04902", "04909", "04919",
"04969", "04970", "04986", "04995", "04996",
"04997", "04998", "05000", "05007", "05025",
"05031", "05033", "05041", "05048", "05055",
"05060", "05075", "05087", "05105", "05115",
"05116", "05125", "05151", "05161", "05169",
"05178", "05179", "05198", "05216", "05218",
"05244", "05256", "05259", "05269", "05289",
"05290", "05334", "05352", "05375", "05377",
"05394", "05401", "05418", "05419", "05422",
"05427", "05438", "05490", "05504", "05508",
"05553", "05558", "05564", "05570", "05580",
"05597", "05614", "05657", "05663", "05720",
"05770", "05787", "05789", "05816", "05846",
"05896", "05983", "06156", "06193", "06200",
"06235", "06303", "06306", "06351", "06424",
"06430", "06453", "06494", "06656", "06720",
"06740", "06900", "06986"]
elif workflow == "Cengage":
article_blacklist = [
"00003", "00005", "00007", "00011", "00012", "00013", "00031", "00036", "00047",
"00048", "00049", "00051", "00065", "00067", "00068", "00070", "00078", "00090",
"00093", "00102", "00105", "00109", "00116", "00117", "00133", "00160", "00170",
"00171", "00173", "00178", "00181", "00183", "00184", "00190", "00205", "00218",
"00220", "00230", "00231", "00240", "00242", "00243", "00247", "00248", "00260",
"00269", "00270", "00278", "00281", "00286", "00288", "00290", "00291", "00299",
"00301", "00302", "00306", "00308", "00311", "00312", "00321", "00324", "00326",
"00327", "00329", "00333", "00334", "00336", "00337", "00340", "00347", "00348",
"00351", "00352", "00353", "00354", "00358", "00362", "00365", "00367", "00378",
"00380", "00385", "00386", "00387", "00400", "00411", "00415", "00421", "00422",
"00425", "00426", "00429", "00435", "00444", "00450", "00452", "00458", "00459",
"00461", "00467", "00471", "00473", "00475", "00476", "00477", "00481", "00482",
"00488", "00491", "00498", "00499", "00505", "00508", "00515", "00518", "00522",
"00523", "00533", "00534", "00537", "00542", "00558", "00563", "00565", "00569",
"00571", "00572", "00573", "00577", "00590", "00592", "00593", "00594", "00603",
"00605", "00615", "00625", "00626", "00631", "00632", "00633", "00638", "00639",
"00640", "00641", "00642", "00646", "00647", "00648", "00654", "00655", "00658",
"00659", "00662", "00663", "00666", "00668", "00669", "00672", "00675", "00676",
"00683", "00691", "00692", "00699", "00704", "00708", "00710", "00712", "00723",
"00726", "00729", "00731", "00736", "00744", "00745", "00747", "00750", "00757",
"00759", "00762", "00767", "00768", "00772", "00776", "00778", "00780", "00782",
"00785", "00790", "00791", "00792", "00799", "00800", "00801", "00802", "00804",
"00806", "00808", "00813", "00822", "00824", "00825", "00828", "00829", "00842",
"00844", "00845", "00855", "00856", "00857", "00861", "00862", "00863", "00866",
"00868", "00873", "00882", "00884", "00886", "00895", "00899", "00903", "00905",
"00914", "00924", "00926", "00932", "00933", "00940", "00943", "00947", "00948",
"00951", "00953", "00954", "00958", "00960", "00961", "00963", "00966", "00967",
"00969", "00971", "00983", "00992", "00994", "00996", "00999", "01004", "01008",
"01009", "01020", "01029", "01030", "01042", "01045", "01061", "01064", "01067",
"01071", "01074", "01084", "01085", "01086", "01089", "01096", "01098", "01102",
"01104", "01108", "01114", "01115", "01119", "01120", "01123", "01127", "01133",
"01135", "01136", "01138", "01139", "01140", "01149", "01157", "01159", "01160",
"01169", "01179", "01180", "01197", "01201", "01202", "01206", "01211", "01213",
"01214", "01221", "01222", "01228", "01229", "01233", "01234", "01236", "01239",
"01252", "01256", "01257", "01267", "01270", "01273", "01279", "01287", "01289",
"01291", "01293", "01294", "01295", "01296", "01298", "01299", "01305", "01308",
"01310", "01311", "01312", "01319", "01322", "01323", "01326", "01328", "01339",
"01340", "01341", "01345", "01350", "01355", "01369", "01370", "01374", "01381",
"01385", "01386", "01387", "01388", "01402", "01403", "01412", "01414", "01426",
"01428", "01433", "01434", "01438", "01439", "01440", "01456", "01457", "01460",
"01462", "01465", "01469", "01473", "01479", "01481", "01482", "01483", "01488",
"01489", "01494", "01496", "01498", "01501", "01503", "01514", "01515", "01516",
"01519", "01524", "01530", "01535", "01539", "01541", "01557", "01561", "01566",
"01567", "01569", "01574", "01579", "01581", "01584", "01587", "01596", "01597",
"01599", "01603", "01604", "01605", "01607", "01608", "01610", "01612", "01621",
"01623", "01630", "01632", "01633", "01637", "01641", "01658", "01659", "01662",
"01663", "01671", "01680", "01681", "01684", "01694", "01695", "01699", "01700",
"01710", "01715", "01724", "01730", "01738", "01739", "01741", "01749", "01751",
"01754", "01760", "01763", "01775", "01776", "01779", "01808", "01809", "01812",
"01816", "01817", "01820", "01828", "01831", "01832", "01833", "01834", "01839",
"01845", "01846", "01849", "01856", "01857", "01861", "01867", "01873", "01879",
"01883", "01888", "01892", "01893", "01901", "01906", "01911", "01913", "01914",
"01916", "01917", "01926", "01928", "01936", "01939", "01944", "01948", "01949",
"01958", "01963", "01964", "01967", "01968", "01977", "01979", "01982", "01990",
"01993", "01998", "02001", "02008", "02009", "02020", "02024", "02025", "02028",
"02030", "02040", "02041", "02042", "02043", "02046", "02053", "02057", "02061",
"02062", "02069", "02076", "02077", "02078", "02087", "02088", "02094", "02104",
"02105", "02109", "02112", "02115", "02130", "02131", "02137", "02148", "02151",
"02152", "02164", "02171", "02172", "02181", "02184", "02189", "02190", "02196",
"02199", "02200", "02203", "02206", "02208", "02217", "02218", "02224", "02230",
"02236", "02238", "02242", "02245", "02252", "02257", "02260", "02265", "02270",
"02272", "02273", "02277", "02283", "02286", "02289", "02304", "02313", "02322",
"02324", "02349", "02362", "02365", "02369", "02370", "02372", "02375", "02384",
"02386", "02387", "02391", "02394", "02395", "02397", "02403", "02407", "02409",
"02419", "02439", "02440", "02443", "02444", "02445", "02450", "02451", "02475",
"02478", "02481", "02482", "02490", "02501", "02504", "02510", "02511", "02515",
"02516", "02517", "02523", "02525", "02531", "02535", "02536", "02555", "02557",
"02559", "02564", "02565", "02576", "02583", "02589", "02590", "02598", "02615",
"02618", "02619", "02626", "02630", "02634", "02637", "02641", "02653", "02658",
"02663", "02667", "02669", "02670", "02671", "02674", "02676", "02678", "02687",
"02715", "02725", "02726", "02730", "02734", "02736", "02740", "02743", "02747",
"02750", "02755", "02758", "02763", "02772", "02777", "02780", "02784", "02786",
"02791", "02792", "02798", "02805", "02809", "02811", "02812", "02813", "02833",
"02839", "02840", "02844", "02848", "02851", "02854", "02860", "02862", "02863",
"02866", "02869", "02872", "02875", "02882", "02893", "02897", "02904", "02907",
"02910", "02917", "02923", "02935", "02938", "02945", "02948", "02949", "02950",
"02951", "02956", "02963", "02964", "02975", "02978", "02981", "02993", "02996",
"02999", "03005", "03007", "03011", "03023", "03025", "03031", "03032", "03035",
"03043", "03058", "03061", "03068", "03069", "03075", "03077", "03080", "03083",
"03091", "03100", "03104", "03110", "03115", "03116", "03125", "03126", "03128",
"03145", "03146", "03159", "03164", "03176", "03178", "03180", "03185", "03189",
"03191", "03197", "03198", "03205", "03206", "03222", "03229", "03233", "03235",
"03239", "03245", "03251", "03254", "03255", "03256", "03270", "03271", "03273",
"03275", "03282", "03285", "03293", "03297", "03300", "03307", "03311", "03318",
"03342", "03346", "03348", "03351", "03357", "03363", "03371", "03372", "03374",
"03375", "03383", "03385", "03397", "03398", "03399", "03401", "03405", "03406",
"03416", "03421", "03422", "03427", "03430", "03433", "03435", "03440", "03443",
"03445", "03464", "03467", "03468", "03473", "03475", "03476", "03487", "03496",
"03497", "03498", "03502", "03504", "03521", "03522", "03523", "03526", "03528",
"03532", "03542", "03545", "03549", "03553", "03558", "03563", "03564", "03568",
"03573", "03574", "03575", "03579", "03581", "03582", "03583", "03587", "03596",
"03600", "03602", "03604", "03606", "03609", "03613", "03614", "03626", "03635",
"03638", "03640", "03641", "03648", "03650", "03653", "03656", "03658", "03663",
"03665", "03671", "03674", "03676", "03678", "03679", "03680", "03683", "03695",
"03696", "03697", "03701", "03702", "03703", "03706", "03711", "03714", "03720",
"03722", "03724", "03726", "03727", "03728", "03735", "03737", "03743", "03751",
"03753", "03754", "03756", "03764", "03765", "03766", "03772", "03778", "03779",
"03781", "03785", "03790", "03804", "03811", "03819", "03821", "03830", "03842",
"03848", "03851", "03868", "03881", "03883", "03891", "03892", "03895", "03896",
"03908", "03915", "03925", "03939", "03941", "03943", "03949", "03952", "03962",
"03970", "03971", "03977", "03978", "03980", "03981", "03997", "04000", "04006",
"04008", "04014", "04024", "04034", "04037", "04040", "04046", "04047", "04052",
"04057", "04059", "04066", "04069", "04070", "04094", "04105", "04106", "04111",
"04114", "04120", "04121", "04123", "04126", "04132", "04135", "04137", "04147",
"04158", "04165", "04168", "04177", "04180", "04186", "04187", "04193", "04205",
"04207", "04220", "04232", "04234", "04235", "04236", "04246", "04247", "04249",
"04251", "04260", "04263", "04265", "04266", "04273", "04279", "04287", "04288",
"04300", "04316", "04333", "04346", "04353", "04363", "04366", "04371", "04378",
"04379", "04380", "04387", "04389", "04390", "04395", "04402", "04406", "04407",
"04415", "04418", "04433", "04437", "04449", "04463", "04476", "04478", "04489",
"04490", "04491", "04494", "04499", "04501", "04506", "04517", "04525", "04530",
"04531", "04534", "04535", "04543", "04550", "04551", "04553", "04563", "04565",
"04577", "04580", "04581", "04585", "04586", "04591", "04599", "04600", "04601",
"04603", "04605", "04617", "04629", "04630", "04631", "04634", "04645", "04660",
"04664", "04686", "04692", "04693", "04711", "04726", "04729", "04741", "04742",
"04766", "04775", "04779", "04785", "04790", "04801", "04803", "04806", "04811",
"04837", "04851", "04854", "04869", "04871", "04872", "04875", "04876", "04878",
"04883", "04885", "04889", "04901", "04902", "04909", "04919", "04940", "04953",
"04960", "04969", "04970", "04979", "04986", "04995", "04996", "04997", "04998",
"05000", "05003", "05007", "05025", "05031", "05033", "05041", "05042", "05048",
"05055", "05060", "05075", "05087", "05098", "05105", "05115", "05116", "05118",
"05125", "05151", "05154", "05161", "05165", "05166", "05169", "05178", "05179",
"05198", "05216", "05218", "05224", "05242", "05244", "05256", "05259", "05269",
"05279", "05289", "05290", "05291", "05334", "05338", "05352", "05375", "05377",
"05378", "05394", "05401", "05413", "05418", "05419", "05421", "05422", "05423",
"05427", "05438", "05447", "05449", "05457", "05463", "05464", "05472", "05477",
"05490", "05491", "05503", "05504", "05508", "05534", "05544", "05553", "05557",
"05558", "05560", "05564", "05570", "05580", "05597", "05604", "05606", "05608",
"05614", "05635", "05657", "05663", "05701", "05720", "05733", "05770", "05787",
"05789", "05808", "05816", "05826", "05835", "05846", "05849", "05861", "05868",
"05871", "05875", "05896", "05899", "05959", "05983", "06003", "06024", "06034",
"06054", "06068", "06074", "06100", "06132", "06156", "06166", "06179", "06184",
"06193", "06200", "06235", "06250", "06303", "06306", "06346", "06351", "06369",
"06380", "06400", "06412", "06424", "06430", "06453", "06494", "06536", "06557",
"06565", "06633", "06656", "06717", "06720", "06740", "06758", "06782", "06808",
"06837", "06877", "06883", "06900", "06956", "06986", "06995", "07074", "07083",
"07108", "07157", "07204", "07239", "07322", "07364", "07390", "07431", "07482",
"07527", "07532", "07586", "07604"
]
elif workflow == "GoOA":
article_blacklist = []
else:
article_blacklist = []
return article_blacklist
| """Blacklist particular articles from doing particular activities"""
def publication_email_article_do_not_send_list():
"""
Return list of do not send article DOI id
"""
do_not_send_list = ['00003', '00005', '00007', '00011', '00012', '00013', '00031', '00036', '00047', '00048', '00049', '00051', '00065', '00067', '00068', '00070', '00078', '00090', '00093', '00102', '00105', '00109', '00116', '00117', '00133', '00160', '00170', '00171', '00173', '00178', '00181', '00183', '00184', '00190', '00205', '00218', '00220', '00230', '00231', '00240', '00242', '00243', '00247', '00248', '00260', '00269', '00270', '00278', '00281', '00286', '00288', '00290', '00291', '00299', '00301', '00302', '00306', '00308', '00311', '00312', '00321', '00324', '00326', '00327', '00329', '00333', '00334', '00336', '00337', '00340', '00347', '00348', '00351', '00352', '00353', '00354', '00358', '00362', '00365', '00367', '00378', '00380', '00385', '00386', '00387', '00400', '00411', '00415', '00421', '00422', '00425', '00426', '00429', '00435', '00444', '00450', '00452', '00458', '00459', '00461', '00467', '00471', '00473', '00475', '00476', '00477', '00481', '00482', '00488', '00491', '00498', '00499', '00505', '00508', '00515', '00518', '00522', '00523', '00533', '00534', '00537', '00542', '00558', '00563', '00565', '00569', '00571', '00572', '00573', '00577', '00590', '00592', '00593', '00594', '00603', '00605', '00615', '00625', '00626', '00631', '00632', '00633', '00638', '00639', '00640', '00641', '00642', '00646', '00647', '00648', '00654', '00655', '00658', '00659', '00662', '00663', '00666', '00668', '00669', '00672', '00675', '00676', '00683', '00691', '00692', '00699', '00704', '00708', '00710', '00712', '00723', '00726', '00729', '00731', '00736', '00744', '00745', '00747', '00750', '00757', '00759', '00762', '00767', '00768', '00772', '00776', '00778', '00780', '00782', '00785', '00790', '00791', '00792', '00799', '00800', '00801', '00802', '00804', '00806', '00808', '00813', '00822', '00824', '00825', '00828', '00829', '00842', '00844', '00845', '00855', '00856', '00857', '00861', '00862', '00863', '00866', '00868', '00873', '00882', '00884', '00886', '00895', '00899', '00903', '00905', '00914', '00924', '00926', '00932', '00933', '00940', '00943', '00947', '00948', '00951', '00953', '00954', '00958', '00960', '00961', '00963', '00966', '00967', '00969', '00971', '00983', '00992', '00994', '00996', '00999', '01004', '01008', '01009', '01020', '01029', '01030', '01042', '01045', '01061', '01064', '01067', '01071', '01074', '01084', '01085', '01086', '01089', '01096', '01098', '01102', '01104', '01108', '01114', '01115', '01119', '01120', '01123', '01127', '01133', '01135', '01136', '01138', '01139', '01140', '01149', '01157', '01159', '01160', '01169', '01179', '01180', '01197', '01201', '01202', '01206', '01211', '01213', '01214', '01221', '01222', '01228', '01229', '01233', '01234', '01236', '01239', '01252', '01256', '01257', '01267', '01270', '01273', '01279', '01287', '01289', '01291', '01293', '01294', '01295', '01296', '01298', '01299', '01305', '01308', '01310', '01311', '01312', '01319', '01322', '01323', '01326', '01328', '01339', '01340', '01341', '01345', '01350', '01355', '01369', '01370', '01374', '01381', '01385', '01386', '01387', '01388', '01402', '01403', '01412', '01414', '01426', '01428', '01433', '01434', '01438', '01439', '01440', '01456', '01457', '01460', '01462', '01465', '01469', '01473', '01479', '01481', '01482', '01483', '01488', '01489', '01494', '01496', '01498', '01501', '01503', '01514', '01515', '01516', '01519', '01524', '01530', '01535', '01539', '01541', '01557', '01561', '01566', '01567', '01569', '01574', '01579', '01581', '01584', '01587', '01596', '01597', '01599', '01603', '01604', '01605', '01607', '01608', '01610', '01612', '01621', '01623', '01630', '01632', '01633', '01637', '01641', '01658', '01659', '01662', '01663', '01671', '01680', '01681', '01684', '01694', '01695', '01699', '01700', '01710', '01715', '01724', '01730', '01738', '01739', '01741', '01749', '01751', '01754', '01760', '01763', '01775', '01776', '01779', '01808', '01809', '01812', '01816', '01817', '01820', '01828', '01831', '01832', '01833', '01834', '01839', '01845', '01846', '01849', '01856', '01857', '01861', '01867', '01873', '01879', '01883', '01888', '01892', '01893', '01901', '01906', '01911', '01913', '01914', '01916', '01917', '01926', '01928', '01936', '01939', '01944', '01948', '01949', '01958', '01963', '01964', '01967', '01968', '01977', '01979', '01982', '01990', '01993', '01998', '02001', '02008', '02009', '02020', '02024', '02025', '02028', '02030', '02040', '02041', '02042', '02043', '02046', '02053', '02057', '02061', '02062', '02069', '02076', '02077', '02078', '02087', '02088', '02094', '02104', '02105', '02109', '02112', '02115', '02130', '02131', '02137', '02148', '02151', '02152', '02164', '02171', '02172', '02181', '02184', '02189', '02190', '02196', '02199', '02200', '02203', '02206', '02208', '02217', '02218', '02224', '02230', '02236', '02238', '02242', '02245', '02252', '02257', '02260', '02265', '02270', '02272', '02273', '02277', '02283', '02286', '02289', '02304', '02313', '02322', '02324', '02349', '02362', '02365', '02369', '02370', '02372', '02375', '02384', '02386', '02387', '02391', '02394', '02395', '02397', '02403', '02407', '02409', '02419', '02439', '02440', '02443', '02444', '02445', '02450', '02451', '02475', '02478', '02481', '02482', '02490', '02501', '02504', '02510', '02511', '02515', '02516', '02517', '02523', '02525', '02531', '02535', '02536', '02555', '02557', '02559', '02564', '02565', '02576', '02583', '02589', '02590', '02598', '02615', '02618', '02619', '02626', '02630', '02634', '02637', '02641', '02653', '02658', '02663', '02667', '02669', '02670', '02671', '02674', '02676', '02678', '02687', '02715', '02725', '02726', '02730', '02734', '02736', '02740', '02743', '02747', '02750', '02755', '02758', '02763', '02772', '02777', '02780', '02784', '02786', '02791', '02792', '02798', '02805', '02809', '02811', '02812', '02813', '02833', '02839', '02840', '02844', '02848', '02851', '02854', '02860', '02862', '02863', '02866', '02872', '02875', '02882', '02893', '02897', '02904', '02907', '02910', '02917', '02923', '02935', '02938', '02945', '02949', '02950', '02951', '02956', '02963', '02964', '02975', '02978', '02981', '02993', '02996', '02999', '03005', '03007', '03011', '03023', '03025', '03031', '03032', '03035', '03043', '03058', '03061', '03068', '03069', '03075', '03077', '03080', '03083', '03091', '03100', '03104', '03110', '03115', '03116', '03125', '03126', '03128', '03145', '03146', '03159', '03164', '03176', '03178', '03180', '03185', '03191', '03197', '03198', '03205', '03206', '03222', '03229', '03233', '03235', '03239', '03245', '03251', '03254', '03255', '03271', '03273', '03275', '03282', '03285', '03293', '03297', '03300', '03307', '03311', '03318', '03342', '03346', '03348', '03351', '03357', '03363', '03371', '03372', '03374', '03375', '03383', '03385', '03397', '03398', '03399', '03401', '03405', '03406', '03416', '03421', '03422', '03427', '03430', '03433', '03435', '03440', '03443', '03464', '03467', '03468', '03473', '03475', '03476', '03487', '03496', '03497', '03498', '03502', '03504', '03521', '03522', '03523', '03526', '03528', '03532', '03542', '03545', '03549', '03553', '03558', '03563', '03564', '03568', '03573', '03574', '03575', '03579', '03581', '03582', '03583', '03587', '03596', '03600', '03602', '03604', '03606', '03609', '03613', '03626', '03635', '03638', '03640', '03641', '03648', '03650', '03653', '03656', '03658', '03663', '03665', '03671', '03674', '03676', '03678', '03679', '03680', '03683', '03695', '03696', '03697', '03701', '03702', '03703', '03706', '03711', '03714', '03720', '03722', '03724', '03726', '03727', '03728', '03735', '03737', '03743', '03751', '03753', '03754', '03756', '03764', '03765', '03766', '03772', '03778', '03779', '03781', '03785', '03790', '03804', '03811', '03819', '03821', '03830', '03842', '03848', '03851', '03868', '03881', '03883', '03891', '03892', '03895', '03896', '03908', '03915', '03925', '03939', '03941', '03943', '03949', '03952', '03962', '03970', '03971', '03977', '03978', '03980', '03981', '03997', '04000', '04006', '04008', '04014', '04024', '04034', '04037', '04040', '04046', '04047', '04057', '04059', '04066', '04069', '04070', '04094', '04105', '04106', '04111', '04114', '04120', '04121', '04123', '04126', '04132', '04135', '04137', '04147', '04158', '04165', '04168', '04177', '04180', '04187', '04193', '04205', '04207', '04220', '04234', '04235', '04236', '04246', '04247', '04249', '04251', '04263', '04265', '04266', '04273', '04279', '04287', '04288', '04300', '04316', '04333', '04353', '04363', '04366', '04371', '04378', '04380', '04387', '04389', '04390', '04395', '04402', '04406', '04415', '04418', '04433', '04437', '04449', '04476', '04478', '04489', '04491', '04494', '04499', '04501', '04506', '04517', '04525', '04530', '04531', '04534', '04543', '04551', '04553', '04563', '04565', '04577', '04580', '04581', '04586', '04591', '04600', '04601', '04603', '04605', '04617', '04629', '04630', '04631', '04645', '04660', '04664', '04686', '04692', '04693', '04711', '04729', '04741', '04742', '04766', '04775', '04779', '04785', '04801', '04806', '04811', '04851', '04854', '04869', '04875', '04876', '04878', '04885', '04889', '04901', '04902', '04909', '04919', '04969', '04970', '04986', '04995', '04996', '04997', '04998', '05000', '05007', '05025', '05031', '05033', '05041', '05048', '05055', '05060', '05075', '05087', '05105', '05115', '05116', '05125', '05151', '05161', '05169', '05178', '05179', '05198', '05216', '05218', '05244', '05256', '05259', '05269', '05289', '05290', '05334', '05352', '05375', '05377', '05394', '05401', '05418', '05419', '05422', '05427', '05438', '05490', '05504', '05508', '05553', '05558', '05564', '05570', '05580', '05597', '05614', '05657', '05663', '05720', '05770', '05787', '05789', '05816', '05846', '05896', '05983', '06156', '06193', '06200', '06235', '06303', '06306', '06351', '06424', '06430', '06453', '06494', '06656', '06720', '06740', '06900', '06986']
do_not_send_list = do_not_send_list + ['04186', '06416', '06847', '06938', '06959', '07072']
return do_not_send_list
def pub_router_deposit_article_blacklist(workflow):
"""
Return list of do not send article DOI id
"""
if workflow == 'HEFCE':
article_blacklist = ['00003', '00005', '00007', '00011', '00013', '00031', '00047', '00048', '00049', '00051', '00065', '00067', '00068', '00070', '00078', '00090', '00093', '00102', '00109', '00117', '00171', '00173', '00181', '00184', '00205', '00240', '00242', '00243', '00248', '00270', '00281', '00286', '00301', '00302', '00311', '00326', '00340', '00347', '00351', '00352', '00353', '00365', '00385', '00386', '00387', '00475', '00012', '00036', '00105', '00116', '00133', '00160', '00170', '00178', '00183', '00190', '00218', '00220', '00230', '00231', '00247', '00260', '00269', '00278', '00288', '00290', '00291', '00299', '00306', '00308', '00312', '00321', '00324', '00327', '00329', '00333', '00334', '00336', '00337', '00348', '00354', '00358', '00362', '00367', '00378', '00380', '00400', '00411', '00415', '00421', '00422', '00425', '00426', '00429', '00435', '00444', '00450', '00452', '00458', '00459', '00461', '00467', '00471', '00473', '00476', '00477', '00481', '00482', '00488', '00491', '00498', '00499', '00505', '00508', '00515', '00518', '00522', '00523', '00533', '00534', '00537', '00542', '00558', '00563', '00565', '00569', '00571', '00572', '00573', '00577', '00592', '00593', '00594', '00603', '00605', '00615', '00625', '00626', '00631', '00632', '00633', '00638', '00639', '00640', '00641', '00642', '00646', '00647', '00648', '00654', '00655', '00658', '00659', '00663', '00666', '00668', '00669', '00672', '00675', '00676', '00683', '00691', '00692', '00699', '00704', '00708', '00710', '00712', '00723', '00726', '00729', '00731', '00736', '00744', '00745', '00747', '00750', '00757', '00759', '00762', '00767', '00768', '00772', '00776', '00778', '00780', '00782', '00785', '00790', '00791', '00792', '00799', '00800', '00801', '00802', '00804', '00806', '00808', '00813', '00822', '00824', '00825', '00828', '00842', '00844', '00845', '00855', '00856', '00857', '00861', '00862', '00863', '00866', '00868', '00873', '00882', '00884', '00886', '00895', '00899', '00903', '00905', '00914', '00924', '00926', '00932', '00933', '00940', '00943', '00947', '00948', '00951', '00953', '00954', '00958', '00960', '00961', '00963', '00966', '00967', '00969', '00971', '00983', '00992', '00994', '00996', '00999', '01004', '01008', '01009', '01020', '01029', '01030', '01042', '01045', '01061', '01064', '01067', '01071', '01074', '01084', '01085', '01086', '01089', '01096', '01098', '01102', '01104', '01108', '01114', '01115', '01119', '01120', '01123', '01127', '01133', '01135', '01136', '01138', '01139', '01140', '01149', '01157', '01159', '01160', '01169', '01179', '01180', '01197', '01202', '01206', '01211', '01213', '01214', '01221', '01222', '01228', '01229', '01233', '01234', '01236', '01252', '01256', '01270', '01273', '01279', '01287', '01289', '01291', '01293', '01294', '01295', '01296', '01298', '01299', '01305', '01312', '01319', '01323', '01326', '01328', '01339', '01340', '01341', '01345', '01350', '01387', '01388', '01402', '01403', '01414', '01426', '01428', '01456', '01462', '01469', '01482', '01494', '01501', '01503', '01514', '01515', '01516', '01519', '01541', '01557', '01561', '01574', '01587', '01597', '01599', '01605', '01608', '01633', '01658', '01662', '01663', '01680', '01700', '01710', '01738', '01749', '01760', '01779', '01809', '01816', '01820', '01839', '01845', '01873', '01893', '01926', '01968', '01979', '02094', '00590', '00662', '00829', '01201', '01239', '01257', '01267', '01308', '01310', '01311', '01322', '01355', '01369', '01370', '01374', '01381', '01385', '01386', '01412', '01433', '01434', '01438', '01439', '01440', '01457', '01460', '01465', '01473', '01479', '01481', '01483', '01488', '01489', '01496', '01498', '01524', '01530', '01535', '01539', '01566', '01567', '01569', '01579', '01581', '01584', '01596', '01603', '01604', '01607', '01610', '01612', '01621', '01623', '01630', '01632', '01637', '01641', '01659', '01671', '01681', '01684', '01694', '01695', '01699', '01715', '01724', '01730', '01739', '01741', '01751', '01754', '01763', '01775', '01776', '01808', '01812', '01817', '01828', '01831', '01832', '01833', '01834', '01846', '01849', '01856', '01857', '01861', '01867', '01879', '01883', '01888', '01892', '01901', '01906', '01911', '01913', '01914', '01916', '01917', '01928', '01936', '01939', '01944', '01948', '01949', '01958', '01963', '01964', '01967', '01977', '01982', '01990', '01993', '01998', '02001', '02008', '02009', '02020', '02024', '02025', '02028', '02030', '02040', '02041', '02042', '02043', '02046', '02053', '02057', '02061', '02062', '02069', '02076', '02077', '02078', '02087', '02088', '02104', '02105', '02109', '02112', '02115', '02130', '02131', '02137', '02148', '02151', '02152', '02164', '02171', '02172', '02181', '02184', '02189', '02190', '02196', '02199', '02200', '02203', '02206', '02208', '02217', '02218', '02224', '02230', '02236', '02238', '02242', '02245', '02252', '02257', '02260', '02265', '02270', '02272', '02273', '02277', '02283', '02286', '02289', '02304', '02313', '02322', '02324', '02349', '02362', '02365', '02369', '02370', '02372', '02375', '02384', '02386', '02387', '02391', '02394', '02395', '02397', '02403', '02407', '02409', '02419', '02439', '02440', '02443', '02444', '02445', '02450', '02451', '02475', '02478', '02481', '02482', '02490', '02501', '02504', '02510', '02511', '02515', '02516', '02517', '02523', '02525', '02531', '02535', '02536', '02555', '02557', '02559', '02564', '02565', '02576', '02583', '02589', '02590', '02598', '02615', '02618', '02619', '02626', '02630', '02634', '02637', '02641', '02653', '02658', '02663', '02667', '02669', '02670', '02671', '02674', '02676', '02678', '02687', '02715', '02725', '02726', '02730', '02734', '02736', '02740', '02743', '02747', '02750', '02755', '02758', '02763', '02772', '02777', '02780', '02784', '02786', '02791', '02792', '02798', '02805', '02809', '02811', '02812', '02813', '02833', '02839', '02840', '02844', '02848', '02851', '02854', '02860', '02862', '02863', '02866', '02869', '02872', '02875', '02882', '02893', '02897', '02904', '02907', '02910', '02917', '02923', '02935', '02938', '02945', '02949', '02950', '02951', '02956', '02963', '02964', '02975', '02978', '02981', '02993', '02996', '02999', '03005', '03007', '03011', '03023', '03025', '03031', '03032', '03035', '03043', '03058', '03061', '03068', '03069', '03075', '03077', '03080', '03083', '03091', '03100', '03104', '03110', '03115', '03116', '03125', '03126', '03128', '03145', '03146', '03159', '03164', '03176', '03178', '03180', '03185', '03191', '03197', '03198', '03205', '03206', '03222', '03229', '03233', '03235', '03239', '03245', '03251', '03254', '03255', '03271', '03273', '03275', '03282', '03285', '03293', '03297', '03300', '03307', '03311', '03318', '03342', '03346', '03348', '03351', '03357', '03363', '03371', '03372', '03374', '03375', '03383', '03385', '03397', '03398', '03399', '03401', '03405', '03406', '03416', '03421', '03422', '03427', '03430', '03433', '03435', '03440', '03443', '03445', '03464', '03467', '03468', '03473', '03475', '03476', '03487', '03496', '03497', '03498', '03502', '03504', '03521', '03522', '03523', '03526', '03528', '03532', '03542', '03545', '03549', '03553', '03558', '03563', '03564', '03568', '03573', '03574', '03575', '03579', '03581', '03582', '03583', '03587', '03596', '03600', '03602', '03604', '03606', '03609', '03613', '03626', '03635', '03638', '03640', '03641', '03648', '03650', '03653', '03656', '03658', '03663', '03665', '03671', '03674', '03676', '03678', '03679', '03680', '03683', '03695', '03696', '03697', '03701', '03702', '03703', '03706', '03711', '03714', '03720', '03722', '03724', '03726', '03727', '03728', '03735', '03737', '03743', '03751', '03753', '03754', '03756', '03764', '03765', '03766', '03772', '03778', '03779', '03781', '03785', '03790', '03804', '03811', '03819', '03821', '03830', '03842', '03848', '03851', '03868', '03881', '03883', '03891', '03892', '03895', '03896', '03908', '03915', '03925', '03939', '03941', '03943', '03949', '03952', '03962', '03970', '03971', '03977', '03978', '03980', '03981', '03997', '04000', '04006', '04008', '04014', '04024', '04034', '04037', '04040', '04046', '04047', '04057', '04059', '04066', '04069', '04070', '04094', '04105', '04106', '04111', '04114', '04120', '04121', '04123', '04126', '04132', '04135', '04137', '04147', '04158', '04165', '04168', '04177', '04180', '04187', '04193', '04205', '04207', '04220', '04234', '04235', '04236', '04246', '04247', '04249', '04251', '04263', '04265', '04266', '04273', '04279', '04287', '04288', '04300', '04316', '04333', '04353', '04363', '04366', '04371', '04378', '04380', '04387', '04389', '04390', '04395', '04402', '04406', '04407', '04415', '04418', '04433', '04437', '04449', '04476', '04478', '04489', '04491', '04494', '04499', '04501', '04506', '04517', '04525', '04530', '04531', '04534', '04543', '04551', '04553', '04563', '04565', '04577', '04580', '04581', '04586', '04591', '04600', '04601', '04603', '04605', '04617', '04629', '04630', '04631', '04645', '04660', '04664', '04686', '04692', '04693', '04711', '04729', '04741', '04742', '04766', '04775', '04779', '04785', '04801', '04806', '04811', '04851', '04854', '04869', '04875', '04876', '04878', '04885', '04889', '04901', '04902', '04909', '04919', '04969', '04970', '04986', '04995', '04996', '04997', '04998', '05000', '05007', '05025', '05031', '05033', '05041', '05048', '05055', '05060', '05075', '05087', '05105', '05115', '05116', '05125', '05151', '05161', '05169', '05178', '05179', '05198', '05216', '05218', '05244', '05256', '05259', '05269', '05289', '05290', '05334', '05352', '05375', '05377', '05394', '05401', '05418', '05419', '05422', '05427', '05438', '05490', '05504', '05508', '05553', '05558', '05564', '05570', '05580', '05597', '05614', '05657', '05663', '05720', '05770', '05787', '05789', '05816', '05846', '05896', '05983', '06156', '06193', '06200', '06235', '06303', '06306', '06351', '06424', '06430', '06453', '06494', '06656', '06720', '06740', '06900', '06986']
elif workflow == 'Cengage':
article_blacklist = ['00003', '00005', '00007', '00011', '00012', '00013', '00031', '00036', '00047', '00048', '00049', '00051', '00065', '00067', '00068', '00070', '00078', '00090', '00093', '00102', '00105', '00109', '00116', '00117', '00133', '00160', '00170', '00171', '00173', '00178', '00181', '00183', '00184', '00190', '00205', '00218', '00220', '00230', '00231', '00240', '00242', '00243', '00247', '00248', '00260', '00269', '00270', '00278', '00281', '00286', '00288', '00290', '00291', '00299', '00301', '00302', '00306', '00308', '00311', '00312', '00321', '00324', '00326', '00327', '00329', '00333', '00334', '00336', '00337', '00340', '00347', '00348', '00351', '00352', '00353', '00354', '00358', '00362', '00365', '00367', '00378', '00380', '00385', '00386', '00387', '00400', '00411', '00415', '00421', '00422', '00425', '00426', '00429', '00435', '00444', '00450', '00452', '00458', '00459', '00461', '00467', '00471', '00473', '00475', '00476', '00477', '00481', '00482', '00488', '00491', '00498', '00499', '00505', '00508', '00515', '00518', '00522', '00523', '00533', '00534', '00537', '00542', '00558', '00563', '00565', '00569', '00571', '00572', '00573', '00577', '00590', '00592', '00593', '00594', '00603', '00605', '00615', '00625', '00626', '00631', '00632', '00633', '00638', '00639', '00640', '00641', '00642', '00646', '00647', '00648', '00654', '00655', '00658', '00659', '00662', '00663', '00666', '00668', '00669', '00672', '00675', '00676', '00683', '00691', '00692', '00699', '00704', '00708', '00710', '00712', '00723', '00726', '00729', '00731', '00736', '00744', '00745', '00747', '00750', '00757', '00759', '00762', '00767', '00768', '00772', '00776', '00778', '00780', '00782', '00785', '00790', '00791', '00792', '00799', '00800', '00801', '00802', '00804', '00806', '00808', '00813', '00822', '00824', '00825', '00828', '00829', '00842', '00844', '00845', '00855', '00856', '00857', '00861', '00862', '00863', '00866', '00868', '00873', '00882', '00884', '00886', '00895', '00899', '00903', '00905', '00914', '00924', '00926', '00932', '00933', '00940', '00943', '00947', '00948', '00951', '00953', '00954', '00958', '00960', '00961', '00963', '00966', '00967', '00969', '00971', '00983', '00992', '00994', '00996', '00999', '01004', '01008', '01009', '01020', '01029', '01030', '01042', '01045', '01061', '01064', '01067', '01071', '01074', '01084', '01085', '01086', '01089', '01096', '01098', '01102', '01104', '01108', '01114', '01115', '01119', '01120', '01123', '01127', '01133', '01135', '01136', '01138', '01139', '01140', '01149', '01157', '01159', '01160', '01169', '01179', '01180', '01197', '01201', '01202', '01206', '01211', '01213', '01214', '01221', '01222', '01228', '01229', '01233', '01234', '01236', '01239', '01252', '01256', '01257', '01267', '01270', '01273', '01279', '01287', '01289', '01291', '01293', '01294', '01295', '01296', '01298', '01299', '01305', '01308', '01310', '01311', '01312', '01319', '01322', '01323', '01326', '01328', '01339', '01340', '01341', '01345', '01350', '01355', '01369', '01370', '01374', '01381', '01385', '01386', '01387', '01388', '01402', '01403', '01412', '01414', '01426', '01428', '01433', '01434', '01438', '01439', '01440', '01456', '01457', '01460', '01462', '01465', '01469', '01473', '01479', '01481', '01482', '01483', '01488', '01489', '01494', '01496', '01498', '01501', '01503', '01514', '01515', '01516', '01519', '01524', '01530', '01535', '01539', '01541', '01557', '01561', '01566', '01567', '01569', '01574', '01579', '01581', '01584', '01587', '01596', '01597', '01599', '01603', '01604', '01605', '01607', '01608', '01610', '01612', '01621', '01623', '01630', '01632', '01633', '01637', '01641', '01658', '01659', '01662', '01663', '01671', '01680', '01681', '01684', '01694', '01695', '01699', '01700', '01710', '01715', '01724', '01730', '01738', '01739', '01741', '01749', '01751', '01754', '01760', '01763', '01775', '01776', '01779', '01808', '01809', '01812', '01816', '01817', '01820', '01828', '01831', '01832', '01833', '01834', '01839', '01845', '01846', '01849', '01856', '01857', '01861', '01867', '01873', '01879', '01883', '01888', '01892', '01893', '01901', '01906', '01911', '01913', '01914', '01916', '01917', '01926', '01928', '01936', '01939', '01944', '01948', '01949', '01958', '01963', '01964', '01967', '01968', '01977', '01979', '01982', '01990', '01993', '01998', '02001', '02008', '02009', '02020', '02024', '02025', '02028', '02030', '02040', '02041', '02042', '02043', '02046', '02053', '02057', '02061', '02062', '02069', '02076', '02077', '02078', '02087', '02088', '02094', '02104', '02105', '02109', '02112', '02115', '02130', '02131', '02137', '02148', '02151', '02152', '02164', '02171', '02172', '02181', '02184', '02189', '02190', '02196', '02199', '02200', '02203', '02206', '02208', '02217', '02218', '02224', '02230', '02236', '02238', '02242', '02245', '02252', '02257', '02260', '02265', '02270', '02272', '02273', '02277', '02283', '02286', '02289', '02304', '02313', '02322', '02324', '02349', '02362', '02365', '02369', '02370', '02372', '02375', '02384', '02386', '02387', '02391', '02394', '02395', '02397', '02403', '02407', '02409', '02419', '02439', '02440', '02443', '02444', '02445', '02450', '02451', '02475', '02478', '02481', '02482', '02490', '02501', '02504', '02510', '02511', '02515', '02516', '02517', '02523', '02525', '02531', '02535', '02536', '02555', '02557', '02559', '02564', '02565', '02576', '02583', '02589', '02590', '02598', '02615', '02618', '02619', '02626', '02630', '02634', '02637', '02641', '02653', '02658', '02663', '02667', '02669', '02670', '02671', '02674', '02676', '02678', '02687', '02715', '02725', '02726', '02730', '02734', '02736', '02740', '02743', '02747', '02750', '02755', '02758', '02763', '02772', '02777', '02780', '02784', '02786', '02791', '02792', '02798', '02805', '02809', '02811', '02812', '02813', '02833', '02839', '02840', '02844', '02848', '02851', '02854', '02860', '02862', '02863', '02866', '02869', '02872', '02875', '02882', '02893', '02897', '02904', '02907', '02910', '02917', '02923', '02935', '02938', '02945', '02948', '02949', '02950', '02951', '02956', '02963', '02964', '02975', '02978', '02981', '02993', '02996', '02999', '03005', '03007', '03011', '03023', '03025', '03031', '03032', '03035', '03043', '03058', '03061', '03068', '03069', '03075', '03077', '03080', '03083', '03091', '03100', '03104', '03110', '03115', '03116', '03125', '03126', '03128', '03145', '03146', '03159', '03164', '03176', '03178', '03180', '03185', '03189', '03191', '03197', '03198', '03205', '03206', '03222', '03229', '03233', '03235', '03239', '03245', '03251', '03254', '03255', '03256', '03270', '03271', '03273', '03275', '03282', '03285', '03293', '03297', '03300', '03307', '03311', '03318', '03342', '03346', '03348', '03351', '03357', '03363', '03371', '03372', '03374', '03375', '03383', '03385', '03397', '03398', '03399', '03401', '03405', '03406', '03416', '03421', '03422', '03427', '03430', '03433', '03435', '03440', '03443', '03445', '03464', '03467', '03468', '03473', '03475', '03476', '03487', '03496', '03497', '03498', '03502', '03504', '03521', '03522', '03523', '03526', '03528', '03532', '03542', '03545', '03549', '03553', '03558', '03563', '03564', '03568', '03573', '03574', '03575', '03579', '03581', '03582', '03583', '03587', '03596', '03600', '03602', '03604', '03606', '03609', '03613', '03614', '03626', '03635', '03638', '03640', '03641', '03648', '03650', '03653', '03656', '03658', '03663', '03665', '03671', '03674', '03676', '03678', '03679', '03680', '03683', '03695', '03696', '03697', '03701', '03702', '03703', '03706', '03711', '03714', '03720', '03722', '03724', '03726', '03727', '03728', '03735', '03737', '03743', '03751', '03753', '03754', '03756', '03764', '03765', '03766', '03772', '03778', '03779', '03781', '03785', '03790', '03804', '03811', '03819', '03821', '03830', '03842', '03848', '03851', '03868', '03881', '03883', '03891', '03892', '03895', '03896', '03908', '03915', '03925', '03939', '03941', '03943', '03949', '03952', '03962', '03970', '03971', '03977', '03978', '03980', '03981', '03997', '04000', '04006', '04008', '04014', '04024', '04034', '04037', '04040', '04046', '04047', '04052', '04057', '04059', '04066', '04069', '04070', '04094', '04105', '04106', '04111', '04114', '04120', '04121', '04123', '04126', '04132', '04135', '04137', '04147', '04158', '04165', '04168', '04177', '04180', '04186', '04187', '04193', '04205', '04207', '04220', '04232', '04234', '04235', '04236', '04246', '04247', '04249', '04251', '04260', '04263', '04265', '04266', '04273', '04279', '04287', '04288', '04300', '04316', '04333', '04346', '04353', '04363', '04366', '04371', '04378', '04379', '04380', '04387', '04389', '04390', '04395', '04402', '04406', '04407', '04415', '04418', '04433', '04437', '04449', '04463', '04476', '04478', '04489', '04490', '04491', '04494', '04499', '04501', '04506', '04517', '04525', '04530', '04531', '04534', '04535', '04543', '04550', '04551', '04553', '04563', '04565', '04577', '04580', '04581', '04585', '04586', '04591', '04599', '04600', '04601', '04603', '04605', '04617', '04629', '04630', '04631', '04634', '04645', '04660', '04664', '04686', '04692', '04693', '04711', '04726', '04729', '04741', '04742', '04766', '04775', '04779', '04785', '04790', '04801', '04803', '04806', '04811', '04837', '04851', '04854', '04869', '04871', '04872', '04875', '04876', '04878', '04883', '04885', '04889', '04901', '04902', '04909', '04919', '04940', '04953', '04960', '04969', '04970', '04979', '04986', '04995', '04996', '04997', '04998', '05000', '05003', '05007', '05025', '05031', '05033', '05041', '05042', '05048', '05055', '05060', '05075', '05087', '05098', '05105', '05115', '05116', '05118', '05125', '05151', '05154', '05161', '05165', '05166', '05169', '05178', '05179', '05198', '05216', '05218', '05224', '05242', '05244', '05256', '05259', '05269', '05279', '05289', '05290', '05291', '05334', '05338', '05352', '05375', '05377', '05378', '05394', '05401', '05413', '05418', '05419', '05421', '05422', '05423', '05427', '05438', '05447', '05449', '05457', '05463', '05464', '05472', '05477', '05490', '05491', '05503', '05504', '05508', '05534', '05544', '05553', '05557', '05558', '05560', '05564', '05570', '05580', '05597', '05604', '05606', '05608', '05614', '05635', '05657', '05663', '05701', '05720', '05733', '05770', '05787', '05789', '05808', '05816', '05826', '05835', '05846', '05849', '05861', '05868', '05871', '05875', '05896', '05899', '05959', '05983', '06003', '06024', '06034', '06054', '06068', '06074', '06100', '06132', '06156', '06166', '06179', '06184', '06193', '06200', '06235', '06250', '06303', '06306', '06346', '06351', '06369', '06380', '06400', '06412', '06424', '06430', '06453', '06494', '06536', '06557', '06565', '06633', '06656', '06717', '06720', '06740', '06758', '06782', '06808', '06837', '06877', '06883', '06900', '06956', '06986', '06995', '07074', '07083', '07108', '07157', '07204', '07239', '07322', '07364', '07390', '07431', '07482', '07527', '07532', '07586', '07604']
elif workflow == 'GoOA':
article_blacklist = []
else:
article_blacklist = []
return article_blacklist |
class JSONDL(object):
def __init__(self, jsondl_url=None, jsondl_data=None):
pass
def __attrMethod(self, method):
class MethodCaller(object):
#TODO: This implementation is horrible improve both code and apijson
def __init__(self, ssp_instance, method):
self.ssp_instance = ssp_instance
api_instance = self.ssp_instance.api
self.method = method
self.data = dict([('request', dict()),
('response', dict())])
requestparams = self.method.get('def').get('params')
responsetype = self.method.get('def').get('returnType').get('type')
types = api_instance[self.method['src']].get('types')
requesttypes = [t.get('type').get('type') for t in requestparams]
# annotationtypes = [t.get('type').get('type') for t in [a.get('annotations') for a in requesttypes][0]]
for _type in types:
if _type == responsetype:
self.data['response'] = json.loads(types[_type])
if _type in requesttypes:
self.data['request'] = json.loads(types[_type])
# TODO: BUG: not in types definition
# if _type in annotationtypes:
# print "annotation"
# print types[_type]
mappingkey = 'org.springframework.web.bind.annotation.RequestMapping'
self.requestMapping = self.method.get('def').get('annotations').get(mappingkey)
def __call__(self, kwargs={}):
request_json = dict()
#### Validation
type_mapping = {'string': str,
'boolean': bool,
'string': str,
'null': None,
'integer': int,
'character': chr,
'double': long,
'float': float,
'complex': complex}
properties = self.data['request'].get('properties')
if properties is not None:
for prop in properties:
# if kwargs.get(prop, False) != False:
# if type_mapping[properties[prop].get('type')] == type(kwargs[prop]):
# print "right type %s" % type(kwargs[prop])
# else:
# print "wrong type %s expected %s" % (type(kwargs[prop]),properties[prop].get('type'))
request_json[prop] = kwargs.get(prop, None)
#TODO: make a validation log with properties
method = self.requestMapping.get('properties').get('method')[0]
path = self.requestMapping.get('properties').get('value')[0]
#Query String builder
for key in request_json.keys():
if key in path:
path = path.replace('{'+key+'}', str(kwargs[key]))
# print path
response = http.http_send(method,
self.ssp_instance.get_proxy(path),
self.ssp_instance.headers,
json.dumps(request_json),
None)
return response
return MethodCaller(self, method)
def __getattr__(self, attr):
method = self.api_methods.get(attr, None)
if method is not None:
return self.__attrMethod(method)
else:
emsg = "%s object has no attribute '%s'" % (self.__class__.__name__,
attr)
raise AttributeError(emsg)
| class Jsondl(object):
def __init__(self, jsondl_url=None, jsondl_data=None):
pass
def __attr_method(self, method):
class Methodcaller(object):
def __init__(self, ssp_instance, method):
self.ssp_instance = ssp_instance
api_instance = self.ssp_instance.api
self.method = method
self.data = dict([('request', dict()), ('response', dict())])
requestparams = self.method.get('def').get('params')
responsetype = self.method.get('def').get('returnType').get('type')
types = api_instance[self.method['src']].get('types')
requesttypes = [t.get('type').get('type') for t in requestparams]
for _type in types:
if _type == responsetype:
self.data['response'] = json.loads(types[_type])
if _type in requesttypes:
self.data['request'] = json.loads(types[_type])
mappingkey = 'org.springframework.web.bind.annotation.RequestMapping'
self.requestMapping = self.method.get('def').get('annotations').get(mappingkey)
def __call__(self, kwargs={}):
request_json = dict()
type_mapping = {'string': str, 'boolean': bool, 'string': str, 'null': None, 'integer': int, 'character': chr, 'double': long, 'float': float, 'complex': complex}
properties = self.data['request'].get('properties')
if properties is not None:
for prop in properties:
request_json[prop] = kwargs.get(prop, None)
method = self.requestMapping.get('properties').get('method')[0]
path = self.requestMapping.get('properties').get('value')[0]
for key in request_json.keys():
if key in path:
path = path.replace('{' + key + '}', str(kwargs[key]))
response = http.http_send(method, self.ssp_instance.get_proxy(path), self.ssp_instance.headers, json.dumps(request_json), None)
return response
return method_caller(self, method)
def __getattr__(self, attr):
method = self.api_methods.get(attr, None)
if method is not None:
return self.__attrMethod(method)
else:
emsg = "%s object has no attribute '%s'" % (self.__class__.__name__, attr)
raise attribute_error(emsg) |
f = open("input", "r").read()
f = f[:-1] # remove trailing char
floor = 0
position = 1
entered_basement = False
for i in f:
if i == '(':
floor = floor + 1
else:
floor = floor - 1
if (floor < 0) and (entered_basement == False):
print('entering basement on move ' + str(position))
entered_basement = True
position = position + 1
print(floor) | f = open('input', 'r').read()
f = f[:-1]
floor = 0
position = 1
entered_basement = False
for i in f:
if i == '(':
floor = floor + 1
else:
floor = floor - 1
if floor < 0 and entered_basement == False:
print('entering basement on move ' + str(position))
entered_basement = True
position = position + 1
print(floor) |
def generate_instance_identity_document(instance):
return {
"instanceId": instance.id,
}
| def generate_instance_identity_document(instance):
return {'instanceId': instance.id} |
# iterating over a list
print('-- list --')
a = [1,2,3,4,5]
for x in a:
print(x)
# iterating over a tuple
print('-- tuple --')
a = ('cats','dogs','squirrels')
for x in a:
print(x)
# iterating over a dictionary
# sort order in python is undefined, so need to sort the results
# explictly before comparing output
print('-- dict keys --')
a = {'a':1,'b':2,'c':3 }
keys = []
for x in a.keys():
keys.append(x)
keys.sort()
for k in keys:
print(k)
print('-- dict values --')
values = list()
for v in a.values():
values.append(v)
values.sort()
for v in values:
print(v)
items = dict()
for k, v in a.items():
items[k] = v
print('-- dict item --')
print(items['a'])
print(items['b'])
print(items['c'])
# iterating over a string
print('-- string --')
a = 'defabc'
for x in a:
print(x)
| print('-- list --')
a = [1, 2, 3, 4, 5]
for x in a:
print(x)
print('-- tuple --')
a = ('cats', 'dogs', 'squirrels')
for x in a:
print(x)
print('-- dict keys --')
a = {'a': 1, 'b': 2, 'c': 3}
keys = []
for x in a.keys():
keys.append(x)
keys.sort()
for k in keys:
print(k)
print('-- dict values --')
values = list()
for v in a.values():
values.append(v)
values.sort()
for v in values:
print(v)
items = dict()
for (k, v) in a.items():
items[k] = v
print('-- dict item --')
print(items['a'])
print(items['b'])
print(items['c'])
print('-- string --')
a = 'defabc'
for x in a:
print(x) |
def _get_combined_method(method_list):
def new_func(*args, **kwargs):
[m(*args, **kwargs) for m in method_list]
return new_func
def component_method(func):
""" method decorator """
func._is_component_method = True
return func
class Component(object):
""" data descriptor """
_is_component = True
def __init__(self):
self._cache = {} # id(instance) -> component obj
def __get__(self, instance, owner):
if instance is None:
return self
else:
return self._cache.get(id(instance), None)
def __set__(self, instance, value):
self._cache[id(instance)] = value
self._refresh_component_methods(instance)
def __delete__(self, instance):
# delete this instance from the cache
del(self._cache[id(instance)])
self._refresh_component_methods(instance)
def _refresh_component_methods(self, instance):
icls = instance.__class__
# get all components defined in instance cls
components = []
for attr in dir(icls):
obj = getattr(icls, attr)
if getattr(obj, '_is_component', False):
comp = getattr(instance, attr, None)
if comp is not None:
components.append(comp)
# clear all of the current instance _component_methods
icms = getattr(instance, '_instance_component_methods', [])
for meth in icms:
delattr(instance, meth)
# generate new set of instance component methods
icms = {}
for c in components:
ccls = c.__class__
for attr in dir(ccls):
obj = getattr(ccls, attr)
if getattr(obj, '_is_component_method', False):
if attr not in icms:
icms[attr] = []
icms[attr].append(getattr(c, attr))
# also maintain the instance's class original functionality
for attr, meths in list(icms.items()):
obj = getattr(icls, attr, None)
if obj is not None:
if callable(obj):
icms[attr].insert(0, getattr(instance, attr))
else:
raise ValueError("Component method overrides attribute!")
# assign the methods to the instance
for attr, meths in list(icms.items()):
if len(meths) == 1:
setattr(instance, attr, icms[attr][0])
else:
setattr(instance, attr, _get_combined_method(meths))
# write all of the assigned methods in a list so we know which ones to
# remove later
instance._instance_component_methods = list(icms.keys())
if __name__ == "__main__":
class Robot(object):
firmware = Component()
arm = Component()
def power_on(self):
print('Robot.power_on')
def kill_all_humans(self):
""" demonstrates a method that components didn't take over """
print('Robot.kill_all_humans')
class RobotFW(object):
@component_method
def power_on(self):
print('RobotFW.power_on')
self.power_on_checks()
def power_on_checks(self):
""" demonstrates object encapsulation of methods """
print('RobotFW.power_on_checks')
class UpgradedRobotFW(RobotFW):
""" demonstrates inheritance of components possible """
@component_method
def laser_eyes(self, wattage):
print("UpgradedRobotFW.laser_eyes(%d)" % wattage)
class RobotArm(object):
@component_method
def power_on(self):
print('RobotArm.power_on')
@component_method
def bend_girder(self):
print('RobotArm.bend_girder')
r = Robot()
print(dir(r))
r.power_on()
print('-'*20 + '\n')
r.firmware = RobotFW()
print(dir(r))
r.power_on()
print('-'*20 + '\n')
print("try to bend girder (demonstrating adding a component)")
try:
r.bend_girder()
except AttributeError:
print("Could not bend girder (I have no arms)")
print("adding an arm...")
r.arm = RobotArm()
print("try to bend girder")
r.bend_girder()
print(dir(r))
print('-'*20 + '\n')
print("upgrading firmware (demonstrating inheritance)")
r.firmware = UpgradedRobotFW()
r.power_on()
r.laser_eyes(300)
del(r.firmware)
try:
r.laser_eyes(300)
except AttributeError:
print("I don't have laser eyes!")
| def _get_combined_method(method_list):
def new_func(*args, **kwargs):
[m(*args, **kwargs) for m in method_list]
return new_func
def component_method(func):
""" method decorator """
func._is_component_method = True
return func
class Component(object):
""" data descriptor """
_is_component = True
def __init__(self):
self._cache = {}
def __get__(self, instance, owner):
if instance is None:
return self
else:
return self._cache.get(id(instance), None)
def __set__(self, instance, value):
self._cache[id(instance)] = value
self._refresh_component_methods(instance)
def __delete__(self, instance):
del self._cache[id(instance)]
self._refresh_component_methods(instance)
def _refresh_component_methods(self, instance):
icls = instance.__class__
components = []
for attr in dir(icls):
obj = getattr(icls, attr)
if getattr(obj, '_is_component', False):
comp = getattr(instance, attr, None)
if comp is not None:
components.append(comp)
icms = getattr(instance, '_instance_component_methods', [])
for meth in icms:
delattr(instance, meth)
icms = {}
for c in components:
ccls = c.__class__
for attr in dir(ccls):
obj = getattr(ccls, attr)
if getattr(obj, '_is_component_method', False):
if attr not in icms:
icms[attr] = []
icms[attr].append(getattr(c, attr))
for (attr, meths) in list(icms.items()):
obj = getattr(icls, attr, None)
if obj is not None:
if callable(obj):
icms[attr].insert(0, getattr(instance, attr))
else:
raise value_error('Component method overrides attribute!')
for (attr, meths) in list(icms.items()):
if len(meths) == 1:
setattr(instance, attr, icms[attr][0])
else:
setattr(instance, attr, _get_combined_method(meths))
instance._instance_component_methods = list(icms.keys())
if __name__ == '__main__':
class Robot(object):
firmware = component()
arm = component()
def power_on(self):
print('Robot.power_on')
def kill_all_humans(self):
""" demonstrates a method that components didn't take over """
print('Robot.kill_all_humans')
class Robotfw(object):
@component_method
def power_on(self):
print('RobotFW.power_on')
self.power_on_checks()
def power_on_checks(self):
""" demonstrates object encapsulation of methods """
print('RobotFW.power_on_checks')
class Upgradedrobotfw(RobotFW):
""" demonstrates inheritance of components possible """
@component_method
def laser_eyes(self, wattage):
print('UpgradedRobotFW.laser_eyes(%d)' % wattage)
class Robotarm(object):
@component_method
def power_on(self):
print('RobotArm.power_on')
@component_method
def bend_girder(self):
print('RobotArm.bend_girder')
r = robot()
print(dir(r))
r.power_on()
print('-' * 20 + '\n')
r.firmware = robot_fw()
print(dir(r))
r.power_on()
print('-' * 20 + '\n')
print('try to bend girder (demonstrating adding a component)')
try:
r.bend_girder()
except AttributeError:
print('Could not bend girder (I have no arms)')
print('adding an arm...')
r.arm = robot_arm()
print('try to bend girder')
r.bend_girder()
print(dir(r))
print('-' * 20 + '\n')
print('upgrading firmware (demonstrating inheritance)')
r.firmware = upgraded_robot_fw()
r.power_on()
r.laser_eyes(300)
del r.firmware
try:
r.laser_eyes(300)
except AttributeError:
print("I don't have laser eyes!") |
# Se define la clase "piso" con 4 atributos
class piso():
numero = 0
escalera = ''
ventanas = 0
cuartos = 0
# Se le da la funcion "timbre" a cada piso
def timbre(self):
print("ding dong")
# __init__ se usa para "llenar" los 4 atributos preestablecidos
def __init__(self, numero, ventanas, escaleras, cuartos):
self.numero = numero
self.ventanas = ventanas
self.escaleras = escaleras
self.cuartos = cuartos
class planta_baja(piso):
puerta_principal = True
# Se da un override del timbre para la "planta_baja"
def timbre(self):
print("bzzzzzp")
class azotea(piso):
antena = True
# Se da un override del timbre para la "azotea"
def timbre(self):
print("Fuera de servicio")
primer_piso = piso(2,"si",4,2)
cuarto_visitas = planta_baja(1,4,"si",1)
segundo_piso = azotea(3,0,"no",0)
cuarto_visitas.timbre() | class Piso:
numero = 0
escalera = ''
ventanas = 0
cuartos = 0
def timbre(self):
print('ding dong')
def __init__(self, numero, ventanas, escaleras, cuartos):
self.numero = numero
self.ventanas = ventanas
self.escaleras = escaleras
self.cuartos = cuartos
class Planta_Baja(piso):
puerta_principal = True
def timbre(self):
print('bzzzzzp')
class Azotea(piso):
antena = True
def timbre(self):
print('Fuera de servicio')
primer_piso = piso(2, 'si', 4, 2)
cuarto_visitas = planta_baja(1, 4, 'si', 1)
segundo_piso = azotea(3, 0, 'no', 0)
cuarto_visitas.timbre() |
'''
Blockchain Backup version.
Copyright 2020-2022 DeNova
Last modified: 2022-02-01
'''
CURRENT_VERSION = '1.3.5'
| """
Blockchain Backup version.
Copyright 2020-2022 DeNova
Last modified: 2022-02-01
"""
current_version = '1.3.5' |
for i in range(1, 5):
print(" "*(4-i), end="")
for j in range(1, 2*i):
print("*", end="")
print()
for i in range(1, 4):
print(" "*(i), end="")
for j in range(7-2*i):
print("*", end="")
print()
| for i in range(1, 5):
print(' ' * (4 - i), end='')
for j in range(1, 2 * i):
print('*', end='')
print()
for i in range(1, 4):
print(' ' * i, end='')
for j in range(7 - 2 * i):
print('*', end='')
print() |
class Lint:
def __init__(self, file):
pass
| class Lint:
def __init__(self, file):
pass |
def sort(keys):
_sort(keys, 0, len(keys)-1, 0)
def _sort(keys, lo, hi, start):
if hi <= lo:
return
lt = lo
gt = hi
v = get_r(keys[lt], start)
i = lt + 1
while i <= gt:
c = get_r(keys[i], start)
if c < v:
keys[lt], keys[i] = keys[i], keys[lt]
lt += 1
i += 1
elif c > v:
keys[i], keys[gt] = keys[gt], keys[i]
gt -= 1
else:
i += 1
_sort(keys, lo, lt-1, start)
if v >= 0:
_sort(keys, lt, gt, start+1)
_sort(keys, gt+1, hi, start)
def get_r(key, i):
if i < len(key):
return ord(key[i])
return -1
if __name__ == '__main__':
keys = [
'she',
'sells',
'seashells',
'by',
'the',
'seashore',
'the',
'shells',
'she',
'sells',
'are',
'surely',
'seashells',
]
expected = sorted(keys[:])
assert keys != expected
sort(keys)
assert keys == expected
| def sort(keys):
_sort(keys, 0, len(keys) - 1, 0)
def _sort(keys, lo, hi, start):
if hi <= lo:
return
lt = lo
gt = hi
v = get_r(keys[lt], start)
i = lt + 1
while i <= gt:
c = get_r(keys[i], start)
if c < v:
(keys[lt], keys[i]) = (keys[i], keys[lt])
lt += 1
i += 1
elif c > v:
(keys[i], keys[gt]) = (keys[gt], keys[i])
gt -= 1
else:
i += 1
_sort(keys, lo, lt - 1, start)
if v >= 0:
_sort(keys, lt, gt, start + 1)
_sort(keys, gt + 1, hi, start)
def get_r(key, i):
if i < len(key):
return ord(key[i])
return -1
if __name__ == '__main__':
keys = ['she', 'sells', 'seashells', 'by', 'the', 'seashore', 'the', 'shells', 'she', 'sells', 'are', 'surely', 'seashells']
expected = sorted(keys[:])
assert keys != expected
sort(keys)
assert keys == expected |
#!/usr/bin/python
#coding = utf-8
class average:
"""
This is the base class of average. Inherit from this class will make
attribute into the average version.
"""
def __init__(self,numberOfSamplesNum):
self.numberOfSamples = numberOfSamplesNum
def setNumberOfSamples(self,numberOfSamplesNum):
self.numberOfSamples = numberOfSamplesNum
| class Average:
"""
This is the base class of average. Inherit from this class will make
attribute into the average version.
"""
def __init__(self, numberOfSamplesNum):
self.numberOfSamples = numberOfSamplesNum
def set_number_of_samples(self, numberOfSamplesNum):
self.numberOfSamples = numberOfSamplesNum |
c = get_config()
# Add users here that are allowed admin access to JupyterHub.
c.Authenticator.admin_users = ["instructor1"]
# Add users here that are allowed to login to JupyterHub.
c.Authenticator.whitelist = [
"instructor1", "instructor2", "student1", "student2", "student3"
]
| c = get_config()
c.Authenticator.admin_users = ['instructor1']
c.Authenticator.whitelist = ['instructor1', 'instructor2', 'student1', 'student2', 'student3'] |
# -*- coding: utf-8 -*-
HOST = '0.0.0.0'
PORT = 4999
DEBUG = 'true'
APP_NAME = 'DingDing'
DOMAIN = 'https://oapi.dingtalk.com/'
| host = '0.0.0.0'
port = 4999
debug = 'true'
app_name = 'DingDing'
domain = 'https://oapi.dingtalk.com/' |
class Movie:
def __init__(self, movie_id, category, title, genres, year, minutes, language, actors, director, imdb):
self.id = movie_id
self.category = category
self.title = title
self.genres = genres
self.year = year
self.minutes = minutes
self.language = language
self.actors = actors
self.director = director
self.imdb = imdb
def as_dict(self):
return vars(self)
| class Movie:
def __init__(self, movie_id, category, title, genres, year, minutes, language, actors, director, imdb):
self.id = movie_id
self.category = category
self.title = title
self.genres = genres
self.year = year
self.minutes = minutes
self.language = language
self.actors = actors
self.director = director
self.imdb = imdb
def as_dict(self):
return vars(self) |
#!/usr/bin/env python3
operations = {
'a': lambda a, b : a+b,
's': lambda a, b : a-b,
'm': lambda a, b : a*b,
'd': lambda a, b : a/b,
}
data = [
['a', 4, 5],
['d', 0, 3],
['m', 4, 8],
['s', 1, 4],
]
[el.append(operations[el[0]](el[1], el[2])) for el in data]
[print(el) for el in data]
| operations = {'a': lambda a, b: a + b, 's': lambda a, b: a - b, 'm': lambda a, b: a * b, 'd': lambda a, b: a / b}
data = [['a', 4, 5], ['d', 0, 3], ['m', 4, 8], ['s', 1, 4]]
[el.append(operations[el[0]](el[1], el[2])) for el in data]
[print(el) for el in data] |
# -*- coding: utf-8 -*-
__version__ = '3.0.0'
__description__ = 'Password generator to generate a password based\
on the specified pattern.'
__author__ = 'rgb-24bit'
__author_email__ = 'rgb-24bit@foxmail.com'
__license__ = 'MIT'
__copyright__ = 'Copyright 2018 - 2019 rgb-24bit'
| __version__ = '3.0.0'
__description__ = 'Password generator to generate a password basedon the specified pattern.'
__author__ = 'rgb-24bit'
__author_email__ = 'rgb-24bit@foxmail.com'
__license__ = 'MIT'
__copyright__ = 'Copyright 2018 - 2019 rgb-24bit' |
class C2:
pass
class C3:
pass
class C1(C2, C3):
print("passing")
class C1(C2, C3):
"""
If a class wants to guarantee that an attribute like name is always set in its instances,
it more typically will fill out the attribute at construction time, like this:
"""
def __init__(self, who): # Set name when constructed
self.name = who
I1 = C1("bob")
I2 = C1("mel")
print(I1.name, I2.name)
"""
The __init__ method is known as the constructor because of when it is run. It's the most commonly
used representative of a larger class of methods called operator overloading methods,
"""
""" The definition of operator overloading methods:
Such methods are inherited in class trees as usual and have double underscores at the start and end
of their names to make them distinct. Python runs them automatically when instances that support them
appear in the corresponding operations, and they are mostly an alternative to using simple method calls.
They're also optional: if omitted, the operations are not supported.
pattern: __xxxx__
"""
class test:
def __init__(self, x, y):
self.x = x
self.y = y
def __setattr__(self, name, value):
#self.name1 = name1
#self.name2 = name2
self.__dict__[name] = value
object.__setattr__(self, name, value)
object.__init__
return self.__dict__[name]#, object.name
t1 = test(3,5)
t1.z = 23
print(t1.x, t1.y, t1.z)
print(dir(object.__setattr__))
"""
As an example, suppose you're assigned the task of implementing an employee database application.
As a Python OOP programmer, you might begin by coding a general superclass that defines default
behavior common to all the kinds of employees in your organization:
"""
class Employee: # General superclass
def computeSalary(self): # Common or default behavior
pass
def giveRaise(self):
pass
def promote(self):
pass
def retire(self):
pass
"""
That is, you can code subclasses that customize just the bits of behavior that differ per employee type
the rest of the employee types' behavior will be inherited from the more general class. For example,
if engineers have a unique salary computation rule(i.e., not hours times rate), you can replace just that
one method in a subclass.
"""
class Engineer(Employee):
def computeSalary(self):
pass
"""
Because the computeSalary version here appears lower in the class tree, it will replace (override) the general
verison in Employee. You then create instances of the kinds of employee classes that the real employees belong to,
to get the correct behavior.
"""
bob = Employee()
mel = Engineer()
"""
when you later ask for these employees' salaries, they will be computed according to the classes from which the
objects were made, due to the principles of the inheritance search
"""
company = [bob, mel] # A composite object
for emp in company:
print(emp.computeSalary()) # Run this object's version
"""
This is yet another instance of the idea of polymorphism introduced in Chapter 4 and revisited in Chapter 16.
Recall that polymorphism means that the meaning of an operation depends on the object being
operated on. Here, the method computeSalary is located by inheritance search in each object before it is called.
In other applications, polymorphism might also be used to hide(i.e., encapsulate) interface differences. For example,
a program that processes data streams might be coded to expect objects with input and output methods, without caring
what those methods actually do:
"""
def processor(reader, converter, writer):
while 1:
data = reader.read()
if not data: break
data = converter(data)
writer.write(data)
class Reader:
def read(self): pass # Default behavior and tools
def other(self): pass
class FileReader(Reader):
def read(self): pass # Read from a local file
class SocketReader(Reader):
def read(self): pass # Read from a network socket
#processor(FileReader(), Converter, FileWriter())
#processor(SocketReader(), Converter, TapeWriter())
#proceesor(FtpReader(), Converter, XmlWriter())
"""
Inheritance hierarchy
Note that company list in this example could be stored in a file with Python object pickling, introduced
in Chapter 9 when we met files, to yield a persistent employee database. Python also comes with a module
named shelve, which would allow you to store the pickled representation of the class instances in an access-
by-key filesystem; the third-party open source ZODB system does the same but has better support for production-
quality object-oriented databases.
"""
"""
Programming in such an OOP world is just a matter of combining and specializing already debugged code by writing
subclasses of your own
"""
"""
Objects at the bottom of the tree inherit attributes from objects higher up in the tree-a feature that enables us to
program by customizing code, rather than changing it, or starting from scratch.
"""
"""
2. Where does an inheritance search look for an attribute?
An inheritance search looks for an attribute first in the instance object, then in the class the instance was created
from, then in all higher superclasses, progressing from the bottom to the top of the object
tree, and from left to right (by default). The search stops at the first place the attribute is found. Because the lowest
version of a name found along the way wins, class hiearchies naturally support customization by extension.
3. What is the difference between a class object and an instance object?
Both class and instance objects are namespace(package of variablee that appear as attributes). The main difference between
is that classes are a kind of factory for creating multiple instances. Classes also support operator overloading methods,
which instances inherit, and treat any functions nested within them as special methods for processing instances.
4. Why is the first argument in a class method function special?
The first argument in a class method function is special because it always receives the instance object that is the implied
subject of the method call. It's usually called self by convention. Because method functions always have this implied subject
object context by default, we say they are "object-oriented" --i.e., designed to process or change objects.
5. What is the __init__ method used for?
If the __init__ method is coded or inherited in a class, Python calls it automatically each time an instance of that class is
created. It's known as the constructor method; it is passed the new instance implicitly, as well as any arguments passed explicitly
to the class name. It's also the most commonly used operator overloading method. If no __init__ method is present, instances simply
begin life as empty namespaces.
6. How do you create a class instance?
You create a class instance by calling the class name as though it were a function; any arguments passed into the class name show up
as arguments two and beyond in the __init-_ constructor method. The new instance remembers the class it was created from for inheritance
purposes.
8. How do you specify a class's superclasses?
You specify a class's superclasses by listing them in parentheses in the class statement, after the new class's name. The left-to-right
order in which the classes are listed in the parentheses gives the left-to-right inheritance search order in the class tree,
"""
| class C2:
pass
class C3:
pass
class C1(C2, C3):
print('passing')
class C1(C2, C3):
"""
If a class wants to guarantee that an attribute like name is always set in its instances,
it more typically will fill out the attribute at construction time, like this:
"""
def __init__(self, who):
self.name = who
i1 = c1('bob')
i2 = c1('mel')
print(I1.name, I2.name)
"\nThe __init__ method is known as the constructor because of when it is run. It's the most commonly\nused representative of a larger class of methods called operator overloading methods, \n"
" The definition of operator overloading methods:\nSuch methods are inherited in class trees as usual and have double underscores at the start and end\nof their names to make them distinct. Python runs them automatically when instances that support them\nappear in the corresponding operations, and they are mostly an alternative to using simple method calls.\nThey're also optional: if omitted, the operations are not supported.\npattern: __xxxx__\n\n"
class Test:
def __init__(self, x, y):
self.x = x
self.y = y
def __setattr__(self, name, value):
self.__dict__[name] = value
object.__setattr__(self, name, value)
object.__init__
return self.__dict__[name]
t1 = test(3, 5)
t1.z = 23
print(t1.x, t1.y, t1.z)
print(dir(object.__setattr__))
"\nAs an example, suppose you're assigned the task of implementing an employee database application.\nAs a Python OOP programmer, you might begin by coding a general superclass that defines default\nbehavior common to all the kinds of employees in your organization:\n"
class Employee:
def compute_salary(self):
pass
def give_raise(self):
pass
def promote(self):
pass
def retire(self):
pass
"\nThat is, you can code subclasses that customize just the bits of behavior that differ per employee type\nthe rest of the employee types' behavior will be inherited from the more general class. For example,\nif engineers have a unique salary computation rule(i.e., not hours times rate), you can replace just that\none method in a subclass.\n"
class Engineer(Employee):
def compute_salary(self):
pass
'\nBecause the computeSalary version here appears lower in the class tree, it will replace (override) the general\nverison in Employee. You then create instances of the kinds of employee classes that the real employees belong to,\nto get the correct behavior.\n'
bob = employee()
mel = engineer()
"\nwhen you later ask for these employees' salaries, they will be computed according to the classes from which the\nobjects were made, due to the principles of the inheritance search\n"
company = [bob, mel]
for emp in company:
print(emp.computeSalary())
'\nThis is yet another instance of the idea of polymorphism introduced in Chapter 4 and revisited in Chapter 16.\nRecall that polymorphism means that the meaning of an operation depends on the object being \noperated on. Here, the method computeSalary is located by inheritance search in each object before it is called.\nIn other applications, polymorphism might also be used to hide(i.e., encapsulate) interface differences. For example,\na program that processes data streams might be coded to expect objects with input and output methods, without caring\nwhat those methods actually do:\n'
def processor(reader, converter, writer):
while 1:
data = reader.read()
if not data:
break
data = converter(data)
writer.write(data)
class Reader:
def read(self):
pass
def other(self):
pass
class Filereader(Reader):
def read(self):
pass
class Socketreader(Reader):
def read(self):
pass
'\nInheritance hierarchy\n\nNote that company list in this example could be stored in a file with Python object pickling, introduced\nin Chapter 9 when we met files, to yield a persistent employee database. Python also comes with a module \nnamed shelve, which would allow you to store the pickled representation of the class instances in an access-\nby-key filesystem; the third-party open source ZODB system does the same but has better support for production-\nquality object-oriented databases.\n'
'\nProgramming in such an OOP world is just a matter of combining and specializing already debugged code by writing\nsubclasses of your own\n'
'\nObjects at the bottom of the tree inherit attributes from objects higher up in the tree-a feature that enables us to\nprogram by customizing code, rather than changing it, or starting from scratch.\n'
'\n2. Where does an inheritance search look for an attribute?\nAn inheritance search looks for an attribute first in the instance object, then in the class the instance was created\nfrom, then in all higher superclasses, progressing from the bottom to the top of the object\ntree, and from left to right (by default). The search stops at the first place the attribute is found. Because the lowest\nversion of a name found along the way wins, class hiearchies naturally support customization by extension.\n\n3. What is the difference between a class object and an instance object?\nBoth class and instance objects are namespace(package of variablee that appear as attributes). The main difference between\nis that classes are a kind of factory for creating multiple instances. Classes also support operator overloading methods,\nwhich instances inherit, and treat any functions nested within them as special methods for processing instances.\n\n4. Why is the first argument in a class method function special?\nThe first argument in a class method function is special because it always receives the instance object that is the implied\nsubject of the method call. It\'s usually called self by convention. Because method functions always have this implied subject\nobject context by default, we say they are "object-oriented" --i.e., designed to process or change objects.\n\n5. What is the __init__ method used for?\nIf the __init__ method is coded or inherited in a class, Python calls it automatically each time an instance of that class is\ncreated. It\'s known as the constructor method; it is passed the new instance implicitly, as well as any arguments passed explicitly\nto the class name. It\'s also the most commonly used operator overloading method. If no __init__ method is present, instances simply \nbegin life as empty namespaces.\n\n6. How do you create a class instance?\nYou create a class instance by calling the class name as though it were a function; any arguments passed into the class name show up\nas arguments two and beyond in the __init-_ constructor method. The new instance remembers the class it was created from for inheritance\npurposes.\n\n8. How do you specify a class\'s superclasses?\nYou specify a class\'s superclasses by listing them in parentheses in the class statement, after the new class\'s name. The left-to-right\norder in which the classes are listed in the parentheses gives the left-to-right inheritance search order in the class tree,\n\n' |
def post_register_types(root_module):
root_module.add_include('"ns3/propagation-module.h"')
| def post_register_types(root_module):
root_module.add_include('"ns3/propagation-module.h"') |
class Cache(dict):
def __init__(self):
self['test_key'] = 'test_value'
| class Cache(dict):
def __init__(self):
self['test_key'] = 'test_value' |
def friends(n):
arr = [0 for i in range(n + 1)]
i = 0
while n+1 != 0:
if i <= 2:
arr[i] = i
else:
arr[i] = arr[i - 1] + (i - 1) * arr[i - 2]
i += 1
n -= 1
return arr[n]
if __name__ == '__main__':
## n = 1
## n = 3
## n = 4
## n = 8
n = 10
print(friends(n))
| def friends(n):
arr = [0 for i in range(n + 1)]
i = 0
while n + 1 != 0:
if i <= 2:
arr[i] = i
else:
arr[i] = arr[i - 1] + (i - 1) * arr[i - 2]
i += 1
n -= 1
return arr[n]
if __name__ == '__main__':
n = 10
print(friends(n)) |
'''https://leetcode.com/problems/n-queens/'''
class Solution:
def solveNQueens(self, n: int) -> List[List[str]]:
board = [['.' for _ in range(n)] for _ in range(n)]
ans = []
def placeQ(row, col):
board[row][col] = 'Q'
def removeQ(row, col):
board[row][col] = '.'
def display(board):
res = []
for rows in board:
res.append(''.join(rows))
return res
def check(row, col):
for i in range(n):
if board[row][i]=='Q':
return False
if board[i][col]=='Q':
return False
i, j =row, col
while i<n and j<n:
if board[i][j]=='Q':
return False
i+=1
j+=1
i,j = row, col
while i>-1 and j<n:
if board[i][j]=='Q':
return False
i-=1
j+=1
i, j = row, col
while i>-1 and j>-1:
if board[i][j]=='Q':
return False
i-=1
j-=1
i, j = row, col
while i<n and j>-1:
if board[i][j]=='Q':
return False
i+=1
j-=1
return True
def backtrack(row=0, count=0):
for col in range(n):
if check(row, col):
placeQ(row, col)
if row+1==n:
count+=1
# print(board)
ans.append(display(board))
else:
count = backtrack(row+1, count)
removeQ(row, col)
return count
backtrack()
return ans
| """https://leetcode.com/problems/n-queens/"""
class Solution:
def solve_n_queens(self, n: int) -> List[List[str]]:
board = [['.' for _ in range(n)] for _ in range(n)]
ans = []
def place_q(row, col):
board[row][col] = 'Q'
def remove_q(row, col):
board[row][col] = '.'
def display(board):
res = []
for rows in board:
res.append(''.join(rows))
return res
def check(row, col):
for i in range(n):
if board[row][i] == 'Q':
return False
if board[i][col] == 'Q':
return False
(i, j) = (row, col)
while i < n and j < n:
if board[i][j] == 'Q':
return False
i += 1
j += 1
(i, j) = (row, col)
while i > -1 and j < n:
if board[i][j] == 'Q':
return False
i -= 1
j += 1
(i, j) = (row, col)
while i > -1 and j > -1:
if board[i][j] == 'Q':
return False
i -= 1
j -= 1
(i, j) = (row, col)
while i < n and j > -1:
if board[i][j] == 'Q':
return False
i += 1
j -= 1
return True
def backtrack(row=0, count=0):
for col in range(n):
if check(row, col):
place_q(row, col)
if row + 1 == n:
count += 1
ans.append(display(board))
else:
count = backtrack(row + 1, count)
remove_q(row, col)
return count
backtrack()
return ans |
# Review:
# Create a function called greet().
# Write 3 print statements inside the function.
# Call the greet() function and run your code.
name = input("What's your name? ")
location = input("Where are you from? ")
def greet(name, location):
print(f"Hello Mr.{name}")
print(f"{location} is a nice place!")
greet(name, location)
#Keyword arguments, avoid sequential params
greet(location=location, name=name)
| name = input("What's your name? ")
location = input('Where are you from? ')
def greet(name, location):
print(f'Hello Mr.{name}')
print(f'{location} is a nice place!')
greet(name, location)
greet(location=location, name=name) |
# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# File called _pytest for PyCharm compatability
class TestDataFrameDrop:
def test_drop(self, df):
df.drop(["Carrier", "DestCityName"], axis=1)
df.drop(columns=["Carrier", "DestCityName"])
df.drop(["1", "2"])
df.drop(["1", "2"], axis=0)
df.drop(index=["1", "2"])
def test_drop_all_columns(self, df):
all_columns = list(df.columns)
rows = df.shape[0]
for dropped in (
df.drop(labels=all_columns, axis=1),
df.drop(columns=all_columns),
df.drop(all_columns, axis=1),
):
assert dropped.shape == (rows, 0)
assert list(dropped.columns) == []
def test_drop_all_index(self, df):
all_index = list(df.pd.index)
cols = df.shape[1]
for dropped in (
df.drop(all_index),
df.drop(all_index, axis=0),
df.drop(index=all_index),
):
assert dropped.shape == (0, cols)
assert list(dropped.to_pandas().index) == []
| class Testdataframedrop:
def test_drop(self, df):
df.drop(['Carrier', 'DestCityName'], axis=1)
df.drop(columns=['Carrier', 'DestCityName'])
df.drop(['1', '2'])
df.drop(['1', '2'], axis=0)
df.drop(index=['1', '2'])
def test_drop_all_columns(self, df):
all_columns = list(df.columns)
rows = df.shape[0]
for dropped in (df.drop(labels=all_columns, axis=1), df.drop(columns=all_columns), df.drop(all_columns, axis=1)):
assert dropped.shape == (rows, 0)
assert list(dropped.columns) == []
def test_drop_all_index(self, df):
all_index = list(df.pd.index)
cols = df.shape[1]
for dropped in (df.drop(all_index), df.drop(all_index, axis=0), df.drop(index=all_index)):
assert dropped.shape == (0, cols)
assert list(dropped.to_pandas().index) == [] |
# Basic Structure for Stack using Linked List
class Node:
def __init__(self,data):
self.data = data
self.next = None
class Stack:
def __init__(self):
self.head = None
def is_empty(self):
if self.head == None:
return True
else:
return False
def push(self, data):
if not self.is_empty():
self.head = Node(data)
else:
newNode = Node(data)
newNode.next = self.head
self.head = newNode
def pop(self):
if self.is_empty():
return None
else:
poppedNode = self.head
self.head = self.head.next
poppedNode.next = None
return poppedNode.data
def peek(self):
if self.is_empty():
return None
else:
return self.head.data
def display(self):
iternode = self.head
if self.is_empty():
print('Nothing here')
else:
while(iternode != None):
print()
| class Node:
def __init__(self, data):
self.data = data
self.next = None
class Stack:
def __init__(self):
self.head = None
def is_empty(self):
if self.head == None:
return True
else:
return False
def push(self, data):
if not self.is_empty():
self.head = node(data)
else:
new_node = node(data)
newNode.next = self.head
self.head = newNode
def pop(self):
if self.is_empty():
return None
else:
popped_node = self.head
self.head = self.head.next
poppedNode.next = None
return poppedNode.data
def peek(self):
if self.is_empty():
return None
else:
return self.head.data
def display(self):
iternode = self.head
if self.is_empty():
print('Nothing here')
else:
while iternode != None:
print() |
# Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
#
# WSO2 Inc. licenses this file to you under the Apache License,
# Version 2.0 (the "License"); you may not use this file except
# in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
def encodeField(value, encode_function=str):
'''
Encodes a field value using encode_function
:param value:
:param encode_function:
:return:
'''
if value is None:
return None
return encode_function(value)
def decodeField(value, decode_function):
'''
Decodes a field value using given decode_function
:param value:
:param decode_function:
:return:
'''
if value is None:
return None
return decode_function(value)
def decodeObject(jsonObject, target, decodeMap):
'''
Decodes a JSON Object and assigns attributes to target.
:param jsonObject:
:param target:
:param decodeMap:
:return:
'''
for (key, value) in jsonObject.items():
setattr(target, key, decodeField(value, decodeMap[key]))
return target
| def encode_field(value, encode_function=str):
"""
Encodes a field value using encode_function
:param value:
:param encode_function:
:return:
"""
if value is None:
return None
return encode_function(value)
def decode_field(value, decode_function):
"""
Decodes a field value using given decode_function
:param value:
:param decode_function:
:return:
"""
if value is None:
return None
return decode_function(value)
def decode_object(jsonObject, target, decodeMap):
"""
Decodes a JSON Object and assigns attributes to target.
:param jsonObject:
:param target:
:param decodeMap:
:return:
"""
for (key, value) in jsonObject.items():
setattr(target, key, decode_field(value, decodeMap[key]))
return target |
class Node(object):
def __init__(self, *contents):
self.contents = contents
def __repr__(self):
return "<{0} {1}>".format(self.__class__.__name__,
', '.join(map(repr, self.contents)))
def __eq__(self, other):
same_class = (isinstance(other, self.__class__)
or isinstance(self, other.__class__))
return same_class and self.contents == other.contents
class UnitNode(Node):
def __repr__(self):
return repr(self.contents[0])
class NumberNode(UnitNode):
pass
class StringNode(UnitNode):
def __repr__(self):
return repr(self.contents[0])
class IdentifierNode(UnitNode):
def __repr__(self):
return self.contents[0]
class FunctionNode(Node):
def __init__(self, func, *arguments):
super(FunctionNode, self).__init__(func, *arguments)
self.func = func
self.arguments = arguments
def __repr__(self):
return "{0}({1})".format(repr(self.func),
', '.join(map(repr, self.arguments)))
class BinOpNode(FunctionNode):
def __init__(self, opname, *arguments):
super(FunctionNode, self).__init__(opname, *arguments)
self.func = IdentifierNode('binop.' + opname)
self.arguments = arguments
class UnaryOpNode(FunctionNode):
def __init__(self, opname, argument):
super(UnaryOpNode, self).__init__(opname, argument)
self.func = IdentifierNode('unaryop.' + opname)
self.arguments = (argument,)
class CommaNode(Node):
def __init__(self, *args):
expanded_args = []
for arg in args:
if isinstance(arg, CommaNode):
expanded_args.extend(arg.contents)
else:
expanded_args.append(arg)
super(CommaNode, self).__init__(*expanded_args)
def __repr__(self):
return ', '.join(map(repr, self.contents))
class TupleNode(Node):
def __init__(self, commas):
self.commas = commas
super(TupleNode, self).__init__(commas)
def __repr__(self):
return "({0})".format(self.commas)
| class Node(object):
def __init__(self, *contents):
self.contents = contents
def __repr__(self):
return '<{0} {1}>'.format(self.__class__.__name__, ', '.join(map(repr, self.contents)))
def __eq__(self, other):
same_class = isinstance(other, self.__class__) or isinstance(self, other.__class__)
return same_class and self.contents == other.contents
class Unitnode(Node):
def __repr__(self):
return repr(self.contents[0])
class Numbernode(UnitNode):
pass
class Stringnode(UnitNode):
def __repr__(self):
return repr(self.contents[0])
class Identifiernode(UnitNode):
def __repr__(self):
return self.contents[0]
class Functionnode(Node):
def __init__(self, func, *arguments):
super(FunctionNode, self).__init__(func, *arguments)
self.func = func
self.arguments = arguments
def __repr__(self):
return '{0}({1})'.format(repr(self.func), ', '.join(map(repr, self.arguments)))
class Binopnode(FunctionNode):
def __init__(self, opname, *arguments):
super(FunctionNode, self).__init__(opname, *arguments)
self.func = identifier_node('binop.' + opname)
self.arguments = arguments
class Unaryopnode(FunctionNode):
def __init__(self, opname, argument):
super(UnaryOpNode, self).__init__(opname, argument)
self.func = identifier_node('unaryop.' + opname)
self.arguments = (argument,)
class Commanode(Node):
def __init__(self, *args):
expanded_args = []
for arg in args:
if isinstance(arg, CommaNode):
expanded_args.extend(arg.contents)
else:
expanded_args.append(arg)
super(CommaNode, self).__init__(*expanded_args)
def __repr__(self):
return ', '.join(map(repr, self.contents))
class Tuplenode(Node):
def __init__(self, commas):
self.commas = commas
super(TupleNode, self).__init__(commas)
def __repr__(self):
return '({0})'.format(self.commas) |
SEED_LIMIT = 20
MAX_PAGES_PER_SITE = 35
MAX_LOGICAL_DEPTH = 3
MAX_PHYSICAL_DEPTH = 3
TOTAL_MAX_PAGES = 500 | seed_limit = 20
max_pages_per_site = 35
max_logical_depth = 3
max_physical_depth = 3
total_max_pages = 500 |
formdata = {
'deposittype': "",
'dates': {},
'dissertation': {
'degreename': {
'Doctor of Musical Arts (DMA)',
'Doctor of Education (EDD)',
'Doctor of Philosophy (PhD)'
},
'degreetype': {
'dissertation': 'Dissertation',
'essay': 'Doctoral Essay',
'treatise': 'Doctoral Treatise',
'lecture': 'Lecture Recital Essay'
},
'degrees': {
'Applied Marine Physics': 'Applied Marine Physics (RSMAS)',
'Atmospheric Sciences ': 'Atmospheric Sciences (RSMAS)',
'Biochemistry and Molecular Biology': 'Biochemistry and Molecular Biology (Medical)',
'Biochemistry and Molecular Biology (Executive program)': 'Biochemistry and Molecular Biology (Executive program) (Medical)',
'Biology': 'Biology (Arts & Sciences)',
'Biomedical Engineering': 'Biomedical Engineering (Engineering)',
'Biostatistics': 'Biostatistics (Medical)',
'Business': 'Business (Business)',
'Cancer Biology': 'Cancer Biology (Medical)',
'Cellular Physiology and Molecular Biophysics ': 'Cellular Physiology and Molecular Biophysics (Medical)',
'Chemical, Environmental, and Materials Engineering': 'Chemical, Environmental, and Materials Engineering (Engineering)',
'Chemistry': 'Chemistry (Arts & Sciences)',
'Choral Conducting': 'Choral Conducting (Music)',
'Civil Engineering': 'Civil Engineering (Engineering)',
'Communication': 'Communication (Communication)',
'Community Well-Being': 'Community Well-Being (Education & Human Development)',
'Composition': 'Composition (Music)',
'Computer Science': 'Computer Science (Arts & Sciences)',
'Counseling Psychology': 'Counseling Psychology (Education & Human Development)',
'Economics': 'Economics (Business)',
'Electrical and Computer Engineering': 'Electrical and Computer Engineering (Engineering)',
'English': 'English (Arts & Sciences)',
'Environmental Science and Policy ': 'Environmental Science and Policy (RSMAS)',
'Epidemiology': 'Epidemiology (Medical)',
'Ergonomics': 'Ergonomics (Engineering)',
'Exercise Physiology': 'Exercise Physiology (Education & Human Development)',
'Higher Education Leadership': 'Higher Education Leadership (Education & Human Development)',
'History': 'History (Arts & Sciences)',
'Human Genetics and Genomics': 'Human Genetics and Genomics (Medical)',
'Industrial Engineering': 'Industrial Engineering (Engineering)',
'Instrumental Conducting': 'Instrumental Conducting (Music)',
'Instrumental Jazz Performance': 'Instrumental Jazz Performance (Music)',
'Instrumental Performance': 'Instrumental Performance (Music)',
'International Studies': 'International Studies (Arts & Sciences)',
'Jazz Composition': 'Jazz Composition (Music)',
'Keyboard Performance': 'Keyboard Performance (Music)',
'Keyboard Performance and Pedagogy': 'Keyboard Performance and Pedagogy (Music)',
'Literary, Cultural, and Linguistic Studies': 'Literary, Cultural, and Linguistic Studies (Arts & Sciences)',
'Marine Biology and Ecology': 'Marine Biology and Ecology (RSMAS)',
'Marine Biology and Fisheries': 'Marine Biology and Fisheries (RSMAS)',
'Marine Ecosystems and Society': 'Marine Ecosystems and Society (RSMAS)',
'Marine Geology and Geophysics': 'Marine Geology and Geophysics (RSMAS)',
'Marine Geosciences': 'Marine Geosciences (RSMAS)',
'Mathematics': 'Mathematics (Arts & Sciences)',
'Mechanical Engineering': 'Mechanical Engineering (Engineering)',
'Meteorology and Physical Oceanography ': 'Meteorology and Physical Oceanography (RSMAS)',
'Microbiology and Immunology': 'Microbiology and Immunology (Medical)',
'Molecular and Cellular Pharmacology': 'Molecular and Cellular Pharmacology (Medical)',
'Molecular Cell and Developmental Biology': 'Molecular Cell and Developmental Biology (Medical)',
'Multiple Woodwinds': 'Multiple Woodwinds (Music)',
'Music Education': 'Music Education (Music)',
'Neuroscience': 'Neuroscience (Medical)',
'Nursing Science': 'Nursing Science (Nursing & Health Studies)',
'Ocean Sciences': 'Ocean Sciences (RSMAS)',
'Philosophy': 'Philosophy (Arts & Sciences)',
'Physical Therapy': 'Physical Therapy (Medical)',
'Physics': 'Physics (Arts & Sciences)',
'Prevention Science and Community Health': 'Prevention Science and Community Health (Medical)',
'Psychology': 'Psychology (Arts & Sciences)',
'Research, Measurement and Evaluation': 'Research, Measurement and Evaluation (Education & Human Development)',
'Romance Studies': 'Romance Studies (Arts & Sciences)',
'Sociology': 'Sociology (Arts & Sciences)',
'Teaching and Learning': 'Teaching and Learning (Education & Human Development)',
'Vocal Jazz Performance': 'Vocal Jazz Performance (Music)',
'Vocal Pedagogy and Performance': 'Vocal Pedagogy and Performance (Music)',
'Vocal Performance': 'Vocal Performance (Music)'
}
},
'masters': {
'degreename': {
'Master of Arts (MA)',
'Master of Fine Arts (MFA)',
'Master of Music (MM)',
'Master of Science (MS)',
'Master of Science in Architecture (MSArch)',
'Master of Science in Education (MSEd)',
'Master of Science in Architectural Engineering (MSAE)',
'Master of Science in Biomedical Engineering (MSBE)',
'Master of Science in Civil Engineering (MSCE)',
'Master of Science in Electrical and Computer Engineering (MSECE)',
'Master of Science in Industrial Engineering (MSIE)',
'Master of Science in Mechanical Engineering (MSME)',
'Master of Science in Ocean Engineering (MSOE)',
'Master of Science in Public Health (MSPH)'
},
'degrees': {
'Anthropology': 'Anthropology (Arts & Sciences)',
'Applied Marine Physics': 'Applied Marine Physics (RSMAS)',
'Architectural Engineering': 'Architectural Engineering (Engineering)',
'Architecture: Architectural Studies Track ': 'Architecture: Architectural Studies Track (Architecture)',
'Atmospheric Sciences ': 'Atmospheric Sciences (RSMAS)',
'Biology': 'Biology (Arts & Sciences)',
'Biomedical Engineering': 'Biomedical Engineering (Engineering)',
'Cancer Biology': 'Cancer Biology (Medical)',
'Chemistry': 'Chemistry (Arts & Sciences)',
'Civil Engineering': 'Civil Engineering (Engineering)',
'Climate and Health': 'Climate and Health (Medical)',
'Communication Studies': 'Communication Studies (Communication)',
'Community and Social Change': 'Community and Social Change (Education & Human Development)',
'Computer Science': 'Computer Science (Arts & Sciences)',
'Criminology and Criminal Justice': 'Criminology and Criminal Justice (Arts & Sciences)',
'Electrical and Computer Engineering': 'Electrical and Computer Engineering (Engineering)',
'English': 'English (Arts & Sciences)',
'Environment, Culture, and Media': 'Environment, Culture, and Media (Graduate School - Abess programs)',
'Geography': 'Geography (Arts & Sciences)',
'Global Health and Society': 'Global Health and Society (Arts & Sciences)',
'History': 'History (Arts & Sciences)',
'Industrial Engineering': 'Industrial Engineering (Engineering)',
'International Studies': 'International Studies (Arts & Sciences)',
'Latin American Studies': 'Latin American Studies (Arts & Sciences)',
'Liberal Studies': 'Liberal Studies (Arts & Sciences)',
'Literary, Cultural, and Linguistic Studies': 'Literary, Cultural, and Linguistic Studies (Arts & Sciences)',
'Marine Affairs and Policy': 'Marine Affairs and Policy (RSMAS)',
'Marine Biology and Ecology': 'Marine Biology and Ecology (RSMAS)',
'Marine Biology and Fisheries': 'Marine Biology and Fisheries (RSMAS)',
'Marine Ecosystems and Society': 'Marine Ecosystems and Society (RSMAS)',
'Marine Geology and Geophysics': 'Marine Geology and Geophysics (RSMAS)',
'Marine Geosciences': 'Marine Geosciences (RSMAS)',
'Mechanical Engineering': 'Mechanical Engineering (Engineering)',
'Meteorology and Physical Oceanography': 'Meteorology and Physical Oceanography (RSMAS)',
'Music Education': 'Music Education (Music)',
'Music Therapy': 'Music Therapy (Music)',
'Music Therapy with Undergraduate Equivalency': 'Music Therapy with Undergraduate Equivalency (Music)',
'Musicology': 'Musicology (Music)',
'Neuroscience': 'Neuroscience (Medical)',
'Occupational Ergonomics and Safety': 'Occupational Ergonomics and Safety (Engineering)',
'Ocean Engineering': 'Ocean Engineering (Engineering)',
'Ocean Sciences ': 'Ocean Sciences (RSMAS)',
'Philosophy': 'Philosophy (Arts & Sciences)',
'Physics': 'Physics (Arts & Sciences)',
'Prevention Science and Community Health': 'Prevention Science and Community Health (Medical)',
'Psychology': 'Psychology (Arts & Sciences)',
'Public Health': 'Public Health (Medical)',
'Public Relations': 'Public Relations (Communication)',
'Skin Biology and Dermatological Sciences ': 'Skin Biology and Dermatological Sciences (Medical)',
'Sociology': 'Sociology (Arts & Sciences)'
}
},
'languages': {
'es': 'Spanish',
'ar': 'Arabic',
'zh': 'Chinese',
'fr': 'French',
'de': 'German',
'hi': 'Hindi',
'it': 'Italian',
'ja': 'Japanese',
'ko': 'Korean',
'pt': 'Portuguese',
'ru': 'Russian'
},
'topics': {
'Fine and Performing Arts': {
'Art criticism': '0365',
'Art history': '0377',
'Cinematography': '0435',
'Dance': '0378',
'Design': '0389',
'Fashion': '0200',
'Film studies': '0900',
'Fine arts': '0357',
'Music': '0413',
'Music history': '0210',
'Music theory': '0223',
'Musical composition': '0216',
'Musical performances': '0943',
'Performing arts': '0641',
'Theater': '0465',
'Theater history': '0644'
}
},
'grad_service_account': 'grad.dissertation@miami.edu',
'grad_admin': 'dyamamoto@miami.edu',
'repository_manager_email': 'j.cohen4@miami.edu',
'app_admin': 'cgb37@miami.edu',
'app_developer': 'eprieto502@miami.edu'
} | formdata = {'deposittype': '', 'dates': {}, 'dissertation': {'degreename': {'Doctor of Musical Arts (DMA)', 'Doctor of Education (EDD)', 'Doctor of Philosophy (PhD)'}, 'degreetype': {'dissertation': 'Dissertation', 'essay': 'Doctoral Essay', 'treatise': 'Doctoral Treatise', 'lecture': 'Lecture Recital Essay'}, 'degrees': {'Applied Marine Physics': 'Applied Marine Physics (RSMAS)', 'Atmospheric Sciences ': 'Atmospheric Sciences (RSMAS)', 'Biochemistry and Molecular Biology': 'Biochemistry and Molecular Biology (Medical)', 'Biochemistry and Molecular Biology (Executive program)': 'Biochemistry and Molecular Biology (Executive program) (Medical)', 'Biology': 'Biology (Arts & Sciences)', 'Biomedical Engineering': 'Biomedical Engineering (Engineering)', 'Biostatistics': 'Biostatistics (Medical)', 'Business': 'Business (Business)', 'Cancer Biology': 'Cancer Biology (Medical)', 'Cellular Physiology and Molecular Biophysics ': 'Cellular Physiology and Molecular Biophysics (Medical)', 'Chemical, Environmental, and Materials Engineering': 'Chemical, Environmental, and Materials Engineering (Engineering)', 'Chemistry': 'Chemistry (Arts & Sciences)', 'Choral Conducting': 'Choral Conducting (Music)', 'Civil Engineering': 'Civil Engineering (Engineering)', 'Communication': 'Communication (Communication)', 'Community Well-Being': 'Community Well-Being (Education & Human Development)', 'Composition': 'Composition (Music)', 'Computer Science': 'Computer Science (Arts & Sciences)', 'Counseling Psychology': 'Counseling Psychology (Education & Human Development)', 'Economics': 'Economics (Business)', 'Electrical and Computer Engineering': 'Electrical and Computer Engineering (Engineering)', 'English': 'English (Arts & Sciences)', 'Environmental Science and Policy ': 'Environmental Science and Policy (RSMAS)', 'Epidemiology': 'Epidemiology (Medical)', 'Ergonomics': 'Ergonomics (Engineering)', 'Exercise Physiology': 'Exercise Physiology (Education & Human Development)', 'Higher Education Leadership': 'Higher Education Leadership (Education & Human Development)', 'History': 'History (Arts & Sciences)', 'Human Genetics and Genomics': 'Human Genetics and Genomics (Medical)', 'Industrial Engineering': 'Industrial Engineering (Engineering)', 'Instrumental Conducting': 'Instrumental Conducting (Music)', 'Instrumental Jazz Performance': 'Instrumental Jazz Performance (Music)', 'Instrumental Performance': 'Instrumental Performance (Music)', 'International Studies': 'International Studies (Arts & Sciences)', 'Jazz Composition': 'Jazz Composition (Music)', 'Keyboard Performance': 'Keyboard Performance (Music)', 'Keyboard Performance and Pedagogy': 'Keyboard Performance and Pedagogy (Music)', 'Literary, Cultural, and Linguistic Studies': 'Literary, Cultural, and Linguistic Studies (Arts & Sciences)', 'Marine Biology and Ecology': 'Marine Biology and Ecology (RSMAS)', 'Marine Biology and Fisheries': 'Marine Biology and Fisheries (RSMAS)', 'Marine Ecosystems and Society': 'Marine Ecosystems and Society (RSMAS)', 'Marine Geology and Geophysics': 'Marine Geology and Geophysics (RSMAS)', 'Marine Geosciences': 'Marine Geosciences (RSMAS)', 'Mathematics': 'Mathematics (Arts & Sciences)', 'Mechanical Engineering': 'Mechanical Engineering (Engineering)', 'Meteorology and Physical Oceanography ': 'Meteorology and Physical Oceanography (RSMAS)', 'Microbiology and Immunology': 'Microbiology and Immunology (Medical)', 'Molecular and Cellular Pharmacology': 'Molecular and Cellular Pharmacology (Medical)', 'Molecular Cell and Developmental Biology': 'Molecular Cell and Developmental Biology (Medical)', 'Multiple Woodwinds': 'Multiple Woodwinds (Music)', 'Music Education': 'Music Education (Music)', 'Neuroscience': 'Neuroscience (Medical)', 'Nursing Science': 'Nursing Science (Nursing & Health Studies)', 'Ocean Sciences': 'Ocean Sciences (RSMAS)', 'Philosophy': 'Philosophy (Arts & Sciences)', 'Physical Therapy': 'Physical Therapy (Medical)', 'Physics': 'Physics (Arts & Sciences)', 'Prevention Science and Community Health': 'Prevention Science and Community Health (Medical)', 'Psychology': 'Psychology (Arts & Sciences)', 'Research, Measurement and Evaluation': 'Research, Measurement and Evaluation (Education & Human Development)', 'Romance Studies': 'Romance Studies (Arts & Sciences)', 'Sociology': 'Sociology (Arts & Sciences)', 'Teaching and Learning': 'Teaching and Learning (Education & Human Development)', 'Vocal Jazz Performance': 'Vocal Jazz Performance (Music)', 'Vocal Pedagogy and Performance': 'Vocal Pedagogy and Performance (Music)', 'Vocal Performance': 'Vocal Performance (Music)'}}, 'masters': {'degreename': {'Master of Arts (MA)', 'Master of Fine Arts (MFA)', 'Master of Music (MM)', 'Master of Science (MS)', 'Master of Science in Architecture (MSArch)', 'Master of Science in Education (MSEd)', 'Master of Science in Architectural Engineering (MSAE)', 'Master of Science in Biomedical Engineering (MSBE)', 'Master of Science in Civil Engineering (MSCE)', 'Master of Science in Electrical and Computer Engineering (MSECE)', 'Master of Science in Industrial Engineering (MSIE)', 'Master of Science in Mechanical Engineering (MSME)', 'Master of Science in Ocean Engineering (MSOE)', 'Master of Science in Public Health (MSPH)'}, 'degrees': {'Anthropology': 'Anthropology (Arts & Sciences)', 'Applied Marine Physics': 'Applied Marine Physics (RSMAS)', 'Architectural Engineering': 'Architectural Engineering (Engineering)', 'Architecture: Architectural Studies Track ': 'Architecture: Architectural Studies Track (Architecture)', 'Atmospheric Sciences ': 'Atmospheric Sciences (RSMAS)', 'Biology': 'Biology (Arts & Sciences)', 'Biomedical Engineering': 'Biomedical Engineering (Engineering)', 'Cancer Biology': 'Cancer Biology (Medical)', 'Chemistry': 'Chemistry (Arts & Sciences)', 'Civil Engineering': 'Civil Engineering (Engineering)', 'Climate and Health': 'Climate and Health (Medical)', 'Communication Studies': 'Communication Studies (Communication)', 'Community and Social Change': 'Community and Social Change (Education & Human Development)', 'Computer Science': 'Computer Science (Arts & Sciences)', 'Criminology and Criminal Justice': 'Criminology and Criminal Justice (Arts & Sciences)', 'Electrical and Computer Engineering': 'Electrical and Computer Engineering (Engineering)', 'English': 'English (Arts & Sciences)', 'Environment, Culture, and Media': 'Environment, Culture, and Media (Graduate School - Abess programs)', 'Geography': 'Geography (Arts & Sciences)', 'Global Health and Society': 'Global Health and Society (Arts & Sciences)', 'History': 'History (Arts & Sciences)', 'Industrial Engineering': 'Industrial Engineering (Engineering)', 'International Studies': 'International Studies (Arts & Sciences)', 'Latin American Studies': 'Latin American Studies (Arts & Sciences)', 'Liberal Studies': 'Liberal Studies (Arts & Sciences)', 'Literary, Cultural, and Linguistic Studies': 'Literary, Cultural, and Linguistic Studies (Arts & Sciences)', 'Marine Affairs and Policy': 'Marine Affairs and Policy (RSMAS)', 'Marine Biology and Ecology': 'Marine Biology and Ecology (RSMAS)', 'Marine Biology and Fisheries': 'Marine Biology and Fisheries (RSMAS)', 'Marine Ecosystems and Society': 'Marine Ecosystems and Society (RSMAS)', 'Marine Geology and Geophysics': 'Marine Geology and Geophysics (RSMAS)', 'Marine Geosciences': 'Marine Geosciences (RSMAS)', 'Mechanical Engineering': 'Mechanical Engineering (Engineering)', 'Meteorology and Physical Oceanography': 'Meteorology and Physical Oceanography (RSMAS)', 'Music Education': 'Music Education (Music)', 'Music Therapy': 'Music Therapy (Music)', 'Music Therapy with Undergraduate Equivalency': 'Music Therapy with Undergraduate Equivalency (Music)', 'Musicology': 'Musicology (Music)', 'Neuroscience': 'Neuroscience (Medical)', 'Occupational Ergonomics and Safety': 'Occupational Ergonomics and Safety (Engineering)', 'Ocean Engineering': 'Ocean Engineering (Engineering)', 'Ocean Sciences ': 'Ocean Sciences (RSMAS)', 'Philosophy': 'Philosophy (Arts & Sciences)', 'Physics': 'Physics (Arts & Sciences)', 'Prevention Science and Community Health': 'Prevention Science and Community Health (Medical)', 'Psychology': 'Psychology (Arts & Sciences)', 'Public Health': 'Public Health (Medical)', 'Public Relations': 'Public Relations (Communication)', 'Skin Biology and Dermatological Sciences ': 'Skin Biology and Dermatological Sciences (Medical)', 'Sociology': 'Sociology (Arts & Sciences)'}}, 'languages': {'es': 'Spanish', 'ar': 'Arabic', 'zh': 'Chinese', 'fr': 'French', 'de': 'German', 'hi': 'Hindi', 'it': 'Italian', 'ja': 'Japanese', 'ko': 'Korean', 'pt': 'Portuguese', 'ru': 'Russian'}, 'topics': {'Fine and Performing Arts': {'Art criticism': '0365', 'Art history': '0377', 'Cinematography': '0435', 'Dance': '0378', 'Design': '0389', 'Fashion': '0200', 'Film studies': '0900', 'Fine arts': '0357', 'Music': '0413', 'Music history': '0210', 'Music theory': '0223', 'Musical composition': '0216', 'Musical performances': '0943', 'Performing arts': '0641', 'Theater': '0465', 'Theater history': '0644'}}, 'grad_service_account': 'grad.dissertation@miami.edu', 'grad_admin': 'dyamamoto@miami.edu', 'repository_manager_email': 'j.cohen4@miami.edu', 'app_admin': 'cgb37@miami.edu', 'app_developer': 'eprieto502@miami.edu'} |
def txttolist(filename):
"""Takes a txt file and makes a list with each line being an element"""
return [line.split("\n")[0] for line in open(filename, "r")]
def isstrlessthan(string, length):
"""Checks if string is below length"""
return len(string) < length
def errormsg(e):
"""Generates an error message as a string"""
return "ERROR: " + str(e)
| def txttolist(filename):
"""Takes a txt file and makes a list with each line being an element"""
return [line.split('\n')[0] for line in open(filename, 'r')]
def isstrlessthan(string, length):
"""Checks if string is below length"""
return len(string) < length
def errormsg(e):
"""Generates an error message as a string"""
return 'ERROR: ' + str(e) |
# Copyright (c) 2018 Gennadii Donchyts. All rights reserved.
# This work is licensed under the terms of the MIT license.
# For a copy, see <https://opensource.org/licenses/MIT>.
# Contributors:
# * 2018-08-01: Fedor Baart (f.baart@gmail.com) - added cmocean
# * 2019-01-18: Justin Braaten (jstnbraaten@gmail.com) - added niccoli, matplotlib, kovesi, misc
cmocean = {
'Thermal': {'7': ['042333', '2c3395', '744992', 'b15f82', 'eb7958', 'fbb43d', 'e8fa5b']},
'Haline': {'7': ['2a186c', '14439c', '206e8b', '3c9387', '5ab978', 'aad85c', 'fdef9a']},
'Solar': {'7': ['331418', '682325', '973b1c', 'b66413', 'cb921a', 'dac62f', 'e1fd4b']},
'Ice': {'7': ['040613', '292851', '3f4b96', '427bb7', '61a8c7', '9cd4da', 'eafdfd']},
'Gray': {'7': ['000000', '232323', '4a4a49', '727171', '9b9a9a', 'cacac9', 'fffffd']},
'Oxy': {'7': ['400505', '850a0b', '6f6f6e', '9b9a9a', 'cbcac9', 'ebf34b', 'ddaf19']},
'Deep': {'7': ['fdfecc', 'a5dfa7', '5dbaa4', '488e9e', '3e6495', '3f396c', '281a2c']},
'Dense': {'7': ['e6f1f1', 'a2cee2', '76a4e5', '7871d5', '7642a5', '621d62', '360e24']},
'Algae': {'7': ['d7f9d0', 'a2d595', '64b463', '129450', '126e45', '1a482f', '122414']},
'Matter': {'7': ['feedb0', 'f7b37c', 'eb7858', 'ce4356', '9f2462', '66185c', '2f0f3e']},
'Turbid': {'7': ['e9f6ab', 'd3c671', 'bf9747', 'a1703b', '795338', '4d392d', '221f1b']},
'Speed': {'7': ['fffdcd', 'e1cd73', 'aaac20', '5f920c', '187328', '144b2a', '172313']},
'Amp': {'7': ['f1edec', 'dfbcb0', 'd08b73', 'c0583b', 'a62225', '730e27', '3c0912']},
'Tempo': {'7': ['fff6f4', 'c3d1ba', '7db390', '2a937f', '156d73', '1c455b', '151d44']},
'Phase': {'7': ['a8780d', 'd74957', 'd02fd0', '7d73f0', '1e93a8', '359943', 'a8780d']},
'Balance': {'7': ['181c43', '0c5ebe', '75aabe', 'f1eceb', 'd08b73','a52125', '3c0912']},
'Delta': {'7': ['112040', '1c67a0', '6db6b3', 'fffccc', 'abac21', '177228', '172313']},
'Curl': {'7': ['151d44', '156c72', '7eb390', 'fdf5f4', 'db8d77', '9c3060', '340d35']}
}
colorbrewer = {
'YlGn':{'3':["f7fcb9","addd8e","31a354"],'4':["ffffcc","c2e699","78c679","238443"],'5':["ffffcc","c2e699","78c679","31a354","006837"],'6':["ffffcc","d9f0a3","addd8e","78c679","31a354","006837"],'7':["ffffcc","d9f0a3","addd8e","78c679","41ab5d","238443","005a32"],'8':["ffffe5","f7fcb9","d9f0a3","addd8e","78c679","41ab5d","238443","005a32"],'9':["ffffe5","f7fcb9","d9f0a3","addd8e","78c679","41ab5d","238443","006837","004529"]},
'YlGnBu':{'3':["edf8b1","7fcdbb","2c7fb8"],'4':["ffffcc","a1dab4","41b6c4","225ea8"],'5':["ffffcc","a1dab4","41b6c4","2c7fb8","253494"],'6':["ffffcc","c7e9b4","7fcdbb","41b6c4","2c7fb8","253494"],'7':["ffffcc","c7e9b4","7fcdbb","41b6c4","1d91c0","225ea8","0c2c84"],'8':["ffffd9","edf8b1","c7e9b4","7fcdbb","41b6c4","1d91c0","225ea8","0c2c84"],'9':["ffffd9","edf8b1","c7e9b4","7fcdbb","41b6c4","1d91c0","225ea8","253494","081d58"]},
'GnBu':{'3':["e0f3db","a8ddb5","43a2ca"],'4':["f0f9e8","bae4bc","7bccc4","2b8cbe"],'5':["f0f9e8","bae4bc","7bccc4","43a2ca","0868ac"],'6':["f0f9e8","ccebc5","a8ddb5","7bccc4","43a2ca","0868ac"],'7':["f0f9e8","ccebc5","a8ddb5","7bccc4","4eb3d3","2b8cbe","08589e"],'8':["f7fcf0","e0f3db","ccebc5","a8ddb5","7bccc4","4eb3d3","2b8cbe","08589e"],'9':["f7fcf0","e0f3db","ccebc5","a8ddb5","7bccc4","4eb3d3","2b8cbe","0868ac","084081"]},
'BuGn':{'3':["e5f5f9","99d8c9","2ca25f"],'4':["edf8fb","b2e2e2","66c2a4","238b45"],'5':["edf8fb","b2e2e2","66c2a4","2ca25f","006d2c"],'6':["edf8fb","ccece6","99d8c9","66c2a4","2ca25f","006d2c"],'7':["edf8fb","ccece6","99d8c9","66c2a4","41ae76","238b45","005824"],'8':["f7fcfd","e5f5f9","ccece6","99d8c9","66c2a4","41ae76","238b45","005824"],'9':["f7fcfd","e5f5f9","ccece6","99d8c9","66c2a4","41ae76","238b45","006d2c","00441b"]},
'PuBuGn':{'3':["ece2f0","a6bddb","1c9099"],'4':["f6eff7","bdc9e1","67a9cf","02818a"],'5':["f6eff7","bdc9e1","67a9cf","1c9099","016c59"],'6':["f6eff7","d0d1e6","a6bddb","67a9cf","1c9099","016c59"],'7':["f6eff7","d0d1e6","a6bddb","67a9cf","3690c0","02818a","016450"],'8':["fff7fb","ece2f0","d0d1e6","a6bddb","67a9cf","3690c0","02818a","016450"],'9':["fff7fb","ece2f0","d0d1e6","a6bddb","67a9cf","3690c0","02818a","016c59","014636"]},
'PuBu':{'3':["ece7f2","a6bddb","2b8cbe"],'4':["f1eef6","bdc9e1","74a9cf","0570b0"],'5':["f1eef6","bdc9e1","74a9cf","2b8cbe","045a8d"],'6':["f1eef6","d0d1e6","a6bddb","74a9cf","2b8cbe","045a8d"],'7':["f1eef6","d0d1e6","a6bddb","74a9cf","3690c0","0570b0","034e7b"],'8':["fff7fb","ece7f2","d0d1e6","a6bddb","74a9cf","3690c0","0570b0","034e7b"],'9':["fff7fb","ece7f2","d0d1e6","a6bddb","74a9cf","3690c0","0570b0","045a8d","023858"]},
'BuPu':{'3':["e0ecf4","9ebcda","8856a7"],'4':["edf8fb","b3cde3","8c96c6","88419d"],'5':["edf8fb","b3cde3","8c96c6","8856a7","810f7c"],'6':["edf8fb","bfd3e6","9ebcda","8c96c6","8856a7","810f7c"],'7':["edf8fb","bfd3e6","9ebcda","8c96c6","8c6bb1","88419d","6e016b"],'8':["f7fcfd","e0ecf4","bfd3e6","9ebcda","8c96c6","8c6bb1","88419d","6e016b"],'9':["f7fcfd","e0ecf4","bfd3e6","9ebcda","8c96c6","8c6bb1","88419d","810f7c","4d004b"]},
'RdPu':{'3':["fde0dd","fa9fb5","c51b8a"],'4':["feebe2","fbb4b9","f768a1","ae017e"],'5':["feebe2","fbb4b9","f768a1","c51b8a","7a0177"],'6':["feebe2","fcc5c0","fa9fb5","f768a1","c51b8a","7a0177"],'7':["feebe2","fcc5c0","fa9fb5","f768a1","dd3497","ae017e","7a0177"],'8':["fff7f3","fde0dd","fcc5c0","fa9fb5","f768a1","dd3497","ae017e","7a0177"],'9':["fff7f3","fde0dd","fcc5c0","fa9fb5","f768a1","dd3497","ae017e","7a0177","49006a"]},
'PuRd':{'3':["e7e1ef","c994c7","dd1c77"],'4':["f1eef6","d7b5d8","df65b0","ce1256"],'5':["f1eef6","d7b5d8","df65b0","dd1c77","980043"],'6':["f1eef6","d4b9da","c994c7","df65b0","dd1c77","980043"],'7':["f1eef6","d4b9da","c994c7","df65b0","e7298a","ce1256","91003f"],'8':["f7f4f9","e7e1ef","d4b9da","c994c7","df65b0","e7298a","ce1256","91003f"],'9':["f7f4f9","e7e1ef","d4b9da","c994c7","df65b0","e7298a","ce1256","980043","67001f"]},
'OrRd':{'3':["fee8c8","fdbb84","e34a33"],'4':["fef0d9","fdcc8a","fc8d59","d7301f"],'5':["fef0d9","fdcc8a","fc8d59","e34a33","b30000"],'6':["fef0d9","fdd49e","fdbb84","fc8d59","e34a33","b30000"],'7':["fef0d9","fdd49e","fdbb84","fc8d59","ef6548","d7301f","990000"],'8':["fff7ec","fee8c8","fdd49e","fdbb84","fc8d59","ef6548","d7301f","990000"],'9':["fff7ec","fee8c8","fdd49e","fdbb84","fc8d59","ef6548","d7301f","b30000","7f0000"]},
'YlOrRd':{'3':["ffeda0","feb24c","f03b20"],'4':["ffffb2","fecc5c","fd8d3c","e31a1c"],'5':["ffffb2","fecc5c","fd8d3c","f03b20","bd0026"],'6':["ffffb2","fed976","feb24c","fd8d3c","f03b20","bd0026"],'7':["ffffb2","fed976","feb24c","fd8d3c","fc4e2a","e31a1c","b10026"],'8':["ffffcc","ffeda0","fed976","feb24c","fd8d3c","fc4e2a","e31a1c","b10026"],'9':["ffffcc","ffeda0","fed976","feb24c","fd8d3c","fc4e2a","e31a1c","bd0026","800026"]},
'YlOrBr':{'3':["fff7bc","fec44f","d95f0e"],'4':["ffffd4","fed98e","fe9929","cc4c02"],'5':["ffffd4","fed98e","fe9929","d95f0e","993404"],'6':["ffffd4","fee391","fec44f","fe9929","d95f0e","993404"],'7':["ffffd4","fee391","fec44f","fe9929","ec7014","cc4c02","8c2d04"],'8':["ffffe5","fff7bc","fee391","fec44f","fe9929","ec7014","cc4c02","8c2d04"],'9':["ffffe5","fff7bc","fee391","fec44f","fe9929","ec7014","cc4c02","993404","662506"]},
'Purples':{'3':["efedf5","bcbddc","756bb1"],'4':["f2f0f7","cbc9e2","9e9ac8","6a51a3"],'5':["f2f0f7","cbc9e2","9e9ac8","756bb1","54278f"],'6':["f2f0f7","dadaeb","bcbddc","9e9ac8","756bb1","54278f"],'7':["f2f0f7","dadaeb","bcbddc","9e9ac8","807dba","6a51a3","4a1486"],'8':["fcfbfd","efedf5","dadaeb","bcbddc","9e9ac8","807dba","6a51a3","4a1486"],'9':["fcfbfd","efedf5","dadaeb","bcbddc","9e9ac8","807dba","6a51a3","54278f","3f007d"]},
'Blues':{'3':["deebf7","9ecae1","3182bd"],'4':["eff3ff","bdd7e7","6baed6","2171b5"],'5':["eff3ff","bdd7e7","6baed6","3182bd","08519c"],'6':["eff3ff","c6dbef","9ecae1","6baed6","3182bd","08519c"],'7':["eff3ff","c6dbef","9ecae1","6baed6","4292c6","2171b5","084594"],'8':["f7fbff","deebf7","c6dbef","9ecae1","6baed6","4292c6","2171b5","084594"],'9':["f7fbff","deebf7","c6dbef","9ecae1","6baed6","4292c6","2171b5","08519c","08306b"]},
'Greens':{'3':["e5f5e0","a1d99b","31a354"],'4':["edf8e9","bae4b3","74c476","238b45"],'5':["edf8e9","bae4b3","74c476","31a354","006d2c"],'6':["edf8e9","c7e9c0","a1d99b","74c476","31a354","006d2c"],'7':["edf8e9","c7e9c0","a1d99b","74c476","41ab5d","238b45","005a32"],'8':["f7fcf5","e5f5e0","c7e9c0","a1d99b","74c476","41ab5d","238b45","005a32"],'9':["f7fcf5","e5f5e0","c7e9c0","a1d99b","74c476","41ab5d","238b45","006d2c","00441b"]},
'Oranges':{'3':["fee6ce","fdae6b","e6550d"],'4':["feedde","fdbe85","fd8d3c","d94701"],'5':["feedde","fdbe85","fd8d3c","e6550d","a63603"],'6':["feedde","fdd0a2","fdae6b","fd8d3c","e6550d","a63603"],'7':["feedde","fdd0a2","fdae6b","fd8d3c","f16913","d94801","8c2d04"],'8':["fff5eb","fee6ce","fdd0a2","fdae6b","fd8d3c","f16913","d94801","8c2d04"],'9':["fff5eb","fee6ce","fdd0a2","fdae6b","fd8d3c","f16913","d94801","a63603","7f2704"]},
'Reds':{'3':["fee0d2","fc9272","de2d26"],'4':["fee5d9","fcae91","fb6a4a","cb181d"],'5':["fee5d9","fcae91","fb6a4a","de2d26","a50f15"],'6':["fee5d9","fcbba1","fc9272","fb6a4a","de2d26","a50f15"],'7':["fee5d9","fcbba1","fc9272","fb6a4a","ef3b2c","cb181d","99000d"],'8':["fff5f0","fee0d2","fcbba1","fc9272","fb6a4a","ef3b2c","cb181d","99000d"],'9':["fff5f0","fee0d2","fcbba1","fc9272","fb6a4a","ef3b2c","cb181d","a50f15","67000d"]},
'Greys':{'3':["f0f0f0","bdbdbd","636363"],'4':["f7f7f7","cccccc","969696","525252"],'5':["f7f7f7","cccccc","969696","636363","252525"],'6':["f7f7f7","d9d9d9","bdbdbd","969696","636363","252525"],'7':["f7f7f7","d9d9d9","bdbdbd","969696","737373","525252","252525"],'8':["ffffff","f0f0f0","d9d9d9","bdbdbd","969696","737373","525252","252525"],'9':["ffffff","f0f0f0","d9d9d9","bdbdbd","969696","737373","525252","252525","000000"]},
'PuOr':{'3':["f1a340","f7f7f7","998ec3"],'4':["e66101","fdb863","b2abd2","5e3c99"],'5':["e66101","fdb863","f7f7f7","b2abd2","5e3c99"],'6':["b35806","f1a340","fee0b6","d8daeb","998ec3","542788"],'7':["b35806","f1a340","fee0b6","f7f7f7","d8daeb","998ec3","542788"],'8':["b35806","e08214","fdb863","fee0b6","d8daeb","b2abd2","8073ac","542788"],'9':["b35806","e08214","fdb863","fee0b6","f7f7f7","d8daeb","b2abd2","8073ac","542788"],'10':["7f3b08","b35806","e08214","fdb863","fee0b6","d8daeb","b2abd2","8073ac","542788","2d004b"],'11':["7f3b08","b35806","e08214","fdb863","fee0b6","f7f7f7","d8daeb","b2abd2","8073ac","542788","2d004b"]},
'BrBG':{'3':["d8b365","f5f5f5","5ab4ac"],'4':["a6611a","dfc27d","80cdc1","018571"],'5':["a6611a","dfc27d","f5f5f5","80cdc1","018571"],'6':["8c510a","d8b365","f6e8c3","c7eae5","5ab4ac","01665e"],'7':["8c510a","d8b365","f6e8c3","f5f5f5","c7eae5","5ab4ac","01665e"],'8':["8c510a","bf812d","dfc27d","f6e8c3","c7eae5","80cdc1","35978f","01665e"],'9':["8c510a","bf812d","dfc27d","f6e8c3","f5f5f5","c7eae5","80cdc1","35978f","01665e"],'10':["543005","8c510a","bf812d","dfc27d","f6e8c3","c7eae5","80cdc1","35978f","01665e","003c30"],'11':["543005","8c510a","bf812d","dfc27d","f6e8c3","f5f5f5","c7eae5","80cdc1","35978f","01665e","003c30"]},
'PRGn':{'3':["af8dc3","f7f7f7","7fbf7b"],'4':["7b3294","c2a5cf","a6dba0","008837"],'5':["7b3294","c2a5cf","f7f7f7","a6dba0","008837"],'6':["762a83","af8dc3","e7d4e8","d9f0d3","7fbf7b","1b7837"],'7':["762a83","af8dc3","e7d4e8","f7f7f7","d9f0d3","7fbf7b","1b7837"],'8':["762a83","9970ab","c2a5cf","e7d4e8","d9f0d3","a6dba0","5aae61","1b7837"],'9':["762a83","9970ab","c2a5cf","e7d4e8","f7f7f7","d9f0d3","a6dba0","5aae61","1b7837"],'10':["40004b","762a83","9970ab","c2a5cf","e7d4e8","d9f0d3","a6dba0","5aae61","1b7837","00441b"],'11':["40004b","762a83","9970ab","c2a5cf","e7d4e8","f7f7f7","d9f0d3","a6dba0","5aae61","1b7837","00441b"]},
'PiYG':{'3':["e9a3c9","f7f7f7","a1d76a"],'4':["d01c8b","f1b6da","b8e186","4dac26"],'5':["d01c8b","f1b6da","f7f7f7","b8e186","4dac26"],'6':["c51b7d","e9a3c9","fde0ef","e6f5d0","a1d76a","4d9221"],'7':["c51b7d","e9a3c9","fde0ef","f7f7f7","e6f5d0","a1d76a","4d9221"],'8':["c51b7d","de77ae","f1b6da","fde0ef","e6f5d0","b8e186","7fbc41","4d9221"],'9':["c51b7d","de77ae","f1b6da","fde0ef","f7f7f7","e6f5d0","b8e186","7fbc41","4d9221"],'10':["8e0152","c51b7d","de77ae","f1b6da","fde0ef","e6f5d0","b8e186","7fbc41","4d9221","276419"],'11':["8e0152","c51b7d","de77ae","f1b6da","fde0ef","f7f7f7","e6f5d0","b8e186","7fbc41","4d9221","276419"]},
'RdBu':{'3':["ef8a62","f7f7f7","67a9cf"],'4':["ca0020","f4a582","92c5de","0571b0"],'5':["ca0020","f4a582","f7f7f7","92c5de","0571b0"],'6':["b2182b","ef8a62","fddbc7","d1e5f0","67a9cf","2166ac"],'7':["b2182b","ef8a62","fddbc7","f7f7f7","d1e5f0","67a9cf","2166ac"],'8':["b2182b","d6604d","f4a582","fddbc7","d1e5f0","92c5de","4393c3","2166ac"],'9':["b2182b","d6604d","f4a582","fddbc7","f7f7f7","d1e5f0","92c5de","4393c3","2166ac"],'10':["67001f","b2182b","d6604d","f4a582","fddbc7","d1e5f0","92c5de","4393c3","2166ac","053061"],'11':["67001f","b2182b","d6604d","f4a582","fddbc7","f7f7f7","d1e5f0","92c5de","4393c3","2166ac","053061"]},
'RdGy':{'3':["ef8a62","ffffff","999999"],'4':["ca0020","f4a582","bababa","404040"],'5':["ca0020","f4a582","ffffff","bababa","404040"],'6':["b2182b","ef8a62","fddbc7","e0e0e0","999999","4d4d4d"],'7':["b2182b","ef8a62","fddbc7","ffffff","e0e0e0","999999","4d4d4d"],'8':["b2182b","d6604d","f4a582","fddbc7","e0e0e0","bababa","878787","4d4d4d"],'9':["b2182b","d6604d","f4a582","fddbc7","ffffff","e0e0e0","bababa","878787","4d4d4d"],'10':["67001f","b2182b","d6604d","f4a582","fddbc7","e0e0e0","bababa","878787","4d4d4d","1a1a1a"],'11':["67001f","b2182b","d6604d","f4a582","fddbc7","ffffff","e0e0e0","bababa","878787","4d4d4d","1a1a1a"]},
'RdYlBu':{'3':["fc8d59","ffffbf","91bfdb"],'4':["d7191c","fdae61","abd9e9","2c7bb6"],'5':["d7191c","fdae61","ffffbf","abd9e9","2c7bb6"],'6':["d73027","fc8d59","fee090","e0f3f8","91bfdb","4575b4"],'7':["d73027","fc8d59","fee090","ffffbf","e0f3f8","91bfdb","4575b4"],'8':["d73027","f46d43","fdae61","fee090","e0f3f8","abd9e9","74add1","4575b4"],'9':["d73027","f46d43","fdae61","fee090","ffffbf","e0f3f8","abd9e9","74add1","4575b4"],'10':["a50026","d73027","f46d43","fdae61","fee090","e0f3f8","abd9e9","74add1","4575b4","313695"],'11':["a50026","d73027","f46d43","fdae61","fee090","ffffbf","e0f3f8","abd9e9","74add1","4575b4","313695"]},
'Spectral':{'3':["fc8d59","ffffbf","99d594"],'4':["d7191c","fdae61","abdda4","2b83ba"],'5':["d7191c","fdae61","ffffbf","abdda4","2b83ba"],'6':["d53e4f","fc8d59","fee08b","e6f598","99d594","3288bd"],'7':["d53e4f","fc8d59","fee08b","ffffbf","e6f598","99d594","3288bd"],'8':["d53e4f","f46d43","fdae61","fee08b","e6f598","abdda4","66c2a5","3288bd"],'9':["d53e4f","f46d43","fdae61","fee08b","ffffbf","e6f598","abdda4","66c2a5","3288bd"],'10':["9e0142","d53e4f","f46d43","fdae61","fee08b","e6f598","abdda4","66c2a5","3288bd","5e4fa2"],'11':["9e0142","d53e4f","f46d43","fdae61","fee08b","ffffbf","e6f598","abdda4","66c2a5","3288bd","5e4fa2"]},
'RdYlGn':{'3':["fc8d59","ffffbf","91cf60"],'4':["d7191c","fdae61","a6d96a","1a9641"],'5':["d7191c","fdae61","ffffbf","a6d96a","1a9641"],'6':["d73027","fc8d59","fee08b","d9ef8b","91cf60","1a9850"],'7':["d73027","fc8d59","fee08b","ffffbf","d9ef8b","91cf60","1a9850"],'8':["d73027","f46d43","fdae61","fee08b","d9ef8b","a6d96a","66bd63","1a9850"],'9':["d73027","f46d43","fdae61","fee08b","ffffbf","d9ef8b","a6d96a","66bd63","1a9850"],'10':["a50026","d73027","f46d43","fdae61","fee08b","d9ef8b","a6d96a","66bd63","1a9850","006837"],'11':["a50026","d73027","f46d43","fdae61","fee08b","ffffbf","d9ef8b","a6d96a","66bd63","1a9850","006837"]},
'Accent':{'3':["7fc97f","beaed4","fdc086"],'4':["7fc97f","beaed4","fdc086","ffff99"],'5':["7fc97f","beaed4","fdc086","ffff99","386cb0"],'6':["7fc97f","beaed4","fdc086","ffff99","386cb0","f0027f"],'7':["7fc97f","beaed4","fdc086","ffff99","386cb0","f0027f","bf5b17"],'8':["7fc97f","beaed4","fdc086","ffff99","386cb0","f0027f","bf5b17","666666"]},
'Dark2':{'3':["1b9e77","d95f02","7570b3"],'4':["1b9e77","d95f02","7570b3","e7298a"],'5':["1b9e77","d95f02","7570b3","e7298a","66a61e"],'6':["1b9e77","d95f02","7570b3","e7298a","66a61e","e6ab02"],'7':["1b9e77","d95f02","7570b3","e7298a","66a61e","e6ab02","a6761d"],'8':["1b9e77","d95f02","7570b3","e7298a","66a61e","e6ab02","a6761d","666666"]},
'Pastel1':{'3':["fbb4ae","b3cde3","ccebc5"],'4':["fbb4ae","b3cde3","ccebc5","decbe4"],'5':["fbb4ae","b3cde3","ccebc5","decbe4","fed9a6"],'6':["fbb4ae","b3cde3","ccebc5","decbe4","fed9a6","ffffcc"],'7':["fbb4ae","b3cde3","ccebc5","decbe4","fed9a6","ffffcc","e5d8bd"],'8':["fbb4ae","b3cde3","ccebc5","decbe4","fed9a6","ffffcc","e5d8bd","fddaec"],'9':["fbb4ae","b3cde3","ccebc5","decbe4","fed9a6","ffffcc","e5d8bd","fddaec","f2f2f2"]},
'Pastel2':{'3':["b3e2cd","fdcdac","cbd5e8"],'4':["b3e2cd","fdcdac","cbd5e8","f4cae4"],'5':["b3e2cd","fdcdac","cbd5e8","f4cae4","e6f5c9"],'6':["b3e2cd","fdcdac","cbd5e8","f4cae4","e6f5c9","fff2ae"],'7':["b3e2cd","fdcdac","cbd5e8","f4cae4","e6f5c9","fff2ae","f1e2cc"],'8':["b3e2cd","fdcdac","cbd5e8","f4cae4","e6f5c9","fff2ae","f1e2cc","cccccc"]},
'Paired':{'3':["a6cee3","1f78b4","b2df8a"],'4':["a6cee3","1f78b4","b2df8a","33a02c"],'5':["a6cee3","1f78b4","b2df8a","33a02c","fb9a99"],'6':["a6cee3","1f78b4","b2df8a","33a02c","fb9a99","e31a1c"],'7':["a6cee3","1f78b4","b2df8a","33a02c","fb9a99","e31a1c","fdbf6f"],'8':["a6cee3","1f78b4","b2df8a","33a02c","fb9a99","e31a1c","fdbf6f","ff7f00"],'9':["a6cee3","1f78b4","b2df8a","33a02c","fb9a99","e31a1c","fdbf6f","ff7f00","cab2d6"],'10':["a6cee3","1f78b4","b2df8a","33a02c","fb9a99","e31a1c","fdbf6f","ff7f00","cab2d6","6a3d9a"],'11':["a6cee3","1f78b4","b2df8a","33a02c","fb9a99","e31a1c","fdbf6f","ff7f00","cab2d6","6a3d9a","ffff99"],'12':["a6cee3","1f78b4","b2df8a","33a02c","fb9a99","e31a1c","fdbf6f","ff7f00","cab2d6","6a3d9a","ffff99","b15928"]},
'Set1':{'3':["e41a1c","377eb8","4daf4a"],'4':["e41a1c","377eb8","4daf4a","984ea3"],'5':["e41a1c","377eb8","4daf4a","984ea3","ff7f00"],'6':["e41a1c","377eb8","4daf4a","984ea3","ff7f00","ffff33"],'7':["e41a1c","377eb8","4daf4a","984ea3","ff7f00","ffff33","a65628"],'8':["e41a1c","377eb8","4daf4a","984ea3","ff7f00","ffff33","a65628","f781bf"],'9':["e41a1c","377eb8","4daf4a","984ea3","ff7f00","ffff33","a65628","f781bf","999999"]},
'Set2':{'3':["66c2a5","fc8d62","8da0cb"],'4':["66c2a5","fc8d62","8da0cb","e78ac3"],'5':["66c2a5","fc8d62","8da0cb","e78ac3","a6d854"],'6':["66c2a5","fc8d62","8da0cb","e78ac3","a6d854","ffd92f"],'7':["66c2a5","fc8d62","8da0cb","e78ac3","a6d854","ffd92f","e5c494"],'8':["66c2a5","fc8d62","8da0cb","e78ac3","a6d854","ffd92f","e5c494","b3b3b3"]},
'Set3':{'3':["8dd3c7","ffffb3","bebada"],'4':["8dd3c7","ffffb3","bebada","fb8072"],'5':["8dd3c7","ffffb3","bebada","fb8072","80b1d3"],'6':["8dd3c7","ffffb3","bebada","fb8072","80b1d3","fdb462"],'7':["8dd3c7","ffffb3","bebada","fb8072","80b1d3","fdb462","b3de69"],'8':["8dd3c7","ffffb3","bebada","fb8072","80b1d3","fdb462","b3de69","fccde5"],'9':["8dd3c7","ffffb3","bebada","fb8072","80b1d3","fdb462","b3de69","fccde5","d9d9d9"],'10':["8dd3c7","ffffb3","bebada","fb8072","80b1d3","fdb462","b3de69","fccde5","d9d9d9","bc80bd"],'11':["8dd3c7","ffffb3","bebada","fb8072","80b1d3","fdb462","b3de69","fccde5","d9d9d9","bc80bd","ccebc5"],'12':["8dd3c7","ffffb3","bebada","fb8072","80b1d3","fdb462","b3de69","fccde5","d9d9d9","bc80bd","ccebc5","ffed6f"]},
}
cb = colorbrewer
# exports.misc = {
# coolwarm: {7:['#3B4CC0', '#6F91F2', '#A9C5FC', '#DDDDDD', '#F6B69B', '#E6745B', '#B40426']},
# warmcool: {7:['#B40426', '#E6745B', '#F6B69B', '#DDDDDD', '#A9C5FC', '#6F91F2', '#3B4CC0']},
# cubehelix: {7:['#000000', '#182E49', '#2B6F39', '#A07949', '#D490C6', '#C2D8F3', '#FFFFFF']},
# gnuplot: {7:['#000033', '#0000CC', '#5000FF', '#C729D6', '#FF758A', '#FFC23D', '#FFFF60']},
# jet: {7:['#00007F', '#002AFF', '#00D4FF', '#7FFF7F', '#FFD400', '#FF2A00', '#7F0000']},
# parula: {7:['#352A87', '#056EDE', '#089BCE', '#33B7A0', '#A3BD6A', '#F9BD3F', '#F9FB0E']},
# tol_rainbow: {7:['#781C81', '#3F60AE', '#539EB6', '#6DB388', '#CAB843', '#E78532', '#D92120']},
# cividis: {7:['#00204C', '#213D6B', '#555B6C', '#7B7A77', '#A59C74', '#D3C064', '#FFE945']}
# }
# exports.niccoli = {
# cubicyf: {7:['#830CAB', '#7556F3', '#5590E7', '#3BBCAC', '#52D965', '#86EA50', '#CCEC5A']},
# cubicl: {7:['#780085', '#7651EE', '#4C9ED9', '#49CF7F', '#85EB50', '#D4E35B', '#F9965B']},
# isol: {7:['#E839E5', '#7C58FA', '#2984B9', '#0A9A4D', '#349704', '#9E7C09', '#FF3A2A']},
# linearl: {7:['#040404', '#2C1C5D', '#114E81', '#00834B', '#37B200', '#C4CA39', '#F7ECE5']},
# linearlhot: {7:['#060303', '#620100', '#B20022', '#DE2007', '#D78E00', '#C9CE00', '#F2F2B7']}
# }
matplotlib = {
'magma': {'7':['#000004', '#2C105C', '#711F81', '#B63679', '#EE605E', '#FDAE78', '#FCFDBF']},
'inferno': {'7':['#000004', '#320A5A', '#781B6C', '#BB3654', '#EC6824', '#FBB41A', '#FCFFA4']},
'plasma': {'7':['#0D0887', '#5B02A3', '#9A179B', '#CB4678', '#EB7852', '#FBB32F', '#F0F921']},
'viridis': {'7':['#440154', '#433982', '#30678D', '#218F8B', '#36B677', '#8ED542', '#FDE725']}
}
# exports.kovesi = {
# cyclic_grey_15_85_c0: {7:['#787878', '#B0B0B0', '#B0B0B0', '#767676', '#414141', '#424242', '#767676']},
# cyclic_grey_15_85_c0_s25: {7:['#2D2D2D', '#5B5B5B', '#949494', '#CACACA', '#949494', '#5A5A5A', '#2D2D2D']},
# cyclic_mrybm_35_75_c68: {7:['#F985F8', '#D82D5F', '#C14E04', '#D0AA25', '#2C76B1', '#7556F9', '#F785F9']},
# cyclic_mrybm_35_75_c68_s25: {7:['#3E3FF0', '#B976FC', '#F55CB1', '#B71C18', '#D28004', '#8E9871', '#3C40EE']},
# cyclic_mygbm_30_95_c78: {7:['#EF55F2', '#FCC882', '#B8E014', '#32AD26', '#2F5DB9', '#712AF7', '#ED53F3']},
# cyclic_mygbm_30_95_c78_s25: {7:['#2E22EA', '#B341FB', '#FC93C0', '#F1ED37', '#77C80D', '#458873', '#2C24E9']},
# cyclic_wrwbw_40_90_c42: {7:['#DFD5D8', '#D9694D', '#D86449', '#DDD1D6', '#6C81E5', '#6F83E5', '#DDD5DA']},
# cyclic_wrwbw_40_90_c42_s25: {7:['#1A63E5', '#B0B2E4', '#E4A695', '#C93117', '#E3A18F', '#ADB0E4', '#1963E5']},
# diverging_isoluminant_cjm_75_c23: {7:['#00C9FF', '#69C3E8', '#98BED0', '#B8B8BB', '#CBB1C6', '#DCA8D5', '#ED9EE4']},
# diverging_isoluminant_cjm_75_c24: {7:['#00CBFE', '#62C5E7', '#96BFD0', '#B8B8BB', '#CCB1C8', '#DEA7D6', '#F09DE6']},
# diverging_isoluminant_cjo_70_c25: {7:['#00B6FF', '#67B2E4', '#8FAFC7', '#ABABAB', '#C7A396', '#E09A81', '#F6906D']},
# diverging_linear_bjr_30_55_c53: {7:['#002AD7', '#483FB0', '#5E528A', '#646464', '#A15C49', '#D44A2C', '#FF1900']},
# diverging_linear_bjy_30_90_c45: {7:['#1431C1', '#5A50B2', '#796FA2', '#938F8F', '#B8AB74', '#DAC652', '#FDE409']},
# diverging_rainbow_bgymr_45_85_c67: {7:['#085CF8', '#3C9E49', '#98BB18', '#F3CC1D', '#FE8F7B', '#F64497', '#D70500']},
# diverging_bkr_55_10_c35: {7:['#1981FA', '#315CA9', '#2D3B5E', '#221F21', '#5C2F28', '#9E4035', '#E65041']},
# diverging_bky_60_10_c30: {7:['#0E94FA', '#2F68A9', '#2D405E', '#212020', '#4C3E20', '#7D6321', '#B38B1A']},
# diverging_bwr_40_95_c42: {7:['#2151DB', '#8182E3', '#BCB7EB', '#EBE2E6', '#EEAD9D', '#DC6951', '#C00206']},
# diverging_bwr_55_98_c37: {7:['#2480FF', '#88A4FD', '#C4CDFC', '#F8F6F7', '#FDC1B3', '#F58B73', '#E65037']},
# diverging_cwm_80_100_c22: {7:['#00D9FF', '#89E6FF', '#C9F2FF', '#FEFFFF', '#FEE3FA', '#FCC9F5', '#FAAEF0']},
# diverging_gkr_60_10_c40: {7:['#36A616', '#347420', '#2B4621', '#22201D', '#633226', '#AC462F', '#FD5838']},
# diverging_gwr_55_95_c38: {7:['#39970E', '#7DB461', '#B7D2A7', '#EDEAE6', '#F9BAB2', '#F78579', '#ED4744']},
# diverging_gwv_55_95_c39: {7:['#39970E', '#7DB461', '#B7D2A7', '#EBEBEA', '#E0BEED', '#CD8DE9', '#B859E4']},
# isoluminant_cgo_70_c39: {7:['#37B7EC', '#4DBAC6', '#63BB9E', '#86B876', '#B3AE60', '#D8A05F', '#F6906D']},
# isoluminant_cgo_80_c38: {7:['#70D1FF', '#74D4E0', '#80D6BA', '#9BD594', '#C4CC7D', '#EABF77', '#FFB281']},
# isoluminant_cm_70_c39: {7:['#14BAE6', '#5DB2EA', '#8CAAEB', '#B0A1E3', '#CF98D3', '#E98FC1', '#FE85AD']},
# rainbow_bgyr_35_85_c72: {7:['#0034F5', '#1E7D83', '#4DA910', '#B3C120', '#FCC228', '#FF8410', '#FD3000']},
# rainbow_bgyr_35_85_c73: {7:['#0035F9', '#1E7D83', '#4DA910', '#B3C01A', '#FDC120', '#FF8303', '#FF2A00']},
# rainbow_bgyrm_35_85_c69: {7:['#0030F5', '#36886A', '#82B513', '#EDC823', '#F68E19', '#F45A44', '#FD92FA']},
# rainbow_bgyrm_35_85_c71: {7:['#0035F9', '#34886A', '#80B412', '#F1CA24', '#FD8814', '#FE4E41', '#FD92FA']},
# linear_bgy_10_95_c74: {7:['#000C7D', '#002CB9', '#005EA3', '#198E61', '#32BA1A', '#70E21A', '#FFF123']},
# linear_bgyw_15_100_c67: {7:['#1B0084', '#1D26C7', '#2E68AB', '#4C9A41', '#95BE16', '#E1DB41', '#FFFFFF']},
# linear_bgyw_15_100_c68: {7:['#1A0086', '#1B27C8', '#2469AD', '#4B9B41', '#95BE16', '#E1DB41', '#FFFFFF']},
# linear_blue_5_95_c73: {7:['#00014E', '#0E02A8', '#2429F4', '#2D6CFD', '#36A3FD', '#2CD8FA', '#B3FFF6']},
# linear_blue_95_50_c20: {7:['#F1F1F1', '#D0DCEC', '#B1C8E6', '#93B5DC', '#7BA1CA', '#5E8EBC', '#3B7CB2']},
# linear_bmw_5_95_c86: {7:['#00024B', '#0708A6', '#451AF4', '#B621FE', '#F957FE', '#FEA8FD', '#FEEBFE']},
# linear_bmw_5_95_c89: {7:['#000558', '#0014BF', '#251EFA', '#B71EFF', '#F655FF', '#FFA6FF', '#FEEBFE']},
# linear_bmy_10_95_c71: {7:['#000F5D', '#48188F', '#A60B8A', '#E4336F', '#F97E4A', '#FCBE39', '#F5F94E']},
# linear_bmy_10_95_c78: {7:['#000C7D', '#3013A7', '#A7018B', '#EE1774', '#FF7051', '#FFB722', '#FFF123']},
# linear_gow_60_85_c27: {7:['#669B90', '#87A37D', '#B4A671', '#D4AC6A', '#D8B97A', '#D7C6A6', '#D4D4D4']},
# linear_gow_65_90_c35: {7:['#70AD5C', '#A3B061', '#CCB267', '#E6B86D', '#E7C786', '#E5D5B3', '#E2E2E2']},
# linear_green_5_95_c69: {7:['#011506', '#093805', '#146007', '#1F890B', '#2AB610', '#35E415', '#D8FF15']},
# linear_grey_0_100_c0: {7:['#000000', '#272727', '#4E4E4E', '#777777', '#A2A2A2', '#CFCFCF', '#FFFFFF']},
# linear_grey_10_95_c0: {7:['#1B1B1B', '#393939', '#5A5A5A', '#7D7D7D', '#A2A2A2', '#C9C9C9', '#F1F1F1']},
# linear_kry_5_95_c72: {7:['#111111', '#660304', '#A80502', '#E72205', '#FE7310', '#F4BE26', '#F7F909']},
# linear_kry_5_98_c75: {7:['#111111', '#6B0004', '#AF0000', '#F50C00', '#FF7705', '#FFBF13', '#FFFE1C']},
# linear_kryw_5_100_c64: {7:['#111111', '#6A0303', '#B00703', '#F02C06', '#FE8714', '#F3CE4C', '#FFFFFF']},
# linear_kryw_5_100_c67: {7:['#111111', '#6C0004', '#B20000', '#F81300', '#FF7D05', '#FFC43E', '#FFFFFF']},
# linear_ternary_blue_0_44_c57: {7:['#000000', '#051238', '#091F5E', '#0D2B83', '#1139AB', '#1546D3', '#1A54FF']},
# linear_ternary_green_0_46_c42: {7:['#000000', '#001C00', '#002E00', '#004100', '#005500', '#006900', '#008000']},
# linear_ternary_red_0_50_c52: {7:['#000000', '#320900', '#531000', '#761600', '#991C00', '#BE2400', '#E62B00']}
# }
| cmocean = {'Thermal': {'7': ['042333', '2c3395', '744992', 'b15f82', 'eb7958', 'fbb43d', 'e8fa5b']}, 'Haline': {'7': ['2a186c', '14439c', '206e8b', '3c9387', '5ab978', 'aad85c', 'fdef9a']}, 'Solar': {'7': ['331418', '682325', '973b1c', 'b66413', 'cb921a', 'dac62f', 'e1fd4b']}, 'Ice': {'7': ['040613', '292851', '3f4b96', '427bb7', '61a8c7', '9cd4da', 'eafdfd']}, 'Gray': {'7': ['000000', '232323', '4a4a49', '727171', '9b9a9a', 'cacac9', 'fffffd']}, 'Oxy': {'7': ['400505', '850a0b', '6f6f6e', '9b9a9a', 'cbcac9', 'ebf34b', 'ddaf19']}, 'Deep': {'7': ['fdfecc', 'a5dfa7', '5dbaa4', '488e9e', '3e6495', '3f396c', '281a2c']}, 'Dense': {'7': ['e6f1f1', 'a2cee2', '76a4e5', '7871d5', '7642a5', '621d62', '360e24']}, 'Algae': {'7': ['d7f9d0', 'a2d595', '64b463', '129450', '126e45', '1a482f', '122414']}, 'Matter': {'7': ['feedb0', 'f7b37c', 'eb7858', 'ce4356', '9f2462', '66185c', '2f0f3e']}, 'Turbid': {'7': ['e9f6ab', 'd3c671', 'bf9747', 'a1703b', '795338', '4d392d', '221f1b']}, 'Speed': {'7': ['fffdcd', 'e1cd73', 'aaac20', '5f920c', '187328', '144b2a', '172313']}, 'Amp': {'7': ['f1edec', 'dfbcb0', 'd08b73', 'c0583b', 'a62225', '730e27', '3c0912']}, 'Tempo': {'7': ['fff6f4', 'c3d1ba', '7db390', '2a937f', '156d73', '1c455b', '151d44']}, 'Phase': {'7': ['a8780d', 'd74957', 'd02fd0', '7d73f0', '1e93a8', '359943', 'a8780d']}, 'Balance': {'7': ['181c43', '0c5ebe', '75aabe', 'f1eceb', 'd08b73', 'a52125', '3c0912']}, 'Delta': {'7': ['112040', '1c67a0', '6db6b3', 'fffccc', 'abac21', '177228', '172313']}, 'Curl': {'7': ['151d44', '156c72', '7eb390', 'fdf5f4', 'db8d77', '9c3060', '340d35']}}
colorbrewer = {'YlGn': {'3': ['f7fcb9', 'addd8e', '31a354'], '4': ['ffffcc', 'c2e699', '78c679', '238443'], '5': ['ffffcc', 'c2e699', '78c679', '31a354', '006837'], '6': ['ffffcc', 'd9f0a3', 'addd8e', '78c679', '31a354', '006837'], '7': ['ffffcc', 'd9f0a3', 'addd8e', '78c679', '41ab5d', '238443', '005a32'], '8': ['ffffe5', 'f7fcb9', 'd9f0a3', 'addd8e', '78c679', '41ab5d', '238443', '005a32'], '9': ['ffffe5', 'f7fcb9', 'd9f0a3', 'addd8e', '78c679', '41ab5d', '238443', '006837', '004529']}, 'YlGnBu': {'3': ['edf8b1', '7fcdbb', '2c7fb8'], '4': ['ffffcc', 'a1dab4', '41b6c4', '225ea8'], '5': ['ffffcc', 'a1dab4', '41b6c4', '2c7fb8', '253494'], '6': ['ffffcc', 'c7e9b4', '7fcdbb', '41b6c4', '2c7fb8', '253494'], '7': ['ffffcc', 'c7e9b4', '7fcdbb', '41b6c4', '1d91c0', '225ea8', '0c2c84'], '8': ['ffffd9', 'edf8b1', 'c7e9b4', '7fcdbb', '41b6c4', '1d91c0', '225ea8', '0c2c84'], '9': ['ffffd9', 'edf8b1', 'c7e9b4', '7fcdbb', '41b6c4', '1d91c0', '225ea8', '253494', '081d58']}, 'GnBu': {'3': ['e0f3db', 'a8ddb5', '43a2ca'], '4': ['f0f9e8', 'bae4bc', '7bccc4', '2b8cbe'], '5': ['f0f9e8', 'bae4bc', '7bccc4', '43a2ca', '0868ac'], '6': ['f0f9e8', 'ccebc5', 'a8ddb5', '7bccc4', '43a2ca', '0868ac'], '7': ['f0f9e8', 'ccebc5', 'a8ddb5', '7bccc4', '4eb3d3', '2b8cbe', '08589e'], '8': ['f7fcf0', 'e0f3db', 'ccebc5', 'a8ddb5', '7bccc4', '4eb3d3', '2b8cbe', '08589e'], '9': ['f7fcf0', 'e0f3db', 'ccebc5', 'a8ddb5', '7bccc4', '4eb3d3', '2b8cbe', '0868ac', '084081']}, 'BuGn': {'3': ['e5f5f9', '99d8c9', '2ca25f'], '4': ['edf8fb', 'b2e2e2', '66c2a4', '238b45'], '5': ['edf8fb', 'b2e2e2', '66c2a4', '2ca25f', '006d2c'], '6': ['edf8fb', 'ccece6', '99d8c9', '66c2a4', '2ca25f', '006d2c'], '7': ['edf8fb', 'ccece6', '99d8c9', '66c2a4', '41ae76', '238b45', '005824'], '8': ['f7fcfd', 'e5f5f9', 'ccece6', '99d8c9', '66c2a4', '41ae76', '238b45', '005824'], '9': ['f7fcfd', 'e5f5f9', 'ccece6', '99d8c9', '66c2a4', '41ae76', '238b45', '006d2c', '00441b']}, 'PuBuGn': {'3': ['ece2f0', 'a6bddb', '1c9099'], '4': ['f6eff7', 'bdc9e1', '67a9cf', '02818a'], '5': ['f6eff7', 'bdc9e1', '67a9cf', '1c9099', '016c59'], '6': ['f6eff7', 'd0d1e6', 'a6bddb', '67a9cf', '1c9099', '016c59'], '7': ['f6eff7', 'd0d1e6', 'a6bddb', '67a9cf', '3690c0', '02818a', '016450'], '8': ['fff7fb', 'ece2f0', 'd0d1e6', 'a6bddb', '67a9cf', '3690c0', '02818a', '016450'], '9': ['fff7fb', 'ece2f0', 'd0d1e6', 'a6bddb', '67a9cf', '3690c0', '02818a', '016c59', '014636']}, 'PuBu': {'3': ['ece7f2', 'a6bddb', '2b8cbe'], '4': ['f1eef6', 'bdc9e1', '74a9cf', '0570b0'], '5': ['f1eef6', 'bdc9e1', '74a9cf', '2b8cbe', '045a8d'], '6': ['f1eef6', 'd0d1e6', 'a6bddb', '74a9cf', '2b8cbe', '045a8d'], '7': ['f1eef6', 'd0d1e6', 'a6bddb', '74a9cf', '3690c0', '0570b0', '034e7b'], '8': ['fff7fb', 'ece7f2', 'd0d1e6', 'a6bddb', '74a9cf', '3690c0', '0570b0', '034e7b'], '9': ['fff7fb', 'ece7f2', 'd0d1e6', 'a6bddb', '74a9cf', '3690c0', '0570b0', '045a8d', '023858']}, 'BuPu': {'3': ['e0ecf4', '9ebcda', '8856a7'], '4': ['edf8fb', 'b3cde3', '8c96c6', '88419d'], '5': ['edf8fb', 'b3cde3', '8c96c6', '8856a7', '810f7c'], '6': ['edf8fb', 'bfd3e6', '9ebcda', '8c96c6', '8856a7', '810f7c'], '7': ['edf8fb', 'bfd3e6', '9ebcda', '8c96c6', '8c6bb1', '88419d', '6e016b'], '8': ['f7fcfd', 'e0ecf4', 'bfd3e6', '9ebcda', '8c96c6', '8c6bb1', '88419d', '6e016b'], '9': ['f7fcfd', 'e0ecf4', 'bfd3e6', '9ebcda', '8c96c6', '8c6bb1', '88419d', '810f7c', '4d004b']}, 'RdPu': {'3': ['fde0dd', 'fa9fb5', 'c51b8a'], '4': ['feebe2', 'fbb4b9', 'f768a1', 'ae017e'], '5': ['feebe2', 'fbb4b9', 'f768a1', 'c51b8a', '7a0177'], '6': ['feebe2', 'fcc5c0', 'fa9fb5', 'f768a1', 'c51b8a', '7a0177'], '7': ['feebe2', 'fcc5c0', 'fa9fb5', 'f768a1', 'dd3497', 'ae017e', '7a0177'], '8': ['fff7f3', 'fde0dd', 'fcc5c0', 'fa9fb5', 'f768a1', 'dd3497', 'ae017e', '7a0177'], '9': ['fff7f3', 'fde0dd', 'fcc5c0', 'fa9fb5', 'f768a1', 'dd3497', 'ae017e', '7a0177', '49006a']}, 'PuRd': {'3': ['e7e1ef', 'c994c7', 'dd1c77'], '4': ['f1eef6', 'd7b5d8', 'df65b0', 'ce1256'], '5': ['f1eef6', 'd7b5d8', 'df65b0', 'dd1c77', '980043'], '6': ['f1eef6', 'd4b9da', 'c994c7', 'df65b0', 'dd1c77', '980043'], '7': ['f1eef6', 'd4b9da', 'c994c7', 'df65b0', 'e7298a', 'ce1256', '91003f'], '8': ['f7f4f9', 'e7e1ef', 'd4b9da', 'c994c7', 'df65b0', 'e7298a', 'ce1256', '91003f'], '9': ['f7f4f9', 'e7e1ef', 'd4b9da', 'c994c7', 'df65b0', 'e7298a', 'ce1256', '980043', '67001f']}, 'OrRd': {'3': ['fee8c8', 'fdbb84', 'e34a33'], '4': ['fef0d9', 'fdcc8a', 'fc8d59', 'd7301f'], '5': ['fef0d9', 'fdcc8a', 'fc8d59', 'e34a33', 'b30000'], '6': ['fef0d9', 'fdd49e', 'fdbb84', 'fc8d59', 'e34a33', 'b30000'], '7': ['fef0d9', 'fdd49e', 'fdbb84', 'fc8d59', 'ef6548', 'd7301f', '990000'], '8': ['fff7ec', 'fee8c8', 'fdd49e', 'fdbb84', 'fc8d59', 'ef6548', 'd7301f', '990000'], '9': ['fff7ec', 'fee8c8', 'fdd49e', 'fdbb84', 'fc8d59', 'ef6548', 'd7301f', 'b30000', '7f0000']}, 'YlOrRd': {'3': ['ffeda0', 'feb24c', 'f03b20'], '4': ['ffffb2', 'fecc5c', 'fd8d3c', 'e31a1c'], '5': ['ffffb2', 'fecc5c', 'fd8d3c', 'f03b20', 'bd0026'], '6': ['ffffb2', 'fed976', 'feb24c', 'fd8d3c', 'f03b20', 'bd0026'], '7': ['ffffb2', 'fed976', 'feb24c', 'fd8d3c', 'fc4e2a', 'e31a1c', 'b10026'], '8': ['ffffcc', 'ffeda0', 'fed976', 'feb24c', 'fd8d3c', 'fc4e2a', 'e31a1c', 'b10026'], '9': ['ffffcc', 'ffeda0', 'fed976', 'feb24c', 'fd8d3c', 'fc4e2a', 'e31a1c', 'bd0026', '800026']}, 'YlOrBr': {'3': ['fff7bc', 'fec44f', 'd95f0e'], '4': ['ffffd4', 'fed98e', 'fe9929', 'cc4c02'], '5': ['ffffd4', 'fed98e', 'fe9929', 'd95f0e', '993404'], '6': ['ffffd4', 'fee391', 'fec44f', 'fe9929', 'd95f0e', '993404'], '7': ['ffffd4', 'fee391', 'fec44f', 'fe9929', 'ec7014', 'cc4c02', '8c2d04'], '8': ['ffffe5', 'fff7bc', 'fee391', 'fec44f', 'fe9929', 'ec7014', 'cc4c02', '8c2d04'], '9': ['ffffe5', 'fff7bc', 'fee391', 'fec44f', 'fe9929', 'ec7014', 'cc4c02', '993404', '662506']}, 'Purples': {'3': ['efedf5', 'bcbddc', '756bb1'], '4': ['f2f0f7', 'cbc9e2', '9e9ac8', '6a51a3'], '5': ['f2f0f7', 'cbc9e2', '9e9ac8', '756bb1', '54278f'], '6': ['f2f0f7', 'dadaeb', 'bcbddc', '9e9ac8', '756bb1', '54278f'], '7': ['f2f0f7', 'dadaeb', 'bcbddc', '9e9ac8', '807dba', '6a51a3', '4a1486'], '8': ['fcfbfd', 'efedf5', 'dadaeb', 'bcbddc', '9e9ac8', '807dba', '6a51a3', '4a1486'], '9': ['fcfbfd', 'efedf5', 'dadaeb', 'bcbddc', '9e9ac8', '807dba', '6a51a3', '54278f', '3f007d']}, 'Blues': {'3': ['deebf7', '9ecae1', '3182bd'], '4': ['eff3ff', 'bdd7e7', '6baed6', '2171b5'], '5': ['eff3ff', 'bdd7e7', '6baed6', '3182bd', '08519c'], '6': ['eff3ff', 'c6dbef', '9ecae1', '6baed6', '3182bd', '08519c'], '7': ['eff3ff', 'c6dbef', '9ecae1', '6baed6', '4292c6', '2171b5', '084594'], '8': ['f7fbff', 'deebf7', 'c6dbef', '9ecae1', '6baed6', '4292c6', '2171b5', '084594'], '9': ['f7fbff', 'deebf7', 'c6dbef', '9ecae1', '6baed6', '4292c6', '2171b5', '08519c', '08306b']}, 'Greens': {'3': ['e5f5e0', 'a1d99b', '31a354'], '4': ['edf8e9', 'bae4b3', '74c476', '238b45'], '5': ['edf8e9', 'bae4b3', '74c476', '31a354', '006d2c'], '6': ['edf8e9', 'c7e9c0', 'a1d99b', '74c476', '31a354', '006d2c'], '7': ['edf8e9', 'c7e9c0', 'a1d99b', '74c476', '41ab5d', '238b45', '005a32'], '8': ['f7fcf5', 'e5f5e0', 'c7e9c0', 'a1d99b', '74c476', '41ab5d', '238b45', '005a32'], '9': ['f7fcf5', 'e5f5e0', 'c7e9c0', 'a1d99b', '74c476', '41ab5d', '238b45', '006d2c', '00441b']}, 'Oranges': {'3': ['fee6ce', 'fdae6b', 'e6550d'], '4': ['feedde', 'fdbe85', 'fd8d3c', 'd94701'], '5': ['feedde', 'fdbe85', 'fd8d3c', 'e6550d', 'a63603'], '6': ['feedde', 'fdd0a2', 'fdae6b', 'fd8d3c', 'e6550d', 'a63603'], '7': ['feedde', 'fdd0a2', 'fdae6b', 'fd8d3c', 'f16913', 'd94801', '8c2d04'], '8': ['fff5eb', 'fee6ce', 'fdd0a2', 'fdae6b', 'fd8d3c', 'f16913', 'd94801', '8c2d04'], '9': ['fff5eb', 'fee6ce', 'fdd0a2', 'fdae6b', 'fd8d3c', 'f16913', 'd94801', 'a63603', '7f2704']}, 'Reds': {'3': ['fee0d2', 'fc9272', 'de2d26'], '4': ['fee5d9', 'fcae91', 'fb6a4a', 'cb181d'], '5': ['fee5d9', 'fcae91', 'fb6a4a', 'de2d26', 'a50f15'], '6': ['fee5d9', 'fcbba1', 'fc9272', 'fb6a4a', 'de2d26', 'a50f15'], '7': ['fee5d9', 'fcbba1', 'fc9272', 'fb6a4a', 'ef3b2c', 'cb181d', '99000d'], '8': ['fff5f0', 'fee0d2', 'fcbba1', 'fc9272', 'fb6a4a', 'ef3b2c', 'cb181d', '99000d'], '9': ['fff5f0', 'fee0d2', 'fcbba1', 'fc9272', 'fb6a4a', 'ef3b2c', 'cb181d', 'a50f15', '67000d']}, 'Greys': {'3': ['f0f0f0', 'bdbdbd', '636363'], '4': ['f7f7f7', 'cccccc', '969696', '525252'], '5': ['f7f7f7', 'cccccc', '969696', '636363', '252525'], '6': ['f7f7f7', 'd9d9d9', 'bdbdbd', '969696', '636363', '252525'], '7': ['f7f7f7', 'd9d9d9', 'bdbdbd', '969696', '737373', '525252', '252525'], '8': ['ffffff', 'f0f0f0', 'd9d9d9', 'bdbdbd', '969696', '737373', '525252', '252525'], '9': ['ffffff', 'f0f0f0', 'd9d9d9', 'bdbdbd', '969696', '737373', '525252', '252525', '000000']}, 'PuOr': {'3': ['f1a340', 'f7f7f7', '998ec3'], '4': ['e66101', 'fdb863', 'b2abd2', '5e3c99'], '5': ['e66101', 'fdb863', 'f7f7f7', 'b2abd2', '5e3c99'], '6': ['b35806', 'f1a340', 'fee0b6', 'd8daeb', '998ec3', '542788'], '7': ['b35806', 'f1a340', 'fee0b6', 'f7f7f7', 'd8daeb', '998ec3', '542788'], '8': ['b35806', 'e08214', 'fdb863', 'fee0b6', 'd8daeb', 'b2abd2', '8073ac', '542788'], '9': ['b35806', 'e08214', 'fdb863', 'fee0b6', 'f7f7f7', 'd8daeb', 'b2abd2', '8073ac', '542788'], '10': ['7f3b08', 'b35806', 'e08214', 'fdb863', 'fee0b6', 'd8daeb', 'b2abd2', '8073ac', '542788', '2d004b'], '11': ['7f3b08', 'b35806', 'e08214', 'fdb863', 'fee0b6', 'f7f7f7', 'd8daeb', 'b2abd2', '8073ac', '542788', '2d004b']}, 'BrBG': {'3': ['d8b365', 'f5f5f5', '5ab4ac'], '4': ['a6611a', 'dfc27d', '80cdc1', '018571'], '5': ['a6611a', 'dfc27d', 'f5f5f5', '80cdc1', '018571'], '6': ['8c510a', 'd8b365', 'f6e8c3', 'c7eae5', '5ab4ac', '01665e'], '7': ['8c510a', 'd8b365', 'f6e8c3', 'f5f5f5', 'c7eae5', '5ab4ac', '01665e'], '8': ['8c510a', 'bf812d', 'dfc27d', 'f6e8c3', 'c7eae5', '80cdc1', '35978f', '01665e'], '9': ['8c510a', 'bf812d', 'dfc27d', 'f6e8c3', 'f5f5f5', 'c7eae5', '80cdc1', '35978f', '01665e'], '10': ['543005', '8c510a', 'bf812d', 'dfc27d', 'f6e8c3', 'c7eae5', '80cdc1', '35978f', '01665e', '003c30'], '11': ['543005', '8c510a', 'bf812d', 'dfc27d', 'f6e8c3', 'f5f5f5', 'c7eae5', '80cdc1', '35978f', '01665e', '003c30']}, 'PRGn': {'3': ['af8dc3', 'f7f7f7', '7fbf7b'], '4': ['7b3294', 'c2a5cf', 'a6dba0', '008837'], '5': ['7b3294', 'c2a5cf', 'f7f7f7', 'a6dba0', '008837'], '6': ['762a83', 'af8dc3', 'e7d4e8', 'd9f0d3', '7fbf7b', '1b7837'], '7': ['762a83', 'af8dc3', 'e7d4e8', 'f7f7f7', 'd9f0d3', '7fbf7b', '1b7837'], '8': ['762a83', '9970ab', 'c2a5cf', 'e7d4e8', 'd9f0d3', 'a6dba0', '5aae61', '1b7837'], '9': ['762a83', '9970ab', 'c2a5cf', 'e7d4e8', 'f7f7f7', 'd9f0d3', 'a6dba0', '5aae61', '1b7837'], '10': ['40004b', '762a83', '9970ab', 'c2a5cf', 'e7d4e8', 'd9f0d3', 'a6dba0', '5aae61', '1b7837', '00441b'], '11': ['40004b', '762a83', '9970ab', 'c2a5cf', 'e7d4e8', 'f7f7f7', 'd9f0d3', 'a6dba0', '5aae61', '1b7837', '00441b']}, 'PiYG': {'3': ['e9a3c9', 'f7f7f7', 'a1d76a'], '4': ['d01c8b', 'f1b6da', 'b8e186', '4dac26'], '5': ['d01c8b', 'f1b6da', 'f7f7f7', 'b8e186', '4dac26'], '6': ['c51b7d', 'e9a3c9', 'fde0ef', 'e6f5d0', 'a1d76a', '4d9221'], '7': ['c51b7d', 'e9a3c9', 'fde0ef', 'f7f7f7', 'e6f5d0', 'a1d76a', '4d9221'], '8': ['c51b7d', 'de77ae', 'f1b6da', 'fde0ef', 'e6f5d0', 'b8e186', '7fbc41', '4d9221'], '9': ['c51b7d', 'de77ae', 'f1b6da', 'fde0ef', 'f7f7f7', 'e6f5d0', 'b8e186', '7fbc41', '4d9221'], '10': ['8e0152', 'c51b7d', 'de77ae', 'f1b6da', 'fde0ef', 'e6f5d0', 'b8e186', '7fbc41', '4d9221', '276419'], '11': ['8e0152', 'c51b7d', 'de77ae', 'f1b6da', 'fde0ef', 'f7f7f7', 'e6f5d0', 'b8e186', '7fbc41', '4d9221', '276419']}, 'RdBu': {'3': ['ef8a62', 'f7f7f7', '67a9cf'], '4': ['ca0020', 'f4a582', '92c5de', '0571b0'], '5': ['ca0020', 'f4a582', 'f7f7f7', '92c5de', '0571b0'], '6': ['b2182b', 'ef8a62', 'fddbc7', 'd1e5f0', '67a9cf', '2166ac'], '7': ['b2182b', 'ef8a62', 'fddbc7', 'f7f7f7', 'd1e5f0', '67a9cf', '2166ac'], '8': ['b2182b', 'd6604d', 'f4a582', 'fddbc7', 'd1e5f0', '92c5de', '4393c3', '2166ac'], '9': ['b2182b', 'd6604d', 'f4a582', 'fddbc7', 'f7f7f7', 'd1e5f0', '92c5de', '4393c3', '2166ac'], '10': ['67001f', 'b2182b', 'd6604d', 'f4a582', 'fddbc7', 'd1e5f0', '92c5de', '4393c3', '2166ac', '053061'], '11': ['67001f', 'b2182b', 'd6604d', 'f4a582', 'fddbc7', 'f7f7f7', 'd1e5f0', '92c5de', '4393c3', '2166ac', '053061']}, 'RdGy': {'3': ['ef8a62', 'ffffff', '999999'], '4': ['ca0020', 'f4a582', 'bababa', '404040'], '5': ['ca0020', 'f4a582', 'ffffff', 'bababa', '404040'], '6': ['b2182b', 'ef8a62', 'fddbc7', 'e0e0e0', '999999', '4d4d4d'], '7': ['b2182b', 'ef8a62', 'fddbc7', 'ffffff', 'e0e0e0', '999999', '4d4d4d'], '8': ['b2182b', 'd6604d', 'f4a582', 'fddbc7', 'e0e0e0', 'bababa', '878787', '4d4d4d'], '9': ['b2182b', 'd6604d', 'f4a582', 'fddbc7', 'ffffff', 'e0e0e0', 'bababa', '878787', '4d4d4d'], '10': ['67001f', 'b2182b', 'd6604d', 'f4a582', 'fddbc7', 'e0e0e0', 'bababa', '878787', '4d4d4d', '1a1a1a'], '11': ['67001f', 'b2182b', 'd6604d', 'f4a582', 'fddbc7', 'ffffff', 'e0e0e0', 'bababa', '878787', '4d4d4d', '1a1a1a']}, 'RdYlBu': {'3': ['fc8d59', 'ffffbf', '91bfdb'], '4': ['d7191c', 'fdae61', 'abd9e9', '2c7bb6'], '5': ['d7191c', 'fdae61', 'ffffbf', 'abd9e9', '2c7bb6'], '6': ['d73027', 'fc8d59', 'fee090', 'e0f3f8', '91bfdb', '4575b4'], '7': ['d73027', 'fc8d59', 'fee090', 'ffffbf', 'e0f3f8', '91bfdb', '4575b4'], '8': ['d73027', 'f46d43', 'fdae61', 'fee090', 'e0f3f8', 'abd9e9', '74add1', '4575b4'], '9': ['d73027', 'f46d43', 'fdae61', 'fee090', 'ffffbf', 'e0f3f8', 'abd9e9', '74add1', '4575b4'], '10': ['a50026', 'd73027', 'f46d43', 'fdae61', 'fee090', 'e0f3f8', 'abd9e9', '74add1', '4575b4', '313695'], '11': ['a50026', 'd73027', 'f46d43', 'fdae61', 'fee090', 'ffffbf', 'e0f3f8', 'abd9e9', '74add1', '4575b4', '313695']}, 'Spectral': {'3': ['fc8d59', 'ffffbf', '99d594'], '4': ['d7191c', 'fdae61', 'abdda4', '2b83ba'], '5': ['d7191c', 'fdae61', 'ffffbf', 'abdda4', '2b83ba'], '6': ['d53e4f', 'fc8d59', 'fee08b', 'e6f598', '99d594', '3288bd'], '7': ['d53e4f', 'fc8d59', 'fee08b', 'ffffbf', 'e6f598', '99d594', '3288bd'], '8': ['d53e4f', 'f46d43', 'fdae61', 'fee08b', 'e6f598', 'abdda4', '66c2a5', '3288bd'], '9': ['d53e4f', 'f46d43', 'fdae61', 'fee08b', 'ffffbf', 'e6f598', 'abdda4', '66c2a5', '3288bd'], '10': ['9e0142', 'd53e4f', 'f46d43', 'fdae61', 'fee08b', 'e6f598', 'abdda4', '66c2a5', '3288bd', '5e4fa2'], '11': ['9e0142', 'd53e4f', 'f46d43', 'fdae61', 'fee08b', 'ffffbf', 'e6f598', 'abdda4', '66c2a5', '3288bd', '5e4fa2']}, 'RdYlGn': {'3': ['fc8d59', 'ffffbf', '91cf60'], '4': ['d7191c', 'fdae61', 'a6d96a', '1a9641'], '5': ['d7191c', 'fdae61', 'ffffbf', 'a6d96a', '1a9641'], '6': ['d73027', 'fc8d59', 'fee08b', 'd9ef8b', '91cf60', '1a9850'], '7': ['d73027', 'fc8d59', 'fee08b', 'ffffbf', 'd9ef8b', '91cf60', '1a9850'], '8': ['d73027', 'f46d43', 'fdae61', 'fee08b', 'd9ef8b', 'a6d96a', '66bd63', '1a9850'], '9': ['d73027', 'f46d43', 'fdae61', 'fee08b', 'ffffbf', 'd9ef8b', 'a6d96a', '66bd63', '1a9850'], '10': ['a50026', 'd73027', 'f46d43', 'fdae61', 'fee08b', 'd9ef8b', 'a6d96a', '66bd63', '1a9850', '006837'], '11': ['a50026', 'd73027', 'f46d43', 'fdae61', 'fee08b', 'ffffbf', 'd9ef8b', 'a6d96a', '66bd63', '1a9850', '006837']}, 'Accent': {'3': ['7fc97f', 'beaed4', 'fdc086'], '4': ['7fc97f', 'beaed4', 'fdc086', 'ffff99'], '5': ['7fc97f', 'beaed4', 'fdc086', 'ffff99', '386cb0'], '6': ['7fc97f', 'beaed4', 'fdc086', 'ffff99', '386cb0', 'f0027f'], '7': ['7fc97f', 'beaed4', 'fdc086', 'ffff99', '386cb0', 'f0027f', 'bf5b17'], '8': ['7fc97f', 'beaed4', 'fdc086', 'ffff99', '386cb0', 'f0027f', 'bf5b17', '666666']}, 'Dark2': {'3': ['1b9e77', 'd95f02', '7570b3'], '4': ['1b9e77', 'd95f02', '7570b3', 'e7298a'], '5': ['1b9e77', 'd95f02', '7570b3', 'e7298a', '66a61e'], '6': ['1b9e77', 'd95f02', '7570b3', 'e7298a', '66a61e', 'e6ab02'], '7': ['1b9e77', 'd95f02', '7570b3', 'e7298a', '66a61e', 'e6ab02', 'a6761d'], '8': ['1b9e77', 'd95f02', '7570b3', 'e7298a', '66a61e', 'e6ab02', 'a6761d', '666666']}, 'Pastel1': {'3': ['fbb4ae', 'b3cde3', 'ccebc5'], '4': ['fbb4ae', 'b3cde3', 'ccebc5', 'decbe4'], '5': ['fbb4ae', 'b3cde3', 'ccebc5', 'decbe4', 'fed9a6'], '6': ['fbb4ae', 'b3cde3', 'ccebc5', 'decbe4', 'fed9a6', 'ffffcc'], '7': ['fbb4ae', 'b3cde3', 'ccebc5', 'decbe4', 'fed9a6', 'ffffcc', 'e5d8bd'], '8': ['fbb4ae', 'b3cde3', 'ccebc5', 'decbe4', 'fed9a6', 'ffffcc', 'e5d8bd', 'fddaec'], '9': ['fbb4ae', 'b3cde3', 'ccebc5', 'decbe4', 'fed9a6', 'ffffcc', 'e5d8bd', 'fddaec', 'f2f2f2']}, 'Pastel2': {'3': ['b3e2cd', 'fdcdac', 'cbd5e8'], '4': ['b3e2cd', 'fdcdac', 'cbd5e8', 'f4cae4'], '5': ['b3e2cd', 'fdcdac', 'cbd5e8', 'f4cae4', 'e6f5c9'], '6': ['b3e2cd', 'fdcdac', 'cbd5e8', 'f4cae4', 'e6f5c9', 'fff2ae'], '7': ['b3e2cd', 'fdcdac', 'cbd5e8', 'f4cae4', 'e6f5c9', 'fff2ae', 'f1e2cc'], '8': ['b3e2cd', 'fdcdac', 'cbd5e8', 'f4cae4', 'e6f5c9', 'fff2ae', 'f1e2cc', 'cccccc']}, 'Paired': {'3': ['a6cee3', '1f78b4', 'b2df8a'], '4': ['a6cee3', '1f78b4', 'b2df8a', '33a02c'], '5': ['a6cee3', '1f78b4', 'b2df8a', '33a02c', 'fb9a99'], '6': ['a6cee3', '1f78b4', 'b2df8a', '33a02c', 'fb9a99', 'e31a1c'], '7': ['a6cee3', '1f78b4', 'b2df8a', '33a02c', 'fb9a99', 'e31a1c', 'fdbf6f'], '8': ['a6cee3', '1f78b4', 'b2df8a', '33a02c', 'fb9a99', 'e31a1c', 'fdbf6f', 'ff7f00'], '9': ['a6cee3', '1f78b4', 'b2df8a', '33a02c', 'fb9a99', 'e31a1c', 'fdbf6f', 'ff7f00', 'cab2d6'], '10': ['a6cee3', '1f78b4', 'b2df8a', '33a02c', 'fb9a99', 'e31a1c', 'fdbf6f', 'ff7f00', 'cab2d6', '6a3d9a'], '11': ['a6cee3', '1f78b4', 'b2df8a', '33a02c', 'fb9a99', 'e31a1c', 'fdbf6f', 'ff7f00', 'cab2d6', '6a3d9a', 'ffff99'], '12': ['a6cee3', '1f78b4', 'b2df8a', '33a02c', 'fb9a99', 'e31a1c', 'fdbf6f', 'ff7f00', 'cab2d6', '6a3d9a', 'ffff99', 'b15928']}, 'Set1': {'3': ['e41a1c', '377eb8', '4daf4a'], '4': ['e41a1c', '377eb8', '4daf4a', '984ea3'], '5': ['e41a1c', '377eb8', '4daf4a', '984ea3', 'ff7f00'], '6': ['e41a1c', '377eb8', '4daf4a', '984ea3', 'ff7f00', 'ffff33'], '7': ['e41a1c', '377eb8', '4daf4a', '984ea3', 'ff7f00', 'ffff33', 'a65628'], '8': ['e41a1c', '377eb8', '4daf4a', '984ea3', 'ff7f00', 'ffff33', 'a65628', 'f781bf'], '9': ['e41a1c', '377eb8', '4daf4a', '984ea3', 'ff7f00', 'ffff33', 'a65628', 'f781bf', '999999']}, 'Set2': {'3': ['66c2a5', 'fc8d62', '8da0cb'], '4': ['66c2a5', 'fc8d62', '8da0cb', 'e78ac3'], '5': ['66c2a5', 'fc8d62', '8da0cb', 'e78ac3', 'a6d854'], '6': ['66c2a5', 'fc8d62', '8da0cb', 'e78ac3', 'a6d854', 'ffd92f'], '7': ['66c2a5', 'fc8d62', '8da0cb', 'e78ac3', 'a6d854', 'ffd92f', 'e5c494'], '8': ['66c2a5', 'fc8d62', '8da0cb', 'e78ac3', 'a6d854', 'ffd92f', 'e5c494', 'b3b3b3']}, 'Set3': {'3': ['8dd3c7', 'ffffb3', 'bebada'], '4': ['8dd3c7', 'ffffb3', 'bebada', 'fb8072'], '5': ['8dd3c7', 'ffffb3', 'bebada', 'fb8072', '80b1d3'], '6': ['8dd3c7', 'ffffb3', 'bebada', 'fb8072', '80b1d3', 'fdb462'], '7': ['8dd3c7', 'ffffb3', 'bebada', 'fb8072', '80b1d3', 'fdb462', 'b3de69'], '8': ['8dd3c7', 'ffffb3', 'bebada', 'fb8072', '80b1d3', 'fdb462', 'b3de69', 'fccde5'], '9': ['8dd3c7', 'ffffb3', 'bebada', 'fb8072', '80b1d3', 'fdb462', 'b3de69', 'fccde5', 'd9d9d9'], '10': ['8dd3c7', 'ffffb3', 'bebada', 'fb8072', '80b1d3', 'fdb462', 'b3de69', 'fccde5', 'd9d9d9', 'bc80bd'], '11': ['8dd3c7', 'ffffb3', 'bebada', 'fb8072', '80b1d3', 'fdb462', 'b3de69', 'fccde5', 'd9d9d9', 'bc80bd', 'ccebc5'], '12': ['8dd3c7', 'ffffb3', 'bebada', 'fb8072', '80b1d3', 'fdb462', 'b3de69', 'fccde5', 'd9d9d9', 'bc80bd', 'ccebc5', 'ffed6f']}}
cb = colorbrewer
matplotlib = {'magma': {'7': ['#000004', '#2C105C', '#711F81', '#B63679', '#EE605E', '#FDAE78', '#FCFDBF']}, 'inferno': {'7': ['#000004', '#320A5A', '#781B6C', '#BB3654', '#EC6824', '#FBB41A', '#FCFFA4']}, 'plasma': {'7': ['#0D0887', '#5B02A3', '#9A179B', '#CB4678', '#EB7852', '#FBB32F', '#F0F921']}, 'viridis': {'7': ['#440154', '#433982', '#30678D', '#218F8B', '#36B677', '#8ED542', '#FDE725']}} |
valor = input().split(" ")
a, b, c = valor
maiorAB = ((int(a) + int(b)) + abs(int(a) - int(b)))/2
maiorAC = ((int(a) + int(c)) + abs(int(a) - int(c)))/2
maior = ((maiorAB + maiorAC) + abs(maiorAB - maiorAC))/2
print("%d eh o maior" % maior) | valor = input().split(' ')
(a, b, c) = valor
maior_ab = (int(a) + int(b) + abs(int(a) - int(b))) / 2
maior_ac = (int(a) + int(c) + abs(int(a) - int(c))) / 2
maior = (maiorAB + maiorAC + abs(maiorAB - maiorAC)) / 2
print('%d eh o maior' % maior) |
'''
Dutch National Flag Problem
Given an input array consisting on only 0, 1, and 2, sort the array in a single traversal. You're not allowed to use any sorting function that Python provides.
Note: O(n) does not necessarily mean single-traversal. For e.g. if you traverse the array twice, that would still be an O(n) solution but it will not count as single traversal.
Here is some boilerplate code and test cases to start with:
'''
def sort_012(input_list):
"""
Given an input array consisting on only 0, 1, and 2, sort the array in a single traversal.
Args:
input_list(list): List to be sorted
"""
pass
def test_function(test_case):
sorted_array = sort_012(test_case)
print(sorted_array)
if sorted_array == sorted(test_case):
print("Pass")
else:
print("Fail")
test_function([0, 0, 2, 2, 2, 1, 1, 1, 2, 0, 2])
test_function([2, 1, 2, 0, 0, 2, 1, 0, 1, 0, 0, 2, 2,
2, 1, 2, 0, 0, 0, 2, 1, 0, 2, 0, 0, 1])
test_function([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2])
| """
Dutch National Flag Problem
Given an input array consisting on only 0, 1, and 2, sort the array in a single traversal. You're not allowed to use any sorting function that Python provides.
Note: O(n) does not necessarily mean single-traversal. For e.g. if you traverse the array twice, that would still be an O(n) solution but it will not count as single traversal.
Here is some boilerplate code and test cases to start with:
"""
def sort_012(input_list):
"""
Given an input array consisting on only 0, 1, and 2, sort the array in a single traversal.
Args:
input_list(list): List to be sorted
"""
pass
def test_function(test_case):
sorted_array = sort_012(test_case)
print(sorted_array)
if sorted_array == sorted(test_case):
print('Pass')
else:
print('Fail')
test_function([0, 0, 2, 2, 2, 1, 1, 1, 2, 0, 2])
test_function([2, 1, 2, 0, 0, 2, 1, 0, 1, 0, 0, 2, 2, 2, 1, 2, 0, 0, 0, 2, 1, 0, 2, 0, 0, 1])
test_function([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2]) |
"""
Copyright (c) 2020, The Decred developers
See LICENSE for details.
mainnet holds mainnet parameters. Any values should mirror exactly
https://github.com/btcsuite/btcd/blob/master/chaincfg/params.go
"""
Name = "mainnet"
DefaultPort = "8333"
DNSSeeds = [
("seed.bitcoin.sipa.be", True),
("dnsseed.bluematt.me", True),
("dnsseed.bitcoin.dashjr.org", False),
("seed.bitcoinstats.com", True),
("seed.bitnodes.io", False),
("seed.bitcoin.jonasschnelli.ch", True),
]
# Chain parameters
GenesisHash = "000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f"
PowLimit = 2 ^ 224 - 1
PowLimitBits = 0x1D00FFFF
BIP0034Height = (
227931 # 000000000000024b89b42a942fe0d9fea3bb44ab7bd1b19115dd6a759c0808b8
)
BIP0065Height = (
388381 # 000000000000000004c2b624ed5d7756c508d90fd0da2c7c679febfa6c4735f0
)
BIP0066Height = (
363725 # 00000000000000000379eaa19dce8c9b722d46ae6a57c2f1a988119488b50931
)
CoinbaseMaturity = 100
SubsidyReductionInterval = 210000
TargetTimespan = 60 * 60 * 24 * 14 # 14 days
TargetTimePerBlock = 60 * 10 # 10 minutes
RetargetAdjustmentFactor = 4 # 25% less, 400% more
ReduceMinDifficulty = False
MinDiffReductionTime = 0
GenerateSupported = False
# Checkpoints ordered from oldest to newest.
Checkpoints = [
(11111, "0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d"),
(33333, "000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6"),
(74000, "0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20"),
(105000, "00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97"),
(134444, "00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe"),
(168000, "000000000000099e61ea72015e79632f216fe6cb33d7899acb35b75c8303b763"),
(193000, "000000000000059f452a5f7340de6682a977387c17010ff6e6c3bd83ca8b1317"),
(210000, "000000000000048b95347e83192f69cf0366076336c639f9b7228e9ba171342e"),
(216116, "00000000000001b4f4b433e81ee46494af945cf96014816a4e2370f11b23df4e"),
(225430, "00000000000001c108384350f74090433e7fcf79a606b8e797f065b130575932"),
(250000, "000000000000003887df1f29024b06fc2200b55f8af8f35453d7be294df2d214"),
(267300, "000000000000000a83fbd660e918f218bf37edd92b748ad940483c7c116179ac"),
(279000, "0000000000000001ae8c72a0b0c301f67e3afca10e819efa9041e458e9bd7e40"),
(300255, "0000000000000000162804527c6e9b9f0563a280525f9d08c12041def0a0f3b2"),
(319400, "000000000000000021c6052e9becade189495d1c539aa37c58917305fd15f13b"),
(343185, "0000000000000000072b8bf361d01a6ba7d445dd024203fafc78768ed4368554"),
(352940, "000000000000000010755df42dba556bb72be6a32f3ce0b6941ce4430152c9ff"),
(382320, "00000000000000000a8dc6ed5b133d0eb2fd6af56203e4159789b092defd8ab2"),
(400000, "000000000000000004ec466ce4732fe6f1ed1cddc2ed4b328fff5224276e3f6f"),
(430000, "000000000000000001868b2bb3a285f3cc6b33ea234eb70facf4dcdf22186b87"),
(460000, "000000000000000000ef751bbce8e744ad303c47ece06c8d863e4d417efc258c"),
(490000, "000000000000000000de069137b17b8d5a3dfbd5b145b2dcfb203f15d0c4de90"),
(520000, "0000000000000000000d26984c0229c9f6962dc74db0a6d525f2f1640396f69c"),
(550000, "000000000000000000223b7a2298fb1c6c75fb0efc28a4c56853ff4112ec6bc9"),
(560000, "0000000000000000002c7b276daf6efb2b6aa68e2ce3be67ef925b3264ae7122"),
]
# Consensus rule change deployments.
#
# The miner confirmation window is defined as:
# target proof of work timespan / target proof of work spacing
RuleChangeActivationThreshold = 1916 # 95% of MinerConfirmationWindow
MinerConfirmationWindow = 2016
# Mempool parameters
RelayNonStdTxs = False
# Human-readable part for Bech32 encoded segwit addresses, as defined in
# BIP 173.
Bech32HRPSegwit = "bc" # always bc for main net
# Address encoding magics
PubKeyHashAddrID = 0x00 # starts with 1
ScriptHashAddrID = 0x05 # starts with 3
PrivateKeyID = 0x80 # starts with 5 (uncompressed) or K (compressed)
WitnessPubKeyHashAddrID = 0x06 # starts with p2
WitnessScriptHashAddrID = 0x0A # starts with 7Xh
# BIP32 hierarchical deterministic extended key magics
HDPrivateKeyID = (0x0488ADE4).to_bytes(4, byteorder="big") # starts with xprv
HDPublicKeyID = (0x0488B21E).to_bytes(4, byteorder="big") # starts with xpub
# BIP44 coin type used in the hierarchical deterministic path for
# address generation.
HDCoinType = 0
| """
Copyright (c) 2020, The Decred developers
See LICENSE for details.
mainnet holds mainnet parameters. Any values should mirror exactly
https://github.com/btcsuite/btcd/blob/master/chaincfg/params.go
"""
name = 'mainnet'
default_port = '8333'
dns_seeds = [('seed.bitcoin.sipa.be', True), ('dnsseed.bluematt.me', True), ('dnsseed.bitcoin.dashjr.org', False), ('seed.bitcoinstats.com', True), ('seed.bitnodes.io', False), ('seed.bitcoin.jonasschnelli.ch', True)]
genesis_hash = '000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f'
pow_limit = 2 ^ 224 - 1
pow_limit_bits = 486604799
bip0034_height = 227931
bip0065_height = 388381
bip0066_height = 363725
coinbase_maturity = 100
subsidy_reduction_interval = 210000
target_timespan = 60 * 60 * 24 * 14
target_time_per_block = 60 * 10
retarget_adjustment_factor = 4
reduce_min_difficulty = False
min_diff_reduction_time = 0
generate_supported = False
checkpoints = [(11111, '0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d'), (33333, '000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6'), (74000, '0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20'), (105000, '00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97'), (134444, '00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe'), (168000, '000000000000099e61ea72015e79632f216fe6cb33d7899acb35b75c8303b763'), (193000, '000000000000059f452a5f7340de6682a977387c17010ff6e6c3bd83ca8b1317'), (210000, '000000000000048b95347e83192f69cf0366076336c639f9b7228e9ba171342e'), (216116, '00000000000001b4f4b433e81ee46494af945cf96014816a4e2370f11b23df4e'), (225430, '00000000000001c108384350f74090433e7fcf79a606b8e797f065b130575932'), (250000, '000000000000003887df1f29024b06fc2200b55f8af8f35453d7be294df2d214'), (267300, '000000000000000a83fbd660e918f218bf37edd92b748ad940483c7c116179ac'), (279000, '0000000000000001ae8c72a0b0c301f67e3afca10e819efa9041e458e9bd7e40'), (300255, '0000000000000000162804527c6e9b9f0563a280525f9d08c12041def0a0f3b2'), (319400, '000000000000000021c6052e9becade189495d1c539aa37c58917305fd15f13b'), (343185, '0000000000000000072b8bf361d01a6ba7d445dd024203fafc78768ed4368554'), (352940, '000000000000000010755df42dba556bb72be6a32f3ce0b6941ce4430152c9ff'), (382320, '00000000000000000a8dc6ed5b133d0eb2fd6af56203e4159789b092defd8ab2'), (400000, '000000000000000004ec466ce4732fe6f1ed1cddc2ed4b328fff5224276e3f6f'), (430000, '000000000000000001868b2bb3a285f3cc6b33ea234eb70facf4dcdf22186b87'), (460000, '000000000000000000ef751bbce8e744ad303c47ece06c8d863e4d417efc258c'), (490000, '000000000000000000de069137b17b8d5a3dfbd5b145b2dcfb203f15d0c4de90'), (520000, '0000000000000000000d26984c0229c9f6962dc74db0a6d525f2f1640396f69c'), (550000, '000000000000000000223b7a2298fb1c6c75fb0efc28a4c56853ff4112ec6bc9'), (560000, '0000000000000000002c7b276daf6efb2b6aa68e2ce3be67ef925b3264ae7122')]
rule_change_activation_threshold = 1916
miner_confirmation_window = 2016
relay_non_std_txs = False
bech32_hrp_segwit = 'bc'
pub_key_hash_addr_id = 0
script_hash_addr_id = 5
private_key_id = 128
witness_pub_key_hash_addr_id = 6
witness_script_hash_addr_id = 10
hd_private_key_id = 76066276 .to_bytes(4, byteorder='big')
hd_public_key_id = 76067358 .to_bytes(4, byteorder='big')
hd_coin_type = 0 |
class Solution:
def productExceptSelf(self, nums: list[int]) -> list[int]:
products, it = [1] * len(nums), 1
for i in range(len(nums) - 1, -1, -1):
products[i] = it
it *= nums[i]
it = 1
for i in range(len(products)):
products[i] *= it
it *= nums[i]
return products
| class Solution:
def product_except_self(self, nums: list[int]) -> list[int]:
(products, it) = ([1] * len(nums), 1)
for i in range(len(nums) - 1, -1, -1):
products[i] = it
it *= nums[i]
it = 1
for i in range(len(products)):
products[i] *= it
it *= nums[i]
return products |
# Misc functions
def CountCombinations(n, m=1):
"""Number of ways to partition a number e.g 1+1+1, 2+1"""
ans = 1
if n <= 1:
return 1
for i in xrange(m, int(ceil(n/2.))):
ans += comb(n-i, i)
return ans
def quicksort(r):
return r if len(r)<2 else qs([i for i in r[1:] if i<r[0]]) + [r[0]] + qs([i for i in r[1:] if i>= r[0]])
def prime(n):
return n>1 and not any(map(lambda x: n % x == 0, xrange(2, n/2+1)))
def fact(n):
return reduce(op.mul, xrange(2,n+1)) if n > 1 else 1
def hcf(a, b):
return hcf(b, a % b) if a % b else b
def lcm(a, b):
return a * b / hcf(a, b)
def fact(n):
return reduce(op.mul, xrange(2,n+1)) if n > 1 else 1
# Triangle number
Tn = lambda n:n*(n+1)/2
# Pentagonal number
Pn = lambda n:n*(3*n-1)/2
# Hexagonal number
Hn = lambda n:n*(2*n-1)
| def count_combinations(n, m=1):
"""Number of ways to partition a number e.g 1+1+1, 2+1"""
ans = 1
if n <= 1:
return 1
for i in xrange(m, int(ceil(n / 2.0))):
ans += comb(n - i, i)
return ans
def quicksort(r):
return r if len(r) < 2 else qs([i for i in r[1:] if i < r[0]]) + [r[0]] + qs([i for i in r[1:] if i >= r[0]])
def prime(n):
return n > 1 and (not any(map(lambda x: n % x == 0, xrange(2, n / 2 + 1))))
def fact(n):
return reduce(op.mul, xrange(2, n + 1)) if n > 1 else 1
def hcf(a, b):
return hcf(b, a % b) if a % b else b
def lcm(a, b):
return a * b / hcf(a, b)
def fact(n):
return reduce(op.mul, xrange(2, n + 1)) if n > 1 else 1
tn = lambda n: n * (n + 1) / 2
pn = lambda n: n * (3 * n - 1) / 2
hn = lambda n: n * (2 * n - 1) |
#
# PySNMP MIB module APEX-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/APEX-MIB
# Produced by pysmi-0.3.4 at Wed May 1 11:23:23 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ConstraintsIntersection, ConstraintsUnion, ValueSizeConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsIntersection", "ConstraintsUnion", "ValueSizeConstraint", "ValueRangeConstraint")
giproducts, = mibBuilder.importSymbols("BCS-IDENT-MIB", "giproducts")
trapIdentifier, trapNetworkElemModelNumber, trapNetworkElemSerialNum, trapNetworkElemAlarmStatus, trapNETrapLastTrapTimeStamp, trapAdditionalInfoInteger1, trapChangedValueIpAddress, trapChangedValueDisplayString, trapNetworkElemAvailStatus, trapChangedValueInteger, trapSequenceId, trapText, trapAdditionalInfoInteger2, trapPerceivedSeverity, trapChangedValueOID, trapNetworkElemOperState, trapAdditionalInfoInteger3, trapChangedObjectId, trapNetworkElemAdminState = mibBuilder.importSymbols("BCS-TRAPS-MIB", "trapIdentifier", "trapNetworkElemModelNumber", "trapNetworkElemSerialNum", "trapNetworkElemAlarmStatus", "trapNETrapLastTrapTimeStamp", "trapAdditionalInfoInteger1", "trapChangedValueIpAddress", "trapChangedValueDisplayString", "trapNetworkElemAvailStatus", "trapChangedValueInteger", "trapSequenceId", "trapText", "trapAdditionalInfoInteger2", "trapPerceivedSeverity", "trapChangedValueOID", "trapNetworkElemOperState", "trapAdditionalInfoInteger3", "trapChangedObjectId", "trapNetworkElemAdminState")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Counter32, ModuleIdentity, IpAddress, Unsigned32, Integer32, Bits, ObjectIdentity, Counter64, Gauge32, iso, TimeTicks, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "ModuleIdentity", "IpAddress", "Unsigned32", "Integer32", "Bits", "ObjectIdentity", "Counter64", "Gauge32", "iso", "TimeTicks", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
apex = ModuleIdentity((1, 3, 6, 1, 4, 1, 1166, 1, 31))
apex.setRevisions(('2011-02-15 00:00', '2010-08-17 00:00', '2010-06-30 00:00', '2010-03-05 00:00', '2010-01-19 00:00', '2009-10-16 00:00', '2009-09-14 00:00', '2009-06-09 00:00', '2009-04-20 00:00', '2009-04-08 00:00', '2009-04-14 00:00', '2009-03-23 00:00', '2009-03-10 00:00', '2008-07-24 00:00', '2008-07-08 00:00', '2008-02-18 14:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: apex.setRevisionsDescriptions(("Version 2.5: February 15, 2011 - Updated the description for apexDtaConfigApplyChange - Corrected the range of values for apexQamRfPortChannelInfoChanA. January 27, 2011 - Updated the description for apexDtaGeneralConfigInvalidApplyText. January 10, 2011 - Added apexChassisRedundancyRedundantApexSecIp, apexChassisRedundancyRedundantHBEnable, apexChassisRedundancyCurrHBIntfIPStatus December 20, 2010 - apexQamConfigApplyTable does not set apply change for apexQamChannelConfigTable - Added channel apply table apexQamChannelConfigApplyTable - Added status MIB variables for 4x4 apexQamModuleStatBoardTemperature, apexQamModuleStatBoardTemperatureFault, apexQamModuleStat5VdcSupplym, apexQamModuleStat5VdcFault, apexQamModuleStat3dot3VdcSupply, apexQamModuleStat3dot3VdcFault, apexQamModuleStatCommError, apexQamModuleStatCodeInitError - Added QAM versions MIB variable apexQamQrmRevFpga2 - Added QAM version status MIB variable apexQamQrmRevStatFpga2 - Added QAM file revision information MIB variables apexQrmFileRevFpga2 and apexQrmFileRevDateTime - Added EM support MIB tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable - Added 4x4 error codes dc5VoltError,dc3-3VoltError,commLost,codeVersions, codeDownload,codeDownloadError - Number of RF ports increased to 12 for apexQamConfigApplyRfPortNum - Number of RF ports increased to 12 for apexQamRfPortStatRfPortNum - Number of RF ports increased to 12 for apexQamRfPortMuteStatusRfPortNum - Number of File Revisisons increased to 3 for apexQrmFileRevFileSetNum - Number of RF ports increased to 12 for apexRpcRfPortNum - Number of RF ports increased to 12 for apexEasServerNum - Added qam4x4Channel for apexQamModuleStatInstalled - Added any4x4 for apexQamRfRedundStatusMismatch MIB parameter - Added fileSet3 for apexQrmDownloadFileSet MIB parameter December 10, 2010 - Updated RF Port and OTS numbers mapping in the description for apexDtaConfigApplyChange. December 6, 2010 - Changed the range of apexDtaConfigApplyIndex and apexDtaRfPortConfigIndex from '1 to 6' to '1 to 12' to support 4x4 QAM also. December 3, 2010 - Added apexOutputTsStatusServicesMuxed new OutputStream stats field November 23, 2010 - Added new pid-remapping mode 'unrestricted' November 18, 2010 - Added new configuration parameter apexProgramBasedPmtOffset - Added new pid remapping mode remapProgramBased2 November 11, 2010 - Obsoleted apexEventChassisRedunPrimaryForceFailover, apexEventChassisRedunSecondaryForceFailover. - Added apexChassisRedundancyGigEMismatchStatus, apexChassisRedundancyQamMismatchStatus, apexChassisRedundancyFirmwareMismatchStatus. - Added apexChassisRedundancyGigE12LinkStatus, apexChassisRedundancyGigE34LinkStatus. ", 'Version 2.3: August 17, 2010 - Added new values for apexRtspConfMhaSbeApsLevel. July 23, 2010 - Added apexChassisRedundancyPrimaryStandbyOverride which will force the primary apex to go active ', 'Version 2.2: June 30, 2010 - Renamed apexManRteGbeInRedConfigStatMapTable to apexManRteGbeInRedStatusMapTable, and moved the table to apexManualRoutingStatus Group. June 29, 2010 - Added apexManRteGbeInRedConfigStatMapTable to provide the mapping between apexManRteGbeInRedTable and apexInputTsStatTable. - Corrected parent node for apexManRteGbeInRedApplyEntry to apexManRteGbeInRedApplyTable. June 25, 2010 - Obsoleted apexEasApplyChange, apexEasPhysInType, apexEasPhysInPort, apexEasRcvUdpPort, apexEasMulticastIpAddress, apexEasSourceIpAddress. - Added apexEasServerTable containing apexEasServerNum, apexEasServerPhysInType, apexEasServerPhysInPort, apexEasServerRcvUdpPort, apexEasServerMulticastIpAddress, apexEasServerSourceIpAddress. - Added apexEasServerApplyTable which includes apexEasServerApplyChange. June 24, 2010 - Added enumeration to apexQamRfPortStatCodeInitError. June 22, 2010 - Changed range of apexQamRfPortStatNumChannelsActive to 0..8. - Changed descriptions of apexQamModuleStatTemperature, apexQamModuleStatPowerFault, apexQamQrmRevFpga, apexQamRfPortStatTemperature, and apexQamQrmRevBootLoaderFw. - Moved apexRpcRfPortTable and apexRpcRfChannelTable to the apexRpcConfig group and renumbered apexRpcAvgBandwidthEnable, and apexRpcApplyChange in apexRpcConfigGeneral. June 16, 2010 - Added apexRpcDeviceName, apexRpcDeviceType, apexRpcControlInterface, apexRpcNumShellSessions, apexRpcRfPortTable, apexRpcRfChannelTable, apexRpcAvgBandwidthEnable, apexRpcApplyChange. June 14, 2010 - Added apexOutputTsStatusScgsProvisioned. June 10, 2010 - Moved apexRdsEventTable to apexRdsStatus group from apexManualRoutingStatus group. June 04, 2010 - Removed apexDtaEventTable. - Renamed apexIppvEventTable to apexRdsEventTable and renamed all the members from apexIPPVEvent*** to apexRdsEvent***. - Added apexRdsEventPrkmWkemAvailable and apexRdsEventCcmAvailable members in the table apexRdsEventTable. June 03, 2010 - Modified the scalar apexOutputProgramDtaServiceEncryptionMode to apexOutputProgramDtaEncryptionMode. - Updated the description of apexRdsSetDefault. May 28, 2010 - Added the following MIB variables apexDtaEventTable, apexOutputProgramDtaServiceEncryptionMode apexOutputProgramDtaServiceEncryptionMode. May 27, 2010 - Added apexChassisRedundancyEventTable. May 25, 2010 - Added apexOutputTsStatusMessageGenerationNum. May 18, 2010 - Changed apexPidMapIndex and apexPidMapApplyIndex size. May 10, 2010 - Added the static routing configuration table apexFastEnetRoutingTable. May 5, 2010 - Added Follow DTCP support variables, apexSesContConfFollowDtcp and apexUdpMapFollowDtcp. April 13, 2010 - Updated the resource descriptions for MIB variables after review. April 7, 2010 - Changed description of apexDepiSessionConfigUdpPort to reflect new range. March 25, 2010 - Added the following configuration parameters: apexIppvEventTable, apexOutputProgramProgramType, apexRdsConfigRds2Enable, apexRdsConfigServerUrl, apexRdsStatusServerIp, apexRdsStatusServerPort, apexRdsStatusServerRootDirPath, and apexRdsStatusValidation. March 10, 2010 - Changed the apexDepiSessionConfigUdpPort field possible range. March 8, 2010 - Added apexDepiSessionStatusSessionID new Depi Session Status field. ', 'Version 2.1: March 5, 2010 - Changed comment in apexSesContConfRedundType description field. February 19, 2010 - Change range for MHA and RTSP Manager ports. ', "Version 2.0: January 19, 2010 - Added comments in apexPsipStatusInputMessageType description field. - Added comments in apexPsipStatusOutputMessageType description field. January 13, 2010 - Added apexRtspConfMhaSbe, apexRtspConfMhaSbeEncryptionMode, apexRtspConfMhaSbeCciLevel, apexRtspConfMhaSbeApsLevel, apexRtspConfMhaSbeCitSetting, apexRtspConfMhaSbeApplyChange, apexRtspConfMhaGeneral, and apexRtspConfMhaUdpMapEnable. - Added 'Not supported' to apexDepiControlConfigType. December 28, 2009 - Added apexGbeIpFragmentedPkts and apexGbeTotalIpFragmentedPkts. December 22, 2009 - Changed SYNTAX of apexPsipConfigApplyChange and apexPsipConfigTimeApplyChange to ApplyDataToDeviceTYPE. December 18, 2009 - Changed apexPsipApplyChange to apexPsipConfigApplyChange in descriptions for apexPsipConfigGeneral entries. - Changed apexPsipApplyTimeChange to apexPsipConfigTimeApplyChange in descriptions for apexPsipConfigTime entries. - Changed SDM file annotation to config.ini for apexGbeConfInputUnicastTimeout, apexGbeConfInputMulticastTimeout, and apexGbeConfLossOfInputTsType. December 17, 2009 - Deleted duplicate header comment and removed extraneous line termination characters. December 14, 2009 - Added SDM Commit annotations and additional text to the descriptions of apexMcEmmInsertionMode, apexMcEmmInsertionPid1Enable, apexMcEmmInsertionPid1, apexMcEmmInsertionPid2Enable, and apexMcEmmInsertionPid2. December 3, 2009 - Removed 'Not supported' from apexOutputTsConfPsipEnable description. November 17, 2009 - Added apexGbeStatusInterfaceRedundFaultCondition. November 12, 2009 - Added zero as valid integer and updated description for apexGbeStatusInterfaceRedundActiveIf. November 6, 2009 - Corrected index in apexGbeStatusInterfaceRedundEntry. November 5, 2009 - Changed description for apexGbeConfIfRedundForceFailover. November 4, 2009 - Added apexGbeStatusInterfaceRedund and apexGbeConfigInterfaceRedundancy. - Corrected range on apexChassisRedundancyUdpPort November 2, 2009 - Added trapGigeToHostCommFault October 30, 2009 - Added apexQamRfPortStatCodeInitError, apexQamQrmRevisionStatusTable, apexQrmDownloadConfigTable, apexQrmDownloadSupported, apexQrmDownloadRequired, apexQrmDownloadFileSet, and apexQrmFileRevisionTable. October 29, 2009 - Made apexSesContConfRedundThreshold obsolete. October 29, 2009 - Added apexPsipStatusServiceTable. - Added apexPsipStatusOutputTable. - Added apexPsipStatusInputTable. October 29, 2009 - Added apexAlarmGigeToHostCommFault October 26, 2009 - Added apexGbeConfInRedundManualRouteRedundType and apexSesContConfRedundType. October 19, 2009 - Merged 2.3.x MIB (version 1.9). - Brought in version 1.9 Revision Description. October 7, 2009 - Added apexRtspStatQamMptsModeTable. October 2, 2009 - Added apexRtspConfMhaTable. September 30, 2009 - Added apexPsip group. September 17, 2009 - Added apexGbeRxDocsisFrames, apexGbeRxMpegDocsisFrames, and apexGbeTotalRxDocsisFrames. September 9, 2009 - Added apexGbeConfInputUnicastTimeout, apexGbeConfInputMulticastTimeout, and apexGbeConfLossOfInputTsType. June 2, 2009 - Merged 2.1.1E MIB (version 1.7). - Brought in version 1.7 Revision Description. ", 'Version 1.10: October 16, 2009 - Added apexSysConfigMcEmmInsertion. ', 'Version 1.9: October 8, 2009 - Added enumeration for Watchdog Reboot Reason. September 14, 2009 - Corrected @Commit annotation in Chassis redundancy and DTA CAT configuration params. September 07, 2009 - Added apexChassisRedundancyGeneralConfigSyncStatusText. August 31, 2009 - Changed enumeration values of apexChassisRedundancyMulticastRedundancyMode. August 26, 2009 - Added apexQamRfPortMuteStatusTable. August 19, 2009 - Removed DTA Network pid params from apexQamRfConfigTable, DTA Enable from apexQamChannelConfigTable, and apexQamStatusInvalidApplyText. - Added apexDtaConfigApplyTable, apexDtaRfPortConfigTable and apexDtaOtsConfigTable. August 17, 2009 - Added apexChassisRedundancyUdpPort, apexChassisRedundancyRedundantApexIp, apexChassisRedundancyFailOverEnet2LinkLoss, apexChassisRedundancyStatusInvalidApplyText, apexEventChassisRedunPrimaryForceFailover, apexEventChassisRedunSecondaryForceFailover, apexEventChassisRedunFirmwareVersionMismatch, and apexEventChassisRedunQAMVersionMismatch. August 13, 2009 - Added apexDtaGeneralConfigInvalidApplyText, apexQamStatusInvalidApplyText to know DTA CAT, NET and EMM pid number validation status from host. August 06, 2009 - Removed apexEventChassisRedundancySecondaryFailOver. - Added apexAlarmChassisRedundancySecondaryFailover and apexEnableChassisRedundancySecondaryFailover. August 5, 2009 - DTA NET and CAT/EMM pid ranges and default values are changed. August 3, 2009 - Added apexDtaConfigApplyChange parameter. - Added/Merged Chassis level DTA parameters, RF Port level DTA parameters and DTA enable status for each OTS/QAM Channel. July 31, 2009 - Added apexChassisRedundancyConfigApplyChange and apexChassisRedundancyConfigEnable. June 26, 2009 - Removed apexChassisRedundancyFailOverHwFault. June 25, 2009 - Added Suspend and Config Sync states to primary and secondary apex status params. June 9, 2009 - Added apexOampLinkActive and apexDataIpLinkActive. May 27, 2009 - Added Chassis Redundancy groups apexChassisRedundancyConfig and apexChassisRedundancyStatus. - Added Chassis Redundancy alarms, events, and traps. ', 'Version 1.8: June 9, 2009 - Added apexOampLinkActive and apexDataIpLinkActive. ', "Version 1.7: Based on 2.1.0 and it does not contain MIB changes from MIB version 1.5 and 1.6. [Apex 2.2 release and Apex 2.1.4 release.] April 20, 2009 - Removed @Config(config=yes, reboot=no) @Commit(param=apexDepiControlConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') from table objects and put into apexDepiControlConfigTable. - Did the same for apexDepiSessionConfigTable. April 08, 2009 - Put back apexDepiSessionStatusInSequenceDiscards back in. April 02, 2009 - Removed apexDepiSessionStatusInSequenceDiscards - Changed enums of Control and Session status March 19, 2009 - Updated the DEPI Statistics and status related MIBs. - Removed Mcmts from the DEPI related MIB groups - Renamed mcmtsDocsis operating mode to Depi - Renamed apexMcmtsDepiControlConfigDynamic to apexDepiControlConfigType - Added the DtiSyncLoss Trap February 9, 2009 - Added M-CMTS support group apexDepiControl. - Added mcmtsDocsis to apexOutputTsConfOperatingMode ", 'Version 1.6: [Note: Version 1.6 was for APEX Release 2.1.5. Changes in this version are also in Version 1.5. This description is added to the merged Version 2.0 for completeness.] April 8, 2009 - Added apexUdpMapMulticastTable, apexUdpMapMulticastApplyTable, apexUdpMapStatusGeneral, apexUdpMapMulticastInvalidApplyText. ', 'Version 1.5: April 14, 2009 - Added apexUdpMapStatusGeneral, apexUdpMapMulticastInvalidApplyText. April 13, 2009 - Added apexUdpMapMulticastTable, apexUdpMapMulticastApplyTable. March 31, 2009 - Added dvb-csa-simulcrypt to list for Encryption algorithm March 24, 2009 - Added apexGbeInputDataTsSmoothingPeriod, apexGbeInputDataTsBufferDepth apexGbeConfigInputDataTsApplyText, apexGbeConfigInputDataTsTable, apexGbeConfigInputDataTsApplyTable. ', 'Version 1.4: March 24, 2009 - Added remapProgramBased to apexOutputTsConfPidRemappingMode. March 23, 2009 - Added 3, 5, and 7 to range of apexQamRfConfigNumChannelsEnabled. March 20, 2009 - Added apexEcmEmmFirstPid, apexEcmEmmNumberPids, apexSimulcryptExternalEisSetting, apexSimulcryptEmEnable - Changed range of apexUdpMapNumberProgs. February 12, 2009 - Added apexSimulcryptEmEnable. February 6, 2009 - Added apexGbeSfp. January 8, 2009 - Added apexOutputTsConfApplyTable and apexOutputTsStatusInvalidApplyText. - Fixed header comment group numbers for apexOutputTsConfig. ', "Version 1.3: March 10, 2009 - Added apexGbeNominalBufferLevel. - Made apexGbeJitterAbsorption obsolete. February 18, 2009 - Added RF Redundancy and REM alarm codes to apexHwEventAlarmCode description. February 5, 2009 - Added 'warning' severity to apexAlarmRemFault description. January 21, 2009 - Changed apexQamRfConfigRfLevelAttenuation range and description. - Changed apexQamChanStatActive description to reflect QAM RF Redundancy. December 5, 2008 - Added apexQamRfRedundStatusInvalidApplyText and apexQamRfRedundConfigRemDirectIpOctet1. - Changed apexQamRfRedundConfigRemIpAddr to apexQamRfRedundConfigRemCommonIpAddr. November 25, 2008 - Added apexOutputTsStatusServicesInError. October 31, 2008 - Added apexDpmVersion. October 27, 2008 - Changed apexQamRfRedundConfigApplyChange Syntax to ApplyDataToDeviceTYPE. October 16, 2008 - Added apexQamRfRedundancyConfig. - Added apexQamRfRedundancyStatus. - Added apexOampInputTsAssignedCount to apexOampStatusGeneral. - Added apexDataIpInputTsAssignedCount, apexDataIpAddrInUse, apexDataIpSubnetMaskInUse, and apexDataIpInUseReason to apexDataIpStatusGeneral. - Added apexAlarmQamRfRedundFailOver, apexAlarmQamRfRedundMismatch, apexAlarmRemCommFault, apexAlarmRemFault, apexEnableQamRfRedundFailOver, apexEnableQamRfRedundMismatch, apexEnableRemCommFault, apexEnableRemFault, trapQamRfRedundFailOver, trapQamRfRedundMismatch, trapRemCommFault, trapRemFault. ", "Version 1.2: July 24, 2008 - Added apexEncryptionEmmGoodDeliveryTimeMs, apexEncryptionEmmMaxDeliveryTimeMs apexEncryptionEmmMinDeliveryTimeMs, and apexEncryptionMcDiagTable to apexEncryptionCwgStatus section. July 15, 2008 - Added range to syntax of apexSntpUtcOffset. July 09, 2008 - Added 'annexC-Asia-Pacific' enumeration to apexQamConfigTransmissionMode. - Added enumerations to apexQamRfPortStatError and changed the description. - Added apexEncryptionCwgStatus variables for debug of cwg manager processing in the field. June 26, 2008 - Increased range of apexPsiStatusIndex from 768 to 784. June 25, 2008 - Added apexQrmDownload group. - Added apexOutputProgramSourceId and apexOutputProgramProviderId. - Changed descriptions of apexManualRouteInputType, apexManualRouteSourceId, apexManualRouteProviderId, apexManRtePassThroughInputType, and apexPidMapInputType. - Added enumerations to apexRtspStatControllerDiscovery and apexRtspStatControllerConnection. June 23, 2008 - Added to apexAcpStatusTable: apexAcpUnitAttribute. June 20, 2008 - Added to apexAcpStatusTable: apexAcpEvenCsn and apexAcpOddCsn. June 6, 2008 - Added apexFastEnetInsertRateTable, apexFastEnetStatusPacketsTable, and apexFastEnetInsertPacketsTable. June 3, 2008 - Added udpMapping enumeration to apexInputTsStatRoutingType. - Added encryption status to apexOutputProgramTable: apexOutputProgramError, apexOutputProgramEncryptionMode, apexOutputProgramEncryptionStatus, apexOutputProgramEcmServiceId, apexOutputProgramCciLevel, apexOutputProgramApsLevel, apexOutputProgramCitSetting, apexOutputProgramNumberTiers, and apexOutputProgramTierData. June 2, 2008 - Added apexManualRouteRmdClear. May 12, 2008 - Added apexEncryption group and apexOutputTsConfEncryptionType. May 8, 2008 - Added apexRds group. - Added apexAlarmRdsCommFault and trapRdsCommFault. April 4, 2008 - Added apexUdpPortMapping group. - Added udpMapping enumeration to apexOutputTsConfOperatingMode. ", "Version 1.1: July 8, 2008 - Added enumerations to apexQamRfPortStatError and changed the description. July 1, 2008 Changes to support ITU-T J.83 Annex A and C QAM: - Added 'annexC-Asia-Pacific' enumeration to apexQamStatusTransmissionMode. - Changed descriptions of: apexQamRfConfigNumChannelsEnabled, apexQamRfConfigSymbolRate, apexQamRfConfigEiaFrequencyPlan, apexQamRfConfigEiaChanNumChannelA, apexQamRfConfigRfCenterFreqChannelA, apexQamRfConfigRfChanSpacing, apexQamRfConfigInterleaverDepth1, and apexQamRfConfigInterleaverDepth2. ", 'Version 1.0: February 18, 2008 - Initial Revision.',))
if mibBuilder.loadTexts: apex.setLastUpdated('201102150000Z')
if mibBuilder.loadTexts: apex.setOrganization('Motorola Connected Home Solutions')
if mibBuilder.loadTexts: apex.setContactInfo('Motorola Technical Response Center Inside USA 1-888-944-HELP (1-888-944-4357) Outside USA 1-215-323-0044 TRC Hours: Monday through Friday 8 am to 7 pm Eastern Standard Time Saturdays 10 am to 5 pm Eastern Standard Time')
if mibBuilder.loadTexts: apex.setDescription('The MIB module for the APEX.')
class EnableDisableTYPE(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("disabled", 1), ("enabled", 2))
class ActiveTYPE(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2))
namedValues = NamedValues(("notApplicable", 0), ("notActive", 1), ("active", 2))
class ApplyDataToDeviceTYPE(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("applyNotInProgress", 1), ("apply", 2), ("applyNotInProgressValidData", 3), ("applyNotInProgressInvalidData", 4))
class ResetStatisticsTYPE(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("resetNotInProgress", 1), ("reset", 2))
class ClearAlarmTYPE(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("clearAlarmNotInProgress", 1), ("clearAlarm", 2))
class RateComparisonTYPE(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("dataRate", 1), ("transportStreamRate", 2))
class InputTsStateTYPE(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))
namedValues = NamedValues(("closed", 0), ("openedInUse", 1), ("openedBackup", 2), ("openedTransToBackup", 3), ("openedTransToInUse", 4))
class EthernetInterfaceTYPE(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("enet1", 1), ("enet2", 2))
apexSys = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1))
apexSysConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1))
apexSysConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 1))
apexSysConfigMcEmmInsertion = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2))
apexSysStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2))
apexSysStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 1))
apexSysStatusVersions = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2))
apexTime = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2))
apexTimeConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1))
apexTimeConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1, 1))
apexTimeStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 2))
apexTimeStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 2, 1))
apexTemperature = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3))
apexTemperatureConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 1))
apexTemperatureConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 1, 1))
apexTemperatureStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2))
apexTemperatureStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 1))
apexMainBoardTemperature = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 2))
apexMainBoardTemperatureFault = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 3))
apexPowerSupply = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4))
apexPsConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 1))
apexPsConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 1, 1))
apexPsStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2))
apexPsStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 1))
apexAsi = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 5))
apexAsiConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 5, 1))
apexAsiMonitorPortConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 5, 1, 2))
apexFastEnet = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6))
apexFastEnetConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1))
apexFastEnetConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1))
apexFastEnetStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2))
apexFastEnetStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 1))
apexOamp = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3))
apexOampConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 1))
apexOampConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 1, 1))
apexOampStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2))
apexOampStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2, 1))
apexDataIp = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4))
apexDataIpConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 1))
apexDataIpConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 1, 1))
apexDataIpStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2))
apexDataIpStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1))
apexGbe = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7))
apexGbeConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1))
apexGbeConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1))
apexGbeConfigInputRedundancy = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4))
apexGbeConfigInputRedundancyGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1))
apexGbeConfigInterfaceRedundancy = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7))
apexGbeConfigInterfaceRedundancyGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 1))
apexGbeStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2))
apexGbeStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 1))
apexGbeStatusFrameCounter = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6))
apexGbeStatusFrameCounterGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 1))
apexGbeFrameBufferStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7))
apexGbeFrameBufferStatsGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 1))
apexGbeStatusInputTransportStream = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8))
apexGbeStatusInputTsGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 1))
apexGbeStatusInterfaceRedund = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9))
apexGbeSfp = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3))
apexGbeSfpConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 1))
apexGbeSfpConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 1, 1))
apexGbeSfpStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2))
apexGbeSfpStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2, 1))
apexQam = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8))
apexQamConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1))
apexQamConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 1))
apexQamModuleUpgrade = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 2))
apexQamRfRedundancyConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6))
apexQamRfRedundancyConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1))
apexQamStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2))
apexQamStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 1))
apexQamRfRedundancyStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7))
apexQamRfRedundancyStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1))
apexQrmDownload = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3))
apexQrmDownloadConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 1))
apexQrmDownloadConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 1, 1))
apexQrmDownloadStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2))
apexQrmDownloadStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 1))
apexSessionControl = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9))
apexSessionControlConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1))
apexSessionControlConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1))
apexSessionControlStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 2))
apexSessionControlStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 2, 1))
apexRpc = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3))
apexRpcConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1))
apexRpcConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1))
apexRpcStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2))
apexRpcStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 1))
apexRtsp = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4))
apexRtspConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1))
apexRtspConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 1))
apexRtspConfMhaGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 9))
apexRtspConfMhaSbe = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 10))
apexRtspStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2))
apexRtspStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 1))
apexManualRouting = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10))
apexManualRoutingConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1))
apexManualRoutingConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 1))
apexManualRouteGbeInputRedundConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6))
apexManRteGbeInRedConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 1))
apexManualRoutingStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2))
apexManualRoutingStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 1))
apexManualRouteGbeInputRedundStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 2))
apexManRteGbeInRedStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 2, 1))
apexAncillaryPidMapping = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11))
apexPidMapConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1))
apexPidMapStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 2))
apexPidMapStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 2, 1))
apexInsertion = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12))
apexInsertionConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 1))
apexInsertionConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 1, 1))
apexInsertionStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2))
apexInsertionStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2, 1))
apexInputTransport = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13))
apexInputTsConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 1))
apexInputTsConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 1, 1))
apexInputTsStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2))
apexInputTsStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 1))
apexOutputTransport = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14))
apexOutputTsConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1))
apexOutputTsConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 1))
apexOutputTsUtilizationMonitoring = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4))
apexOutputTsUtilizationMonitorGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 1))
apexOutputTsStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2))
apexOutputTsStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 1))
apexOutputTsUtilization = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2))
apexOutputTsUtilizationGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 1))
apexPsi = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15))
apexPsiConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1))
apexPsiConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1))
apexPsiStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2))
apexPsiStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 1))
apexOutputProgram = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16))
apexOutputProgramConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 1))
apexOutputProgramConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 1, 1))
apexOutputProgramStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2))
apexOutputProgramStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 1))
apexAcp = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17))
apexAcpConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 1))
apexAcpConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 1, 1))
apexAcpStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2))
apexAcpStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 1))
apexUdpPortMapping = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18))
apexUdpMapConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1))
apexUdpMapConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 1))
apexUdpMapStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2))
apexUdpMapStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2, 1))
apexRds = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19))
apexRdsConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1))
apexRdsConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1))
apexRdsStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2))
apexRdsStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1))
apexEncryption = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20))
apexEncryptionConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1))
apexEncryptionConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 1))
apexCteConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2))
apexEncryptionStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2))
apexEncryptionStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1))
apexEncryptionCwgStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2))
apexEas = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21))
apexEasConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1))
apexEasConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1))
apexEasStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 2))
apexEasStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 2, 1))
apexChassisRedundancy = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22))
apexChassisRedundancyConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1))
apexChassisRedundancyConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1))
apexChassisRedundancyStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2))
apexChassisRedundancyStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1))
apexDta = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23))
apexDtaConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1))
apexDtaGeneralConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1))
apexDepi = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24))
apexDepiConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 1))
apexDepiConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 1, 1))
apexDepiStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2))
apexDepiStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1))
apexDepiControl = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3))
apexDepiControlConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1))
apexDepiControlConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 1))
apexDepiControlStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2))
apexDepiControlStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1))
apexDepiSession = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4))
apexDepiSessionConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1))
apexDepiSessionStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2))
apexDepiSessionStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 1))
apexPsip = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25))
apexPsipConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1))
apexPsipConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1))
apexPsipConfigTime = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2))
apexPsipStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2))
apexPsipStatusGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 1))
apexPreencryption = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 26))
apexPreencryptionConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 26, 1))
apexPreencryptionConfigGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 26, 1, 1))
apexAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100))
apexEvents = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101))
apexConfigAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102))
apexConfAlarmEnable = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1))
apexConfAlarmClear = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 2))
apexLogs = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200))
apexTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0))
apexDebug = MibIdentifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 5000))
apexSaveConfig = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("saveNotInProgress", 1), ("startSaveToFlash", 2), ("savingConfigToFlash", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSaveConfig.setStatus('current')
if mibBuilder.loadTexts: apexSaveConfig.setDescription('Writing this object will commit the current configuration to Flash. While a read returns the value savingConfigToFlash, the flash is being saved; the save may not have been initiated by an SNMP set. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ')
apexProductName = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexProductName.setStatus('current')
if mibBuilder.loadTexts: apexProductName.setDescription("This is the Product Name of the APEX loaded at initialization from the config.ini file. Specific configurations of the APEX have specific purposes and are identified by their product name. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2, default=yes) @File(config.ini, type='ini') ")
apexBootMethod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3))).clone(namedValues=NamedValues(("noDhcpOrBootp", 1), ("bootpOnly", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexBootMethod.setStatus('current')
if mibBuilder.loadTexts: apexBootMethod.setDescription("This parameter is used to set the boot method for the APEX. Selection of noDhcpOrBootp means the APEX will not use DHCP or BOOTP - this will result in about a 10 second savings in boot time. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexAutoRebootEnable = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 1, 4), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexAutoRebootEnable.setStatus('current')
if mibBuilder.loadTexts: apexAutoRebootEnable.setDescription("Setting to 'enabled' allows the APEX to automatically reboot when specific APEX hardware errors occur. Setting this to Enabled will cause the APEX to automatically reboot upon specific HW faults, such as a GigE processor crash, or upon a Host processor watchdog event. When disabled, HW faults and watchdog events will not cause an automatic reboot. This is useful when it is necessary to debug the event (to allow time to gather status prior to manually rebooting). Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexMcEmmInsertionMode = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("outOfBand", 1), ("fullInBand", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexMcEmmInsertionMode.setStatus('current')
if mibBuilder.loadTexts: apexMcEmmInsertionMode.setDescription("Specify the mode in which MediaCipher EMMs are inserted, out of band or full in band. Once written, the change to this parameter will only take immediate effect after apexMcEmmInsertionApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexMcEmmInsertionApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexMcEmmInsertionPid1Enable = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexMcEmmInsertionPid1Enable.setStatus('current')
if mibBuilder.loadTexts: apexMcEmmInsertionPid1Enable.setDescription("Enable/disable first EMM PID to include in the CAT for MediaCipher Full In Band mode. Default value is enabled. Once written, the change to this parameter will only take immediate effect after apexMcEmmInsertionApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexMcEmmInsertionApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexMcEmmInsertionPid1 = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(7168, 8190))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexMcEmmInsertionPid1.setStatus('current')
if mibBuilder.loadTexts: apexMcEmmInsertionPid1.setDescription("First EMM PID to include in the CAT for MediaCipher Full In Band mode. Allowed values: from 0x1C00 to 0x1FFE. Default value is 0x1C02. Once written, the change to this parameter will only take immediate effect after apexMcEmmInsertionApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexMcEmmInsertionApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexMcEmmInsertionPid2Enable = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2, 4), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexMcEmmInsertionPid2Enable.setStatus('current')
if mibBuilder.loadTexts: apexMcEmmInsertionPid2Enable.setDescription("Enable/disable first EMM PID to include in the CAT for MediaCipher Full In Band mode. Default value is disabled. Once written, the change to this parameter will only take immediate effect after apexMcEmmInsertionApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexMcEmmInsertionApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexMcEmmInsertionPid2 = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(7168, 8190))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexMcEmmInsertionPid2.setStatus('current')
if mibBuilder.loadTexts: apexMcEmmInsertionPid2.setDescription("Second EMM PID to include in the CAT for MediaCipher Full In Band mode. Allowed values: from 0x1C00 to 0x1FFE. Default value is 0x1C03. Once written, the change to this parameter will only take immediate effect after apexMcEmmInsertionApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexMcEmmInsertionApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexMcEmmInsertionApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2, 6), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexMcEmmInsertionApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexMcEmmInsertionApplyChange.setDescription("The Apply for the MediaCipher EMM Insertion group. This parameter MUST be set to 'apply' in order for any of the data in the MC EMM Insertion group to take effect in the device. This parameter MUST be set LAST after all other data in the MC Emm Insertion group has been configured. @Config(config=no, reboot=no) ")
apexBootReason = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("powerCycle", 0), ("operatorReboot", 1), ("hwFault", 2), ("wdFault", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexBootReason.setStatus('current')
if mibBuilder.loadTexts: apexBootReason.setDescription("Indicates reason for APEX boot: 'powerCycle' - Power-up or power cycled. 'operatorReboot' - Operator commanded reboot (refer to manual). 'hwFault' - Automatic reboot occurred as per apexAutoRebootEnable. 'wdFault' - Automatic Watchdog reboot as per apexAutoRebootEnable. ")
apexMaxServiceMappings = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMaxServiceMappings.setStatus('current')
if mibBuilder.loadTexts: apexMaxServiceMappings.setDescription('Maximum number of service mappings supported by the APEX. ')
apexHostProcessorBootCodeVersion = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexHostProcessorBootCodeVersion.setStatus('current')
if mibBuilder.loadTexts: apexHostProcessorBootCodeVersion.setDescription('APEX Host Processor Boot Code Version.')
apexMuxFpgaVersion = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMuxFpgaVersion.setStatus('current')
if mibBuilder.loadTexts: apexMuxFpgaVersion.setDescription('APEX MUX FPGA Version.')
apexMuxFpgaEncryption = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("noEncryption", 0), ("des", 1), ("csa", 2), ("aes", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMuxFpgaEncryption.setStatus('current')
if mibBuilder.loadTexts: apexMuxFpgaEncryption.setDescription('APEX MUX FPGA Encryption type currently loaded.')
apexMainBoardVersion = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMainBoardVersion.setStatus('current')
if mibBuilder.loadTexts: apexMainBoardVersion.setDescription('APEX Main Board Version. This is the revision of the apexMainBoardType.')
apexHostApplicationDate = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexHostApplicationDate.setStatus('current')
if mibBuilder.loadTexts: apexHostApplicationDate.setDescription('APEX Host Processor Application Creation Date.')
apexProductType = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("invalid", 0), ("apex1000", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexProductType.setStatus('current')
if mibBuilder.loadTexts: apexProductType.setDescription('APEX Product Type. The corresponding product name text setting can be found in identUnitModel.')
apexMainBoardType = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMainBoardType.setStatus('current')
if mibBuilder.loadTexts: apexMainBoardType.setDescription('APEX Main Board Type. The revision is found in apexMainBoardVersion.')
apexGlueFpgaVersion = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGlueFpgaVersion.setStatus('current')
if mibBuilder.loadTexts: apexGlueFpgaVersion.setDescription('APEX Glue FPGA Version.')
apexGlueCpldVersion = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGlueCpldVersion.setStatus('current')
if mibBuilder.loadTexts: apexGlueCpldVersion.setDescription('APEX Glue CPLD Version.')
apexDtiFpgaVersion = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDtiFpgaVersion.setStatus('current')
if mibBuilder.loadTexts: apexDtiFpgaVersion.setDescription('APEX DTI FPGA Version.')
apexMpc2FpgaVersion = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMpc2FpgaVersion.setStatus('current')
if mibBuilder.loadTexts: apexMpc2FpgaVersion.setDescription('APEX MPC2 FPGA Version.')
apexDpmVersion = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDpmVersion.setStatus('current')
if mibBuilder.loadTexts: apexDpmVersion.setDescription('APEX DPM Version.')
apexTimeSource = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("sntp", 1), ("internal", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexTimeSource.setStatus('current')
if mibBuilder.loadTexts: apexTimeSource.setDescription("The source for system time. The time source can be configured to come from an SNTP time source, or be generated internally. When configured as internal: - The APEX will internally keep time starting at GPS time 0. A user can set the time to a valid GPS time in this mode. - The system time and UTC offset in internal mode are not updated and therefore are not valid. When configured to receive time via SNTP the SntpServerSpecified object and SntpServiceIP objects can be used to optionally define the SNTP server. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexSntpUtcOffset = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSntpUtcOffset.setStatus('current')
if mibBuilder.loadTexts: apexSntpUtcOffset.setDescription("The value of this object is the Universal Time Coordinated (UTC) offset from GPS time. Subtract this from GPS time to convert from GPS to UTC. Units are seconds. When time source is SNTP, this object can be set to specify the UTC offset that the APEX will use in calculating GPS time. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexSntpServerSpecified = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("notSpecified", 1), ("specified", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSntpServerSpecified.setStatus('current')
if mibBuilder.loadTexts: apexSntpServerSpecified.setDescription("When the TimeSource is SNTP, this object specifies whether the APEX will only accept time for a single SNTP server or from any server that broadcasts time. When notSpecified, the APEX will accept time from any SNTP server. When specified, the APEX will poll for time from the address of the SNTP server specified by the SntpServerIP address object. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexSntpServerIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSntpServerIpAddr.setStatus('current')
if mibBuilder.loadTexts: apexSntpServerIpAddr.setDescription("This contains the IP address of the specified SNTP server. If apexTimeSource is SNTP and apexSntpServerSpecified is set to specified, then the apex will poll for time from this IP address. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexUserSuppliedTime = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1, 1, 5), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUserSuppliedTime.setStatus('current')
if mibBuilder.loadTexts: apexUserSuppliedTime.setDescription('The value of this object is the GPS Time the APEX is given via user entry. The time is reported in GPS seconds. This time is ONLY used when the APEX is set to Internal time mode. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ')
apexSystemTime = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexSystemTime.setStatus('current')
if mibBuilder.loadTexts: apexSystemTime.setDescription('The value of this object is the current System Time of the APEX. The system time is reported in GPS seconds. To determine the APEXs system time in UTC the apexSntpUtcOffset object must also be read and used in the calculation.')
apexOperationalTime = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOperationalTime.setStatus('current')
if mibBuilder.loadTexts: apexOperationalTime.setDescription('The Operational Time is the time in seconds since the APEX completed the boot sequence. It is the time that the APEX has been operational.')
apexMainBoardTempFrontIntake = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMainBoardTempFrontIntake.setStatus('current')
if mibBuilder.loadTexts: apexMainBoardTempFrontIntake.setDescription('Ambient temperature at the intake vent at the front of the unit. Measured in whole number degrees Celsius.')
apexMainBoardTempMuxFpga = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 2, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMainBoardTempMuxFpga.setStatus('current')
if mibBuilder.loadTexts: apexMainBoardTempMuxFpga.setDescription('Ambient temperature at the MUX FPGAs. Measured in whole number degrees Celsius.')
apexMainBoardTempAcpModule = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 2, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMainBoardTempAcpModule.setStatus('current')
if mibBuilder.loadTexts: apexMainBoardTempAcpModule.setDescription('Ambient temperature at the ACP Module location. This reading is valid for all models whether an ACP Module is standard on the model. Measured in whole number degrees Celsius.')
apexMainBoardTempHostProcessor = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 2, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMainBoardTempHostProcessor.setStatus('current')
if mibBuilder.loadTexts: apexMainBoardTempHostProcessor.setDescription('Ambient temperature at the Host Processor. Measured in whole number degrees Celsius.')
apexMainBoardTempFrontIntakeFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 3, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("overTemp", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMainBoardTempFrontIntakeFault.setStatus('current')
if mibBuilder.loadTexts: apexMainBoardTempFrontIntakeFault.setDescription('Fault status of ambient temperature at the intake vent at the front of the unit.')
apexMainBoardTempMuxFpgaFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 3, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("overTemp", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMainBoardTempMuxFpgaFault.setStatus('current')
if mibBuilder.loadTexts: apexMainBoardTempMuxFpgaFault.setDescription('Fault status of ambient temperature at the MUX FPGAs.')
apexMainBoardTempAcpModuleFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 3, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("overTemp", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMainBoardTempAcpModuleFault.setStatus('current')
if mibBuilder.loadTexts: apexMainBoardTempAcpModuleFault.setDescription('Fault status of ambient temperature at the ACP Module location.')
apexMainBoardTempHostProcessorFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("overTemp", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMainBoardTempHostProcessorFault.setStatus('current')
if mibBuilder.loadTexts: apexMainBoardTempHostProcessorFault.setDescription('Fault status of ambient temperature at the Host Processor.')
apexPsStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2), )
if mibBuilder.loadTexts: apexPsStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusTable.setDescription('This is a table of status parameters for the two Power Supplies.')
apexPsStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexPsStatusPsNum"))
if mibBuilder.loadTexts: apexPsStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusEntry.setDescription('Power Supply Status Table Entry.')
apexPsStatusPsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)))
if mibBuilder.loadTexts: apexPsStatusPsNum.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusPsNum.setDescription('PS Number.')
apexPsStatusInstalled = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("notApplicable", 0), ("notInstalled", 1), ("installedAcInput", 2), ("installedDcInput", 3), ("fanModuleInstalled", 4), ("unsupported", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusInstalled.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusInstalled.setDescription('This parameter indicates installed status of the PS.')
apexPsStatusOutputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusOutputVoltage.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusOutputVoltage.setDescription('PS measured output voltage in milli-Volts.')
apexPsStatusOutputCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusOutputCurrent.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusOutputCurrent.setDescription('PS measured output current in milli-Amps.')
apexPsStatusFanSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusFanSpeed.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusFanSpeed.setDescription('The fan speed in RPM an installed Power Supply or Fan Module. Zero if not installed.')
apexPsStatusFanStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusFanStatus.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusFanStatus.setDescription('PS Fan Status.')
apexPsStatusTemperatureStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusTemperatureStatus.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusTemperatureStatus.setDescription("Indicates whether the power supply is in protection mode due to an over temperature condition. The PS is shut down while in 'overTemp' and will recover when the temperature returns to normal operating range. A power cycle is not required for recovery. Note that Output Power Status will be 'error' when Temperature status is 'overTemp'.")
apexPsStatusInputPowerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusInputPowerStatus.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusInputPowerStatus.setDescription("Indicates whether AC Input is within specification. Note that Output Power Status will be 'error' when Input Power status is 'error'")
apexPsStatusOutputPowerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusOutputPowerStatus.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusOutputPowerStatus.setDescription('Indicates whether the +12V and +3.3V output power are within specification. If the output power error occurs with an Input Power error, apply input power to recover. If the output power error occurs with an Over Temperature error, a power cycle is not required for recovery. Otherwise, a power cycle is required for recovery. If the problem persists after the power cycle, the PS must be replaced for recovery.')
apexPsStatusErrorStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("ok", 1), ("psNotInstalled", 2), ("psUnsupported", 3), ("inputPower", 4), ("fanFault", 5), ("overTemp", 6), ("outputPower", 7), ("commLost", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusErrorStatus.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusErrorStatus.setDescription('Summary of errors reported on a power supply basis. The reported error will be the most severe.')
apexPsStatusFaultCondition = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusFaultCondition.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusFaultCondition.setDescription('Current fault condition of the power supply errors.')
apexPsStatusDiagnosticData1 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusDiagnosticData1.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusDiagnosticData1.setDescription('Diagnostic data word 1 (HP) - Contents for Motorola diagnostic purposes.')
apexPsStatusDiagnosticData2 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusDiagnosticData2.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusDiagnosticData2.setDescription('Diagnostic data word 2 (PS) - Contents for Motorola diagnostic purposes.')
apexPsStatusCommError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusCommError.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusCommError.setDescription('Communication with the Power Supply has failed and status cannot be determined. Only applies when valid PS installed.')
apexPsStatusVersionsTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 3), )
if mibBuilder.loadTexts: apexPsStatusVersionsTable.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusVersionsTable.setDescription('This is a table of version status parameters for the two Power Supplies.')
apexPsStatusVersionsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexPsStatusVersionsPsNum"))
if mibBuilder.loadTexts: apexPsStatusVersionsEntry.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusVersionsEntry.setDescription('Power Supply Version Status Table Entry.')
apexPsStatusVersionsPsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)))
if mibBuilder.loadTexts: apexPsStatusVersionsPsNum.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusVersionsPsNum.setDescription('PS Number.')
apexPsStatusVersionsModel = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 3, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 17))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusVersionsModel.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusVersionsModel.setDescription('PS Model.')
apexPsStatusVersionsSerialNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 3, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsStatusVersionsSerialNumber.setStatus('current')
if mibBuilder.loadTexts: apexPsStatusVersionsSerialNumber.setDescription('PS serial number.')
apexAsiMonitorPortOutputTsNum = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 5, 1, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 48))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexAsiMonitorPortOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexAsiMonitorPortOutputTsNum.setDescription("The number of the output transport stream to route to the ASI Monitor Port. Zero indicates that no stream is to be routed to the ASI Monitor port. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexAsiMonitorPortEncryption = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 5, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("preEncryption", 1), ("postEncryption", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexAsiMonitorPortEncryption.setStatus('current')
if mibBuilder.loadTexts: apexAsiMonitorPortEncryption.setDescription("Selects pre or post encryption for the ASI monitor port. This parameter is only applicable to APEXs with encryption capability. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexFastEnetDefaultGateway = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexFastEnetDefaultGateway.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetDefaultGateway.setDescription("This is the IP address of the default gateway for the Fast Ethernet interfaces. This should be zero or a valid Class A, B, or C IP address. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexFastEnetRoutingApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1, 3), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexFastEnetRoutingApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetRoutingApplyChange.setDescription("The Apply for the Fast Ethernet Static Routing Table. This parameter MUST be set to 'apply' in order for any of the data in the apexFastEnetRoutingTable to take effect. This parameter MUST be set LAST after all other data in the apexFastEnetRoutingTable has been configured. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apexFastEnetRoutingTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 2), )
if mibBuilder.loadTexts: apexFastEnetRoutingTable.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetRoutingTable.setDescription("This table is the configuration Static Routing table for the Fast Ethernet Interface. @Commit(param=apexFastEnetRoutingApplyChange, value=2) @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexFastEnetRoutingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexFastEnetRoutingIndex"))
if mibBuilder.loadTexts: apexFastEnetRoutingEntry.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetRoutingEntry.setDescription('Fast Ethernet Interface Configuration Static Routing Table Entry.')
apexFastEnetRoutingIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)))
if mibBuilder.loadTexts: apexFastEnetRoutingIndex.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetRoutingIndex.setDescription('The index of the Routing table entry. Currently limited to 16.')
apexFastEnetRoutingDestinIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 2, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexFastEnetRoutingDestinIp.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetRoutingDestinIp.setDescription("The Fast Ethernet Routing Destination IP address. Once written, the change to this parameter will only take immediate effect after apexFastEnetRoutingApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apexFastEnetRoutingGatewayIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 2, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexFastEnetRoutingGatewayIp.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetRoutingGatewayIp.setDescription("The Fast Ethernet Routing Gateway IP address. Once written, the change to this parameter will only take immediate effect after apexFastEnetRoutingApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apexFastEnetRoutingSubnetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 2, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexFastEnetRoutingSubnetMask.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetRoutingSubnetMask.setDescription("The Fast Ethernet Routing Subnet Mask. Once written, the change to this parameter will only take immediate effect after apexFastEnetRoutingApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apexFastEnetInsertRateTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1, 2), )
if mibBuilder.loadTexts: apexFastEnetInsertRateTable.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetInsertRateTable.setDescription('This is a table of configuration parameters for Output Transport Rate of Fast Ethernet MPEG data Insertion.')
apexFastEnetInsertRateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexFastEnetInsertRateOutputTsNum"))
if mibBuilder.loadTexts: apexFastEnetInsertRateEntry.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetInsertRateEntry.setDescription('Output Transport Rate of Fast Ethernet MPEG Insertion Configuration Table Entry.')
apexFastEnetInsertRateOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexFastEnetInsertRateOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetInsertRateOutputTsNum.setDescription('Output Transport Stream Number.')
apexFastEnetInsertRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexFastEnetInsertRate.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetInsertRate.setDescription("Insertion Rate for the transport stream for Fast Ethernet MPEG data. Maximum MPEG data rate to insert data received via Fast Ethernet interfaces. Range is 0 Kbps to 2500 Kbps for each transport stream. Total for all transport streams must not exceed 10000 Kbps. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Range(min=0, max=2500) @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexFastEnetMaxInputUdpPorts = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexFastEnetMaxInputUdpPorts.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetMaxInputUdpPorts.setDescription('Maximum number of Fast Ethernet input UDP ports that can be opened on this APEX.')
apexFastEnetStatusPacketsTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2), )
if mibBuilder.loadTexts: apexFastEnetStatusPacketsTable.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetStatusPacketsTable.setDescription('Table of Fast Ethernet Insert Packet Statistics for each Fast Ethernet interface. Indexed by FE interface port number.')
apexFastEnetStatusPacketsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexFastEnetPacketsPortNum"))
if mibBuilder.loadTexts: apexFastEnetStatusPacketsEntry.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetStatusPacketsEntry.setDescription('A row in the FE Insert Packets table.')
apexFastEnetPacketsPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)))
if mibBuilder.loadTexts: apexFastEnetPacketsPortNum.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetPacketsPortNum.setDescription('Fast Ethernet interface port Number.')
apexFastEnetPacketsNumPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexFastEnetPacketsNumPkts.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetPacketsNumPkts.setDescription('Number of MPEG packets inserted during the last monitoring period (currently 5 seconds) on this FE interface port.')
apexFastEnetPacketsTotPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexFastEnetPacketsTotPkts.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetPacketsTotPkts.setDescription('Total number of MPEG packets inserted on this FE interface port.')
apexFastEnetPacketsNumDiscarded = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexFastEnetPacketsNumDiscarded.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetPacketsNumDiscarded.setDescription('Number of MPEG packets discarded during the last monitoring period (currently 5 seconds) on this FE interface port. This may be due to a buffer overflow or incorrect configuration of the FE output stream insertion rate.')
apexFastEnetPacketsTotDiscarded = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexFastEnetPacketsTotDiscarded.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetPacketsTotDiscarded.setDescription('Total number of FE MPEG packets discarded on this Output Transport Stream. Discarded packets on an FE interface port are those packets discarded due to an overflow condition.')
apexFastEnetInsertPacketsTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3), )
if mibBuilder.loadTexts: apexFastEnetInsertPacketsTable.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetInsertPacketsTable.setDescription('Table of Output Transport Stream FE Insert Packet Statistics. Indexed by Output Transport Stream number.')
apexFastEnetInsertPacketsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexFastEnetInsPacketsOutputTsNum"))
if mibBuilder.loadTexts: apexFastEnetInsertPacketsEntry.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetInsertPacketsEntry.setDescription('A row in the Output Transport Stream FE Insert Packets table.')
apexFastEnetInsPacketsOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexFastEnetInsPacketsOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetInsPacketsOutputTsNum.setDescription('Output Transport Stream Number.')
apexFastEnetInsPacketsNumPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexFastEnetInsPacketsNumPkts.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetInsPacketsNumPkts.setDescription('Number of MPEG packets inserted during the last monitoring period (currently 5 seconds) on this Output Transport Stream.')
apexFastEnetInsPacketsTotPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexFastEnetInsPacketsTotPkts.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetInsPacketsTotPkts.setDescription('Total number of MPEG packets inserted on this Output Transport Stream.')
apexFastEnetInsPacketsNumDiscarded = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexFastEnetInsPacketsNumDiscarded.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetInsPacketsNumDiscarded.setDescription('Number of MPEG packets discarded during the last monitoring period (currently 5 seconds) on this Output Transport Stream. This may be due to a buffer overflow or incorrect configuration of the FE output stream insertion rate.')
apexFastEnetInsPacketsTotDiscarded = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexFastEnetInsPacketsTotDiscarded.setStatus('current')
if mibBuilder.loadTexts: apexFastEnetInsPacketsTotDiscarded.setDescription('Total number of FE MPEG packets discarded on this Output Transport Stream. Discarded packets on an output stream are those packets discarded due to an overflow condition.')
apexOampIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 1, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOampIpAddr.setStatus('current')
if mibBuilder.loadTexts: apexOampIpAddr.setDescription("This is the IP address of the OAMP IP (Enet1) interface of the APEX. This IP address is set via a BootP when connected to a Bootp server. When not connected to a BootP server, the IP address may directly be changed by setting this parameter. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexOampSubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 1, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOampSubnetMask.setStatus('current')
if mibBuilder.loadTexts: apexOampSubnetMask.setDescription("This is subnet mask of the OAMP IP (Enet1) interface of the APEX. The subnet mask is normally via a BootP when connected to a BootP server. When not connected to a Bootp Server, the Subnet Mask may directly be changed by setting this parameter. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexOampAutoNegotiate = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 1, 1, 3), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOampAutoNegotiate.setStatus('current')
if mibBuilder.loadTexts: apexOampAutoNegotiate.setDescription("OAMP IP (Enet1) Ethernet Auto-Negotiation setting. 'disabled' is not supported. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexOampMacAddr = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 17))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOampMacAddr.setStatus('current')
if mibBuilder.loadTexts: apexOampMacAddr.setDescription("This is the MAC address of the APEX OAMP IP (Enet1) Interface. It is set at the factory and cannot be changed. The string length is 17 characters in the format 'hh:hh:hh:hh:hh:hh' where 'hh' is a hexadecimal number.")
apexOampSpeed = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("interfaceSpeed10Mbps", 1), ("interfaceSpeed100Mbps", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOampSpeed.setStatus('current')
if mibBuilder.loadTexts: apexOampSpeed.setDescription('OAMP IP (Enet1) Ethernet speed (10Mbps or 100Mbps). This is determined by the results of the auto-negotiation process. If auto-negotiation fails, the default speed is 100Mbps.')
apexOampDuplexMode = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("halfDuplex", 1), ("fullDuplex", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOampDuplexMode.setStatus('current')
if mibBuilder.loadTexts: apexOampDuplexMode.setDescription('OAMP IP (Enet1) Ethernet Duplex Mode (full or half) This is determined by the results of the auto-negotiation process. If auto-negotiation fails, the default mode is Full.')
apexOampInputTsAssignedCount = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOampInputTsAssignedCount.setStatus('current')
if mibBuilder.loadTexts: apexOampInputTsAssignedCount.setDescription('Number of input transport streams assigned to the OAMP IP interface (Enet1).')
apexOampLinkActive = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2, 1, 5), ActiveTYPE()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOampLinkActive.setStatus('current')
if mibBuilder.loadTexts: apexOampLinkActive.setDescription('This indicates if the OAMP (ENET1) link is active.')
apexDataIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 1, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDataIpAddr.setStatus('current')
if mibBuilder.loadTexts: apexDataIpAddr.setDescription("This is the IP address of the Data IP (Enet2) interface of this APEX. The data IP address may directly be changed by setting this parameter. The Data IP address must be configured such that the Data IP interface and the OAMP interface are on different networks. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDataIpSubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 1, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDataIpSubnetMask.setStatus('current')
if mibBuilder.loadTexts: apexDataIpSubnetMask.setDescription("This is subnet mask of the Data IP (Enet2) interface of this APEX. The data IP Subnet Mask may directly be changed by setting this parameter. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDataIpAutoNegotiate = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 1, 1, 3), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDataIpAutoNegotiate.setStatus('current')
if mibBuilder.loadTexts: apexDataIpAutoNegotiate.setDescription("Data IP (Enet2) Ethernet Auto-Negotiation setting. 'disabled' is not supported. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDataIpMacAddr = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 17))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDataIpMacAddr.setStatus('current')
if mibBuilder.loadTexts: apexDataIpMacAddr.setDescription("This is the MAC address of the APEX Data IP (Enet2) Interface. It is set at the factory and cannot be changed. The string length is 17 characters in the format 'hh:hh:hh:hh:hh:hh' where 'hh' is a hexadecimal number.")
apexDataIpSpeed = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("interfaceSpeed10Mbps", 1), ("interfaceSpeed100Mbps", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDataIpSpeed.setStatus('current')
if mibBuilder.loadTexts: apexDataIpSpeed.setDescription('Data IP (Enet2) Ethernet speed (10Mbps or 100Mbps). This is determined by the results of the auto-negotiation process. If auto-negotiation fails, the default speed is 100Mbps. This status item is only valid when the Data IP port is enabled and properly configured.')
apexDataIpDuplexMode = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("halfDuplex", 1), ("fullDuplex", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDataIpDuplexMode.setStatus('current')
if mibBuilder.loadTexts: apexDataIpDuplexMode.setDescription('Data IP (Enet2) Ethernet Duplex Mode (full or half) This is determined by the results of the auto-negotiation process. If auto-negotiation fails, the default mode is Full. This status item is only valid when the Data IP port is enabled and properly configured.')
apexDataIpInputTsAssignedCount = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDataIpInputTsAssignedCount.setStatus('current')
if mibBuilder.loadTexts: apexDataIpInputTsAssignedCount.setDescription('Number of input transport streams assigned to the Data IP interface.')
apexDataIpAddrInUse = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDataIpAddrInUse.setStatus('current')
if mibBuilder.loadTexts: apexDataIpAddrInUse.setDescription('Indicates the IP Address currently being used by the Data IP port (Enet2). This parameter will be either apexDataIpAddr or an APEX selected IP address. Refer to apexDataIpInUseReason for more information.')
apexDataIpSubnetMaskInUse = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDataIpSubnetMaskInUse.setStatus('current')
if mibBuilder.loadTexts: apexDataIpSubnetMaskInUse.setDescription('Indicates the Subnet Mask currently being used by the Data IP port (Enet2). This parameter will be either apexDataIpSubnetMask or an APEX selected mask. Refer to apexDataIpInUseReason for more information.')
apexDataIpInUseReason = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("userConfig", 1), ("directRemConnection", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDataIpInUseReason.setStatus('current')
if mibBuilder.loadTexts: apexDataIpInUseReason.setDescription("Reason for apexDataIpAddrInUse and apexDataIpSubnetMaskInUse Data IP (Enet2) parameters. 'notApplicable' - Enet2 not configured by user or for REM connection. 'userConfig' - APEX is not overriding user configured parameters. 'directRemConnection' - The DATA IP port (Enet2) is in use for QAM RF Redundancy so the APEX has overridden the user configured parameters. ")
apexDataIpLinkActive = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 8), ActiveTYPE()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDataIpLinkActive.setStatus('current')
if mibBuilder.loadTexts: apexDataIpLinkActive.setDescription('This indicates if the DataIP (ENET2) link is active.')
apexGbeDefaultGateway1 = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeDefaultGateway1.setStatus('current')
if mibBuilder.loadTexts: apexGbeDefaultGateway1.setDescription("This is the IP address of the default gateway for Gigabit Ethernet interfaces 1 and 2. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexGbeDefaultGateway2 = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeDefaultGateway2.setStatus('current')
if mibBuilder.loadTexts: apexGbeDefaultGateway2.setDescription("This is the IP address of the default gateway for Gigabit Ethernet interfaces 3 and 4. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexGbeJitterAbsorption = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeJitterAbsorption.setStatus('obsolete')
if mibBuilder.loadTexts: apexGbeJitterAbsorption.setDescription("This object is obsolete. Jitter Absorption setting in range of 0 to 200 milliseconds in increments of 5 ms. A change to this parameter will cause the Gigabit Ethernet processor to reset all of its internal Ethernet frame buffers. This will result in a momentary loss of data causing a minor glitch on all output streams. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Range(step=5) @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexGbeGarpPeriodicity = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(20, 300))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeGarpPeriodicity.setStatus('current')
if mibBuilder.loadTexts: apexGbeGarpPeriodicity.setDescription("Gratuitous ARP period in range of 20 to 300 seconds. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexGbeConfigTableApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 5), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigTableApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigTableApplyChange.setDescription("The Apply for the Gigabit Ethernet Configuration Table. This parameter MUST be set to 'apply' in order for any of the data in the apexGbeConfigTable to take effect. This parameter MUST be set LAST after all other data in the apexGbeConfigTable has been configured. @Config(config=no, reboot=no) ")
apexGbeNominalBufferLevel = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(50, 475))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeNominalBufferLevel.setStatus('current')
if mibBuilder.loadTexts: apexGbeNominalBufferLevel.setDescription("Gigabit Ethernet Nominal Buffer Level. Range of 50 to 475 milliseconds in increments of 5 ms. A change to this parameter will cause the Gigabit Ethernet processor to reset all of its internal Ethernet frame buffers. This will result in a momentary loss of data causing a minor glitch on all output streams. The buffer level is the normal standard starting level for an input stream buffer. It is highly recommended that this level not be changed from its default setting. The buffer level needs to be set at an appropriate amount to allow for network jitter, clock skew between the APEX and input source, and for maximum time between PCRs (100ms). In addition, the level must not be set too high as the buffer needs to be able to grow as packets are received and PCR processing is applied. This buffer level is the initial level the APEX will attempt to maintain at all times. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexGbeInputDataTsSmoothingPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(250, 650))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeInputDataTsSmoothingPeriod.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputDataTsSmoothingPeriod.setDescription("Input Data stream smoothing period. Amount of time in milliseconds over which the GigE will smooth out input streams that do not contain PCRs. This allows the GigE to play out the input streams with the packets equally spaced out over this period. This helps to reduce network jitter and bursts of data to the output. The smoothing period is used in conjunction with the data stream buffer depth to perform this smoothing algorithm. The smoothing period must be equal to or less than the data stream buffer depth. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apexGbeInputDataTsBufferDepth = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(250, 650))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeInputDataTsBufferDepth.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputDataTsBufferDepth.setDescription("GBE Input Data stream buffer depth. Amount of time in milliseconds that the GigE will buffer input streams that do not contain PCRs. This allows the GigE to buffer these streams to remove network jitter and then play them out with the packets equally spaced out. The buffer depth must be equal to or greater than the data stream smoothing period. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apexGbeConfigInputDataTsApplyText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeConfigInputDataTsApplyText.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsApplyText.setDescription("When apexGbeConfigInputDataTsApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a related entry that was invalid. ")
apexGbeConfInputUnicastTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(600, 6000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfInputUnicastTimeout.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfInputUnicastTimeout.setDescription("Loss of input stream timeout value (in milliseconds) for unicast inputs. This determines the amount of time a unicast input stream is missing before the APEX will declare the input stream lost. Loss of input is used for determining all SDV failover conditions. It is also used for Manual Routing failover conditions when using hot/warm transport stream redundancy. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Range(step=200) @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexGbeConfInputMulticastTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(600, 6000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfInputMulticastTimeout.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfInputMulticastTimeout.setDescription("Loss of input stream timeout value (in milliseconds) for multicast inputs. This determines the amount of time a unicast input stream is missing before the APEX will declare the input stream lost. Loss of input is used for determining all SDV failover conditions. It is also used for Manual Routing failover conditions when using hot/warm transport stream redundancy. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Range(step=200) @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexGbeConfLossOfInputTsType = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 12), RateComparisonTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfLossOfInputTsType.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfLossOfInputTsType.setDescription("Loss of input stream type. Determines if detection of loss of an input stream is based on data rate or stream rate. Data rate includes only non-null MPEG packets (such as video and audio packets). Stream rate includes all packets, including null packets. The loss of an input stream uses the timeout value for the specific input (unicast or multicast) and the input type. If no packets are received within the specified timeout value, taking into account the loss of input type checking, then the input stream is determined to be missing. Data rate should be used for detecting loss of input when the input stream is normally null filled. When a user requires notification of a loss of input stream when there is no content streamed, data rate should be selected. Stream rate should be used for detecting loss of input stream when the user requires to be notified when there is no input stream at all being received. Loss of input is used for determining all SDV failover conditions. It is also used for Manual Routing failover conditions when using hot/warm transport stream redundancy. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexGbeConfigTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2), )
if mibBuilder.loadTexts: apexGbeConfigTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigTable.setDescription("This is a table of configuration parameters for the Gigabit Ethernet Interfaces. Once written, the change to this table will only take immediate effect after apexGbeConfigTableApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexGbeConfigTableApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexGbeConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeConfigInterfaceNum"))
if mibBuilder.loadTexts: apexGbeConfigEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigEntry.setDescription('Gigabit Ethernet Interface Configuration Table Entry.')
apexGbeConfigInterfaceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)))
if mibBuilder.loadTexts: apexGbeConfigInterfaceNum.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInterfaceNum.setDescription('Gigabit Ethernet Interface Number.')
apexGbeConfigEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigEnable.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigEnable.setDescription('This parameter enables the Gigabit Ethernet Interface. ')
apexGbeConfigIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigIpAddr.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigIpAddr.setDescription('This is the IP address of this Gigabit Ethernet interface. It is recommended that each Gigabit Ethernet interface be on a different subnet. Each must be given a unique IP address. 0.0.0.0 indicates the interface is not in use. ')
apexGbeConfigIpSubnetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigIpSubnetMask.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigIpSubnetMask.setDescription('This is subnet mask of this Gigabit Ethernet interface. ')
apexGbeConfigAutoNegotiate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2, 1, 5), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigAutoNegotiate.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigAutoNegotiate.setDescription('Auto negotiation enabled or disabled. ')
apexGbeConfigFrameBufferTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 3), )
if mibBuilder.loadTexts: apexGbeConfigFrameBufferTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigFrameBufferTable.setDescription("This is a table of configuration parameters related to Gigabit Ethernet Frame Buffer statistics gathering. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexGbeConfigFrameBufferEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeConfigFrameBufferProcessorNum"))
if mibBuilder.loadTexts: apexGbeConfigFrameBufferEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigFrameBufferEntry.setDescription('Gigabit Ethernet Frame Buffer Configuration Table Entry.')
apexGbeConfigFrameBufferProcessorNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)))
if mibBuilder.loadTexts: apexGbeConfigFrameBufferProcessorNum.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigFrameBufferProcessorNum.setDescription('Gigabit Ethernet Processor Number. Proc 1 = GBE Interfaces 1 and 2 Proc 2 = GBE Interfaces 3 and 4 ')
apexGbeConfigFrameBufferMaxInDataRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 3, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1000000, 2000000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigFrameBufferMaxInDataRate.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigFrameBufferMaxInDataRate.setDescription('Maximum Gigabit Ethernet MPEG input data rate in bps. This is the total amount of MPEG data expected to be received by Gigabit Ethernet frame interfaces on the processor. This data rate is used to determine the frame buffer reset limit. The expected data rate should always be set equal to or greater than the actual input data rate. The value of apexGbeJitterAbsorption can limit the valid range of this data rate. It is highly recommended that the user consult with Motorola prior to changing the expected data rate. ')
apexGbeConfigFrameBufferAlarmThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigFrameBufferAlarmThreshold.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigFrameBufferAlarmThreshold.setDescription('User defined threshold representing a percentage of frame buffer depth. The frame buffer level is monitored by the APEX and the maximum level is based on the actual input data rate. The threshold percentage is used to determine when to issue a Gigabit Ethernet Frame Buffer Fullness alarm (apexAlarmGbeBufferFullness). ')
apexGbeConfInRedundMonitorPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfInRedundMonitorPeriod.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfInRedundMonitorPeriod.setDescription("This is the time in seconds over which Redundant Gigabit Ethernet Input Transport Stream Pairs will be monitored. Range is 1 to 30 seconds. Primary to Secondary Fail Over - The monitored data rate of the Primary must be below the Secondary by apexManRteGbeInRedThreshold (for Manual Routing) percent for apexGbeConfInRedundMonitorPeriod before fail over to Secondary will occur. Fail over to Secondary will not occur if fail over is suspended for the Primary. Secondary to Primary Switch Back - The monitored data rate of the Primary must have returned above apexManRteGbeInRedThreshold (for Manual Routing) percent below the Secondary for apexGbeConfInRedundMonitorPeriod before switch back to Primary will occur. Switch back to Primary will not occur if fail over is suspended for the Secondary. Once the Primary is restored, switch back to Primary will be delayed by apexGbeConfInRedundSwitchTime when apexGbeConfInRedundAutoSwitchBack is 'enabled'. Note that if apexGbeConfInRedundAutoSwitchBack is 'disabled' switch back will not occur. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apexGbeConfInRedundSwitchTime = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfInRedundSwitchTime.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfInRedundSwitchTime.setDescription("This is the time in seconds to wait before switching back to the Primary of a Redundant Gigabit Ethernet Input TS pair after the Primary is healthy. Range is 0 to 3600. This time is in addition to apexGbeConfInRedundMonitorPeriod. Switch back to Primary will not occur if fail over is suspended for the Secondary. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apexGbeConfInRedundAutoSwitchBack = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1, 3), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfInRedundAutoSwitchBack.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfInRedundAutoSwitchBack.setDescription("This is the enable/disable of automatic switch back from Secondary to Primary for Gigabit Ethernet redundancy. When 'enabled', switch back to the Primary will automatically occur when the Primary is restored. When 'disabled', the user must force back to the Primary using apexGbeConfInRedundForceToPrimary or apexManRteGbeInRedForceSwitch. This parameter applies to all configured redundant pairs. Auto switch back to the primary will not occur if the user forced a failover to the secondary. Auto switch back only occurs after a non-forced failover event. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apexGbeConfInRedundForceToSecondary = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("switchNotInProgress", 1), ("forceSwitch", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfInRedundForceToSecondary.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfInRedundForceToSecondary.setDescription("The Gigabit Ethernet Redundant Pair force switch any pair that is currently on the Primary to the Secondary. This will have no effect if the corresponding row setting of apexManRteGbeInRedEnable is 'disabled'. This will only have an effect when the Primary is the In-Use Input TS of a Redundant Pair (apexInputTsStatPriState or apexInputTsStatSecState is 'openedInUse'). Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apexGbeConfInRedundForceToPrimary = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("switchNotInProgress", 1), ("forceSwitch", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfInRedundForceToPrimary.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfInRedundForceToPrimary.setDescription("The Gigabit Ethernet Redundant Pair force switch any pair that is currently on the Secondary to the Primary. This will have no effect if the corresponding row setting of apexManRteGbeInRedEnable is 'disabled'. This will only have an effect when the Secondary is the In-Use Input TS of a Redundant Pair (apexInputTsStatPriState or apexInputTsStatSecState is 'openedInUse'). Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apexGbeConfInRedundManualRouteRedundType = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("hotWarm", 1), ("hotHot", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfInRedundManualRouteRedundType.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfInRedundManualRouteRedundType.setDescription("The redundancy type for output streams in Manual Routing operating mode. - hotWarm indicates only 1 input stream, primary or secondary, is open at any one time. For multicast streams, primary will be joined initially. The secondary is joined after a failover (the primary will be dropped prior to joining the secondary). When falling back to the primary, the secondary is dropped (closed), then the primary is joined (opened). - hotHot indicates both the primary and secondary streams are opened at the same time. For multicast streams, both streams are joined immediately. Changes to the redundancy type cannot be made while there are active routes. All routes must be deleted prior to changing the redundancy type. Once written, a save must be performed via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apexGbeConfigInputDataTsTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5), )
if mibBuilder.loadTexts: apexGbeConfigInputDataTsTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsTable.setDescription("Table of data for GBE input data stream identification. Each entry in this table identifies a Gigabit Ethernet input stream that is a data stream only. Data streams are streams without PCR. These streams require special processing to avoid overflowing the output. There are 128 rows in this table. Once written, the change to this table will only take immediate effect after apexGbeConfigInputDataTsApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexGbeConfigInputDataTsApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apexGbeConfigInputDataTsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeConfigInputDataTsIndex"))
if mibBuilder.loadTexts: apexGbeConfigInputDataTsEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsEntry.setDescription('GBE Input Data Stream Table Entry.')
apexGbeConfigInputDataTsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexGbeConfigInputDataTsIndex.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsIndex.setDescription('Index of GBE Input Data Stream Table.')
apexGbeConfigInputDataTsEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigInputDataTsEnable.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsEnable.setDescription('Indicates whether this GBE Input Data Stream entry is enabled or disabled. ')
apexGbeConfigInputDataTsInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigInputDataTsInterface.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsInterface.setDescription("Number of the input interface (Port number). Range: '0' = Not Applicable GBE = 1-4 ")
apexGbeConfigInputDataTsUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigInputDataTsUdp.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsUdp.setDescription('GBE Input UDP Port. Range: 0-65535 ')
apexGbeConfigInputDataTsMulticastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigInputDataTsMulticastIp.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsMulticastIp.setDescription('The Multicast receive IP address. An IP address of 0.0.0.0 indicates singlecast only. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apexGbeConfigInputDataTsSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigInputDataTsSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsSourceIp.setDescription('This is the IP address of the source device. This field is only used when a multicast IP address is also specified. ')
apexGbeConfigInputDataTsApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 6), )
if mibBuilder.loadTexts: apexGbeConfigInputDataTsApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsApplyTable.setDescription('Table of Apply Change for the GBE Input Data Stream Table. A row in this table corresponds to the same row index in the GBE Input Data Stream table (apexGbeConfigInputDataTsTable). ')
apexGbeConfigInputDataTsApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 6, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeConfigInputDataTsApplyIndex"))
if mibBuilder.loadTexts: apexGbeConfigInputDataTsApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsApplyEntry.setDescription('GBE Input Data Stream Apply Table Entry.')
apexGbeConfigInputDataTsApplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexGbeConfigInputDataTsApplyIndex.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsApplyIndex.setDescription('The index of the GBE Input Data Stream Apply Table.')
apexGbeConfigInputDataTsApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 6, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfigInputDataTsApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInputDataTsApplyChange.setDescription("The Apply for the row of data in the GBE Input Data Stream Table. A row in this table corresponds to the same row index in the GBE Input Data Stream table. This parameter MUST be set to 'apply' in order for any of the data in the GBE Input Data Stream Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the GBE Input Data Stream Table row has been configured. @Config(config=no, reboot=no) ")
apexGbeConfIfRedundAutoSwitchBackEnable = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 1, 1), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfIfRedundAutoSwitchBackEnable.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfIfRedundAutoSwitchBackEnable.setDescription("Enables the ability for the secondary interface to switch back when link is re-detected on the primary interface. Auto switch back to the primary interface will not occur if the user forced a failover to the secondary. Auto switch back only occurs after a non-forced failover. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apexGbeConfIfRedundAutoSwitchBackPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfIfRedundAutoSwitchBackPeriod.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfIfRedundAutoSwitchBackPeriod.setDescription("Timer for determining that the primary interface is OK for auto- switchback. The primary interface must have link for the configured amount of time. Valid time is 1-30 seconds. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apexGbeConfigInterfaceRedundancyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 2), )
if mibBuilder.loadTexts: apexGbeConfigInterfaceRedundancyTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInterfaceRedundancyTable.setDescription('This is a table of configuration parameters for GbE Interface Redundancy.')
apexGbeConfigInterfaceRedundancyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeConfIfRedundIndex"))
if mibBuilder.loadTexts: apexGbeConfigInterfaceRedundancyEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInterfaceRedundancyEntry.setDescription('GbE Interface Redundancy Configuration Table Entry.')
apexGbeConfIfRedundIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)))
if mibBuilder.loadTexts: apexGbeConfIfRedundIndex.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfIfRedundIndex.setDescription('GbE Interface Pair number. Value of 1 is GbE1 and GbE2 pair. Value of 2 is GbE3 and GbE4 pair.')
apexGbeConfIfRedundEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 2, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfIfRedundEnable.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfIfRedundEnable.setDescription("Enables GbE Interface Redundancy for ports pair. Failover is based on link status. If the primary GbE fails, the secondary GbE will become active and will start receiving content. There is no data rate comparison, as only one interface in the redundancy pair is active. The secondary GbE cannot be in use prior to enabling redundancy. TS redundancy may not be used at the same time as interface redundancy. Interface redundancy is not applicable when chassis redundancy is enabled. Once written, the change to this table will only take immediate effect after apexGbeConfIfRedundApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexGbeConfIfRedundApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apexGbeConfIfRedundForceFailover = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("failoverNotInProgress", 1), ("failover", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfIfRedundForceFailover.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfIfRedundForceFailover.setDescription('When set to failover(2), this results in the APEX switching to the interface that is currently not in use. If the primary GbE is in use and this is set to failover(2) mappings will be then routed to the secondary GbE. If the secondary GbE is in use and this is set to failover(2) mappings will then be routed back to the primary GbE. Once written, the change to this table will take immediate @Config(config=no, reboot=no) ')
apexGbeConfIfRedundSuspendFailover = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 2, 1, 4), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfIfRedundSuspendFailover.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfIfRedundSuspendFailover.setDescription("Enables and disables suspending of Interface failover. Prevents failovers to or from backup. Force failover (apexGbeConfIfRedundForceFailover) overrides this setting. Once written, the change to this table will only take immediate effect after apexGbeConfIfRedundApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexGbeConfIfRedundApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apexGbeConfigInterfaceRedundancyApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 3), )
if mibBuilder.loadTexts: apexGbeConfigInterfaceRedundancyApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInterfaceRedundancyApplyTable.setDescription('Table of Apply Change for the GBE Interface Redundancy Configuration Table. A row in this table corresponds to the same row index in the GBE Config Interface Redundancy table (apexGbeConfigInterfaceRedundancyTable). ')
apexGbeConfigInterfaceRedundancyApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeConfIfRedundApplyIndex"))
if mibBuilder.loadTexts: apexGbeConfigInterfaceRedundancyApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfigInterfaceRedundancyApplyEntry.setDescription('GBE Config Interface Redundancy Table Entry.')
apexGbeConfIfRedundApplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)))
if mibBuilder.loadTexts: apexGbeConfIfRedundApplyIndex.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfIfRedundApplyIndex.setDescription('The index of the GBE Config Interface Redundancy Table.')
apexGbeConfIfRedundApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 3, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeConfIfRedundApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexGbeConfIfRedundApplyChange.setDescription("The Apply for the row of data in the GBE Config Interface Redundancy Table. A row in this table corresponds to the same row index in the GBE Config Interface Redundancy table. This parameter MUST be set to 'apply' in order for any of the data in the GBE Input Data Stream Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the GBE Input Data Stream Table row has been configured. @Config(config=no, reboot=no) ")
apexGbeBootCodeVersion = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeBootCodeVersion.setStatus('current')
if mibBuilder.loadTexts: apexGbeBootCodeVersion.setDescription('APEX Gigabit Ethernet Processor Boot Code Version.')
apexGbeApplicationCodeVersion = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeApplicationCodeVersion.setStatus('current')
if mibBuilder.loadTexts: apexGbeApplicationCodeVersion.setDescription('APEX Gigabit Ethernet Processor Application Code Version.')
apexGbeMaxInputTs = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeMaxInputTs.setStatus('current')
if mibBuilder.loadTexts: apexGbeMaxInputTs.setDescription('Maximum number of Gigabit Ethernet input transport streams that can be opened on this APEX. This is the maximum across all installed GigE interfaces. One GigE interface can use all Input TS.')
apexGbeRoutedPacketUpdateInterval = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeRoutedPacketUpdateInterval.setStatus('current')
if mibBuilder.loadTexts: apexGbeRoutedPacketUpdateInterval.setDescription('Time in seconds between Gigabit Ethernet Routed Packet Count updates. The count during this time is defined as one sample. This time applies to packet counts contained in apexGbeStatusRoutedPacketTable. To compute rate from packet count for the last update interval: Rate(bps) = (Packet_Count * 188 bytes/packet * 8 bits/byte) / Update_Interval This value is set by the APEX at startup and is constant. ')
apexGbeStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2), )
if mibBuilder.loadTexts: apexGbeStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusTable.setDescription('This is a table of status parameters for the Gigabit Ethernet Interface.')
apexGbeStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeStatusGbeInterfaceNum"))
if mibBuilder.loadTexts: apexGbeStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusEntry.setDescription('Gigabit Ethernet Interface Status Table Entry.')
apexGbeStatusGbeInterfaceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)))
if mibBuilder.loadTexts: apexGbeStatusGbeInterfaceNum.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusGbeInterfaceNum.setDescription('Gigabit Ethernet Interface Number.')
apexGbeStatusMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 17))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatusMacAddr.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusMacAddr.setDescription("This is the MAC address of the Gigabit Ethernet Interface. It is set at the factory and cannot be changed. The string length is 17 characters in the format 'hh:hh:hh:hh:hh:hh' where 'hh' is a hexadecimal number.")
apexGbeStatusLinkActive = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2, 1, 3), ActiveTYPE()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatusLinkActive.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusLinkActive.setDescription('This indicates if the Gigabit Ethernet optical link is active.')
apexGbeStatusIgmpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("notApplicable", 0), ("igmpV1", 1), ("igmpV2", 2), ("igmpV3", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatusIgmpVersion.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusIgmpVersion.setDescription('This indicates the IGMP Version being used on this interface.')
apexGbeStatusLossOfPhysicalInput = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatusLossOfPhysicalInput.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusLossOfPhysicalInput.setDescription('The current severity of apexAlarmGbeLossOfPhysicalInput for this interface. ')
apexGbeInputTsAssignedTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 3), )
if mibBuilder.loadTexts: apexGbeInputTsAssignedTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsAssignedTable.setDescription('Table of Gigabit Ethernet Input TS Assigned data.')
apexGbeInputTsAssignedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeInputTsAssignedGbeInterfaceNum"))
if mibBuilder.loadTexts: apexGbeInputTsAssignedEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsAssignedEntry.setDescription('Gigabit Ethernet Interface Input TS Assigned Table Entry.')
apexGbeInputTsAssignedGbeInterfaceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)))
if mibBuilder.loadTexts: apexGbeInputTsAssignedGbeInterfaceNum.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsAssignedGbeInterfaceNum.setDescription('The index of the Gigabit Ethernet Input TS Assigned Table. Represents the Gigabit Ethernet interface number.')
apexGbeInputTsAssignedCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 3, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsAssignedCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsAssignedCount.setDescription('Number of input transport streams assigned to the GigE interface.')
apexGbeOpenInputUdpPortTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 4), )
if mibBuilder.loadTexts: apexGbeOpenInputUdpPortTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeOpenInputUdpPortTable.setDescription('Table of Gigabit Ethernet Input Open UDP Port data.')
apexGbeOpenInputUdpPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeOpenInputUdpPortGbeInterfaceNum"))
if mibBuilder.loadTexts: apexGbeOpenInputUdpPortEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeOpenInputUdpPortEntry.setDescription('Gigabit Ethernet Interface Input Open UDP Port Table Entry.')
apexGbeOpenInputUdpPortGbeInterfaceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)))
if mibBuilder.loadTexts: apexGbeOpenInputUdpPortGbeInterfaceNum.setStatus('current')
if mibBuilder.loadTexts: apexGbeOpenInputUdpPortGbeInterfaceNum.setDescription('The index of the Gigabit Ethernet Input Open UDP Port Table. Represents the Gigabit Ethernet interface number.')
apexGbeOpenInputUdpPortCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 4, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeOpenInputUdpPortCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeOpenInputUdpPortCount.setDescription('Number of open Input UDP Ports on the GigE interface.')
apexGbeStatusRoutedPacketTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 5), )
if mibBuilder.loadTexts: apexGbeStatusRoutedPacketTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusRoutedPacketTable.setDescription('This table contains Gigabit Ethernet MPEG packet counts for each Output Transport Stream of this APEX. Update interval is apexGbeRoutedPacketUpdateInterval.')
apexGbeStatusRoutedPacketEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 5, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeStatusRoutedPacketOutputTsNum"))
if mibBuilder.loadTexts: apexGbeStatusRoutedPacketEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusRoutedPacketEntry.setDescription('Gigabit Ethernet Interface Status Routed Packet Table Entry.')
apexGbeStatusRoutedPacketOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexGbeStatusRoutedPacketOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusRoutedPacketOutputTsNum.setDescription('The index of the Gigabit Ethernet Routed Packet Status Table. Represents Output Transport Stream number.')
apexGbeStatusTotRoutedPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 5, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatusTotRoutedPackets.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusTotRoutedPackets.setDescription('Total number of Gigabit Ethernet MPEG packets routed to this Output Transport Stream.')
apexGbeStatusNumRoutedPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 5, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatusNumRoutedPackets.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusNumRoutedPackets.setDescription('Number of Gigabit Ethernet MPEG packets routed to this Output Transport Stream during the last monitoring period (apexGbeRoutedPacketUpdateInterval).')
apexGbeStatusFrameCounterTableResetAll = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 1, 1), ResetStatisticsTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeStatusFrameCounterTableResetAll.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusFrameCounterTableResetAll.setDescription('Reset Ethernet Frame Counter Totals for all GigE interfaces: - apexGbeTotalRxSinglecastFrames - apexGbeTotalRxMulticastFrames - apexGbeTotalRxBroadcastFrames - apexGbeTotalRxErrorFrames - apexGbeTotalRxFrames - apexGbeTotalTxGoodFrames - apexGbeTotalTxErrorFrames Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ')
apexGbeFrameCounterUpdateInterval = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameCounterUpdateInterval.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameCounterUpdateInterval.setDescription('Time in seconds between Gigabit Ethernet Frame Counter updates. The count during this time is defined as one sample. This time applies to packet counts contained in apexGbeStatusFrameCounterTable. To compute rate from frame count for the last update interval: Rate(bps) = (Frame_Count * 7 packets/frame 188 bytes/packet * 8 bits/byte) / Update_Interval This value is set by the APEX at startup and is constant. ')
apexGbeStatusFrameCounterTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2), )
if mibBuilder.loadTexts: apexGbeStatusFrameCounterTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusFrameCounterTable.setDescription('Table of Gigabit Ethernet Frame Counter Statistics.')
apexGbeStatusFrameCounterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeFrameCounterGbeInterfaceNum"))
if mibBuilder.loadTexts: apexGbeStatusFrameCounterEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusFrameCounterEntry.setDescription('Gigabit Ethernet Interface Frame Counter Table Entry.')
apexGbeFrameCounterGbeInterfaceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)))
if mibBuilder.loadTexts: apexGbeFrameCounterGbeInterfaceNum.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameCounterGbeInterfaceNum.setDescription('The index of the Gigabit Ethernet Frame Counter Table. Represents the Gigabit Ethernet interface number.')
apexGbeFrameCounterReset = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 2), ResetStatisticsTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeFrameCounterReset.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameCounterReset.setDescription('Reset Ethernet Frame Counter Statistics totals for a single GigE interface: - apexGbeTotalRxSinglecastFrames - apexGbeTotalRxMulticastFrames - apexGbeTotalRxBroadcastFrames - apexGbeTotalRxErrorFrames - apexGbeTotalRxFrames - apexGbeTotalTxGoodFrames - apexGbeTotalTxErrorFrames Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ')
apexGbeTotalRxSinglecastFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeTotalRxSinglecastFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeTotalRxSinglecastFrames.setDescription('Total number of singlecast Ethernet frames received since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apexGbeTotalRxMulticastFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeTotalRxMulticastFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeTotalRxMulticastFrames.setDescription('Total number of multicast Ethernet frames received since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apexGbeTotalRxBroadcastFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeTotalRxBroadcastFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeTotalRxBroadcastFrames.setDescription('Total number of broadcast Ethernet frames received since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apexGbeTotalRxErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeTotalRxErrorFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeTotalRxErrorFrames.setDescription('Total number of bad Ethernet frames received since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apexGbeTotalRxFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeTotalRxFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeTotalRxFrames.setDescription('Total number of Ethernet frames received since last reset. This is the sum of apexGbeTotalRxSinglecastFrames, apexGbeTotalRxMulticastFrames, apexGbeTotalRxBroadcastFrames, and apexGbeTotalRxErrorFrames. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apexGbeRxSinglecastFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeRxSinglecastFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeRxSinglecastFrames.setDescription('Number of singlecast Ethernet frames received during last status checking interval. Status checking interval is apexGbeFrameCounterUpdateInterval.')
apexGbeRxMulticastFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeRxMulticastFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeRxMulticastFrames.setDescription('Number of multicast Ethernet frames received during last status checking interval. Status checking interval is apexGbeFrameCounterUpdateInterval.')
apexGbeRxBroadcastFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeRxBroadcastFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeRxBroadcastFrames.setDescription('Number of broadcast Ethernet frames received during last status checking interval. Status checking interval is apexGbeFrameCounterUpdateInterval.')
apexGbeRxErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeRxErrorFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeRxErrorFrames.setDescription('Number of bad Ethernet frames received during last status checking interval. Status checking interval is apexGbeFrameCounterUpdateInterval.')
apexGbeRxFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeRxFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeRxFrames.setDescription('Number of Ethernet frames received during last status checking interval. This is the sum of apexGbeRxSinglecastFrames, apexGbeRxMulticastFrames, apexGbeRxBroadcastFrames, and apexGbeRxErrorFrames. Status checking interval is five seconds.')
apexGbeTotalTxGoodFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeTotalTxGoodFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeTotalTxGoodFrames.setDescription('Total number of good Ethernet frames (singlecast, multicast, and broadcast) transmitted since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apexGbeTotalTxErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeTotalTxErrorFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeTotalTxErrorFrames.setDescription('Total number of bad Ethernet frames transmitted since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apexGbeTxGoodFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeTxGoodFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeTxGoodFrames.setDescription('Number of good Ethernet frames (singlecast, multicast, and broadcast) transmitted during last status checking interval. Status checking interval is five seconds.')
apexGbeTxErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeTxErrorFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeTxErrorFrames.setDescription('Number of bad Ethernet frames transmitted during last status checking interval. Status checking interval is five seconds.')
apexGbeRxDocsisFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeRxDocsisFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeRxDocsisFrames.setDescription('Number of good Ethernet frames containing DOCSIS (singlecast, multicast, and broadcast) received during last status checking interval. Status checking interval is five seconds.')
apexGbeTotalRxDocsisFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeTotalRxDocsisFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeTotalRxDocsisFrames.setDescription('Total number of good Ethernet frames containing DOCSIS(singlecast, multicast, and broadcast) received since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apexGbeRxMpegDocsisFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeRxMpegDocsisFrames.setStatus('current')
if mibBuilder.loadTexts: apexGbeRxMpegDocsisFrames.setDescription('Number of MPEG packets generated from DOCSIS data (singlecast, multicast, and broadcast) received during last status checking interval. Status checking interval is five seconds.')
apexGbeIpFragmentedPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeIpFragmentedPkts.setStatus('current')
if mibBuilder.loadTexts: apexGbeIpFragmentedPkts.setDescription('Number of IP fragmented packets received during last status checking interval. Status checking interval is five seconds.')
apexGbeTotalIpFragmentedPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeTotalIpFragmentedPkts.setStatus('current')
if mibBuilder.loadTexts: apexGbeTotalIpFragmentedPkts.setDescription('Total number of IP fragmented packets received during last status checking interval. Status checking interval is five seconds.')
apexGbeFrameBufferStatsTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2), )
if mibBuilder.loadTexts: apexGbeFrameBufferStatsTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferStatsTable.setDescription('Table of Gigabit Ethernet Frame Buffer Statistics for each GBE processor.')
apexGbeFrameBufferStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeFrameBufferProcessorNum"))
if mibBuilder.loadTexts: apexGbeFrameBufferStatsEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferStatsEntry.setDescription('Gigabit Ethernet Frame Buffer Statistics Table Entry.')
apexGbeFrameBufferProcessorNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)))
if mibBuilder.loadTexts: apexGbeFrameBufferProcessorNum.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferProcessorNum.setDescription('Index of the Gigabit Ethernet Buffer Statistics Table. Gigabit Ethernet Processor Number. Proc 1 = GBE Interfaces 1 and 2 Proc 2 = GBE Interfaces 3 and 4 ')
apexGbeFrameBufferResetLevelLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferResetLevelLimit.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferResetLevelLimit.setDescription('The point at which the GigE frame buffer will be reset, in milliseconds. This value is equal to (maximum buffer depth - 5). The maximum buffer depth is calculated based on the expected input data rate (apexGbeConfigFrameBufferMaxInDataRate).')
apexGbeFrameBufferCurrMsLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferCurrMsLevel.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferCurrMsLevel.setDescription('Current highest Gigabit Ethernet Frame Buffer level in milliseconds.')
apexGbeFrameBufferCurrPercentFull = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferCurrPercentFull.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferCurrPercentFull.setDescription('Current highest Gigabit Ethernet Frame Buffer fullness as a percentage of the buffer depth available for a given aggregate rate. This percentage is calculated using the current buffer level (apexGbeFrameBufferCurrMsLevel) and the actual input data rate.')
apexGbeFrameBufferUnderflowLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferUnderflowLevel.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferUnderflowLevel.setDescription('The point at which the GigE frame buffer will underflow, in milliseconds. This value is calculated based on the sum of the number of received frames per second for all interfaces.')
apexGbeFrameBufferOverflowLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferOverflowLevel.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferOverflowLevel.setDescription('The point at which the GigE frame buffer will overflow, in milliseconds. This value is calculated based on the sum of the number of received frames per second for all interfaces.')
apexGbeFrameBufferAlarmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferAlarmStatus.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferAlarmStatus.setDescription('The current highest severity of apexAlarmGbeBufferFullness for the GBE Processor. ')
apexGbeFrameBufferHourlyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3), )
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyTable.setDescription('Table of Gigabit Ethernet Frame Buffer Statistics. There can be up to 24 entries in the table for each GBE Processor. Each entry represents one hour. The newest entry is placed at the beginning of the table and, if necessary, the oldest entry is pushed off the end of the table. The table will not be full until 24 hours have passed.')
apexGbeFrameBufferHourlyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeFrameBufferHourlyProcessorNum"), (0, "APEX-MIB", "apexGbeFrameBufferHourlyIndex"))
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyEntry.setDescription('Gigabit Ethernet Interface Frame Buffer Table Entry.')
apexGbeFrameBufferHourlyProcessorNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)))
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyProcessorNum.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyProcessorNum.setDescription('First index of the Gigabit Ethernet Buffer Status Table. Gigabit Ethernet Processor Number. Proc 1 = GBE Interfaces 1 and 2 Proc 2 = GBE Interfaces 3 and 4 ')
apexGbeFrameBufferHourlyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 24)))
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyIndex.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyIndex.setDescription('Second index of the Gigabit Ethernet Buffer Status Table. Each index represents one hour. There can be up to 24 entries in the table. The most recent entry is always at the beginning of the table.')
apexGbeFrameBufferHourlyInInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyInInterface.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyInInterface.setDescription('Number of the input interface for the Gigabit Ethernet interface that experienced the highest buffer level for the hour. ')
apexGbeFrameBufferHourlyInUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyInUdp.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyInUdp.setDescription('Input UDP Port for the Gigabit Ethernet interface that experienced the highest buffer level for the hour. ')
apexGbeFrameBufferHourlyInMulticastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyInMulticastIp.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyInMulticastIp.setDescription('Input Multicast IP address for the Gigabit Ethernet interface that experienced the highest buffer level for the hour. ')
apexGbeFrameBufferHourlyInSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyInSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyInSourceIp.setDescription('Input IGMP v3 Source IP for the Gigabit Ethernet interface that experienced the highest buffer level for the hour. ')
apexGbeFrameBufferHourlyMaxMsLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyMaxMsLevel.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyMaxMsLevel.setDescription('The maximum Gigabit Ethernet frame buffer level (in milliseconds) recorded for the hour.')
apexGbeFrameBufferHourlyMaxPercentFull = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyMaxPercentFull.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyMaxPercentFull.setDescription('The maximum Gigabit Ethernet frame buffer level percentage recorded for the hour.')
apexGbeFrameBufferHourlyGpsTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyGpsTime.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyGpsTime.setDescription('The GPS time when the maximum Gigabit Ethernet frame buffer level was reached.')
apexGbeFrameBufferHourlyOverflows = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyOverflows.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyOverflows.setDescription('The number of overflows recorded on Gigabit Ethernet interface for the hour.')
apexGbeFrameBufferHourlyResets = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyResets.setStatus('current')
if mibBuilder.loadTexts: apexGbeFrameBufferHourlyResets.setDescription('The number of resets reported by the GigE processor during the hour.')
apexGbeStatusInputTsUpdateInterval = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatusInputTsUpdateInterval.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusInputTsUpdateInterval.setDescription('Time in seconds between Gigabit Ethernet Input Transport Stream Packet Count updates. The count during this time is defined as one sample. This time applies to packet counts contained in apexGbeStatusInputTsTable. To compute rate from packet count for the last update interval: Rate(bps) = (Packet_Count * 188 bytes/packet * 8 bits/byte) / Update_Interval This value is set by the APEX at startup and is constant. ')
apexGbeStatusInputTsTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2), )
if mibBuilder.loadTexts: apexGbeStatusInputTsTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusInputTsTable.setDescription('Table of Gigabit Ethernet Input Transport Stream status. A row in this table corresponds to the same index row in apexInputTsStatTable and apexGbeStatusInputTsErrorTable. Packet Counts are updated every apexGbeStatusInputTsUpdateInterval. The count during a apexGbeStatusInputTsUpdateInterval is a sample. The samples are accumulated into a set of rolling statistics that cover a maximum of a 15 minute sampling time period. The sampling period is the amount of time over which the data in the corresponding row has been collected. When the sampling period reaches 15 minutes, old data is removed from the accumulated statistics and new data is rolled in. In this way, the average, minimum, and peak rates for the sampling period are maintained. ')
apexGbeStatusInputTsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeStatInTsInputTsNum"))
if mibBuilder.loadTexts: apexGbeStatusInputTsEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusInputTsEntry.setDescription('Gigabit Ethernet Input Transport Stream Status Table Entry.')
apexGbeStatInTsInputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexGbeStatInTsInputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsInputTsNum.setDescription('The Gigabit Ethernet Input Transport Stream Status table index. A row in this table corresponds to the same index row in apexInputTsStatTable and apexGbeStatusInputTsErrorTable. ')
apexGbeStatInTsSamplingPeriod = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 900))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSamplingPeriod.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSamplingPeriod.setDescription('The total time, in seconds, over which the packet counts statistics in this row have been collected. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsPriCurDataCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsPriCurDataCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsPriCurDataCount.setDescription('The Data Packet Count of the most recent sample for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsPriAvgDataCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsPriAvgDataCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsPriAvgDataCount.setDescription('The Average Data Packet Count per sample during apexGbeStatInTsSamplingPeriod for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsPriMinDataCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsPriMinDataCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsPriMinDataCount.setDescription('The Minimum Data Packet Count sample during apexGbeStatInTsSamplingPeriod for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsPriPeakDataCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsPriPeakDataCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsPriPeakDataCount.setDescription('The Peak Data Packet Count sample during apexGbeStatInTsSamplingPeriod for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsPriCurStreamCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsPriCurStreamCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsPriCurStreamCount.setDescription('The Transport Stream Packet Count of the most recent sample for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsPriAvgStreamCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsPriAvgStreamCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsPriAvgStreamCount.setDescription('The Average Transport Stream Packet Count per sample during apexGbeStatInTsSamplingPeriod for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsPriMinStreamCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsPriMinStreamCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsPriMinStreamCount.setDescription('The Minimum Transport Stream Packet Count sample during apexGbeStatInTsSamplingPeriod for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsPriPeakStreamCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsPriPeakStreamCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsPriPeakStreamCount.setDescription('The Peak Transport Stream Packet Count sample during apexGbeStatInTsSamplingPeriod for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsSecCurDataCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSecCurDataCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSecCurDataCount.setDescription('The Data Packet Count of the most recent sample for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsSecAvgDataCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSecAvgDataCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSecAvgDataCount.setDescription('The Average Data Packet Count per sample during apexGbeStatInTsSamplingPeriod for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsSecMinDataCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSecMinDataCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSecMinDataCount.setDescription('The Minimum Data Packet Count sample during apexGbeStatInTsSamplingPeriod for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsSecPeakDataCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSecPeakDataCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSecPeakDataCount.setDescription('The Peak Data Packet Count sample during apexGbeStatInTsSamplingPeriod for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsSecCurStreamCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSecCurStreamCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSecCurStreamCount.setDescription('The Transport Stream Packet Count of the most recent sample for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsSecAvgStreamCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSecAvgStreamCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSecAvgStreamCount.setDescription('The Average Transport Stream Packet Count per sample during apexGbeStatInTsSamplingPeriod for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsSecMinStreamCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSecMinStreamCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSecMinStreamCount.setDescription('The Minimum Transport Stream Packet Count sample during apexGbeStatInTsSamplingPeriod for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatInTsSecPeakStreamCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSecPeakStreamCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSecPeakStreamCount.setDescription('The Peak Transport Stream Packet Count sample during apexGbeStatInTsSamplingPeriod for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apexGbeStatusInputTsErrorTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3), )
if mibBuilder.loadTexts: apexGbeStatusInputTsErrorTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusInputTsErrorTable.setDescription('Table of Gigabit Ethernet Input Transport Stream Error status. A row in this table corresponds to the same index row in apexInputTsStatTable and apexGbeStatusInputTsTable. ')
apexGbeStatusInputTsErrorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeStatInTsErrorInputTsNum"))
if mibBuilder.loadTexts: apexGbeStatusInputTsErrorEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusInputTsErrorEntry.setDescription('Gigabit Ethernet Input Transport Stream Status Table Entry.')
apexGbeStatInTsErrorInputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexGbeStatInTsErrorInputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsErrorInputTsNum.setDescription('The Gigabit Ethernet Input Transport Stream Error Status table index. A row in this table corresponds to the same index row in apexInputTsStatTable and apexGbeStatusInputTsTable. ')
apexGbeStatInTsPriErrorSummary = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsPriErrorSummary.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsPriErrorSummary.setDescription('The current highest error of the following errors for the primary input transport stream: apexGbeStatInTsPriLowBitRateError apexGbeStatInTsPriHighBitRateError apexGbeStatInTsMptsRedundPriError apexGbeStatInTsMptsRedundFailError apexGbeStatInTsPriLossInputError ')
apexGbeStatInTsPriLowBitRateError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsPriLowBitRateError.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsPriLowBitRateError.setDescription('The current low bit rate state for the primary input stream. Ok indicates no errors or not checking low bit rate. Error indicates primary input stream is below the low bit rate specified. ')
apexGbeStatInTsPriHighBitRateError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsPriHighBitRateError.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsPriHighBitRateError.setDescription('The current high bit rate state for the primary input stream. Ok indicates no errors or not checking high bit rate. Error indicates primary input stream is above the high bit rate specified. ')
apexGbeStatInTsMptsRedundPriError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsMptsRedundPriError.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsMptsRedundPriError.setDescription('The current redundant threshold state for the primary input stream. Ok indicates no errors or input stream is not part of a redundant pair. Error indicates primary input stream is below the threshold level specified. ')
apexGbeStatInTsMptsRedundFailError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsMptsRedundFailError.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsMptsRedundFailError.setDescription('The current fail over state for a redundancy pair. Ok indicates no errors or input stream is not part of a redundant pair. Error indicates primary input stream is no longer in use and the APEX has fallen over to use the secondary input stream. ')
apexGbeStatInTsSecErrorSummary = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSecErrorSummary.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSecErrorSummary.setDescription('The current highest error state of the following for the secondary input transport stream: apexGbeStatInTsSecLowBitRateError apexGbeStatInTsSecHighBitRateError apexGbeStatInTsSecLossInputError ')
apexGbeStatInTsSecLowBitRateError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSecLowBitRateError.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSecLowBitRateError.setDescription('The current low bit rate state for the secondary input stream. Ok indicates no errors or not checking low bit rate. Error indicates secondary input stream is below the low bit rate specified. ')
apexGbeStatInTsSecHighBitRateError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSecHighBitRateError.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSecHighBitRateError.setDescription('The current high bit rate state for the secondary input stream. Ok indicates no errors or not checking high bit rate. Error indicates secondary input stream is above the high bit rate specified. ')
apexGbeStatInTsPriLossInputError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsPriLossInputError.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsPriLossInputError.setDescription('The current loss of input stream state for the primary input stream. Ok indicates no errors or not checking for loss of input stream. Error indicates primary input stream is missing. ')
apexGbeStatInTsSecLossInputError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatInTsSecLossInputError.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatInTsSecLossInputError.setDescription('The current loss of input stream state for the secondary input stream. Ok indicates no errors or not checking for loss of input stream. Error indicates secondary input stream is missing. ')
apexGbeStatusInterfaceRedundTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9, 1), )
if mibBuilder.loadTexts: apexGbeStatusInterfaceRedundTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusInterfaceRedundTable.setDescription('This is a table of status parameters for GbE Interface Redundancy.')
apexGbeStatusInterfaceRedundEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9, 1, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeStatusInterfaceRedundIndex"))
if mibBuilder.loadTexts: apexGbeStatusInterfaceRedundEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusInterfaceRedundEntry.setDescription('GbE Interface Redundancy Status Table Entry.')
apexGbeStatusInterfaceRedundIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)))
if mibBuilder.loadTexts: apexGbeStatusInterfaceRedundIndex.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusInterfaceRedundIndex.setDescription('GbE Interface Pair number. Value of 1 is GbE1 and GbE2 pair. Value of 2 is GbE3 and GbE4 pair.')
apexGbeStatusInterfaceRedundActiveIf = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatusInterfaceRedundActiveIf.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusInterfaceRedundActiveIf.setDescription('The current active interface for the redundant pair. This is only applicable if GbE Interface Redundancy is enabled for the pair. If GbE Interface Redundancy is not enabled it will be set to zero. ')
apexGbeStatusInterfaceRedundInvalidApplyText = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatusInterfaceRedundInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusInterfaceRedundInvalidApplyText.setDescription('When apexGbeConfIfRedundApplyChange is set to applyNotInProgressInvalidData this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of an entry that was invalid.')
apexGbeStatusInterfaceRedundFaultCondition = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeStatusInterfaceRedundFaultCondition.setStatus('current')
if mibBuilder.loadTexts: apexGbeStatusInterfaceRedundFaultCondition.setDescription('Current fault condition of the GbE Interface pair. Reflects apexAlarmGbeInterfaceRedundFailOver for this redundant pair. ')
apexGbeSfpUpdateStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("updateNotInProgress", 1), ("update", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexGbeSfpUpdateStatus.setStatus('current')
if mibBuilder.loadTexts: apexGbeSfpUpdateStatus.setDescription("When set to 'update' the APEX will update the apexGbeSfpStatusTable by performing an one-time read of SFP memory. APEX sets back to 'updateNotInProgress' when complete. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apexGbeSfpStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2, 2), )
if mibBuilder.loadTexts: apexGbeSfpStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeSfpStatusTable.setDescription('Table of SFP status parameters. Indexed by Gigabit Ethernet Interface Number. ')
apexGbeSfpStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeSfpStatusGbeIfNum"))
if mibBuilder.loadTexts: apexGbeSfpStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeSfpStatusEntry.setDescription('SFP status table entry.')
apexGbeSfpStatusGbeIfNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)))
if mibBuilder.loadTexts: apexGbeSfpStatusGbeIfNum.setStatus('current')
if mibBuilder.loadTexts: apexGbeSfpStatusGbeIfNum.setDescription('Gigabit Ethernet Interface Number.')
apexGbeSfpStatusVendorId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeSfpStatusVendorId.setStatus('current')
if mibBuilder.loadTexts: apexGbeSfpStatusVendorId.setDescription('ASCII format of bytes 0-127 from SFP-MSA ID Memory Map address A0h. Zero-length indicates that no SFP module is installed. ')
apexGbeSfpStatusDiagInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeSfpStatusDiagInfo.setStatus('current')
if mibBuilder.loadTexts: apexGbeSfpStatusDiagInfo.setDescription('ASCII format of bytes 96-127 from SFP Diagnostic Memory address A2h. Zero-length indicates that diagnostic information is not available. ')
apexQamConfigTransmissionMode = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("annexB-ATSC-DCII", 1), ("annexA-DVB", 2), ("annexC-Asia-Pacific", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamConfigTransmissionMode.setStatus('current')
if mibBuilder.loadTexts: apexQamConfigTransmissionMode.setDescription("This is the QAM Transmission Mode as defined in: Series J: Transmission of Television, Sound Programme and other Multimedia Signals, ITU-T J.83. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexQamModuleUpgradeSlot = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamModuleUpgradeSlot.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleUpgradeSlot.setDescription("This is the QAM slot number of the QAM Module that is being upgraded from a 2x4 channel module to a 2x8 channel module. Zero indicates no slot selected. Once written, the change to this table will only take immediate effect after apexQamModuleUpgradeApplyChange is set to 'apply'. @Config(config=no, reboot=no) @Commit(param=apexQamModuleUpgradeApplyChange, value=2) ")
apexQamModuleUpgradeCode = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 2, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 48))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamModuleUpgradeCode.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleUpgradeCode.setDescription("This is the encrypted upgrade code for the QAM Module that is being upgraded from a 2x4 channel module to a 2x8 channel module. The Upgrade Code is specific to a QAM Module and can only be used for the QAM Module with the serial number for which the Upgrade Code was created. Once written, the change to this parameter will only take immediate effect after the corresponding apexQamModuleUpgradeApplyChange is set to 'apply'. This parameter is cleared by the APEX after the apply is complete. @Config(config=no, reboot=no) @Commit(param=apexQamModuleUpgradeApplyChange, value=2) ")
apexQamModuleUpgradeApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 2, 3), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamModuleUpgradeApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleUpgradeApplyChange.setDescription("This is the Apply for QAM Module Upgrade Slot and Code. This parameter MUST be set to 'apply' in order for apexQamModuleUpgradeSlot and apexQamModuleUpgradeCode to take effect. This parameter MUST be set LAST after apexQamModuleUpgradeSlot and apexQamModuleUpgradeCode has been configured. The APEX will set this to applyNotInProgressInvalidData if the Upgrade Code is incorrect and the QAM Module is not upgraded. @Config(config=no, reboot=no) ")
apexQamConfigApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 3), )
if mibBuilder.loadTexts: apexQamConfigApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexQamConfigApplyTable.setDescription('Table of Apply Change for the data for apexQamRfConfigTable. ')
apexQamConfigApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexQamConfigApplyRfPortNum"))
if mibBuilder.loadTexts: apexQamConfigApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamConfigApplyEntry.setDescription('QAM Configuration Apply Table Entry.')
apexQamConfigApplyRfPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: apexQamConfigApplyRfPortNum.setStatus('current')
if mibBuilder.loadTexts: apexQamConfigApplyRfPortNum.setDescription('The QAM RF Port number. Port 1,2,7,8 is Slot 1 Port 3,4,9,10 is Slot 2 Port 5,6,11,12 is Slot 3')
apexQamConfigApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 3, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexQamConfigApplyChange.setDescription("The Apply for a row of data in apexQamRfConfigTable. A row in this table corresponds to the same row index in the apexQamRfConfigTable. This parameter MUST be set to 'apply' in order for any of the data in the rows to take effect in the APEX. This parameter MUST be set LAST after all other data in the configuration table rows has been configured. @Config(config=no, reboot=no) ")
apexQamRfConfigTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4), )
if mibBuilder.loadTexts: apexQamRfConfigTable.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigTable.setDescription("Table of configuration items configurable on a QAM RF Port basis. There can be up to 12 RF Ports on an APEX1000 depending on how the 3 QAM slots are populated. There can be 2 or 4 RF Ports in each QAM slot. The 2 RF Ports in a 2x8(2x4) QAM module (1,2) in a QAM slot are mapped to table rows as follows: Slot Rows (RF port) 1 1,2 2 3,4 3 5,6 If a QAM Module in a slot only has 2 RF ports, the first three rows in this table for that slot are to be used. For example, if there is a 2x4 or 2x8 module in slot 3, port 5 and 6 are to be used for configuring the RF Ports of the module. The 4 RF Ports in a 4x4 QAM module (1,2,7,8) in a QAM slot are mapped to table rows as follows: Slot Rows (RF port) 1 1,2,7,8 2 3,4,9,10 3 5,6,11,12 All entries/rows in this table are used for the 4x4 QAM Module with any exceptions noted in the descriptions for the table entries. All entries in this table have the same ranges for the 4x4 QAM Module with any exceptions noted in the descriptions for the table entries. Refer to the description of apexQamChannelConfigTable for information on QAM Channel to RF Port mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. Once written, the change to this table will only take immediate effect after apexQamConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexQamRfConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexQamRfConfigRfPortNum"))
if mibBuilder.loadTexts: apexQamRfConfigEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigEntry.setDescription('QAM RF Port Configuration Table Entry.')
apexQamRfConfigRfPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: apexQamRfConfigRfPortNum.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigRfPortNum.setDescription('The QAM RF Port number.')
apexQamRfConfigNumChannelsEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigNumChannelsEnabled.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigNumChannelsEnabled.setDescription("The number of QAM Channels enabled on the RF Port. APEX will not allow enabling of more channels than the installed QAM Module will support. Note that when this parameter is changed and applied there will be an interruption in service on all active channels on this RF Port. When QAM Transmission Mode is 'annexA-DVB', enabled channels is also limited by the Channel Spacing such that the total bandwidth of the RF must not exceed 48 MHz. ")
apexQamRfConfigModulationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("qam64", 1), ("qam256", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigModulationMode.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigModulationMode.setDescription('The QAM Modulation mode for the QAM RF Port. This is the QAM Modulation mode of all QAM Channels enabled on the RF Port. For 4x4 QAM Modules: This parameter applies on an RF pair basis, 1-2 and 7-8. APEX1000 will use only odd table indices. Even index of pair will be ignored and set to value for odd index of pair. ')
apexQamRfConfigSymbolRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(800000, 6980000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigSymbolRate.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigSymbolRate.setDescription("The Symbol Rate Setting of the QAM Channels enabled on the RF Port. It is in symbols per second (sps). When QAM Transmission Mode is 'annexA-DVB' the range is 800,000 sps to 6,980,000 sps in 1000 sps steps. When QAM Transmission Mode is 'annexC-Asia-Pacific' the range is 800,000 sps to 5,310,000 sps in 1000 sps steps. The APEX will correct values not on a 1000 sps boundary so the user or management system does not need to enforce the step size. When QAM Transmission Mode is 'annexB-ATSC-DCII' this parameter is not configurable and is set by the APEX based on QAM Modulation Mode. For 4x4 QAM Modules: This parameter applies on an RF pair basis, 1-2 and 7-8. APEX1000 will use only odd table indices. Even index of pair will be ignored and set to value for odd index of pair. @Range(step=1000) ")
apexQamRfConfigSpectrumInvert = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("normal", 1), ("invert", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigSpectrumInvert.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigSpectrumInvert.setDescription('The Spectrum Inversion Setting of the QAM Channels enabled on the RF Port. ')
apexQamRfConfigTuningMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("frequency", 1), ("channel", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigTuningMode.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigTuningMode.setDescription("The tuning mode of the QAM Channels enabled on the RF Port. 'frequency' - The APEX tunes based on frequency as configured in RF Center Frequency for QAM Channel A and channel spacing as configured in RF Channel Spacing to determine the frequency of the B - H channels. 'channel' - The APEX tunes based on channel as configured in Channel Number for QAM Channel A using the selected Frequency Plan. The APEX will set the B - H channels to the next sequential channels. Applies only when QAM Transmission Mode is 'annexB-ATSC-DCII'. ")
apexQamRfConfigEiaFrequencyPlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("std", 1), ("hrc", 2), ("irc", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigEiaFrequencyPlan.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigEiaFrequencyPlan.setDescription("This is the frequency plan to use for tuning of the QAM Channels enabled on the RF Port. Frequency plans are as per CEA Standard: Cable Television Channel Identification Plan (CEA-542-B). This parameter is valid only when QAM Transmission Mode is 'annexB-ATSC-DCII'. 'std' - Standard (STD) North American frequency plan. 'hrc' - Harmonic Related Carrier (HRC) frequency plan. 'irc' - Incremental Related Carrier (IRC) frequency plan. ")
apexQamRfConfigEiaChanNumChannelA = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 158))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigEiaChanNumChannelA.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigEiaChanNumChannelA.setDescription("The Channel Number for QAM Channel A. Range is 0 to 158, with valid channels being 1 to 158 and 0 indicating 'not applicable'. This parameter is valid only when QAM Transmission Mode is 'annexB-ATSC-DCII'. This parameter is configurable only when Tuning Mode is 'channel'. When Tuning Mode is 'channel', this is the Channel Number used to determine the output frequency of QAM Channel A using the selected Frequency Plan. When Tuning Mode is 'frequency', this value is determined by the APEX using the selected Frequency Plan. If there is no channel number for the frequency, the value is set to zero. This parameter is not configurable for Transmission Modes of 'annexA-DVB' or 'annexC-Asia-Pacific' and the value is set to zero by the APEX. Channel 1 is not defined in CEA Standard: Cable Television Channel Identification Plan (CEA-542-B) for the Standard (STD) North American frequency plan. Channel 1 cannot be selected when apexQamRfConfigEiaFrequencyPlan is 'std'. Channel 2 as defined in defined in CEA Standard: Cable Television Channel Identification Plan (CEA-542-B) for the Harmonic Related Carrier (HRC) frequency plan is below the APEX 57 MHz minimum frequency. Channel 2 cannot be selected when apexQamRfConfigEiaFrequencyPlan is 'hrc'. For 4x4 QAM Modules: Channels with frequencies below 69 MHz may not be available. This limitation is dependent upon the HW version installed and number of channels enabled. ")
apexQamRfConfigRfCenterFreqChannelA = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(57000000, 999000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigRfCenterFreqChannelA.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigRfCenterFreqChannelA.setDescription("The RF Center Frequency for QAM Channel A. When QAM Transmission Mode is 'annexA-DVB' the range is 85,000,000 Hz to 999,000,000 Hz in 250,000 Hz steps. For 2x4/2x8 QAM Modules: When QAM Transmission Mode is 'annexB-ATSC-DCII' or 'annexC-Asia-Pacific' the range is 57,000,000 Hz to 999,000,000 Hz in 250,000 Hz steps. For 4x4 QAM Modules: When QAM Transmission Mode is 'annexB-ATSC-DCII' or 'annexC-Asia-Pacific' the range may be limited to 69,000,000 Hz to 999,000,000 Hz in 250,000 Hz steps. This limitation is dependent upon the HW version installed and number of channels enabled. The APEX will correct values not on a 250 kHz boundary so the user or management system does not need to enforce the step size. This parameter is configurable ONLY when Tuning Mode is 'frequency'. When Tuning Mode is 'channel', the value is set by the APEX using the selected Frequency Plan. @Range(step=250000) ")
apexQamRfConfigRfChanSpacing = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1000000, 8000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigRfChanSpacing.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigRfChanSpacing.setDescription("The Channel spacing for the QAM Channels enabled on the RF Port. This value must be in Hz in the range 1,000,000 Hz to 8,000,000 Hz in 500,000 Hz steps. The APEX will correct values not on a 500,000 Hz boundary so the user or management system does not need to enforce the step size. For 2x4/2x8 QAM Modules: When Transmission Mode is 'annexA-DVB' this value is configurable. Note that number of channels enabled can be affected by changing channel spacing. The total bandwidth of the RF must not exceed 48 MHz. For 2x4/2x8 QAM Modules: When Transmission Mode is 'annexB-ATSC-DCII' or 'annexC-Asia-Pacific' this value is fixed and is set by the APEX. For 4x4 QAM Modules: This value is fixed and is set by the APEX. @Range(step=500000) ")
apexQamRfConfigRfLevelAttenuation = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-300, 800))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigRfLevelAttenuation.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigRfLevelAttenuation.setDescription("The RF level attenuation setting of each enabled channel on the RF Port. Range is -300 to 800 representing -3 to 8 dB attenuation in 0.01 dB steps. (See 'Note' below.) Positive values are the amount below the nominal RF output level for the number of channels enabled on the RF Port. Negative values are the amount above the nominal. Number Nominal dBmV dBmV Channels dBmV W/-300 W/800 1 60 63 52 2 56 59 48 4 52 55 44 6 50 53 42 8 49 52 41 Note: Early APEX only supported attenuation. Gain was added later, hence the negative attenuation values for this parameter. For clarity, the APEX Element Manager display indicates 'RF Level Adjust', with a user selectable range of -8.00 to +3.00 dB, rather than 'Attenuation'. The APEX EM then sets this MIB parameter appropriately. ")
apexQamRfConfigRfLevelLowThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigRfLevelLowThreshold.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigRfLevelLowThreshold.setDescription('The threshold delta relative to the configured RF level that will indicate an RF Low condition. The measured output must drop this amount for RF Low condition. Range is 0 to 100 representing 0 to 10 dB in 0.1 dB steps. ')
apexQamRfConfigRfLevelHighThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigRfLevelHighThreshold.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigRfLevelHighThreshold.setDescription('The threshold delta relative to the configured RF level that will indicate an RF High condition. The measured output must rise this amount for RF High condition. Range is 0 to 100 representing 0 to 10 dB in 0.1 dB steps. ')
apexQamRfConfigMute = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("unmute", 1), ("mute", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigMute.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigMute.setDescription('Mute the RF Port. This will mute all QAM channels enabled on the RF Port. ')
apexQamRfConfigInterleaverDepth1 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=NamedValues(("i64-j2", 1), ("i32-j4", 2), ("i16-j8", 3), ("i8-j16", 4), ("i128-j1", 5), ("i128-j2", 6), ("i128-j3", 7), ("i128-j4", 8), ("i128-j5", 9), ("i128-j6", 10), ("i128-j7", 11), ("i128-j8", 12), ("i12-j17", 13)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigInterleaverDepth1.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigInterleaverDepth1.setDescription("The first of two Interleaver settings that can be assigned to the QAM Channels of this RF Port. Configurable only for Transmission Mode 'annexB-ATSC-DCII'. Values 1 to 12 used only for Transmission Mode 'annexB-ATSC-DCII'. Value 13 (i12-j17) used only for Transmission Modes 'annexA-DVB' and 'annexC-Asia-Pacific' and is set by the APEX. ")
apexQamRfConfigInterleaverDepth2 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=NamedValues(("i64-j2", 1), ("i32-j4", 2), ("i16-j8", 3), ("i8-j16", 4), ("i128-j1", 5), ("i128-j2", 6), ("i128-j3", 7), ("i128-j4", 8), ("i128-j5", 9), ("i128-j6", 10), ("i128-j7", 11), ("i128-j8", 12), ("i12-j17", 13)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfConfigInterleaverDepth2.setStatus('current')
if mibBuilder.loadTexts: apexQamRfConfigInterleaverDepth2.setDescription("The second of two Interleaver settings that can be assigned to the QAM Channels of this RF Port. Configurable only for Transmission Mode 'annexB-ATSC-DCII'. Values 1 to 12 used only for Transmission Mode 'annexB-ATSC-DCII'. Value 13 (i12-j17) used only for Transmission Modes 'annexA-DVB' and 'annexC-Asia-Pacific' and is set by the APEX. ")
apexQamChannelConfigTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 5), )
if mibBuilder.loadTexts: apexQamChannelConfigTable.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelConfigTable.setDescription("Table of configuration items configurable on a QAM Channel basis. There are 48 Output Transport Streams (OTS) on an APEX1000. There can be up to 48 QAM Channels on an APEX1000 depending on how the 3 QAM slots are populated. There is a one-to-one mapping between QAM Channels and Output Transport Streams. QAM Channel (OTS) ranges are mapped to QAM slots as follows: Slot Channels 1 1..15 2 15..32 3 33..48 There can be either 4 or 8 QAM channels (OTS) on each RF Port. The slot and RF Port to QAM Channel (OTS) mappings for each QAM Module type are shown below. For a 2x4 or 2x8 QAM Module, QAM Channels (OTS) are mapped to RF Ports in a QAM Slot and table rows as follows: QAM Channel RF Port and OTS Slot/Port Table Row Table Rows 1/1 1 1..8 1/2 2 9..16 2/1 5 17..24 2/2 6 25..32 3/1 9 33..40 3/2 10 41..48 If a 2x4 QAM Module is in a slot, only the first four rows in this table for the slot/port are to be used. For example, if there is a 2x4 module in slot 3, rows 8..12 are to be used for configuring the QAM Channels of RF Port 1 on the module. For a 4x4 QAM Module, QAM Channels (OTS) are mapped to RF Ports in a QAM Slot and table rows as follows: QAM Channel RF Port and OTS Slot/Port Table Row Table Rows 1/1 1 1..4 1/2 2 5..8 1/3 7 9..12 1/4 8 13..16 2/1 3 17..20 2/2 4 21..24 2/3 9 25..28 2/4 10 29..32 3/1 5 33..36 3/2 6 37..40 3/3 11 41..44 3/4 12 45..48 Note that the QAM Channels on an RF Port are designated with the letters 'A'..'H' on the APEX Element Manager. Refer to the description of apexQamChannelConfigTable for information on QAM Channel to RF Port mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. Once written, the change to this table will only take immediate effect after apexQamConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamChannelConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexQamChannelConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 5, 1), ).setIndexNames((0, "APEX-MIB", "apexQamChanConfigChannelNum"))
if mibBuilder.loadTexts: apexQamChannelConfigEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelConfigEntry.setDescription('QAM Channel Configuration Table Entry.')
apexQamChanConfigChannelNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexQamChanConfigChannelNum.setStatus('current')
if mibBuilder.loadTexts: apexQamChanConfigChannelNum.setDescription('The QAM RF Port number.')
apexQamChanConfigInterleaverSelect = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("interleaverDepth1", 1), ("interleaverDepth2", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamChanConfigInterleaverSelect.setStatus('current')
if mibBuilder.loadTexts: apexQamChanConfigInterleaverSelect.setDescription('The interleaver selection for this Channel. Will use either apexQamRfConfigInterleaverDepth1 or apexQamRfConfigInterleaverDepth2. ')
apexQamChanConfigTestMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 5, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2, 3, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17))).clone(namedValues=NamedValues(("off", 0), ("cwtest", 2), ("prbs23m", 3), ("prbs23", 5), ("mpegNull", 6), ("suppress", 9), ("prbs60", 10), ("prbs63", 11), ("prbs65", 12), ("prbs68", 13), ("prbs71", 14), ("prbs73", 15), ("prbs79", 16), ("prbs81", 17)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamChanConfigTestMode.setStatus('current')
if mibBuilder.loadTexts: apexQamChanConfigTestMode.setDescription("Test mode setting for the QAM Channel. Setting to other than 'off' will cause a service interruption. ")
apexQamRfRedundConfigApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 1), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfRedundConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundConfigApplyChange.setDescription("The Apply for QAM RF Redundancy Configuration parameters. This parameter MUST be set to 'apply' in order for the data to take effect. This parameter MUST be set LAST after all QAM RF Redundancy parameters affected by this parameter have been configured. @Config(config=no, reboot=no) ")
apexQamRfRedundConfigEnable = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfRedundConfigEnable.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundConfigEnable.setDescription("Enables RF redundancy mode, allowing the APEX to failover to backup RF port and communicate with the REM1000. Allows for failover/ switching without requiring a REM1000 connection. Cannot be 'enabled' if the backup port (RF Port 6) is not present (there is no QAM Module in QAM slot 3). Cannot be 'enabled' if there are any mappings to any QAM Channel on the backup port. RF Port 6, QAM Channels 6A to 6H (Output Transport Streams 41 to 48). Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexQamRfRedundConfigRemConnection = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("direct", 1), ("common", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfRedundConfigRemConnection.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundConfigRemConnection.setDescription("Configures how the APEX is connected to the REM1000. 'none' - Not connecting to REM1000. 'direct' - Connected to REM1000 dedicated IP interface through APEX Data IP (Enet2). Broadcast connection is always used in this case. Cannot be set to 'direct' if the QAM RF Redundancy UDP Port is in use on the Data IP Port (Enet2). QAM RF Redundancy UDP Port value is found in apexQamRfRedundStatusUdpPort. 'common' - Connected to REM1000 OAM&P interface through APEX OAM&P IP (Enet 1). Requires user to configure REM1000 IP address in apexQamRfRedundConfigRemCommonIpAddr. Cannot be set to 'common' if the QAM RF Redundancy UDP Port is in use on the OAM&P IP (Enet 1). QAM RF Redundancy UDP Port value is found in apexQamRfRedundStatusUdpPort. Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexQamRfRedundConfigApexId = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfRedundConfigApexId.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundConfigApexId.setDescription("Identifies which set of RF inputs on the REM1000 are associated with this APEX. Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexQamRfRedundConfigRemCommonIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfRedundConfigRemCommonIpAddr.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundConfigRemCommonIpAddr.setDescription("Target REM1000 IP address. Must be singlecast address. Only used when apexQamRfRedundConfigRemConnection is set to 'common'. Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexQamRfRedundConfigAutoSwitchBack = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 6), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfRedundConfigAutoSwitchBack.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundConfigAutoSwitchBack.setDescription("This is the enable/disable of automatic switch back to the previous RF port from backup for QAM RF redundancy. When 'enabled', switch back to the previous RF port will automatically occur when the RF port comes back online. When 'disabled', the user must force back to the previous RF port using apexQamRfRedundConfigForceSwitch. Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini')")
apexQamRfRedundConfigSuspendFailover = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 7), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfRedundConfigSuspendFailover.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundConfigSuspendFailover.setDescription("Enables and disables suspending of RF failover. Prevents failovers to or from backup. Force failover (apexQamRfRedundConfigForceSwitch) overrides this setting. Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexQamRfRedundConfigForceSwitch = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("switchNotInProgress", 0), ("forceFrom1", 1), ("forceFrom2", 2), ("forceFrom3", 3), ("forceFrom4", 4), ("forceFrom5", 5), ("forceFromBackup", 6)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfRedundConfigForceSwitch.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundConfigForceSwitch.setDescription("Force a switch of an RF Port to or from the backup. Selects which RF Port to switch from. Overrides Suspend Failover (apexQamRfRedundConfigSuspendFailover). Parameter is ignored when: - apexQamRfRedundConfigEnable is 'disabled'. - backup is active and other than 'forceFromBackup' is selected. - backup is not active and 'forceFromBackup' is selected. 'forceFromBackup' will force back to the failed primary indicated in apexQamRfRedundStatusFailedPort. APEX sets back to 'switchNotInProgress' when complete. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apexQamRfRedundConfigRemDirectIpOctet1 = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 126))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamRfRedundConfigRemDirectIpOctet1.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundConfigRemDirectIpOctet1.setDescription("Target REM1000 IP address first octet. Only used when apexQamRfRedundConfigRemConnection is set to 'direct'. The remainder of the IP address will be filled in by the APEX. The IP address used will be reflected in apexDataIpAddrInUse. Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexQamChannelConfigApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 7), )
if mibBuilder.loadTexts: apexQamChannelConfigApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelConfigApplyTable.setDescription('Table of Apply Change for the data for apexQamChannelConfigTable. ')
apexQamChannelConfigApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 7, 1), ).setIndexNames((0, "APEX-MIB", "apexQamChannelConfigApplyChannelNum"))
if mibBuilder.loadTexts: apexQamChannelConfigApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelConfigApplyEntry.setDescription('QAM Channel Configuration Apply Table Entry.')
apexQamChannelConfigApplyChannelNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 7, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexQamChannelConfigApplyChannelNum.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelConfigApplyChannelNum.setDescription('The QAM Channel number.')
apexQamChannelConfigApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 7, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQamChannelConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelConfigApplyChange.setDescription("The Apply for a row of data in apexQamChannelConfigTable. A row in this table corresponds to the same row index in the apexQamChannelConfigTable. This parameter MUST be set to 'apply' in order for any of the data in the rows to take effect in the APEX. This parameter MUST be set LAST after all other data in the configuration table rows has been configured. @Config(config=no, reboot=no) ")
apexQamStatusTransmissionMode = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("annexB-ATSC-DCII", 1), ("annexA-DVB", 2), ("annexC-Asia-Pacific", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamStatusTransmissionMode.setStatus('current')
if mibBuilder.loadTexts: apexQamStatusTransmissionMode.setDescription('This is the QAM Transmission Mode that is currently in use. QAM Transmission Mode is defined in: Series J: Transmission of Television, Sound Programme and other Multimedia Signals, ITU-T J.83. ')
apexQamModuleInstalledCount = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleInstalledCount.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleInstalledCount.setDescription('Number of hot swappable QAM Modules currently installed.')
apexFanModuleInstalledCount = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexFanModuleInstalledCount.setStatus('current')
if mibBuilder.loadTexts: apexFanModuleInstalledCount.setDescription('Number of Fan-Only Modules currently installed in QAM Module slots.')
apexQamChannelsActiveCount = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamChannelsActiveCount.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelsActiveCount.setDescription('Number of QAM Channels that are present (QAM Module installed) and enabled for use.')
apexQamModuleStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2), )
if mibBuilder.loadTexts: apexQamModuleStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatusTable.setDescription('Table of QAM Module Status. Refer to the descriptions of apexQamRfConfigTable and apexQamChannelConfigTable for information on QAM slot, RF Port mapping, and QAM Channel mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. ')
apexQamModuleStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexQamModuleStatQamModuleNum"))
if mibBuilder.loadTexts: apexQamModuleStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatusEntry.setDescription('QAM Module Status Table Entry.')
apexQamModuleStatQamModuleNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3)))
if mibBuilder.loadTexts: apexQamModuleStatQamModuleNum.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatQamModuleNum.setDescription('QAM Module slot number. ')
apexQamModuleStatInstalled = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("notApplicable", 0), ("notInstalled", 1), ("qam2x4Channel", 2), ("qam2x8Channel", 3), ("fanModule", 4), ("unsupported", 5), ("removed", 6), ("qamDiscovery", 7), ("qam4x4Channel", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatInstalled.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatInstalled.setDescription('Indicates if a module is installed and what type. notApplicable - When APEX does not boot properly. notInstalled - No QAM or Fan Module detected in slot. Reported in apexAlarmQamModuleFault. qam2x4Channel - A 2x4 Channel QAM Module installed. qam2x8Channel - A 2x8 Channel QAM Module installed. fanModule - A Fan Module installed. unsupported - Unknown module installed. Reported in apexAlarmQamModuleFault. removed - A QAM Module removed when there are active QAM channels. Reported in apexAlarmQamModuleFault. qamDiscovery - A QAM Module is present and type is being determined. qam4x4Channel - A 4x4 Channel QAM Module is installed. ')
apexQamModuleStatFanSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatFanSpeed.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatFanSpeed.setDescription('The fan speed in RPM for installed QAM or Fan Module. Zero if not installed. ')
apexQamModuleStatFanFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatFanFault.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatFanFault.setDescription('Fan Fault. This fault is reported in apexAlarmFanFault not apexAlarmQamModuleFault. ')
apexQamModuleStatTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatTemperature.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatTemperature.setDescription('Temperature at sensor near the fan of the QAM Module or Fan Module in degrees Celsius. ')
apexQamModuleStatTemperatureFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("overTemp", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatTemperatureFault.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatTemperatureFault.setDescription('Temperature fault. This fault is reported in apexAlarmTemperatureFault not apexAlarmQamModuleFault. ')
apexQamModuleStatError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("removed", 2), ("unsupported", 3), ("notInstalled", 4), ("powerFault", 5), ("offline", 6), ("dc5VoltError", 7), ("dc3-3VoltError", 8), ("commLost", 9), ("codeVersions", 10), ("codeDownload", 11), ("codeDownloadError", 12)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatError.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatError.setDescription('Summary of errors reported on an QAM Module basis. These errors are reported in apexAlarmQamModuleFault. ok - No errors. removed - Reflects apexQamModuleStatInstalled. unsupported - Reflects apexQamModuleStatInstalled. notInstalled - Reflects apexQamModuleStatInstalled. powerFault - Reflects apexQamModuleStatPowerFault. offline - Indicates the QAM Module and the RF Ports on it are being brought to operational mode after module is inserted or the module has recovered from a power fault. dc5VoltError - 5 Vdc error, see also apexQamModuleStat5VdcSupply and apexQamModuleStat5VdcFault. dc3-3VoltError - 3.3 Vdc error, see also apexQamModuleStat3dot3VdcSupply and apexQamModuleStat3dot3VdcFault. commLost - Communication Lost, see also apexQamModuleStatCommError. codeVersions - Incorrect Code Versions on module, see also apexQamModuleStatCodeInitError, apexQamQrmRevisionTable, and apexQamQrmRevisionStatusTable. codeDownload - Code Download In Progress, see also apexQrmDownloadStatusTable. codeDownloadError - Code Download Error, see also apexQrmDownloadStatusTable. ')
apexQamModuleStatFaultCondition = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatFaultCondition.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatFaultCondition.setDescription('Current fault condition of the QAM Module errors. Reflects apexAlarmQamModuleFault for this QAM Module. ')
apexQamModuleStatFaultSumm = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatFaultSumm.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatFaultSumm.setDescription('Roll-up of QAM RF Port and QAM Channel fault conditions for this QAM Module. ')
apexQamModuleStatPowerFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("lowVoltageMainboard", 2), ("lowVoltageQamModule", 3), ("overCurrent", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatPowerFault.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatPowerFault.setDescription('Power fault. notApplicable - No module installed. ok - Power good. lowVoltageMainboard - Low voltage detected on Mainboard side of connector. lowVoltageQamModule - Low voltage detected on QAM Module side of connector. overCurrent - Over current detected on QAM Module. This fault is reported in apexAlarmQamModuleFault. ')
apexQamModuleStatBoardTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatBoardTemperature.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatBoardTemperature.setDescription("Temperature of the 4x4 QAM module board ('plate' temp) in degrees Celsius. Used only for 4x4 QAM Modules. ")
apexQamModuleStatBoardTemperatureFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("overTemp", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatBoardTemperatureFault.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatBoardTemperatureFault.setDescription("Board temperature fault of the 4x4 QAM module board ('plate' temp). Used only for 4x4 QAM Modules. This fault is reported in apexAlarmTemperatureFault not apexAlarmQamModuleFault. ")
apexQamModuleStat5VdcSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStat5VdcSupply.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStat5VdcSupply.setDescription('Measured level of the +5 VDC supply input of the 4x4 QAM module board. Used only for 4x4 QAM Modules. Range is 0 to 1000 representing 0 to 10 Volts in 0.01 Volt steps. ')
apexQamModuleStat5VdcFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("low", 2), ("high", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStat5VdcFault.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStat5VdcFault.setDescription('The +5 VDC supply fault of the 4x4 QAM module board. Used only for 4x4 QAM Modules. Indicates there is a problem with the direct 5 VDC supply or any internal module supply derived from the 5 VDC supply. Indicates voltage problem that can impair module function. ')
apexQamModuleStat3dot3VdcSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStat3dot3VdcSupply.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStat3dot3VdcSupply.setDescription('Measured level of the +3.3 VDC supply input of the 4x4 QAM module board. Used only for 4x4 QAM Modules. Range is 0 to 1000 representing 0 to 10 Volts in 0.01 Volt steps. ')
apexQamModuleStat3dot3VdcFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("low", 2), ("high", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStat3dot3VdcFault.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStat3dot3VdcFault.setDescription('The +3.3 VDC supply fault of the 4x4 QAM module board. Used only for 4x4 QAM Modules. Indicates there is a problem with the direct 3.3 VDC supply or any internal module supply derived from the 3.3 VDC supply. Indicates voltage problem that can impair module function. ')
apexQamModuleStatCommError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("inComm", 1), ("commLost", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatCommError.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatCommError.setDescription('Communication with the 4x4 QAM Module has failed. Used only for 4x4 QAM Modules. ')
apexQamModuleStatCodeInitError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleStatCodeInitError.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleStatCodeInitError.setDescription('Code initialization error of the 4x4 QAM Module. Used only for 4x4 QAM Modules. Indicates a code, firmware, or FPGA startup issue. The module failed to load the FW/FPGA files to the devices or valid FW/FPGA files could not be found in the module. Code download is required to restore the module. ')
apexQamModuleSerialNumTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 3), )
if mibBuilder.loadTexts: apexQamModuleSerialNumTable.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleSerialNumTable.setDescription('Table of QAM Module Serial Numbers. ')
apexQamModuleSerialNumEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexQamModuleSerialNumQamModuleNum"))
if mibBuilder.loadTexts: apexQamModuleSerialNumEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleSerialNumEntry.setDescription('QAM Module Serial Number Table Entry.')
apexQamModuleSerialNumQamModuleNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3)))
if mibBuilder.loadTexts: apexQamModuleSerialNumQamModuleNum.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleSerialNumQamModuleNum.setDescription('QAM Module slot number.')
apexQamModuleSerialNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 3, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamModuleSerialNumber.setStatus('current')
if mibBuilder.loadTexts: apexQamModuleSerialNumber.setDescription('The serial number of an installed QAM Module. Zero if not installed.')
apexQamQrmRevisionTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4), )
if mibBuilder.loadTexts: apexQamQrmRevisionTable.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevisionTable.setDescription('Table of QAM Module hardware and software revisions. There are 2 QRM modules on each 2x4/2x8 QAM Module. QRMs in QAM Module slots are mapped to table rows as follows: Slot/QRM Table Row 1/1 1 1/2 2 2/1 3 2/2 4 3/1 5 3/2 6 4x4 QAM Modules do not use QRM boards. There is only one board. These will be found in the odd indexed rows of this table. The even indexed rows of the table are not used for 4x4 QAM Modules. 4x4 QAM Modules in QAM Module slots are mapped to table rows as follows: Slot Table Row 1 1 2 3 3 5 ')
apexQamQrmRevisionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexQamQrmRevRfPortNum"))
if mibBuilder.loadTexts: apexQamQrmRevisionEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevisionEntry.setDescription('QAM Module Revision Table Entry.')
apexQamQrmRevRfPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6)))
if mibBuilder.loadTexts: apexQamQrmRevRfPortNum.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevRfPortNum.setDescription('QAM Module Revision Table index.')
apexQamQrmRevBoardId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevBoardId.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevBoardId.setDescription("Model ID of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Hex XXYY.")
apexQamQrmRevAppFw = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevAppFw.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevAppFw.setDescription("Application firmware version of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Hex XXYY where XX is major version and YY is minor version. 'FFFF' indicates no valid application code is present.")
apexQamQrmRevBootLoaderFw = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevBootLoaderFw.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevBootLoaderFw.setDescription("Boot loader firmware version of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Hex XXYY where XX is major version and YY is minor version.")
apexQamQrmRevFpga = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevFpga.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevFpga.setDescription("FPGA version of the 2x4/2x8 QAM Module's QRM board or FPGA1 version of the 4x4 QAM Module. Hex XXYY where XX is major version and YY is minor version.")
apexQamQrmRevHw = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevHw.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevHw.setDescription("Hardware version of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Hex XXYY where XX is major version and YY is minor version.")
apexQamQrmRevSerialNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevSerialNumber.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevSerialNumber.setDescription("The serial number of the 2x4/2x8 QAM Module's QRM board. Used only for 2x4/2x8 QAM Modules. Zero if not installed.")
apexQamQrmRevFpga2 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevFpga2.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevFpga2.setDescription('FPGA2 version of the 4x4 QAM Module. Used only for 4x4 QAM Modules. Hex XXYY where XX is major version and YY is minor version. ')
apexQamRfPortStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5), )
if mibBuilder.loadTexts: apexQamRfPortStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatusTable.setDescription('Table of QAM RF Port Status. Refer to the descriptions of apexQamRfConfigTable and apexQamChannelConfigTable for information on QAM slot, RF Port mapping, and QAM Channel mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. ')
apexQamRfPortStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1), ).setIndexNames((0, "APEX-MIB", "apexQamRfPortStatRfPortNum"))
if mibBuilder.loadTexts: apexQamRfPortStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatusEntry.setDescription('QAM RF Port Status Table Entry.')
apexQamRfPortStatRfPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: apexQamRfPortStatRfPortNum.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatRfPortNum.setDescription('RF Port number.')
apexQamRfPortStatInfoRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatInfoRate.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatInfoRate.setDescription('The information rate of the QAM channels on this RF Port in bits per second.')
apexQamRfPortStatNumChannelsActive = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatNumChannelsActive.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatNumChannelsActive.setDescription('Number of QAM Channels that are present (QAM Module installed) and enabled for use on this RF Port.')
apexQamRfPortStatOutputLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 8000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatOutputLevel.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatOutputLevel.setDescription('Measured per channel RF Output Level. Range is 0 to 8000 representing 0 to 80 dBmV in 0.01 dBmV steps.')
apexQamRfPortStatOutputLevelFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("low", 2), ("high", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatOutputLevelFault.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatOutputLevelFault.setDescription('RF Output Level fault. Indicates if the user configured apexQamRfConfigRfLevelLowThreshold or apexQamRfConfigRfLevelHighThreshold has been reached.')
apexQamRfPortStatTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatTemperature.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatTemperature.setDescription("Temperature of the 2x4/2x8 QAM Module's QRM board ('plate' temp) in degrees Celsius. Used only for 2x4/2x8 QAM Modules. ")
apexQamRfPortStatTemperatureFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("overTemp", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatTemperatureFault.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatTemperatureFault.setDescription("Temperature fault of the 2x4/2x8 QAM Module's QRM board ('plate' temp). Used only for 2x4/2x8 QAM Modules. This fault is reported in apexAlarmTemperatureFault not apexAlarmQamRfPortFault.")
apexQamRfPortStat5VdcSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStat5VdcSupply.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStat5VdcSupply.setDescription("Measured level of the +5 VDC supply input of the 2x4/2x8 QAM Module's QRM board. Used only for 2x4/2x8 QAM Modules. Range is 0 to 1000 representing 0 to 10 Volts in 0.01 Volt steps.")
apexQamRfPortStat5VdcFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("low", 2), ("high", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStat5VdcFault.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStat5VdcFault.setDescription("The +5 VDC supply fault of the 2x4/2x8 QAM Module's QRM board. Used only for 2x4/2x8 QAM Modules. Indicates voltage problem that can impair QRM function.")
apexQamRfPortStat3dot3VdcSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStat3dot3VdcSupply.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStat3dot3VdcSupply.setDescription("Measured level of the +3.3 VDC supply input of the 2x4/2x8 QAM Module's QRM board. Used only for 2x4/2x8 QAM Modules. Range is 0 to 1000 representing 0 to 10 Volts in 0.01 Volt steps.")
apexQamRfPortStat3dot3VdcFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("low", 2), ("high", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStat3dot3VdcFault.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStat3dot3VdcFault.setDescription("The +3.3 VDC supply fault of the 2x4/2x8 QAM Module's QRM board. Used only for 2x4/2x8 QAM Modules. Indicates voltage problem that can impair QRM function.")
apexQamRfPortStatFreqPllLock = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("locked", 1), ("notLocked", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatFreqPllLock.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatFreqPllLock.setDescription('Frequency tuning PLL lock status.')
apexQamRfPortStatRefClockPresent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("present", 1), ("notPresent", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatRefClockPresent.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatRefClockPresent.setDescription('External reference clock present indication.')
apexQamRfPortStatRefClockLock = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("locked", 1), ("notLocked", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatRefClockLock.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatRefClockLock.setDescription('Board not phase-locked to the External reference clock. ')
apexQamRfPortStatDataClockPresent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("present", 1), ("notPresent", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatDataClockPresent.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatDataClockPresent.setDescription('Data clock present indication.')
apexQamRfPortStatDataSyncFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("inSync", 1), ("syncLost", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatDataSyncFault.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatDataSyncFault.setDescription('One or more of the QAM Channel data interfaces is not synchronized.')
apexQamRfPortStatCommError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("inComm", 1), ("commLost", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatCommError.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatCommError.setDescription("Communication with the 2x4/2x8 QAM Module's QRM board has failed. ")
apexQamRfPortStatError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("outputRfLevel", 2), ("dc5VoltError", 3), ("dc3-3VoltError", 4), ("freqPllNotLocked", 5), ("extClkNotPresent", 6), ("extClkNotLocked", 7), ("dataClkNotPresent", 8), ("dataSyncLost", 9), ("commLost", 10), ("unsupportedQrm", 11), ("configFailed", 12), ("codeVersions", 13), ("codeDownload", 14), ("codeDownloadError", 15)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatError.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatError.setDescription("Error status on an RF Port basis. These errors are reported in apexAlarmQamRfPortFault. 'major' for: 'outputRfLevel', 'dc5VoltError', 'dc3-3VoltError'. 'critical' for: 'freqPllNotLocked', 'extClkNotPresent', 'extClkNotLocked', 'dataClkNotPresent', 'dataSyncLost', 'commLost', 'codeVersions', 'codeDownload', 'codeDownloadError', 'unsupportedQrm', or 'configFailed'. outputRfLevel - RF Output Level error, see also apexQamRfPortStatOutputLevel and apexQamRfPortStatOutputLevelFault. dc5VoltError - 5 Vdc error, see also apexQamRfPortStat5VdcSupply and apexQamRfPortStat5VdcFault. dc3-3VoltError - 3.3 Vdc error, see also apexQamRfPortStat3dot3VdcSupply and apexQamRfPortStat3dot3VdcFault. freqPllNotLocked - Frequency PLL not locked, see also apexQamRfPortStatFreqPllLock. extClkNotPresent - External Reference Clock Not Present, see also apexQamRfPortStatRefClockPresent. extClkNotLocked - Not Locked to External Reference Clock, see also apexQamRfPortStatRefClockLock. dataClkNotPresent - Data Clock Not Present, see also apexQamRfPortStatDataClockPresent. dataSyncLost - Data Synchronization Lost, see also apexQamRfPortStatDataSyncFault. commLost - Communication Lost, see also apexQamRfPortStatCommError. unsupportedQrm - QRM Revision Not Supported, see also apexQamQrmRevisionTable and apexQamQrmRevisionStatusTable. configFailed - RF Port Configuration Failed. codeVersions - Incorrect Code Versions on QRM, see also apexQamRfPortStatCodeInitError, apexQamQrmRevisionTable, and apexQamQrmRevisionStatusTable. codeDownload - Code Download In Progress, see also apexQrmDownloadStatusTable. codeDownloadError - Code Download Error, see also apexQrmDownloadStatusTable. ")
apexQamRfPortStatFaultCondition = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatFaultCondition.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatFaultCondition.setDescription('Current fault condition of the RF Port errors. Reflects apexAlarmQamRfPortFault for this RF Port. ')
apexQamRfPortStatChanFaultSumm = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatChanFaultSumm.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatChanFaultSumm.setDescription('Roll-up of Channel fault conditions for this RF Port.')
apexQamRfPortStatCodeInitError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("fpgaInitError", 2), ("calDataError", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortStatCodeInitError.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortStatCodeInitError.setDescription("Code initialization error of the 2x4/2x8 QAM Module's QRM board. Indicates a code, firmware, or FPGA startup issue. 'fpgaInitError' - FPGA not loaded. Caused by incompatible code images or corrupted FPGA image on the QRM. 'calDataError' - Working copy of calibration data was corrupted and needs to be restored by code download process. Caused by interruption of previous code download process. ")
apexQamChannelStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6), )
if mibBuilder.loadTexts: apexQamChannelStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelStatusTable.setDescription('Table of QAM Channel Status. Refer to the descriptions of apexQamRfConfigTable and apexQamChannelConfigTable for information on QAM slot, RF Port mapping, and QAM Channel mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. ')
apexQamChannelStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1), ).setIndexNames((0, "APEX-MIB", "apexQamChanStatChannelNum"))
if mibBuilder.loadTexts: apexQamChannelStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelStatusEntry.setDescription('QAM Channel Status Table Entry.')
apexQamChanStatChannelNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexQamChanStatChannelNum.setStatus('current')
if mibBuilder.loadTexts: apexQamChanStatChannelNum.setDescription('QAM Channel number.')
apexQamChanStatActive = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 2), ActiveTYPE()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamChanStatActive.setStatus('current')
if mibBuilder.loadTexts: apexQamChanStatActive.setDescription("'active' indicates that mappings can be made to the channel. This means that either: 1) The channel is present (apexQamModuleStatInstalled 'qam2x4Channel' or 'qam2x8Channel') and enabled for use (apexQamRfConfigNumChannelsEnabled); 2) Or, the channel is on the backup RF port when QAM RF Redundancy is enabled (apexQamRfRedundConfigEnable). ")
apexQamChanStatRfFreq = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamChanStatRfFreq.setStatus('current')
if mibBuilder.loadTexts: apexQamChanStatRfFreq.setDescription('The center frequency for the QAM Channel in Hz.')
apexQamChanStatEiaChanNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamChanStatEiaChanNum.setStatus('current')
if mibBuilder.loadTexts: apexQamChanStatEiaChanNum.setDescription('The EIA Channel number for the QAM Channel. Will be zero if there is no EIA Channel number corresponding to the frequency in use.')
apexQamChanStatDataPresent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("data", 1), ("noData", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamChanStatDataPresent.setStatus('current')
if mibBuilder.loadTexts: apexQamChanStatDataPresent.setDescription('Indication of MPEG data activity on the interface for this QAM channel. This includes MPEG null packets.')
apexQamChanStatError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("noData", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamChanStatError.setStatus('current')
if mibBuilder.loadTexts: apexQamChanStatError.setDescription('Summary of errors reported on a QAM channel. This is enumerated and the reported error will be the most severe. ')
apexQamChanStatFaultCondition = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamChanStatFaultCondition.setStatus('current')
if mibBuilder.loadTexts: apexQamChanStatFaultCondition.setDescription('Current fault condition of the QAM channel errors. Reflects apexAlarmQamChannelFault for this QAM Channel. ')
apexQamRfRedundStatusBackupPort = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("disabled", 0), ("standby", 1), ("active", 2), ("failed", 3), ("removed", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfRedundStatusBackupPort.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundStatusBackupPort.setDescription("State of configured backup port. 'disabled' - QAM RF Redundancy is disabled. 'standby' - QAM RF Redundancy is enabled but backup is inactive. No failure has occurred. 'active' - Failover has occurred and backup is active. Refer to apexQamRfRedundStatusFailedPort for port being backed up. 'failed' - Backup port has failed. APEX cannot provide RF redundancy. 'removed' - QAM Module with Backup port has been removed. APEX cannot provide RF redundancy. ")
apexQamRfRedundStatusFailedPort = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfRedundStatusFailedPort.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundStatusFailedPort.setDescription('Indicates which port (1 to 5) has failed over to the backup port. Zero indicates backup port is not active. ')
apexQamRfRedundStatusMismatch = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("notApplicable", 0), ("noMismatch", 1), ("backup2x4", 2), ("primary2x4", 3), ("any4x4", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfRedundStatusMismatch.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundStatusMismatch.setDescription("Indicates whether there is a potential for channels being lost when failing to the backup or when switching back to a primary due to a mixture of 2x4 and 2x8 QAM Modules. Indicates whether RF redundancy is unavailable due to a 4x4 QAM Module installed. A 2x4 QAM Module is capable of supporting a maximum of 4 channels per RF port. A 2x8 QAM Module is capable of supporting a maximum of 8 channels per RF port. The number of channels enabled (apexQamRfConfigNumChannelsEnabled) is not considered. 'notApplicable' - QAM RF Redundancy is disabled. 'noMismatch' - Indicates no channels would be lost because there is no mismatch. 'backup2x4' - Indicates a loss of channels could occur on failover to the backup because the backup RF Port is in a 2x4 module and at least one primary RF Port is in a 2x8 module. 'primary2x4' - Indicates a loss of channels could occur on switch- back from the backup to the primary because the backup RF Port is in a 2x8 module and the primary RF Port is in a 2x4 module. This would occur if the failed 2x8 primary is replaced with a 2x4. 'any4x4' - Indicates a 4x4 QAM Module is installed in any slot and RF Redundancy is not available. Failover and/or switchback are suspended until the 4x4 is replaced. ")
apexQamRfRedundStatusUdpPort = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfRedundStatusUdpPort.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundStatusUdpPort.setDescription("UDP Port that is used for QAM RF Redundancy communication between the APEX and REM. When apexQamRfRedundConfigRemConnection is: 'direct' - APEX sends/receives broadcast on this UDP Port. 'common' - APEX sends/receives singlecast on this UDP Port. ")
apexQamRfRedundStatusRemConnection = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("notApplicable", 0), ("notConnected", 1), ("connected", 2), ("connectionLost", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfRedundStatusRemConnection.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundStatusRemConnection.setDescription("State of communication with REM. 'notApplicable' - QAM RF Redundancy is not enabled and/or the connection to the REM is not enabled. 'notConnected' - Initial condition. APEX has not sent a switch_port() message yet. 'connected' - received ack() message from REM for current switch_port() message. 'connectionLost' - REM has not replied to last 3 heartbeat switch_port() messages. ")
apexQamRfRedundStatusRemError = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfRedundStatusRemError.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundStatusRemError.setDescription("Status of REM1000 taken from error_code field in REM1000 ack() response (defined in REM1000 Message Stream Protocol). Valid only when apexQamRfRedundConfigRemConnection is other than 'none'. Values as defined in REM1000 MSP: 0x00 - No Errors. No problems switching, parsing switch_port() message, or with HW. 0x01 - Invalid apex_id value in prior switch_port() message. 0x02 - Invalid msg_type value in prior switch_port() message. 0x03 - Invalid port value in prior switch_port() message. 0x04 - Error switching after receiving valid switch_port() message. 0x05 - Minor HW error. REM can still switch. 0x81 - Apex_id Conflict. Switch_port() messages with the same apex_id have been received from multiple APEXs. Switch reset to pass- through configuration. 0x85 - Major HW error. REM failure. Switch reset to pass-through configuration. ")
apexQamRfRedundStatusRemSwitch = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfRedundStatusRemSwitch.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundStatusRemSwitch.setDescription("Status of the REM1000 switches indicated through ack() response from REM1000 (e.g. pass-through or switching port 'x'). Valid only when apexQamRfRedundConfigRemConnection is other than 'none'. Zero indicates REM is in passing inputs 1 to 5 straight through to outputs 1 to 5. Values of 1 to 5 indicate REM backup input port is switched to output port 1 to 5 and other ports are passed through. ")
apexQamRfRedundStatusInvalidApplyText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfRedundStatusInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexQamRfRedundStatusInvalidApplyText.setDescription("When apexQamRfRedundConfigApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a related entry that was invalid. ")
apexQamRfPortMuteStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 8), )
if mibBuilder.loadTexts: apexQamRfPortMuteStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortMuteStatusTable.setDescription('Table of QAM RF Port Mute Status. ')
apexQamRfPortMuteStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 8, 1), ).setIndexNames((0, "APEX-MIB", "apexQamRfPortMuteStatusRfPortNum"))
if mibBuilder.loadTexts: apexQamRfPortMuteStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortMuteStatusEntry.setDescription('QAM RF Port Mute Status Table Entry.')
apexQamRfPortMuteStatusRfPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 8, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: apexQamRfPortMuteStatusRfPortNum.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortMuteStatusRfPortNum.setDescription('RF Port number.')
apexQamRfPortMuteStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 8, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("unmuted", 1), ("muted", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortMuteStatus.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortMuteStatus.setDescription('Indicates whether the QAM channels on the RF port are muted or unmuted. ')
apexQamQrmRevisionStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9), )
if mibBuilder.loadTexts: apexQamQrmRevisionStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevisionStatusTable.setDescription('Table of status of QRM hardware and software revisions. Indications of whether they are supported, current, etc.. There are 2 QRM modules on each 2x4/2x8 QAM Module. QRMs in QAM Module slots are mapped to table rows as follows: Slot/QRM Table Row 1/1 1 1/2 2 2/1 3 2/2 4 3/1 5 3/2 6 4x4 QAM Modules do not use QRM boards. There is only one board. These will be found in the odd indexed rows of this table. The even indexed rows of the table are not used for 4x4 QAM Modules. 4x4 QAM Modules in QAM Module slots are mapped to table rows as follows: Slot Table Row 1 1 2 3 3 5 ')
apexQamQrmRevisionStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1), ).setIndexNames((0, "APEX-MIB", "apexQamQrmRevStatQrmNum"))
if mibBuilder.loadTexts: apexQamQrmRevisionStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevisionStatusEntry.setDescription('QRM Revision Status Table Entry')
apexQamQrmRevStatQrmNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6)))
if mibBuilder.loadTexts: apexQamQrmRevStatQrmNum.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevStatQrmNum.setDescription('QRM Revision Status Table index.')
apexQamQrmRevStatBoardId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("notSupported", 1), ("supported", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevStatBoardId.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevStatBoardId.setDescription("Status of the Model ID of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Refer to apexQamQrmRevisionTable for the revisions of each QRM. ")
apexQamQrmRevStatAppFw = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("notApplicable", 0), ("notSupported", 1), ("belowRelease", 2), ("atRelease", 3), ("aboveRelease", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevStatAppFw.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevStatAppFw.setDescription("Status of Application firmware version of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Refer to apexQamQrmRevisionTable for the revisions of each 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Refer to apexQrmFileRevisionTable for the revisions of files in the APEX release resident on the device. ")
apexQamQrmRevStatBootLoaderFw = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("notSupported", 1), ("supported", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevStatBootLoaderFw.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevStatBootLoaderFw.setDescription("Status of Boot loader firmware version of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Refer to apexQamQrmRevisionTable for the revisions of each 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. ")
apexQamQrmRevStatFpga = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("notApplicable", 0), ("notSupported", 1), ("belowRelease", 2), ("atRelease", 3), ("aboveRelease", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevStatFpga.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevStatFpga.setDescription("Status of FPGA version of the 2x4/2x8 QAM Module's QRM board or FPGA1 version of the 4x4 QAM Module. Refer to apexQamQrmRevisionTable for the revisions of each 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Refer to apexQrmFileRevisionTable for the revisions of files in the APEX release resident on the device. ")
apexQamQrmRevStatHw = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("notSupported", 1), ("supported", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevStatHw.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevStatHw.setDescription("Status of Hardware version of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Refer to apexQamQrmRevisionTable for the revisions of each 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. ")
apexQamQrmRevStatQrmSupported = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("notSupported", 1), ("supported", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevStatQrmSupported.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevStatQrmSupported.setDescription("Indicates if the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board is supported. Summary of above status. If any 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board revision status is 'notSupported' this parameter will indicate 'notSupported' and apexQamRfPortStatError will report 'unsupportedQrm'. ")
apexQamQrmRevStatFpga2 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("notApplicable", 0), ("notSupported", 1), ("belowRelease", 2), ("atRelease", 3), ("aboveRelease", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamQrmRevStatFpga2.setStatus('current')
if mibBuilder.loadTexts: apexQamQrmRevStatFpga2.setDescription('Status of FPGA2 version of the 4x4 QAM Module. Refer to apexQamQrmRevisionTable for the revisions of each 4x4 QAM Module. Refer to apexQrmFileRevisionTable for the revisions of files in the APEX release resident on the device. ')
apexQamRfPortChannelInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 10), )
if mibBuilder.loadTexts: apexQamRfPortChannelInfoTable.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortChannelInfoTable.setDescription('Table of QAM Channel information for each QAM RF Port. Refer to the descriptions of apexQamRfConfigTable and apexQamChannelConfigTable for information on QAM slot, RF Port mapping, and QAM Channel mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. ')
apexQamRfPortChannelInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 10, 1), ).setIndexNames((0, "APEX-MIB", "apexQamRfPortChannelInfoRfPortNum"))
if mibBuilder.loadTexts: apexQamRfPortChannelInfoEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortChannelInfoEntry.setDescription('QAM RF Port Channel Information Table Entry.')
apexQamRfPortChannelInfoRfPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 10, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: apexQamRfPortChannelInfoRfPortNum.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortChannelInfoRfPortNum.setDescription('RF Port number.')
apexQamRfPortChannelInfoChanA = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 10, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(1, 1), ValueRangeConstraint(5, 5), ValueRangeConstraint(9, 9), ValueRangeConstraint(13, 13), ValueRangeConstraint(17, 17), ValueRangeConstraint(21, 21), ValueRangeConstraint(25, 25), ValueRangeConstraint(29, 29), ValueRangeConstraint(33, 33), ValueRangeConstraint(37, 37), ValueRangeConstraint(41, 41), ValueRangeConstraint(45, 45), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortChannelInfoChanA.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortChannelInfoChanA.setDescription("QAM Channel number (Output Transport number) of QAM Channel 'A' on this RF port. This may be used to access data in tables indexed by QAM Number or Output Transport Stream. Used in combination with apexQamRfPortChannelInfoChanCount, data for all QAM Channels on this RF Port may be accessed. '0' - Indicates RF Port is not present. ")
apexQamRfPortChannelInfoChanCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(4, 4), ValueRangeConstraint(8, 8), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamRfPortChannelInfoChanCount.setStatus('current')
if mibBuilder.loadTexts: apexQamRfPortChannelInfoChanCount.setDescription("The number of QAM Channels on the RF port. '0' - Indicates RF Port is not present. '4' - RF Port has 4 QAM Channels, 'A'-'D'. '8' - RF Port has 8 QAM Channels, 'A'-'H'. ")
apexQamChannelIdTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11), )
if mibBuilder.loadTexts: apexQamChannelIdTable.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelIdTable.setDescription('Table of QAM Channel Identification data. Identifies the physical location of the QAM Channel (Output Transport Stream) in the APEX chassis. Refer to the descriptions of apexQamRfConfigTable and apexQamChannelConfigTable for information on QAM slot, RF Port mapping, and QAM Channel mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. ')
apexQamChannelIdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1), ).setIndexNames((0, "APEX-MIB", "apexQamChannelIdChannelNum"))
if mibBuilder.loadTexts: apexQamChannelIdEntry.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelIdEntry.setDescription('QAM Channel Identification Table Entry.')
apexQamChannelIdChannelNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexQamChannelIdChannelNum.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelIdChannelNum.setDescription('QAM Channel number (Output Transport number).')
apexQamChannelIdSlotNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamChannelIdSlotNum.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelIdSlotNum.setDescription('QAM Slot number of the channel. ')
apexQamChannelIdRfPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamChannelIdRfPortNum.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelIdRfPortNum.setDescription("RF Port number of the channel. This may be used to access data in tables indexed by RF Port Number. '0' - Indicates QAM Channel is not present. ")
apexQamChannelIdModuleRfPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamChannelIdModuleRfPortNum.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelIdModuleRfPortNum.setDescription("Module RF Port number of the channel. Corresponds to RF Port numbering on the back of physical QAM Module. '0' - Indicates QAM Channel is not present. ")
apexQamChannelIdChannelLetter = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamChannelIdChannelLetter.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelIdChannelLetter.setDescription("The letter symbol ('A'..'H') for the channel. String will be empty if QAM Channel not present. ")
apexQamChannelIdChannelDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 11))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQamChannelIdChannelDescription.setStatus('current')
if mibBuilder.loadTexts: apexQamChannelIdChannelDescription.setDescription("Text description for the QAM Channel (Output Transport Stream). Format is as follows where brackets and bracketed descriptions are replaced by a number/letter as appropriate: [QAM Channel / TS Num]:Slot[QAM Slot Num]-[Module Rf Port Num][Channel Letter] Examples: TS 9, in QAM Slot 1, on RF Port 2: '09:Slot1-2A' TS 17, in QAM Slot 2, on RF Port 1: '17:Slot2-1A' TS 48, in QAM Slot 3, on RF Port 2: '48:Slot3-2H' TS 48, in QAM Slot 3, on RF Port 4: '48:Slot3-4D' This may be used for display purposes on a management system. String will be empty or contain '[QAM Channel / TS Num]:Inactive' if apexQamChanStatActive is not set to 'active', i.e. if QAM Channel is not present and/or not enabled. ")
apexQrmDownloadConfigTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 1, 2), )
if mibBuilder.loadTexts: apexQrmDownloadConfigTable.setStatus('current')
if mibBuilder.loadTexts: apexQrmDownloadConfigTable.setDescription('Table of QAM Module Code Download Configuration. There are 2 QRM modules on each 2x4/2x8 QAM Module. QRMs in QAM Module slots are mapped to table rows as follows: Slot/QRM Table Row 1/1 1 1/2 2 2/1 3 2/2 4 3/1 5 3/2 6 4x4 QAM Modules do not use QRM boards. There is only one board. These will be found in the odd indexed rows of this table. The even indexed rows of the table are not used for 4x4 QAM Modules. 4x4 QAM Modules in QAM Module slots are mapped to table rows as follows: Slot Table Row 1 1 2 3 3 5 ')
apexQrmDownloadConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexQrmDownloadConfigQrmNum"))
if mibBuilder.loadTexts: apexQrmDownloadConfigEntry.setStatus('current')
if mibBuilder.loadTexts: apexQrmDownloadConfigEntry.setDescription('QAM Code Download Configuration Table Entry.')
apexQrmDownloadConfigQrmNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6)))
if mibBuilder.loadTexts: apexQrmDownloadConfigQrmNum.setStatus('current')
if mibBuilder.loadTexts: apexQrmDownloadConfigQrmNum.setDescription('QAM Code Download Configuration Table index.')
apexQrmDownloadConfigRequest = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("requestNotInProgress", 0), ("requestDownload", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexQrmDownloadConfigRequest.setStatus('current')
if mibBuilder.loadTexts: apexQrmDownloadConfigRequest.setDescription('User initiated manual 4x4 QAM Module or 2x4/2x8 QAM Module QRM board Code Download request. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ')
apexQrmDownloadStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2), )
if mibBuilder.loadTexts: apexQrmDownloadStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexQrmDownloadStatusTable.setDescription('Table of QAM Module Code Download Status. Refer to apexQrmDownloadConfigTable description for table indexing information. ')
apexQrmDownloadStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexQrmDownloadStatusRfPortNum"))
if mibBuilder.loadTexts: apexQrmDownloadStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexQrmDownloadStatusEntry.setDescription('QRM Code Download Status Table Entry.')
apexQrmDownloadStatusRfPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6)))
if mibBuilder.loadTexts: apexQrmDownloadStatusRfPortNum.setStatus('current')
if mibBuilder.loadTexts: apexQrmDownloadStatusRfPortNum.setDescription('QAM Code Download Status Table index.')
apexQrmDownloadStatusDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQrmDownloadStatusDescription.setStatus('current')
if mibBuilder.loadTexts: apexQrmDownloadStatusDescription.setDescription('Text description of the current state of 4x4 QAM Module or 2x4/2x8 QAM Module QRM board Code Download. ')
apexQrmDownloadProgress = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQrmDownloadProgress.setStatus('current')
if mibBuilder.loadTexts: apexQrmDownloadProgress.setDescription("Completion percentage of Code Download. '-1' indicates failure.")
apexQrmDownloadSupported = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("notSupported", 1), ("supported", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQrmDownloadSupported.setStatus('current')
if mibBuilder.loadTexts: apexQrmDownloadSupported.setDescription("Indicates if the module HW and SW will support Code Download. 'notSupported' if the module is unsupported or the code download might downgrade the code resident on the module. Refer to apexQamQrmRevisionTable, apexQamQrmRevisionStatusTable, and apexQrmDownloadFileSet for additional status. The user cannot initiate a manual download (apexQrmDownloadConfigRequest) when download 'notSupported'. ")
apexQrmDownloadRequired = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("notRequired", 1), ("required", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQrmDownloadRequired.setStatus('current')
if mibBuilder.loadTexts: apexQrmDownloadRequired.setDescription("Indicates if the module requires Code Download. Code download is needed if the versions are not up to date with the resident APEX FW Release. Refer to apexQamQrmRevisionTable, apexQamQrmRevisionStatusTable, and apexQrmDownloadFileSet for additional status. The user can initiate a manual download (apexQrmDownloadConfigRequest) when download 'notRequired'. ")
apexQrmDownloadFileSet = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("notApplicable", 0), ("fileSet1", 1), ("fileSet2", 2), ("fileSet3", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQrmDownloadFileSet.setStatus('current')
if mibBuilder.loadTexts: apexQrmDownloadFileSet.setDescription('Indicates which file set will be used for this module. ')
apexQrmFileRevisionTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3), )
if mibBuilder.loadTexts: apexQrmFileRevisionTable.setStatus('current')
if mibBuilder.loadTexts: apexQrmFileRevisionTable.setDescription('Table of revisions of QAM Module files released with the resident APEX FW Release. Refer to identSoftwareVersion in BCS-IDENT-MIB for the release number. ')
apexQrmFileRevisionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexQrmFileRevFileSetNum"))
if mibBuilder.loadTexts: apexQrmFileRevisionEntry.setStatus('current')
if mibBuilder.loadTexts: apexQrmFileRevisionEntry.setDescription('QRM File Revision Table Entry.')
apexQrmFileRevFileSetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3)))
if mibBuilder.loadTexts: apexQrmFileRevFileSetNum.setStatus('current')
if mibBuilder.loadTexts: apexQrmFileRevFileSetNum.setDescription('QAM file set number.')
apexQrmFileRevFirmware = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQrmFileRevFirmware.setStatus('current')
if mibBuilder.loadTexts: apexQrmFileRevFirmware.setDescription("Revision of the Application firmware file of the 2x4/2x8 QAM Module's QRM board or revision of the Application firmware portion of the 4x4 QAM Module Code File. Hex XXYY where XX is major version and YY is minor version. ")
apexQrmFileRevCalibration = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQrmFileRevCalibration.setStatus('current')
if mibBuilder.loadTexts: apexQrmFileRevCalibration.setDescription("Revision of the Calibration data file of the 2x4/2x8 QAM Module's QRM board. Used only for 2x4/2x8 QAM Module QRM board file sets. Hex XXYY where XX is major version and YY is minor version. ")
apexQrmFileRevFpga = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQrmFileRevFpga.setStatus('current')
if mibBuilder.loadTexts: apexQrmFileRevFpga.setDescription("Revision of FPGA firmware file of the 2x4/2x8 QAM Module's QRM board or revision of the FPGA1 firmware portion of the 4x4 QAM Module Code File. Hex XXYY where XX is major version and YY is minor version. ")
apexQrmFileRevFpga2 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQrmFileRevFpga2.setStatus('current')
if mibBuilder.loadTexts: apexQrmFileRevFpga2.setDescription('Revision of FPGA2 firmware portion of the 4x4 QAM Module Code File. Used only for 4x4 QAM Module file sets. Hex XXYY where XX is major version and YY is minor version. ')
apexQrmFileRevDateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexQrmFileRevDateTime.setStatus('current')
if mibBuilder.loadTexts: apexQrmFileRevDateTime.setDescription("Date and time the 4x4 QAM Module code file was created. Used only for 4x4 QAM Module file sets. Format: 'MM/DD/YYYY HH:MM' Where HH is a 24 hour clock. ")
apexSesContConfProtocol = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("none", 0), ("rpc", 1), ("rtsp", 2), ("mha-ermi", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSesContConfProtocol.setStatus('current')
if mibBuilder.loadTexts: apexSesContConfProtocol.setDescription("The communication protocol for output streams in Session Control operating mode. This determines the type of protocol the APEX will use to communicate with an Edge Resource Manager/Switch Digital Video Manager. This parameter cannot be changed when there are any active Session Control mappings. All Session Control mappings must be removed prior to changing this protocol. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexSesContConfTableApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSesContConfTableApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexSesContConfTableApplyChange.setDescription("The Apply for the apexSesContConfTable. This parameter MUST be set to 'apply' in order for any of the data in the apexSesContConfTable to take effect. This parameter MUST be set LAST after all other data in the apexSesContConfTable has been configured. @Config(config=no, reboot=no) ")
apexSesContConfRateCompareType = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 3), RateComparisonTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSesContConfRateCompareType.setStatus('current')
if mibBuilder.loadTexts: apexSesContConfRateCompareType.setDescription("This is the rate to use for comparing input streams. It is either Information rate or Stream rate. This applies to monitoring for Bit Rate alarming and monitoring of Redundant Pairs. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexSesContConfRedundThreshold = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSesContConfRedundThreshold.setStatus('obsolete')
if mibBuilder.loadTexts: apexSesContConfRedundThreshold.setDescription("This object is obsolete. Session Control Redundancy Threshold. This is the percent used to determine Fail Over from Primary to Secondary, and Switch Back from Secondary to Primary. If a value of zero is specified, Fail Over or Switch Back will not occur. Range is 0 to 100%. Primary Fail Over to Secondary: FailOver = (PrimaryRate) < (Threshold * SecondaryRate) The Primary must remain below the threshold for apexGbeConfInRedundMonitorPeriod. Secondary Switch Back to Primary: SwitchBack = (PrimaryRate) >= (Threshold * SecondaryRate) The Primary must remain at or above the threshold for apexGbeConfInRedundMonitorPeriod seconds. The APEX will delay Switch Back an additional apexGbeConfInRedundSwitchTime seconds. Switch Back will not occur when apexGbeConfInRedundAutoSwitchBack is 'disabled'. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexSesContConfInputPreEncryptCheck = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 5), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSesContConfInputPreEncryptCheck.setStatus('current')
if mibBuilder.loadTexts: apexSesContConfInputPreEncryptCheck.setDescription("Session Control Pre-Encryption Checking. Indicates if the APEX is to check if the input service is pre-encrypted or clear. Pre-encrypted is determined by examining the input PMT for a CA ECM descriptor (any CA ECM descriptor). If pre-encrypted, setting this flag will cause the APEX to pass through ECM PID for this service. For input services that have a GI CA ECM descriptor, the APEX will also pass through the PIT message (extract and re-insert the PIT). The output PMT for pre-encrypted services will contain a CA ECM descriptor (referencing the ECM PID). When PID Remapping is enabled, pre-encryption for a service is only valid when the input ECM PID is on a different PID than the associated PMT PID. If this flag is set to pre-encryption and the input service is not pre-encrypted, then the setting of this flag has no affect on the output service. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexSesContConfRedundType = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("hotWarm", 1), ("hotHot", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSesContConfRedundType.setStatus('current')
if mibBuilder.loadTexts: apexSesContConfRedundType.setDescription("The redundancy type for output streams in Session Control operating mode. - hotWarm indicates only 1 input stream, primary or secondary, is open at any one time. For multicast streams, primary will be joined initially. The secondary is joined after a failover (the primary will be dropped prior to joining the secondary). - hotHot indicates both the primary and secondary streams are opened at the same time. For multicast streams, both streams are joined immediately. Changes to the redundancy type cannot be made while there are active routes or sessions. All routes and sessions must be deleted prior to changing the redundancy type. Once written, a save must be performed via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexSesContConfFollowDtcp = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 7), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSesContConfFollowDtcp.setStatus('current')
if mibBuilder.loadTexts: apexSesContConfFollowDtcp.setDescription("Determines how the copy protection settings (CCI, APS, and CIT) within the PRK will be set. All outputs in Session Control (SDV) mode will use this setting for following input DTCP. Disabled - Use ERM Configuration settings if encryption blob provided. Use CTE settings when in CTE encryption mode and no ERM encryption blob provided. Enabled - Follow input DTCP Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexSesContConfTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 2), )
if mibBuilder.loadTexts: apexSesContConfTable.setStatus('current')
if mibBuilder.loadTexts: apexSesContConfTable.setDescription("This is a table of Session Control configuration parameters for each output transport stream. This table defines the primary and secondary Gigabit Ethernet interfaces for each output stream in Session Control operating mode. The primary and secondary interfaces cannot be changed for an output stream when there are active Session Control mappings. All Session Control mappings on an output stream must be removed prior to changing the primary or secondary interface settings. Once written, the change to this table will only take immediate effect after apexSesContConfTableApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexSesContConfTableApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexSesContConfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexSesContConfOutputTsNum"))
if mibBuilder.loadTexts: apexSesContConfEntry.setStatus('current')
if mibBuilder.loadTexts: apexSesContConfEntry.setDescription('Session Control Configuration Table Entry.')
apexSesContConfOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexSesContConfOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexSesContConfOutputTsNum.setDescription('Output transport stream number (index).')
apexSesContConfGbePrimaryInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSesContConfGbePrimaryInterface.setStatus('current')
if mibBuilder.loadTexts: apexSesContConfGbePrimaryInterface.setDescription('The primary Gbe interface for Session Control. Zero indicates not available. This parameter cannot be changed for any output stream if there is at least 1 active session control mapping. Not configurable for RTSP. ')
apexSesContConfGbeSecondaryInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSesContConfGbeSecondaryInterface.setStatus('current')
if mibBuilder.loadTexts: apexSesContConfGbeSecondaryInterface.setDescription('The secondary Gbe interface for RPC SDV. Zero indicates not available. This parameter cannot be changed for any output stream if there is at least 1 active session control mapping. Secondary selection is restricted based on Primary as follows: - Primary 1 or 2: Secondary must be 1 or 2 - Primary 3 or 4: Secondary must be 3 or 4 Not configurable for RTSP. ')
apexSesContStatProtocol = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("none", 0), ("rpc", 1), ("rtsp", 2), ("mha-ermi", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexSesContStatProtocol.setStatus('current')
if mibBuilder.loadTexts: apexSesContStatProtocol.setDescription('The communication protocol in use for output streams in Session Control operating mode. ')
apexRpcDataCarouselProgram = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRpcDataCarouselProgram.setStatus('current')
if mibBuilder.loadTexts: apexRpcDataCarouselProgram.setDescription("Indicates which Input Program Number to use for the Data Carousel. The data carousel in SDV mode (RPC or RTSP) is on a fixed PMT PID along with a fixed component PID. In order to maintain these PID values, the APEX will check for a specific input service number defined by this parameter. This service mapping is assumed to be the Data Carousel mapping. The APEX will maintain the PMT PID value along with the component PID value. To facilitate this mapping, the Data Carousel input/output program number is configurable. - Data Carousel Service Number Default: 0xF38F (62351) The PMT PID and component PID will be determined by the APEX by analyzing the PAT and PMT based on the program number configured. A program number of zero (0) indicates that there is no data carousel. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRpcReportAllSessions = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRpcReportAllSessions.setStatus('current')
if mibBuilder.loadTexts: apexRpcReportAllSessions.setDescription("Session reporting mode. Indicates what sessions will be reported when the APEX is requested to report sessions to a manager. When 'enabled', the APEX will report all sessions. When 'disabled', the APEX will report only the sessions for the requesting manager. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRpcDeviceName = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRpcDeviceName.setStatus('current')
if mibBuilder.loadTexts: apexRpcDeviceName.setDescription("The device name of this APEX. This variable is only used to generate an XML configuration file via the EM. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRpcDeviceType = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRpcDeviceType.setStatus('current')
if mibBuilder.loadTexts: apexRpcDeviceType.setDescription("The device type string reported in XML configuration file. This variable is only used to generate an XML configuration file via the EM. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRpcControlInterface = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 5), EthernetInterfaceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRpcControlInterface.setStatus('current')
if mibBuilder.loadTexts: apexRpcControlInterface.setDescription("The Enet interface that will be used to set the IP address attribute in the generated XML file. This variable is only used to generate an XML configuration file via the EM. Once written, the change to this parameter will only take immediate effect after apexRpcApplyChange is changed to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRpcApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRpcNumShellSessions = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRpcNumShellSessions.setStatus('current')
if mibBuilder.loadTexts: apexRpcNumShellSessions.setDescription("The number of shell sessions to be created on each channel marked for session control mode. This variable is only used to generate an XML configuration file via the EM. Once written, the change to this parameter will only take immediate effect after apexRpcApplyChange is changed to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRpcApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRpcAvgBandwidthEnable = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 7), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRpcAvgBandwidthEnable.setStatus('current')
if mibBuilder.loadTexts: apexRpcAvgBandwidthEnable.setDescription("When enabled the APEX populates the sessionRate in the QuerySessionInfo Response message with groupRate divided by the number of sessionIds in the group. The value reported makes no distinction between bound and unbound sessions. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRpcApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 8), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRpcApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexRpcApplyChange.setDescription('The Apply for RPC Settings. This applies to apexRpcControlInterface, apexRpcNumShellSessions, apexRpcRfPortServiceGroup. @Config(config=no, reboot=no) ')
apexRpcRfPortTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 2), )
if mibBuilder.loadTexts: apexRpcRfPortTable.setStatus('current')
if mibBuilder.loadTexts: apexRpcRfPortTable.setDescription('Table of Configuration data for RPC Session RF Ports. This variable is only used to generate an XML configuration file via the EM. ')
apexRpcRfPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexRpcRfPortNum"))
if mibBuilder.loadTexts: apexRpcRfPortEntry.setStatus('current')
if mibBuilder.loadTexts: apexRpcRfPortEntry.setDescription('RPC RF Port Configuration Table Entry.')
apexRpcRfPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: apexRpcRfPortNum.setStatus('current')
if mibBuilder.loadTexts: apexRpcRfPortNum.setDescription('The RF Port number.')
apexRpcRfPortName = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRpcRfPortName.setStatus('current')
if mibBuilder.loadTexts: apexRpcRfPortName.setDescription("The RF Port name. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRpcRfPortServiceGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 2, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRpcRfPortServiceGroup.setStatus('current')
if mibBuilder.loadTexts: apexRpcRfPortServiceGroup.setDescription("The RF Port service group. Once written, the change to this parameter will only take immediate effect after apexRpcApplyChange is changed to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRpcApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRpcRfChannelTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 3), )
if mibBuilder.loadTexts: apexRpcRfChannelTable.setStatus('current')
if mibBuilder.loadTexts: apexRpcRfChannelTable.setDescription("Table of Configuration data for RPC Session RF Channels. This variable is only used to generate an XML configuration file via the EM. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRpcRfChannelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexRpcRfChannelNum"))
if mibBuilder.loadTexts: apexRpcRfChannelEntry.setStatus('current')
if mibBuilder.loadTexts: apexRpcRfChannelEntry.setDescription('RPC RF Channel Configuration Table Entry.')
apexRpcRfChannelNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexRpcRfChannelNum.setStatus('current')
if mibBuilder.loadTexts: apexRpcRfChannelNum.setDescription('The RF Channel number.')
apexRpcRfChannelName = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 3, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRpcRfChannelName.setStatus('current')
if mibBuilder.loadTexts: apexRpcRfChannelName.setDescription('The name of this RF Channel. ')
apexRpcSessionStatTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2), )
if mibBuilder.loadTexts: apexRpcSessionStatTable.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatTable.setDescription('Table of RPC Switched Digital Video Session status. This table contains 1 row up to the maximum number of service mappings supported. ')
apexRpcSessionStatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexRpcSessionStatIndex"))
if mibBuilder.loadTexts: apexRpcSessionStatEntry.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatEntry.setDescription('RPC Switched Digital Video Session Status Table Entry.')
apexRpcSessionStatIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexRpcSessionStatIndex.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatIndex.setDescription('The RPC Switched Digital Video Session Status table index. ')
apexRpcSessionStatInputTsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcSessionStatInputTsIndex.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatInputTsIndex.setDescription('The index into the apexInputTsStatTable.')
apexRpcSessionStatInputProgramNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcSessionStatInputProgramNum.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatInputProgramNum.setDescription('The Gigabit Ethernet Input Program Number. A value of zero (0) indicates that the input is an SPTS and the first program listed in the input PAT will be mapped by the APEX. ')
apexRpcSessionStatSourceIpAddr3 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcSessionStatSourceIpAddr3.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatSourceIpAddr3.setDescription('The Gigabit Ethernet IGMP v3 Source IP Address 3. This IP address is currently unsupported by the APEX. ')
apexRpcSessionStatOutputQamChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcSessionStatOutputQamChannel.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatOutputQamChannel.setDescription('The Output QAM Channel. ')
apexRpcSessionStatOutputProgramNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcSessionStatOutputProgramNum.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatOutputProgramNum.setDescription('The Output Program Number (1 - 65535). ')
apexRpcSessionStatProgramBandwidth = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcSessionStatProgramBandwidth.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatProgramBandwidth.setDescription('The Expected Program Bandwidth (bps). This is the bandwidth of the program as defined in the service mapping. A value of 0 indicates that the program BW is unknown. ')
apexRpcSessionStatSessionType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("noSession", 0), ("sdv", 1), ("vodOrBroadcast", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcSessionStatSessionType.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatSessionType.setDescription('The Type of session (SDV binding or VOD/Broadcast session). 1 = Switched Digital Video (SDV) 2 = VOD or Broadcast ')
apexRpcSessionStatSessionIdWord1 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 9), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcSessionStatSessionIdWord1.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatSessionIdWord1.setDescription('The Session ID Word 1. Session IDs are 10 byte character arrays. Session IDs are be stored as 3 4-byte words (3 ulongs) in this MIB. First 2 Bytes are always 0, next 10 contain the session ID. Session ID is broken up as follows: Word 1: 00:01 = 0x0000 (unused) Word 1: 02:03 = 1st 2 bytes of session ID (1st 2 bytes of MAC address) Word 2: 00:03 = Next 4 bytes (these 4 plus 1st 2 are the MAC address of manager) Word 3: 00:03 = Last 4 bytes (unique number assigned by manager) ')
apexRpcSessionStatSessionIdWord2 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 10), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcSessionStatSessionIdWord2.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatSessionIdWord2.setDescription('The Session ID Word 2. Session IDs are 10 byte character arrays. Session IDs are be stored as 3 4-byte words (3 Unsigned32) in this MIB. First 2 Bytes are always 0, next 10 contain the session ID. Session ID is broken up as follows: Word 1: 00:01 = 0x0000 (unused) Word 1: 02:03 = 1st bytes of session ID (1st 2 bytes of MAC address) Word 2: 00:03 = Next 4 bytes (these 4 plus 1st 2 are the MAC address of manager) Word 3: 00:03 = Last 4 bytes (unique number assigned by manager) ')
apexRpcSessionStatSessionIdWord3 = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 11), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcSessionStatSessionIdWord3.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatSessionIdWord3.setDescription('The Session ID Word 3. Session IDs are 10 byte character arrays. Session IDs are be stored as 3 4-byte words (3 Unsigned32) in this MIB. First 2 Bytes are always 0, next 10 contain the session ID. Session ID is broken up as follows: Word 1: 00:01 = 0x0000 (unused) Word 1: 02:03 = 1st bytes of session ID (1st 2 bytes of MAC address) Word 2: 00:03 = Next 4 bytes (these 4 plus 1st 2 are the MAC address of manager) Word 3: 00:03 = Last 4 bytes (unique number assigned by manager) ')
apexRpcSessionStatManagerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 12), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcSessionStatManagerIpAddr.setStatus('current')
if mibBuilder.loadTexts: apexRpcSessionStatManagerIpAddr.setDescription('The IP address of the RPC SDV, VOD, or Broadcast manager sending session commands. ')
apexRpcQamStatTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 3), )
if mibBuilder.loadTexts: apexRpcQamStatTable.setStatus('current')
if mibBuilder.loadTexts: apexRpcQamStatTable.setDescription('Table of RPC Switched Digital Video QAM status. This table is indexed by output stream number and 48 rows. ')
apexRpcQamStatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexRpcQamStatQamChannelNum"))
if mibBuilder.loadTexts: apexRpcQamStatEntry.setStatus('current')
if mibBuilder.loadTexts: apexRpcQamStatEntry.setDescription('RPC Switched Digital Video QAM Status Table Entry.')
apexRpcQamStatQamChannelNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexRpcQamStatQamChannelNum.setStatus('current')
if mibBuilder.loadTexts: apexRpcQamStatQamChannelNum.setDescription('The RPC Switched Digital Video QAM Status table index. ')
apexRpcQamStatNumSdvSessions = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 3, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcQamStatNumSdvSessions.setStatus('current')
if mibBuilder.loadTexts: apexRpcQamStatNumSdvSessions.setDescription('The Number of reserved SDV sessions on this QAM Channel. This is the number of SDV sessions that have been reserved by the manager. Each SDV session requires that a manager reserve a QAM. This is the count of SDV sessions reserved (not the actual number of active SDV sessions). ')
apexRpcQamStatNumVodBcSessions = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcQamStatNumVodBcSessions.setStatus('current')
if mibBuilder.loadTexts: apexRpcQamStatNumVodBcSessions.setDescription('The Number of VOD/Broadcast sessions on this QAM Channel. This is the number of VOD/Broadcast sessions active on a QAM Channel. Since VOD and Broadcast sessions are not required to be reserved for an output, this is the count of active VOD and Broadcast sessions on a specific QAM. ')
apexRpcQamStatSdvGroupBandwidth = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 3, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRpcQamStatSdvGroupBandwidth.setStatus('current')
if mibBuilder.loadTexts: apexRpcQamStatSdvGroupBandwidth.setDescription('The Group BW for SDV sessions (not used for VOD/Broadcast sessions). This is the total amount of BW allocated for all SDV sessions on a channel. The total SDV BW for a channel is defined by the session manager. The manager reserves this BW for future SDV sessions. This is not the BW of current active SDV sessions, but the total BW reserved by the manager for SDV sessions. ')
apexRtspReportGbeInterfaces = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("none", 0), ("reportGbe1and2", 1), ("reportGbe3and4", 2), ("pairedPortAssignment", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspReportGbeInterfaces.setStatus('current')
if mibBuilder.loadTexts: apexRtspReportGbeInterfaces.setDescription("This selects which pair of GBE interfaces are to be reported to the RTSP controller (ERM) via VREP. The pairedPortAssignment selection allows for both pairs of GBE interfaces to be reported to the ERM. This allows for all 4 GBE interfaces to be used by the ERM for session mappings. This effectively splits the APEX into 2x24 QAM devices where the first GBE interface pair (1&2) are assigned to the first 24 output QAM streams (output TS 1 - 24) and the second GBE pair (3&4) are assigned to the second 24 output QAM streams (output TS 25-48). Selecting reportGbe1and2 or reportGbe3and4 limits the ERM to 2 GBE interfaces only. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRtspConfControllerApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 2), )
if mibBuilder.loadTexts: apexRtspConfControllerApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControllerApplyTable.setDescription('Table of Apply Change for the data for apexRtspConfControllerTable. A row of this table corresponds to a row in apexRtspConfControllerTable. ')
apexRtspConfControllerApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspConfControllerApplyNum"))
if mibBuilder.loadTexts: apexRtspConfControllerApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControllerApplyEntry.setDescription('RTSP Controller Configuration Apply Table Entry.')
apexRtspConfControllerApplyNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)))
if mibBuilder.loadTexts: apexRtspConfControllerApplyNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControllerApplyNum.setDescription('The RTSP Session Controller number.')
apexRtspConfControllerApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 2, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfControllerApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControllerApplyChange.setDescription("The Apply for a row of data in apexRtspConfControllerTable and apexRtspConfControlNamesTable. A row in this table corresponds to the same row index in the apexRtspConfControllerTable and apexRtspConfControlNamesTable. This parameter MUST be set to 'apply' in order for any of the data in the rows to take effect in the APEX. This parameter MUST be set LAST after all other data in the configuration table rows has been configured. @Config(config=no, reboot=no) ")
apexRtspConfControllerTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3), )
if mibBuilder.loadTexts: apexRtspConfControllerTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControllerTable.setDescription("Table of RTSP configuration items configurable on a Controller basis. Once written, the change to this table will only take immediate effect after apexRtspConfControllerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfControllerApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRtspConfControllerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspConfControllerNum"))
if mibBuilder.loadTexts: apexRtspConfControllerEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControllerEntry.setDescription('RTSP Controller Configuration Table Entry.')
apexRtspConfControllerNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)))
if mibBuilder.loadTexts: apexRtspConfControllerNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControllerNum.setDescription('The Controller Number. APEX currently supports only one controller. ')
apexRtspConfControllerIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfControllerIp.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControllerIp.setDescription('The IP Address of the RTSP session controller. ')
apexRtspConfControllerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1024, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfControllerPort.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControllerPort.setDescription('Port for the RTSP session controller. ')
apexRtspConfControllerHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(9, 300), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfControllerHoldTime.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControllerHoldTime.setDescription('The session hold time in seconds. If the APEX does not receive a keep session alive message from the controller in this time the APEX will close the session. The APEX will transmit keep session alive messages at one-third of this time. Zero indicates that the APEX should not send keep session alive messages. ')
apexRtspConfControllerBandwidthDelta = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(50, 100000), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfControllerBandwidthDelta.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControllerBandwidthDelta.setDescription("The Bandwidth Delta, in kilobits per second (kbps), for sending an Update Message. Whenever a QAM Channel's output utilization changes by more than the bandwidth delta, the APEX will send a update message providing the current BW being utilized. Zero indicates that the APEX should not send update messages based on bandwidth changes. ")
apexRtspConfControlNamesTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 4), )
if mibBuilder.loadTexts: apexRtspConfControlNamesTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControlNamesTable.setDescription("Table of RTSP configuration items configurable on a Controller basis. Contains the control names. This table is a row-for-row index match to the apexRtspConfControllerTable. Once written, the change to this table will only take immediate effect after apexRtspConfControllerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfControllerApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRtspConfControlNamesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspConfControlNamesNum"))
if mibBuilder.loadTexts: apexRtspConfControlNamesEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControlNamesEntry.setDescription('RTSP Controller Names Configuration Table Entry.')
apexRtspConfControlNamesNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)))
if mibBuilder.loadTexts: apexRtspConfControlNamesNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControlNamesNum.setDescription('The Controller Number. APEX currently supports only one controller. ')
apexRtspConfControlNamesStreamingZone = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 4, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfControlNamesStreamingZone.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControlNamesStreamingZone.setDescription('The streaming zone that the APEX is a member of. ')
apexRtspConfControlNamesDeviceName = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 4, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfControlNamesDeviceName.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfControlNamesDeviceName.setDescription('The device name of this APEX. ')
apexRtspConfQamChannelApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 5), )
if mibBuilder.loadTexts: apexRtspConfQamChannelApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfQamChannelApplyTable.setDescription('Table of Apply Change for the data for apexRtspConfQamChannelTable. A row of this table corresponds to a row in apexRtspConfQamChannelTable. ')
apexRtspConfQamChannelApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 5, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspConfQamChannelApplyNum"))
if mibBuilder.loadTexts: apexRtspConfQamChannelApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfQamChannelApplyEntry.setDescription('RTSP QAM Configuration Apply Table Entry.')
apexRtspConfQamChannelApplyNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexRtspConfQamChannelApplyNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfQamChannelApplyNum.setDescription('The QAM Channel number.')
apexRtspConfQamChannelApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 5, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfQamChannelApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfQamChannelApplyChange.setDescription("The Apply for a row of data in apexRtspConfQamChannelTable. A row in this table corresponds to the same row index in the apexRtspConfQamChannelTable. This parameter MUST be set to 'apply' in order for any of the data in the rows to take effect in the APEX. This parameter MUST be set LAST after all other data in the configuration table rows has been configured. @Config(config=no, reboot=no) ")
apexRtspConfQamChannelTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 6), )
if mibBuilder.loadTexts: apexRtspConfQamChannelTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfQamChannelTable.setDescription("Table of Configuration data for RTSP Session QAM Channels. Once written, the change to this table will only take immediate effect after apexRtspConfQamChannelApplyChange to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfQamChannelApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRtspConfQamChannelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 6, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspConfQamChannelNum"))
if mibBuilder.loadTexts: apexRtspConfQamChannelEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfQamChannelEntry.setDescription('RTSP QAM Configuration Table Entry.')
apexRtspConfQamChannelNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexRtspConfQamChannelNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfQamChannelNum.setDescription('The QAM Channel number.')
apexRtspConfQamChannelGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 6, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfQamChannelGroupName.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfQamChannelGroupName.setDescription('The QAM Group Name that this QAM Channel is a member of. ')
apexRtspConfGbeEdgeGroupTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 7), )
if mibBuilder.loadTexts: apexRtspConfGbeEdgeGroupTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfGbeEdgeGroupTable.setDescription("Table of Configuration data for RTSP Session GigE Interfaces. Once written, the change to this table will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRtspConfGbeEdgeGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 7, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspConfGbeEdgeGroupNum"))
if mibBuilder.loadTexts: apexRtspConfGbeEdgeGroupEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfGbeEdgeGroupEntry.setDescription('RTSP GigE Edge Group Configuration Table Entry.')
apexRtspConfGbeEdgeGroupNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 7, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)))
if mibBuilder.loadTexts: apexRtspConfGbeEdgeGroupNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfGbeEdgeGroupNum.setDescription('The GigE Edge Group Interface number.')
apexRtspConfGbeEdgeGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 7, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfGbeEdgeGroupName.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfGbeEdgeGroupName.setDescription('The Name of this GigE Interface. ')
apexRtspConfMhaTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 8), )
if mibBuilder.loadTexts: apexRtspConfMhaTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfMhaTable.setDescription("Table of MHA RTSP configuration items configurable on a Controller basis. Once written, the change to this table will only take immediate effect after apexRtspConfControllerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfControllerApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRtspConfMhaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 8, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspConfMhaNum"))
if mibBuilder.loadTexts: apexRtspConfMhaEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfMhaEntry.setDescription('MHA RTSP Configuration Table Entry.')
apexRtspConfMhaNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 8, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)))
if mibBuilder.loadTexts: apexRtspConfMhaNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfMhaNum.setDescription('The MHA Controller Number. APEX currently supports only one controller. ')
apexRtspConfMhaAddressDomain = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 8, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfMhaAddressDomain.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfMhaAddressDomain.setDescription('Address Domain of the sender used in ERRP. Address Domain of the ERM and APEX must match in order to establish an ERRP connection. Zero is used as the global address domain, which is interpreted to mean that any advertised address can be reached from any address domain. ')
apexRtspConfMhaPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 8, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1024, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfMhaPort.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfMhaPort.setDescription('Port for the MHA session controller. ')
apexRtspConfMhaUdpMapEnable = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 9, 1), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfMhaUdpMapEnable.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfMhaUdpMapEnable.setDescription("Indicates if the UDP Map is populated in the Update message sent by the APEX to the ERM when in MHA mode. When 'enabled', the APEX will report UDP ports available. When 'disabled', the APEX will include the UDP Map field but will not populate it with data. Once written, the change to this table will only take immediate effect after apexRtspConfControllerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfControllerApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRtspConfMhaSbeEncryptionMode = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 10, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("full", 1), ("fwk", 2), ("fpk", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfMhaSbeEncryptionMode.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfMhaSbeEncryptionMode.setDescription("This parameter is used to set the Session based Encryption Mode. It applies to all session based encryption sessions. - 'full' - The APEX will use Full encryption. - 'fwk' - The APEX will use Fixed Working Key (FWK) encryption. - 'fpk' - The APEX will use Fixed Program Key (FPK) encryption. The APEX will not attempt to get EMMs. Once written, the change to this parameter will only take immediate effect after apexRtspConfMhaSbeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfMhaSbeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRtspConfMhaSbeCciLevel = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 10, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("notDefined", 1), ("copyFreely", 2), ("copyOnce", 3), ("copyNever", 4), ("noMoreCopies", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfMhaSbeCciLevel.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfMhaSbeCciLevel.setDescription("Copy Control Information (CCI) Level setting for session based PRK messages if CCI is not defined in the XML encryption blob. - notDefined - CCI is not defined, settop box applications can configure CCI - copyFreely - program can be copied - copyOnce - program can be copied once - copyNever - program can never be copied - noMoreCopies - Once written, the change to this parameter will only take immediate effect after apexRtspConfMhaSbeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfMhaSbeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRtspConfMhaSbeApsLevel = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 10, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("notDefined", 1), ("off", 2), ("splitBurstOff", 3), ("splitBurst2Line", 4), ("splitBurst4Line", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfMhaSbeApsLevel.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfMhaSbeApsLevel.setDescription("Analog Protection System (APS) Level setting for session based PRK messages if APS is not defined in the XML encryption blob. Defines what copy protection encoding will be applied to the analog composite output by the settop box. - notDefined - analog protection is not defined, settop box applications can configure APS - off - no analog protection - splitBurstOff - AGC on, split burst off - splitBurst2Line - AGC on, 2 line split burst on - splitBurst4Line - AGC on, 4 line split burst on Once written, the change to this parameter will only take immediate effect after apexRtspConfMhaSbeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfMhaSbeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRtspConfMhaSbeCitSetting = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 10, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfMhaSbeCitSetting.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfMhaSbeCitSetting.setDescription("Copy protection Constraint Image Trigger setting. This is only applicable when the session is being encrypted and the CIT setting was not contained in the XML encryption blob. Once written, the change to this parameter will only take immediate effect after apexRtspConfMhaSbeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfMhaSbeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apexRtspConfMhaSbeApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 10, 5), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRtspConfMhaSbeApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexRtspConfMhaSbeApplyChange.setDescription("The Apply for the MHA session based encryption settings. This parameter MUST be set to 'apply' in order for any of the data in MHA SBE to take effect in the APEX. This parameter MUST be set LAST after all other data in the MHA SBE has been configured. @Config(config=no, reboot=no) ")
apexRtspSessionStatTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2), )
if mibBuilder.loadTexts: apexRtspSessionStatTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionStatTable.setDescription('Table of RTSP Session status. This table contains 768 rows. ')
apexRtspSessionStatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspSessionStatIndex"))
if mibBuilder.loadTexts: apexRtspSessionStatEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionStatEntry.setDescription('RTSP Session Status Table Entry.')
apexRtspSessionStatIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexRtspSessionStatIndex.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionStatIndex.setDescription('The RTSP Session Status table index. ')
apexRtspSessionStatInputTsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspSessionStatInputTsIndex.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionStatInputTsIndex.setDescription('The index into the apexInputTsStatTable.')
apexRtspSessionStatInputProgramNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspSessionStatInputProgramNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionStatInputProgramNum.setDescription('The Gigabit Ethernet Input Program Number. A value of zero (0) indicates that the input is an SPTS and the first program listed in the input PAT will be mapped by the APEX. ')
apexRtspSessionStatOutputQamChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspSessionStatOutputQamChannel.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionStatOutputQamChannel.setDescription('The Output QAM Channel. ')
apexRtspSessionStatOutputProgramNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspSessionStatOutputProgramNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionStatOutputProgramNum.setDescription('The Output Program Number. ')
apexRtspSessionStatProgramBandwidth = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspSessionStatProgramBandwidth.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionStatProgramBandwidth.setDescription('The Expected Program Bandwidth (bps). This is the bandwidth of the program as defined in the service mapping. A value of 0 indicates that the program BW is unknown. ')
apexRtspSessionStatManagerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 7), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspSessionStatManagerIpAddr.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionStatManagerIpAddr.setDescription('The IP address of the manager sending session commands. ')
apexRtspSessionIdTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 3), )
if mibBuilder.loadTexts: apexRtspSessionIdTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionIdTable.setDescription('Table of RTSP Session Ids. This table contains 768 rows and is a row-for-row index match to apexRtspSessionStatTable. ')
apexRtspSessionIdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspSessionIdIndex"))
if mibBuilder.loadTexts: apexRtspSessionIdEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionIdEntry.setDescription('RTSP Session ID Table Entry.')
apexRtspSessionIdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexRtspSessionIdIndex.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionIdIndex.setDescription('The RTSP Session ID table index. This is a row-for-row match to the RTSP Session Status table index. ')
apexRtspSessionId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 3, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspSessionId.setStatus('current')
if mibBuilder.loadTexts: apexRtspSessionId.setDescription('The Session ID. ')
apexRtspQamStatTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 4), )
if mibBuilder.loadTexts: apexRtspQamStatTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspQamStatTable.setDescription('Table of RTSP Session QAM status. This table is indexed by QAM channel number and contains 48 rows. ')
apexRtspQamStatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspQamStatQamChannelNum"))
if mibBuilder.loadTexts: apexRtspQamStatEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspQamStatEntry.setDescription('RTSP Session QAM status Table Entry.')
apexRtspQamStatQamChannelNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexRtspQamStatQamChannelNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspQamStatQamChannelNum.setDescription('The RTSP Session Control Video QAM Status table index. ')
apexRtspQamStatNumSessions = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspQamStatNumSessions.setStatus('current')
if mibBuilder.loadTexts: apexRtspQamStatNumSessions.setDescription('The Number of active sessions on this QAM Channel. ')
apexRtspQamStatAllocatedBandwidth = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 4, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspQamStatAllocatedBandwidth.setStatus('current')
if mibBuilder.loadTexts: apexRtspQamStatAllocatedBandwidth.setDescription('This is the total amount of BW allocated for all sessions on a channel. ')
apexRtspStatControllerTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 5), )
if mibBuilder.loadTexts: apexRtspStatControllerTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatControllerTable.setDescription('Table of RTSP status items configurable on a Controller basis. ')
apexRtspStatControllerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 5, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspStatControllerNum"))
if mibBuilder.loadTexts: apexRtspStatControllerEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatControllerEntry.setDescription('RTSP Controller Status Table Entry.')
apexRtspStatControllerNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)))
if mibBuilder.loadTexts: apexRtspStatControllerNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatControllerNum.setDescription('The Controller Number. APEX currently supports only one controller. ')
apexRtspStatControllerDiscovery = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("notApplicable", 0), ("notDiscovered", 1), ("discovered", 2), ("discoveredConnectionLost", 3), ("discoveredAnotB", 4), ("discoveredBnotA", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspStatControllerDiscovery.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatControllerDiscovery.setDescription('Status of Controller to APEX discovery. ')
apexRtspStatControllerConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 5, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("notApplicable", 0), ("notConnected", 1), ("connected", 2), ("connectedPort554", 3), ("connectedPort2048", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspStatControllerConnection.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatControllerConnection.setDescription("Status of the connection between the APEX and the Controller. 'notConnected' causes apexAlarmRtspControllerCommFault. ")
apexRtspStatControllerCommFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 5, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspStatControllerCommFault.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatControllerCommFault.setDescription('Current fault condition of apexRtspStatControllerConnection. This is the apexAlarmRtspControllerCommFault level for this controller. ')
apexRtspStatQamChannelTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 6), )
if mibBuilder.loadTexts: apexRtspStatQamChannelTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatQamChannelTable.setDescription('Table of Status data for RTSP Session QAM Channels. ')
apexRtspStatQamChannelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 6, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspStatQamChannelNum"))
if mibBuilder.loadTexts: apexRtspStatQamChannelEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatQamChannelEntry.setDescription('RTSP QAM Configuration Table Entry.')
apexRtspStatQamChannelNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexRtspStatQamChannelNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatQamChannelNum.setDescription('The QAM Channel number.')
apexRtspStatQamChannelName = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 6, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspStatQamChannelName.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatQamChannelName.setDescription('The Name of this QAM Channel. ')
apexRtspStatQamMptsModeTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 7), )
if mibBuilder.loadTexts: apexRtspStatQamMptsModeTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatQamMptsModeTable.setDescription('Table of MPTS Mode Status data for RTSP Session QAM Channels. ')
apexRtspStatQamMptsModeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 7, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspStatQamMptsModeQamChannelNum"))
if mibBuilder.loadTexts: apexRtspStatQamMptsModeEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatQamMptsModeEntry.setDescription('RTSP QAM MPTS Mode Configuration Table Entry.')
apexRtspStatQamMptsModeQamChannelNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 7, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexRtspStatQamMptsModeQamChannelNum.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatQamMptsModeQamChannelNum.setDescription('The QAM Channel number.')
apexRtspStatQamMptsModeQamChannelMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 7, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("passthrough", 1), ("multiplexing", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspStatQamMptsModeQamChannelMode.setStatus('current')
if mibBuilder.loadTexts: apexRtspStatQamMptsModeQamChannelMode.setDescription('The MPTS mode of this QAM Channel. The first session established on the QAM channel defines the MPTS mode. Each new session must have the same mode as long as one session is still active. ')
apexManualRouteRmdClear = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 1, 1), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteRmdClear.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteRmdClear.setDescription(' Clear all RMD information from DRAM and flash. Note that apexManualRouteEnable must be set to disabled for all rows before RMD information will be cleared by this parameter. If RMD information was cleared, the APEX will set this parameter to applyNotInProgressValidData. If RMD information was not cleared, the APEX will set this parameter to applyNotInProgressInvalidData. Once written, the change to this parameter will take effect immediately. @Config(config=no, reboot=no) ')
apexManualRouteApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 2), )
if mibBuilder.loadTexts: apexManualRouteApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteApplyTable.setDescription('Table of Apply Change for the data for Manual Route Table. A row in this table corresponds to the same row index in the Manual Route table. ')
apexManualRouteApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexManualRouteApplyIndex"))
if mibBuilder.loadTexts: apexManualRouteApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteApplyEntry.setDescription('Manual Route Apply Table Entry.')
apexManualRouteApplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexManualRouteApplyIndex.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteApplyIndex.setDescription('The index of the Manual Route Apply Table.')
apexManualRouteApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 2, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteApplyChange.setDescription("The Apply for the row of data in the Manual Route Table. A row in this table corresponds to the same row index in the Manual Route table. This parameter MUST be set to 'apply' in order for any of the data in the Manual Route Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the Manual Route Table row has been configured. @Config(config=no, reboot=no) ")
apexManualRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3), )
if mibBuilder.loadTexts: apexManualRouteTable.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteTable.setDescription("Table of data for Manual Routes. Once written, the change to a row this table will only take immediate effect after the appropriate apexManualRouteApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexManualRouteApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apexManualRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexManualRouteIndex"))
if mibBuilder.loadTexts: apexManualRouteEntry.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteEntry.setDescription('Manual Route Table Entry.')
apexManualRouteIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexManualRouteIndex.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteIndex.setDescription('The index of the Manual Route Table.')
apexManualRouteEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteEnable.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteEnable.setDescription('Indicates that this Manual Route is enabled or disabled. ')
apexManualRouteInputType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("gbe", 1), ("fastEnet", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteInputType.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteInputType.setDescription('Input Type of input from which to obtain data. ')
apexManualRouteInputInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteInputInterface.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteInputInterface.setDescription("Number of the input interface, of type configured by Input Type, from which to obtain data. Range: '0' = Not Applicable GBE = 1-4 FastEnet = 1-2 ")
apexManualRouteInputUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteInputUdp.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteInputUdp.setDescription('Input UDP Port from which to obtain data. Range: GBE = 0-65535 FastEnet = 1024-65535 ')
apexManualRouteInputMulticastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteInputMulticastIp.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteInputMulticastIp.setDescription('Input Multicast IP address from which to obtain data. An IP address of 0.0.0.0 indicates table entry not in use. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apexManualRouteInputSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 7), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteInputSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteInputSourceIp.setDescription('Input IGMP v3 Source IP from which to obtain data. If the router supports IGMP v3 the GBE will only receive data from this source IP. If Source IP is not specified or the router does not support IGMP v3 the GBE will receive data from any source device. Source IP address must be a valid singlecast address. ')
apexManualRouteInputProgNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteInputProgNum.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteInputProgNum.setDescription('Input MPEG Program Number to multiplex. A value of 0 can be used as a wild card. This will cause the APEX to map the first program listed in the input PAT to the specified output (regardless of input program number). Input program number zero should only be used when mapping Single Program Transport Streams (SPTS). ')
apexManualRouteInputPreEncryptCheck = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 9), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteInputPreEncryptCheck.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteInputPreEncryptCheck.setDescription('Manual Routing Pre-Encryption Checking. Indicates if the APEX is to check if the input service is pre-encrypted or clear. Pre-encrypted is determined by examining the input PMT for a CA ECM descriptor (any CA ECM descriptor). If pre-encrypted, setting this flag will cause the APEX to pass through ECM PID for this service. For input services that have a GI CA ECM descriptor, the APEX will also pass through the PIT message (extract and re-insert the PIT). The output PMT for pre-encrypted services will contain a CA ECM descriptor (referencing the ECM PID). When PID Remapping is enabled, pre-encryption for a service is only valid when the input ECM PID is on a different PID than the associated PMT PID. If this flag is set to pre-encryption and the input service is not pre-encrypted, then the setting of this flag has no affect on the output service. ')
apexManualRouteOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 48))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteOutputTsNum.setDescription('Output Transport Stream Number of the output on which to place data. Zero = NotApplicable and is only valid if the apexManualRouteTable entry is not being used. ')
apexManualRouteOutputProgNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteOutputProgNum.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteOutputProgNum.setDescription('Output Program number to use for the program. Zero = NotApplicable and is only valid if the apexManualRouteTable entry is not being used. ')
apexManualRouteOutputEncryptMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteOutputEncryptMode.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteOutputEncryptMode.setDescription('Encryption Mode. Not supported. ')
apexManualRouteOutputCopyProtectSource = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("followInputDtcp", 1), ("configuredSource", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteOutputCopyProtectSource.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteOutputCopyProtectSource.setDescription('Copy Protection Source. Not supported. ')
apexManualRouteSourceId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteSourceId.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteSourceId.setDescription("Broadcast Encryption Source ID. Only applies to programs if the input type is Gbe and the output encryption mode is Broadcast Encryption. (apexOutputTsConfEncryptionType set to 'broadcastEncryption') ")
apexManualRouteProviderId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManualRouteProviderId.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteProviderId.setDescription("Broadcast Encryption Provider ID. Only applies to programs if the input type is Gbe and the output encryption mode is Broadcast Encryption. (apexOutputTsConfEncryptionType set to 'broadcastEncryption') ")
apexManRtePassThroughApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 4), )
if mibBuilder.loadTexts: apexManRtePassThroughApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughApplyTable.setDescription('Table of Apply Change for the data for Manual Route Pass Through Table. A row in this table corresponds to the same row index in the Manual Route Pass Through table. ')
apexManRtePassThroughApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexManRtePassThroughApplyOutputTsNum"))
if mibBuilder.loadTexts: apexManRtePassThroughApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughApplyEntry.setDescription('Manual Route Apply Table Entry.')
apexManRtePassThroughApplyOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexManRtePassThroughApplyOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughApplyOutputTsNum.setDescription('The index of the Manual Route Pass Through Apply Table.')
apexManRtePassThroughApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 4, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRtePassThroughApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughApplyChange.setDescription("The Apply for the row of data in the Manual Route Pass Through Table. A row in this table corresponds to the same row index in the Manual Route Pass Through table. This parameter MUST be set to 'apply' in order for any of the data in the Manual Route Pass Through Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the Manual Route Pass Through Table row has been configured. @Config(config=no, reboot=no) ")
apexManRtePassThroughTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5), )
if mibBuilder.loadTexts: apexManRtePassThroughTable.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughTable.setDescription("Table of data for Manual Route Pass Through. This table is used to pass through an entire input stream to an output stream. Once written, the change to a row this table will only take immediate effect after the appropriate apexManRtePassThroughApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexManRtePassThroughApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apexManRtePassThroughEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1), ).setIndexNames((0, "APEX-MIB", "apexManRtePassThroughOutputTsNum"))
if mibBuilder.loadTexts: apexManRtePassThroughEntry.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughEntry.setDescription('Manual Route Pass Through Table Entry.')
apexManRtePassThroughOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexManRtePassThroughOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughOutputTsNum.setDescription('The index of the Manual Route Pass Through Table.')
apexManRtePassThroughEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRtePassThroughEnable.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughEnable.setDescription('Indicates that this Manual Route Pass Through is enabled or disabled. An input stream can only be passed through to an output stream when there are no active service or PID mappings to the output stream. ')
apexManRtePassThroughInputType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("gbe", 1), ("fastEnet", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRtePassThroughInputType.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughInputType.setDescription('Input Type of input from which to obtain data. ')
apexManRtePassThroughInputInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRtePassThroughInputInterface.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughInputInterface.setDescription("Number of the input interface, of type configured by Input Type, from which to obtain data. Range: '0' = Not Applicable GBE = 1-4 FastEnet = 1-2 ")
apexManRtePassThroughInputUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRtePassThroughInputUdp.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughInputUdp.setDescription('Input UDP Port from which to obtain data. Range: GBE = 0-65535 FastEnet = 1024-65535 ')
apexManRtePassThroughInputMulticastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRtePassThroughInputMulticastIp.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughInputMulticastIp.setDescription('Input Multicast IP address from which to obtain data. An IP address of 0.0.0.0 indicates table entry not in use. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apexManRtePassThroughInputSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 7), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRtePassThroughInputSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughInputSourceIp.setDescription('Input IGMP v3 Source IP address from which to obtain data. If the router supports IGMP v3 the GBE will only receive data from this source IP. If Source IP is not specified or the router does not support IGMP v3 the GBE will receive data from any source device. Source IP address must be a valid singlecast address. ')
apexManRteGbeInRedApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 2), )
if mibBuilder.loadTexts: apexManRteGbeInRedApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedApplyTable.setDescription('Table of Apply Change for the data for Manual Route Table. A row in this table corresponds to the same row index in the Manual Route table. ')
apexManRteGbeInRedApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexManRteGbeInRedApplyIndex"))
if mibBuilder.loadTexts: apexManRteGbeInRedApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedApplyEntry.setDescription('Manual Routing Gbe Input Ts Configuration Apply Table Entry.')
apexManRteGbeInRedApplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexManRteGbeInRedApplyIndex.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedApplyIndex.setDescription('The index of the Manual Routing Gbe Input Ts Configuration Apply Table.')
apexManRteGbeInRedApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 2, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedApplyChange.setDescription("The Apply for the row of data in the Manual Routing Gbe Input Ts Configuration Table. A row in this table corresponds to the same row index in the Manual Routing Gbe Input Ts Configuration table. This parameter MUST be set to 'apply' in order for any of the data in the Manual Routing Gbe Input Ts Configuration Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the Manual Routing Gbe Input Ts Configuration Table row has been configured. @Config(config=no, reboot=no) ")
apexManRteGbeInRedTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3), )
if mibBuilder.loadTexts: apexManRteGbeInRedTable.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedTable.setDescription("This table is the Manual Routing Gigabit Ethernet Input Transport Stream Configuration Table. This table contains 768 rows. For Force Switching a Redundancy pair for an Input TS configured in this table, refer to the same row index in apexManRteGbeInRedForceSwitchTable. Once written, the change to this table will only take immediate effect after apexManRteGbeInRedApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexManRteGbeInRedApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apexManRteGbeInRedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexManRteGbeInRedIndex"))
if mibBuilder.loadTexts: apexManRteGbeInRedEntry.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedEntry.setDescription('Manual Routing Gigabit Ethernet Input Transport Stream Configuration Table Entry.')
apexManRteGbeInRedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexManRteGbeInRedIndex.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedIndex.setDescription('The Manual Routing Gbe Input Ts Configuration table index. ')
apexManRteGbeInRedPriInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedPriInterface.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedPriInterface.setDescription('The primary Gigabit Ethernet Interface. Zero indicates this row of the table is not in use. ')
apexManRteGbeInRedPriUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedPriUdp.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedPriUdp.setDescription('The primary Gigabit Ethernet Input UDP Port. ')
apexManRteGbeInRedPriMulticastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedPriMulticastIp.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedPriMulticastIp.setDescription('The primary Multicast receive IP address. An IP address of 0.0.0.0 indicates table entry not in use. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apexManRteGbeInRedPriSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedPriSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedPriSourceIp.setDescription('This is the IP address of the source device for the primary interface. If the router supports IGMP v3 the GBE will only receive data from this source IP. If Source IP is not specified or the router does not support IGMP v3 the GBE will receive data from any source device. Source IP address must be a valid singlecast address. ')
apexManRteGbeInRedPriLowAlarmBitRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedPriLowAlarmBitRate.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedPriLowAlarmBitRate.setDescription('This is the bit rate, in bits per second, below which the APEX will issue the apexAlarmGbeInputStreamLowBitRate alarm for the primary interface. The APEX will compare either the current Information rate or Stream rate as configured in apexManRteGbeInRedRateCompareType. Setting to zero disables the bit rate alarming. The APEX updates the bit rate statistics every five seconds. ')
apexManRteGbeInRedPriHighAlarmBitRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedPriHighAlarmBitRate.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedPriHighAlarmBitRate.setDescription('This is the bit rate, in bits per second, above which the APEX will issue the apexAlarmGbeInputStreamHighBitRate alarm for the primary interface. The APEX will compare either the current Information rate or Stream rate as configured in apexManRteGbeInRedRateCompareType. Setting to zero disables the bit rate alarming. The APEX updates the bit rate statistics every five seconds. Not supported. ')
apexManRteGbeInRedRateCompareType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 8), RateComparisonTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedRateCompareType.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedRateCompareType.setDescription('This is the rate to use for comparing input streams. It is either Information rate or Stream rate. This applies to monitoring for Bit Rate alarming and monitoring of Redundant Pairs. ')
apexManRteGbeInRedEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 9), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedEnable.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedEnable.setDescription('This entry is used to enable Redundancy. ')
apexManRteGbeInRedThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedThreshold.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedThreshold.setDescription("Manual Routing Gigabit Ethernet Redundancy Threshold. This is the percent used to determine Fail Over from Primary to Secondary, and Switch Back from Secondary to Primary. If a value of zero is specified, Fail Over or Switch Back will not occur. Range is 0 to 100%. Primary Fail Over to Secondary: FailOver = (PrimaryRate) < (Threshold * SecondaryRate) The Primary must remain below the threshold for apexGbeConfInRedundMonitorPeriod. Fail Over will not occur when apexManRteGbeInRedSuspend is set to 'suspended'. Secondary Switch Back to Primary: SwitchBack = (PrimaryRate) >= (Threshold * SecondaryRate) The Primary must remain at or above the threshold for apexGbeConfInRedundMonitorPeriod seconds. The APEX will delay Switch Back an additional apexGbeConfInRedundSwitchTime seconds. Switch Back will not occur when apexManRteGbeInRedSuspend is set to 'suspended' or apexGbeConfInRedundAutoSwitchBack is 'disabled'. ")
apexManRteGbeInRedSuspend = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("notSuspended", 1), ("suspended", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedSuspend.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedSuspend.setDescription("This suspends Redundant Pair switching when set to 'suspended'. This has no effect when redundancy is disabled. Forced switching of Redundant Pairs is not prevented when this is set to 'suspended'. ")
apexManRteGbeInRedSecInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedSecInterface.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedSecInterface.setDescription('The secondary Gigabit Ethernet Interface for redundancy. Zero is invalid when redundancy is enabled. ')
apexManRteGbeInRedSecUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedSecUdp.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedSecUdp.setDescription('The secondary Gigabit Ethernet Input UDP Port for redundancy. ')
apexManRteGbeInRedSecMulticastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 14), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedSecMulticastIp.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedSecMulticastIp.setDescription('The secondary Multicast receive IP address for redundancy. An IP address of 0.0.0.0 indicates singlecast only. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apexManRteGbeInRedSecSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 15), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedSecSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedSecSourceIp.setDescription('This is the IP address of the source device for the secondary interface. If the router supports IGMP v3 the GBE will only receive data from this source IP. If Source IP is not specified or the router does not support IGMP v3 the GBE will receive data from any source device. Source IP address must be a valid singlecast address. ')
apexManRteGbeInRedSecLowAlarmBitRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedSecLowAlarmBitRate.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedSecLowAlarmBitRate.setDescription('This is the bit rate, in bits per second, below which the APEX will issue the apexAlarmGbeInputStreamLowBitRate alarm for the secondary interface. The APEX will compare either the current Information rate or Stream rate as configured in apexManRteGbeInRedRateCompareType. Setting to zero disables the bit rate alarming. The APEX updates the bit rate statistics every five seconds. ')
apexManRteGbeInRedSecHighAlarmBitRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 17), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedSecHighAlarmBitRate.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedSecHighAlarmBitRate.setDescription('This is the bit rate, in bits per second, above which the APEX will issue the apexAlarmGbeInputStreamHighBitRate alarm for the secondary interface. The APEX will compare either the current Information rate or Stream rate as configured in apexManRteGbeInRedRateCompareType. Setting to zero disables the bit rate alarming. The APEX updates the bit rate statistics every five seconds. Not supported. ')
apexManRteGbeInRedSecRedundMcJoin = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("noJoinOnOpen", 1), ("joinOnOpen", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedSecRedundMcJoin.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedSecRedundMcJoin.setDescription('This is not currently supported and is reserved for future use. ')
apexManRteGbeInRedForceSwitchTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 4), )
if mibBuilder.loadTexts: apexManRteGbeInRedForceSwitchTable.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedForceSwitchTable.setDescription('This table is the Manual Routing Gigabit Ethernet Input Transport Stream Redundancy Configuration Table. This table contains 768 rows. A row in this table corresponds to the same index in the apexManRteGbeInRedTable. ')
apexManRteGbeInRedForceSwitchEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexManRteGbeInRedForceSwitchIndex"))
if mibBuilder.loadTexts: apexManRteGbeInRedForceSwitchEntry.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedForceSwitchEntry.setDescription('Gigabit Ethernet Input Stream Redundancy Configuration Table Entry.')
apexManRteGbeInRedForceSwitchIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexManRteGbeInRedForceSwitchIndex.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedForceSwitchIndex.setDescription('The Manual Routing Gbe Input Ts Redundancy Configuration table index. A row in this table corresponds to the same index in the apexManRteGbeInRedTable.')
apexManRteGbeInRedForceSwitch = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("switchNotInProgress", 1), ("forceSwitch", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexManRteGbeInRedForceSwitch.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedForceSwitch.setDescription("The Gigabit Ethernet Redundant Pair force switch. This will have no effect if the corresponding row setting of apexManRteGbeInRedEnable is 'disabled'. The corresponding row setting apexManRteGbeInRedSuspend is ignored when 'forceSwitch' is set. The switch will occur even if apexManRteGbeInRedSuspend is 'suspended'. When forced to the Secondary of the pair, the APEX will stay on the Secondary until the user forces back to the Primary. The APEX will not automatically switch back to the Primary when the Primary is restored above the failover threshold. The APEX will not allow a force to the Primary unless the Primary is above the failover threshold. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apexManualRouteInvalidApplyText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexManualRouteInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexManualRouteInvalidApplyText.setDescription('When apexManualRouteApplyChange is set to applyNotInProgressInvalidData this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a table entry that was invalid.')
apexManRtePassThroughInvalidApplyText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexManRtePassThroughInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexManRtePassThroughInvalidApplyText.setDescription('When apexManRtePassThroughApplyChange is set to applyNotInProgressInvalidData this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a table entry that was invalid.')
apexManRteGbeInRedInvalidApplyText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexManRteGbeInRedInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedInvalidApplyText.setDescription('When apexManRteGbeInRedTableApplyChange is set to applyNotInProgressInvalidData this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a table entry that was invalid.')
apexManRteGbeInRedStatusMapTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 2, 2), )
if mibBuilder.loadTexts: apexManRteGbeInRedStatusMapTable.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedStatusMapTable.setDescription('This table provides the mapping between the indexes in Manual Routing Gigabit Ethernet Input Transport Stream Redundancy Configuration and Input TS Status. This table contains 768 rows. The index in this table corresponds to the same index in the apexManRteGbeInRedTable. ')
apexManRteGbeInRedStatusMapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexManRteGbeInRedStatusMapIndex"))
if mibBuilder.loadTexts: apexManRteGbeInRedStatusMapEntry.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedStatusMapEntry.setDescription('Gigabit Ethernet Input Stream Redundancy Configuration and Status Mapping Table Entry.')
apexManRteGbeInRedStatusMapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexManRteGbeInRedStatusMapIndex.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedStatusMapIndex.setDescription('The Manual Routing Gbe Input Ts Redundancy Configuration and status mapping table index. A index in this table corresponds to the same index in the apexManRteGbeInRedTable.')
apexManRteGbeInRedStatusMapInputTsStatRow = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 784))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexManRteGbeInRedStatusMapInputTsStatRow.setStatus('current')
if mibBuilder.loadTexts: apexManRteGbeInRedStatusMapInputTsStatRow.setDescription('The Manual Routing Gbe Input TS Status index. This provides the mapping between the entries in apexManRteGbeInRedTable and apexInputTsStatTable. The range of the index is 0 - 784, where 0 indicates no direct association between configuration and status and the 1-784 is the actual Input Stream status row (relative 1). @Config(config=no, reboot=no) ')
apexPidMapApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 2), )
if mibBuilder.loadTexts: apexPidMapApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexPidMapApplyTable.setDescription('Table of Apply Change for the data for PID Map Table. A row in this table corresponds to the same row index in the PID Map table. ')
apexPidMapApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexPidMapApplyIndex"))
if mibBuilder.loadTexts: apexPidMapApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexPidMapApplyEntry.setDescription('PID Map Apply Table Entry.')
apexPidMapApplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 480)))
if mibBuilder.loadTexts: apexPidMapApplyIndex.setStatus('current')
if mibBuilder.loadTexts: apexPidMapApplyIndex.setDescription('The index of the PID Map Apply Table.')
apexPidMapApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 2, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPidMapApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexPidMapApplyChange.setDescription("The Apply for the row of data in the PID Map Table. A row in this table corresponds to the same row index in the PID Map table. This parameter MUST be set to 'apply' in order for any of the data in the PID Map Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the PID Map Table row has been configured. @Config(config=no, reboot=no) ")
apexPidMapTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1), )
if mibBuilder.loadTexts: apexPidMapTable.setStatus('current')
if mibBuilder.loadTexts: apexPidMapTable.setDescription("Table of data for Ancillary Pid Mapping. There are 480 rows in this table (APEX supports up to 480 ancillary PID mappings). Once written, the change to this table will only take immediate effect after apexPidMapApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexPidMapApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apexPidMapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1), ).setIndexNames((0, "APEX-MIB", "apexPidMapIndex"))
if mibBuilder.loadTexts: apexPidMapEntry.setStatus('current')
if mibBuilder.loadTexts: apexPidMapEntry.setDescription('Pid Mapping Table Entry.')
apexPidMapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 480)))
if mibBuilder.loadTexts: apexPidMapIndex.setStatus('current')
if mibBuilder.loadTexts: apexPidMapIndex.setDescription('Index of Pid Mapping Table.')
apexPidMapEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPidMapEnable.setStatus('current')
if mibBuilder.loadTexts: apexPidMapEnable.setDescription('Indicates whether this PID Mapping is enabled or disabled. ')
apexPidMapInputType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("gbe", 1), ("fastEnet", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPidMapInputType.setStatus('current')
if mibBuilder.loadTexts: apexPidMapInputType.setDescription('Input Type of input from which to obtain data. ')
apexPidMapInputInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPidMapInputInterface.setStatus('current')
if mibBuilder.loadTexts: apexPidMapInputInterface.setDescription("Number of the input, of type configured by Input Type, from which to obtain data. Range: '0' = Not Applicable GBE = 1-4 FastEnet = 1-2 ")
apexPidMapInputUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPidMapInputUdp.setStatus('current')
if mibBuilder.loadTexts: apexPidMapInputUdp.setDescription('Input UDP Port from which to obtain data. Range: GBE = 0-65535 FastEnet = 1024-65535 ')
apexPidMapInputMulticastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPidMapInputMulticastIp.setStatus('current')
if mibBuilder.loadTexts: apexPidMapInputMulticastIp.setDescription('The Multicast receive IP address on which to receive data. An IP address of 0.0.0.0 indicates singlecast only. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apexPidMapInputSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 7), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPidMapInputSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexPidMapInputSourceIp.setDescription('This is the IP address of the source device. If the router supports IGMP v3 the GBE will only receive data from this source IP. If Source IP is not specified or the router does not support IGMP v3 the GBE will receive data from any source device. Source IP address must be a valid singlecast address. ')
apexPidMapInputPid = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 8191))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPidMapInputPid.setStatus('current')
if mibBuilder.loadTexts: apexPidMapInputPid.setDescription('Input MPEG PID to multiplex. When PID Remapping for an output is enabled, the input PID value and output PID value can be different. When PID Remapping for an output is disabled, the input and output PIDs must be the same. Input PID 0 (PAT PID) cannot be mapped by the user. ')
apexPidMapOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 48))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPidMapOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexPidMapOutputTsNum.setDescription('Output Transport Stream Number of the output on which to place data. Zero is only valid if the apexPidMapTable entry is not being used. ')
apexPidMapOutputPid = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 8191))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPidMapOutputPid.setStatus('current')
if mibBuilder.loadTexts: apexPidMapOutputPid.setDescription('Output PID to use for the data. This output PID value must match the input PID value when PID Remapping for the output stream is disabled. Zero is only valid if the apexPidMapTable entry is not being used. ')
apexPidMapMaxPidMappings = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPidMapMaxPidMappings.setStatus('current')
if mibBuilder.loadTexts: apexPidMapMaxPidMappings.setDescription('Maximum number of Ancillary PID mappings supported.')
apexPidMapInvalidApplyText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPidMapInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexPidMapInvalidApplyText.setDescription('When apexPidMapApplyChange is set to applyNotInProgressInvalidData this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a table entry that was invalid.')
apexInsertionMode = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("efficient", 1), ("singleSection", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexInsertionMode.setStatus('current')
if mibBuilder.loadTexts: apexInsertionMode.setDescription("This parameter is used to set the insertion mode for the APEX. The APEX may be configured to insert messages as efficiently as possible (efficient) or restrict insertion to a single section starting per packet (singleSection). Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexInsertPacketStatisticsTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2, 2), )
if mibBuilder.loadTexts: apexInsertPacketStatisticsTable.setStatus('current')
if mibBuilder.loadTexts: apexInsertPacketStatisticsTable.setDescription('Table of Output Transport Stream Insert Packet Statistics. Indexed by Output Transport Stream number.')
apexInsertPacketStatisticsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexInsertPacketStatOutputTsNum"))
if mibBuilder.loadTexts: apexInsertPacketStatisticsEntry.setStatus('current')
if mibBuilder.loadTexts: apexInsertPacketStatisticsEntry.setDescription('A row in the Output Transport Stream Insert Packet Statistics table.')
apexInsertPacketStatOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexInsertPacketStatOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexInsertPacketStatOutputTsNum.setDescription('Output Transport Stream Number.')
apexInsertPacketStatTotPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInsertPacketStatTotPkts.setStatus('current')
if mibBuilder.loadTexts: apexInsertPacketStatTotPkts.setDescription('Total number of packets inserted.')
apexInsertPacketStatNumPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInsertPacketStatNumPkts.setStatus('current')
if mibBuilder.loadTexts: apexInsertPacketStatNumPkts.setDescription('Number of packets inserted during the last monitoring period (currently 5 seconds).')
apexInputTsStatTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2), )
if mibBuilder.loadTexts: apexInputTsStatTable.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatTable.setDescription('Table of Input Transport Stream Status data. For each input stream in use, an entry in this row will be utilized. This table will indicate the input stream in use by type, interface, UDP, multicast IP, and Source IP address. This table will also indicate if the input stream is a Primary or Secondary input stream. Table of 768 GigE entries plus 16 Host entries (784 total input entries). List of GigE and Host Ethernet input streams currently in use. Each row contains an entry for Primary and Secondary information along with the 1 currently in use. ')
apexInputTsStatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexInputTsStatIndex"))
if mibBuilder.loadTexts: apexInputTsStatEntry.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatEntry.setDescription('Input Transport Stream Status Table Entry.')
apexInputTsStatIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 784)))
if mibBuilder.loadTexts: apexInputTsStatIndex.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatIndex.setDescription('Index of Input Transport Stream Status Table.')
apexInputTsStatStreamInUse = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("primary", 1), ("secondary", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatStreamInUse.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatStreamInUse.setDescription('Indicates whether the primary or secondary is in use. Zero indicates this row is not in use. ')
apexInputTsStatInputType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("gbe", 1), ("fastEnet", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatInputType.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatInputType.setDescription('Input Type of both primary and secondary inputs. ')
apexInputTsStatRoutingType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("notApplicable", 0), ("session", 1), ("manual", 2), ("udpMapping", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatRoutingType.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatRoutingType.setDescription("Routing Type of both primary and secondary inputs. 'session' - applies to SDV session routes (RPC, RTSP). 'manual' - applies to all manual routes (Manual Routing, PID Mapping, and stream pass through). 'udpMapping - applies to UDP Port Mapping routes. ")
apexInputTsStatPriState = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 5), InputTsStateTYPE()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatPriState.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatPriState.setDescription("The current state of the primary Gigabit Ethernet Input TS configured in apexManRteGbeInRedTable. States are: closed (0) - Input TS is closed or table row is not in use. openedInUse (1) - Input TS is opened and in use. openedBackup (2) - Input TS is opened as backup only. openedTransToBackup (3) - Input TS is opened, transitioning to backup state. openedTransToInUse (4) - Input TS is opened, transitioning to in use state. The states of 'openedBackup', 'openedTransToBackup', and 'openedTransToBackup' apply only to Redundant Pairs. The state of 'openedBackup' applies to the Input TS of the pair that is not currently in use. The state of 'openedTransToBackup' applies to the Input TS of the pair that is currently in use but is transitioning to be the backup, as when a Fail Over or Switch Back is occurring. The state of 'openedTransToInUse' applies to the Input TS of the pair that is currently the backup use but is transitioning to be the in use, as when a Fail Over or Switch Back is occurring. ")
apexInputTsStatPriInputInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatPriInputInterface.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatPriInputInterface.setDescription('Number of the primary input interface of type Input Type. ')
apexInputTsStatPriInputUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatPriInputUdp.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatPriInputUdp.setDescription('Input UDP Port for primary input. ')
apexInputTsStatPriInputMulticastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 8), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatPriInputMulticastIp.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatPriInputMulticastIp.setDescription('The Multicast receive IP address for primary input. ')
apexInputTsStatPriInputSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 9), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatPriInputSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatPriInputSourceIp.setDescription('This is the IGMP v3 Source IP address of the source device for the primary input. ')
apexInputTsStatSecState = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 10), InputTsStateTYPE()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatSecState.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatSecState.setDescription("The current state of the secondary Gigabit Ethernet Input TS configured in apexManRteGbeInRedTable. States are: closed (0) - Input TS is closed or table row is not in use. openedInUse (1) - Input TS is opened and in use. openedBackup (2) - Input TS is opened as backup only. openedTransToBackup (3) - Input TS is opened, transitioning to backup state. openedTransToInUse (4) - Input TS is opened, transitioning to in use state. The states of 'openedBackup', 'openedTransToBackup', and 'openedTransToBackup' apply only to Redundant Pairs. The state of 'openedBackup' applies to the Input TS of the pair that is not currently in use. The state of 'openedTransToBackup' applies to the Input TS of the pair that is currently in use but is transitioning to be the backup, as when a Fail Over or Switch Back is occurring. The state of 'openedTransToInUse' applies to the Input TS of the pair that is currently the backup use but is transitioning to be the in use, as when a Fail Over or Switch Back is occurring. ")
apexInputTsStatSecInputInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatSecInputInterface.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatSecInputInterface.setDescription('Number of the secondary input interface of type Input Type. ')
apexInputTsStatSecInputUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatSecInputUdp.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatSecInputUdp.setDescription('Input UDP Port for secondary input. ')
apexInputTsStatSecInputMulticastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 13), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatSecInputMulticastIp.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatSecInputMulticastIp.setDescription('The Multicast receive IP address for secondary input. ')
apexInputTsStatSecInputSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 14), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatSecInputSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatSecInputSourceIp.setDescription('This is the IGMP v3 Source IP address of the source device for the secondary input. ')
apexInputTsStatRateCompareType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 15), RateComparisonTYPE()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInputTsStatRateCompareType.setStatus('current')
if mibBuilder.loadTexts: apexInputTsStatRateCompareType.setDescription('This is the rate in use for comparing input streams. It is either Information rate or Stream rate. This applies to monitoring for Bit Rate alarming and monitoring of Redundant Pairs. ')
apexOutputTsUtilMonAlarmThreshold = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOutputTsUtilMonAlarmThreshold.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilMonAlarmThreshold.setDescription("The threshold, in percent, used to produce the apexAlarmOutputUtilizationFault alarm 'minor' while monitoring Output Transport Stream Bandwidth Utilization. An alarm of 'minor' will occur when this threshold is met or exceeded for apexOutputTsUtilMonSetAlarmDelay. The alarm will clear after remaining below this threshold for apexOutputTsUtilMonClearAlarmDelay. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexOutputTsUtilMonSetAlarmDelay = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 900))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOutputTsUtilMonSetAlarmDelay.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilMonSetAlarmDelay.setDescription("This is the time in seconds that the Output Transport Stream must be at or exceeding apexOutputTsUtilMonAlarmThreshold before setting the apexAlarmOutputUtilizationFault alarm. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexOutputTsUtilMonClearAlarmDelay = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 900))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOutputTsUtilMonClearAlarmDelay.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilMonClearAlarmDelay.setDescription("This is the time in seconds that the Output Transport Stream must be below apexOutputTsUtilMonAlarmThreshold before clearing the apexAlarmOutputUtilizationFault alarm. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexOutputTsUtilizationMonitorTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 2), )
if mibBuilder.loadTexts: apexOutputTsUtilizationMonitorTable.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizationMonitorTable.setDescription('This is a table of configuration parameters for Rate Monitoring of the Output Transport Stream Bandwidth Utilization. Utilization information is accessed via apexOutputTsUtilizationTable.')
apexOutputTsUtilizationMonitorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexOutputTsUtilMonOutputTsNum"))
if mibBuilder.loadTexts: apexOutputTsUtilizationMonitorEntry.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizationMonitorEntry.setDescription('Output Transport Rate Monitoring Configuration Table Entry.')
apexOutputTsUtilMonOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexOutputTsUtilMonOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilMonOutputTsNum.setDescription('Output Transport Stream Number.')
apexOutputTsUtilMonResetTotDropPacket = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 2, 1, 2), ResetStatisticsTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOutputTsUtilMonResetTotDropPacket.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilMonResetTotDropPacket.setDescription("Output Ts Reset total dropped packets. Setting to 'reset' resets same apexOutputTsUtilizTotalDropPackets index row in apexOutputTsUtilizationTable. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apexOutputTsConfApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 5), )
if mibBuilder.loadTexts: apexOutputTsConfApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfApplyTable.setDescription('Table of Apply Change for Output Ts Config Table. This apply is only used for apexOutputTsConfOperatingMode, apexOutputTsConfEncryptionType, and apexOutputTsConfSimulcryptMode.')
apexOutputTsConfApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 5, 1), ).setIndexNames((0, "APEX-MIB", "apexOutputTsConfApplyIndex"))
if mibBuilder.loadTexts: apexOutputTsConfApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfApplyEntry.setDescription('Output Transport Stream Apply Table Entry.')
apexOutputTsConfApplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexOutputTsConfApplyIndex.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfApplyIndex.setDescription('Index of Output Transport Stream Apply Table.')
apexOutputTsConfApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 5, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOutputTsConfApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfApplyChange.setDescription("The apply for Output Ts Config Table. This apply is only used for apexOutputTsConfOperatingMode, apexOutputTsConfEncryptionType, and apexOutputTsConfSimulcryptMode. A row in this table corresponds to the same row index in the Output Ts Config table. This parameter MUST be set to 'apply' in order for the items listed above to take effect in the APEX. This parameter MUST be set LAST after the relevant data in the Output Ts Config row has been configured. @Config(config=no, reboot=no) ")
apexOutputTsConfigTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6), )
if mibBuilder.loadTexts: apexOutputTsConfigTable.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfigTable.setDescription("This is a table of configuration parameters for Output Transport Streams. Once written, a change to apexOutputTsConfEncryptionType, apexOutputTsConfOperatingMode, or apexOutputTsConfSimulcryptMode will only take immediate effect after the appropriate apexOutputTsConfApplyChange is set to 'apply'. All other changes to this table will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexOutputTsConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1), ).setIndexNames((0, "APEX-MIB", "apexOutputTsConfOutputTsNum"))
if mibBuilder.loadTexts: apexOutputTsConfigEntry.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfigEntry.setDescription('Output Transport Stream Configuration Table Entry.')
apexOutputTsConfOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexOutputTsConfOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfOutputTsNum.setDescription('Output Transport Stream Number.')
apexOutputTsConfPidRemappingMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("disabled", 1), ("remapWithoutReuse", 2), ("remapProgramBased", 3), ("remapProgramBased2", 4), ("unrestricted", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOutputTsConfPidRemappingMode.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfPidRemappingMode.setDescription("The PID Remapping mode setting. When 'disabled', the output PIDs for all services and ancillary PIDs are the same as the input PID values. This scheme can only be used when either mapping an entire MPTS to a QAM output or when SPTS are mapped and the user has already ensured that all of the PIDs across all inputs mapped to the same output stream are unique. When 'remapWithoutReuse', the APEX will determine the output PIDs from a predetermined range of PIDs for services and ancillary PIDs. The APEX will use a scheme to limit the reuse of service PIDs for each service mapping. This scheme MUST be used for outputs in Session Control mode and in normally in UDP Port Mapping mode (exception noted below). When receiving SPTS inputs, in order to ensure there are no PID conflicts, this scheme should be selected. When 'remapProgramBased', the APEX will determine the output PIDs from a predetermined range of PIDs for services and ancillary PIDs. The APEX uses a scheme to select the PMT PID based on the program number. The PMT PID is calculated as follows: (Program Number + 1) * 16. The component PIDs are sequential after the PMT PID. This scheme only allows for a total of 15 component PIDs per program. Output program numbers are also limited (1-256). This scheme is intended to be used when in UDP Port Mapping mode at specific sites. When 'unrestricted', the APEX will allocate output PIDs as long as they are needed using the whole available PIDs range, unlike other pid-remapping modes where PID values are internally pre-allocated for different uses (PMT, components, ECM, ...). This scheme is only recommended for cases when the user need a special pre-assigned EMM pid that can't be configured in the other pid-remapping modes. PID Remapping mode changes can only occur when the output is not in use (no service, PID, or stream mapping active to the output). ")
apexOutputTsConfOperatingMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("notInUse", 0), ("sessionControl", 1), ("manualRouting", 2), ("udpMapping", 3), ("depi", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOutputTsConfOperatingMode.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfOperatingMode.setDescription('This parameter is used to set the operating mode of the output. Operating mode changes can only occur when the output is not in use (no service, PID, or stream mapping active to the output). Session Control - User must select either RTSP or RPC to communicate with external resource manager. All service mappings on output are controlled by the external manager. - Only valid when Encryption Type is set to CTE or None - Only valid when Simulcrypt Mode is set to None - PID Remapping mode should be Enabled (Without Reuse) Manual Routing - User manually maps each service - Encryption Type can be any valid setting (none, CTE, or Broadcast) - Simulcrypt Mode must be None or External EIS UDP Port Mapping - Standard UDP Port Mapping for use with VOD servers. Uses specific algorithm based on UDP Port to determine output program mappings. - Encryption Type must be None or CTE (broadcast not supported) - Simulcrypt Mode must be None or External EIS Operating mode changes can only occur when the output is not in use (no service, PID, or stream mapping active to the output). @Commit(param=apexOutputTsConfApplyChange, value=2) ')
apexOutputTsConfOutPatTsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOutputTsConfOutPatTsId.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfOutPatTsId.setDescription('Output Transport Stream ID to use for the output PAT in this Output Transport Stream. Changes to the output PAT TS ID can be made at any time and will cause the output PAT to automatically be updated to reflect the new TS ID setting. ')
apexOutputTsConfPsipEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 5), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOutputTsConfPsipEnable.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfPsipEnable.setDescription('This parameter indicates that PSIP is enabled for the Output Transport Stream. ')
apexOutputTsConfEncryptionType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("noEncryption", 0), ("cte", 1), ("broadcastEncryption", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOutputTsConfEncryptionType.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfEncryptionType.setDescription("This parameter is used to set the encryption type of the output. 'noEncryption' - All services are output in the clear 'cte' - Services on output use Common Tier Encryption. CTE parameters determine encryption mode, copy protection, and tiers. All services in CTE mode use the exact same configuration settings. - Valid for all operating modes - Simulcrypt Mode must be set to None 'broadcastEncryption' - Services on output use Broadcast Encryption. Requires connection to RDS (DAC) to get EMMs and Rights Meta Data (tiers, encryption mode, and copy protection settings) for each individual service. - Only valid when Operating Mode is Manual Routing. - Simulcrypt Mode must be set to None @Commit(param=apexOutputTsConfApplyChange, value=2) ")
apexOutputTsConfSimulcryptMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("externalEIS", 1), ("internalEIS", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOutputTsConfSimulcryptMode.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfSimulcryptMode.setDescription("This parameter is used to set the Simulcrypt mode of the output. The actual behavior is disable/enable (none/externalEIS). It can be set to externalEIS if the Encryption Algorithm is set to 'dvb-csa-simulcrypt and the Operating Mode is set to 'ManualRouting' or 'udpMapping'. It only can be none if there are no SCGs provisioned on that output TS. 'none' - Used for normal Mediacypher only encryption (CTE or Broadcast Encryption). 'externalEIS' - Used to indicate an external EIS can control the encryption of all services on the output. - Only valid when: - Operating Mode is set to 'ManualRouting' or 'udpMapping' - Encryption Algorithm is set to 'dvb-csa-simulcrypt' 'internalEIS' - Not supported at this time and is invalid to select. @Commit(param=apexOutputTsConfApplyChange, value=2) ")
apexOutputTsConfPcrLess = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 8), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexOutputTsConfPcrLess.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsConfPcrLess.setDescription('This parameter indicates that PCR-less is enabled for the Output Transport Stream. ')
apexOutputTsStatusInvalidApplyText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsStatusInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusInvalidApplyText.setDescription("When apexOutputTsConfApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a related entry that was invalid. ")
apexOutputTsUtilizationSamplePeriod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizationSamplePeriod.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizationSamplePeriod.setDescription('Sample Period for Output Transport Stream Bandwidth Utilization Rate Monitoring. This parameter indicates the length of time in milliseconds the stream is monitored during a single sample. This can be used with apexOutputTsUtilizNumSamples to determine the amount of time or percent of time the stream was monitored during a fifteen minute sampling interval.')
apexOutputTsUtilizationTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2), )
if mibBuilder.loadTexts: apexOutputTsUtilizationTable.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizationTable.setDescription('This is a table of status parameters containing bandwidth utilization for Output Transport Streams. The sampling interval is up to fifteen minutes. There is a rolling average as well as last sample, peak, and minimum information. There is overflow information and dropped packet counts. This table is indexed by Output Transport Stream Number.')
apexOutputTsUtilizationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexOutputTsUtilizOutpuTsNum"))
if mibBuilder.loadTexts: apexOutputTsUtilizationEntry.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizationEntry.setDescription('Output Transport Stream Bandwidth Utilization Table Entry.')
apexOutputTsUtilizOutpuTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexOutputTsUtilizOutpuTsNum.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizOutpuTsNum.setDescription('Output Transport Stream Number.')
apexOutputTsUtilizDataFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("samplingComplete", 1), ("samplingIncomplete", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizDataFlag.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizDataFlag.setDescription("Flag to indicate whether the Output Transport Stream was monitored a full fifteen minute sampling interval and a complete set of samples was obtained. 'samplingComplete' - indicates sampling complete with good samples. 'samplingIncomplete' - indicates incomplete sampling due to APEX startup or OTS rate changed during the period.")
apexOutputTsUtilizNumSamples = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizNumSamples.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizNumSamples.setDescription('Number of samples included in the data. This can be used with apexOutputTsUtilizationSamplePeriod to determine the amount of time or percent of time the stream was monitored during the sampling interval.')
apexOutputTsUtilizThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("noError", 1), ("alarmThresholdReached", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizThreshold.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizThreshold.setDescription('Indicates whether there is a utilization error has occurred. The error occurs when Output Utilization Alarm Threshold has been reached for Output Utilization Set Alarm Delay seconds and will clear after the output is below the Output Utilization Alarm Threshold for Output Utilization Clear Alarm Delay. This field is also cleared when the QAM output is disabled.')
apexOutputTsUtilizTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizTime.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizTime.setDescription('Time in GPS seconds (apexSystemTime) that this table row was saved. When GPS time is not available to the apex (apexSystemTime=0) a clock maintained inside the APEX will be used. This clock starts at GPS time zero when the apex is booted. The APEX will use real GPS time if and when GPS time becomes available to the APEX.')
apexOutputTsUtilizCurPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizCurPercent.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizCurPercent.setDescription('Percent utilization of most recently taken sample.')
apexOutputTsUtilizAvgPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizAvgPercent.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizAvgPercent.setDescription('Average percent utilization over the rolling sampling interval.')
apexOutputTsUtilizMinPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizMinPercent.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizMinPercent.setDescription('Minimum percent utilization for a sample during the rolling sampling interval.')
apexOutputTsUtilizPeakPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizPeakPercent.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizPeakPercent.setDescription('Peak percent utilization for a sample during the rolling sampling interval.')
apexOutputTsUtilizCurRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 10), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizCurRate.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizCurRate.setDescription('Utilization of most recently taken sample in bits per second (bps).')
apexOutputTsUtilizAvgRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 11), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizAvgRate.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizAvgRate.setDescription('Average utilization for the rolling sampling interval in bits per second (bps).')
apexOutputTsUtilizMinRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 12), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizMinRate.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizMinRate.setDescription('Minimum utilization for a sample during this sampling interval in bits per second (bps).')
apexOutputTsUtilizPeakRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 13), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizPeakRate.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizPeakRate.setDescription('Peak utilization for a sample during the rolling sampling interval in bits per second (bps).')
apexOutputTsUtilizOverflow = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("noError", 1), ("overflow", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizOverflow.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizOverflow.setDescription('Indicates whether an overflow error has occurred. This field will clear if the output has no overflows. This field is also cleared when the QAM output is disabled.')
apexOutputTsUtilizCurDropPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 15), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizCurDropPackets.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizCurDropPackets.setDescription('MPEG packets dropped during the most recently taken sample.')
apexOutputTsUtilizPeakDropPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 16), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizPeakDropPackets.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizPeakDropPackets.setDescription('Peak MPEG packets dropped for a sample during the rolling sampling interval.')
apexOutputTsUtilizRollingDropPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 17), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizRollingDropPackets.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizRollingDropPackets.setDescription('Total MPEG packets dropped during the rolling sampling interval.')
apexOutputTsUtilizTotalDropPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 18), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizTotalDropPackets.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizTotalDropPackets.setDescription('Total MPEG packets dropped on the QAM Output. Can be reset using apexOutputTsUtilMonResetTotDropPacket.')
apexOutputTsUtilizThresholdAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizThresholdAlarm.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizThresholdAlarm.setDescription('Current fault condition of apexOutputTsUtilizThreshold. This is the apexAlarmOutputUtilizationFault level for this output.')
apexOutputTsUtilizOverflowAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsUtilizOverflowAlarm.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsUtilizOverflowAlarm.setDescription('Current fault condition of apexOutputTsUtilizOverflow. This is the apexAlarmOutputOverflow level for this output.')
apexOutputTsStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5), )
if mibBuilder.loadTexts: apexOutputTsStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusTable.setDescription('Table of Output Transport Status. Indexed by Output Transport Stream number.')
apexOutputTsStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1), ).setIndexNames((0, "APEX-MIB", "apexOutputTsStatusOutputTsNum"))
if mibBuilder.loadTexts: apexOutputTsStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusEntry.setDescription('A row in the Output Transport Stream Status table.')
apexOutputTsStatusOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexOutputTsStatusOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusOutputTsNum.setDescription('Output Transport Stream Number.')
apexOutputTsStatusProgramsPerTs = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsStatusProgramsPerTs.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusProgramsPerTs.setDescription('Number of Output Programs supported on this Output Transport Stream. ')
apexOutputTsStatusServicesMapped = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsStatusServicesMapped.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusServicesMapped.setDescription('Number of services currently mapped to the output.')
apexOutputTsStatusAncillaryPidsMapped = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsStatusAncillaryPidsMapped.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusAncillaryPidsMapped.setDescription('Number of ancillary PIDs currently mapped to the output.')
apexOutputTsStatusInputStreamsMapped = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsStatusInputStreamsMapped.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusInputStreamsMapped.setDescription('Number of input streams currently mapped to the output.')
apexOutputTsStatusFault = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsStatusFault.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusFault.setDescription('Highest current fault condition associated with this Output Transport Stream. The following Alarms are included: - apexAlarmOutputOverflow - apexAlarmOutputUtilizationFault - apexAlarmQamModuleFault - apexAlarmQamRfPortFault - apexAlarmQamChannelFault ')
apexOutputTsStatusServicesInError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsStatusServicesInError.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusServicesInError.setDescription('Number of services in error mapped to the output stream.')
apexOutputTsStatusDepiSessionsMapped = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsStatusDepiSessionsMapped.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusDepiSessionsMapped.setDescription('Number of DEPI sessions currently mapped to the output.')
apexOutputTsStatusMessageGenerationNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsStatusMessageGenerationNum.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusMessageGenerationNum.setDescription('Number of messages generated (DVB tables) currently in the output.')
apexOutputTsStatusScgsProvisioned = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsStatusScgsProvisioned.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusScgsProvisioned.setDescription('Number of SCGs provisioned currently in the output.')
apexOutputTsStatusServicesMuxed = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsStatusServicesMuxed.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsStatusServicesMuxed.setDescription('Number of services successfully multiplexed.')
apexPsiDetectionEnabled = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 1), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsiDetectionEnabled.setStatus('current')
if mibBuilder.loadTexts: apexPsiDetectionEnabled.setDescription("The loss of input PSI detection enabled or disabled setting. When enabled, the APEX will check for missing input PSI (PATs and PMTs) based on the PSI detection timeout value. When an input PSI message is determined to be missing, the APEX will assume the input service or services are no longer being streamed and unmap the service(s). This checking only occurs after an initial PSI message has been extracted. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsiDetectionTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 21600))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsiDetectionTimeout.setStatus('current')
if mibBuilder.loadTexts: apexPsiDetectionTimeout.setDescription("The loss of input PSI detection timeout value. When PSI detection is enabled, this is the number of seconds the APEX will use to determine if an input PSI message is missing. Each PSI message previously extracted will be checked to determine that it is still being received based on this setting. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsiRangeStart = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsiRangeStart.setStatus('current')
if mibBuilder.loadTexts: apexPsiRangeStart.setDescription("Minimum PSI version number. Used to limit the APEX to use a specific range of PSI numbers. Set this to 0 to allow the APEX to use the full range of PSI version numbers (requires apexPsiRangeStop to be set to 31). Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsiRangeStop = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsiRangeStop.setStatus('current')
if mibBuilder.loadTexts: apexPsiRangeStop.setDescription("Maximum PSI version number. Used to limit the APEX to use a specific range of PSI numbers. Set this to 31 to allow the APEX to use the full range of PSI version numbers (requires apexPsiRangeStart to be set to 0). Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPatVersionIncrement = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPatVersionIncrement.setStatus('current')
if mibBuilder.loadTexts: apexPatVersionIncrement.setDescription("Increment of PAT version upon reboot. Used to force the APEX to use a different PAT version number upon rebooting. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPmtVersionIncrement = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPmtVersionIncrement.setStatus('current')
if mibBuilder.loadTexts: apexPmtVersionIncrement.setDescription("Increment of PMT version upon reboot. Used to force the APEX to use a different PMT version number upon rebooting. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEcmEmmFirstPid = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 8191))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEcmEmmFirstPid.setStatus('current')
if mibBuilder.loadTexts: apexEcmEmmFirstPid.setDescription("First ECM-EMM PID when PID Remapping is disabled on an output stream. This PID along with the apexEcmEmmNumberPids defines a range of PIDs that the APEX will use for all ECMs and EMMs. These configuration settings allow a user to select a range that other service and ancillary PIDs will not use. This allows the APEX to use PIDs for ECMs and EMMs without having PID collisions. PID collisions will cause the APEX to select another ECM or EMM PID causing momentary glitches of the output video and audio. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEcmEmmNumberPids = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEcmEmmNumberPids.setStatus('current')
if mibBuilder.loadTexts: apexEcmEmmNumberPids.setDescription("Number of ECM-EMM PIDs to use when PID Remapping is disabled on an output stream. Refer to the apexEcmEmmFirstPid parameter for a complete description. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexProgramBasedPmtOffset = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 1), ValueRangeConstraint(2, 2), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexProgramBasedPmtOffset.setStatus('current')
if mibBuilder.loadTexts: apexProgramBasedPmtOffset.setDescription("Program Based PID Remapping PMT PID offset. Determines the first PMT PID to use when Program Based algorithm selected. PMT PID is calculated as: (Program Number + Offset) * 16 Program Numbers can range from 1 - 255, allowing for PMTs to start at 0x0020 or 0x0030 up to 0x1000 and 0x1010. Changes to offset will NOT require a reboot, but if there are any service mappings already in use on an output in Program Based mode, then the change will NOT take effect and the user will have to remove all mappings on outputs in Program Based mode. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsiStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2), )
if mibBuilder.loadTexts: apexPsiStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexPsiStatusTable.setDescription('The following table contains a list of messages that are either being extracted from the input side or being inserted to the output side of the apex. On the input side all extracted messages that are being used by the APEX are displayed. On the output side, only PATs, PMTs, and CATs are displayed. These messages were either given to the apex when it is in external mode or created by the apex when it is in internal mode.')
apexPsiStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexPsiStatusTableType"), (0, "APEX-MIB", "apexPsiStatusIndex"), (0, "APEX-MIB", "apexPsiStatusPid"), (0, "APEX-MIB", "apexPsiStatusMessageType"), (0, "APEX-MIB", "apexPsiStatusProgramNumber"), (0, "APEX-MIB", "apexPsiStatusSegment"), (0, "APEX-MIB", "apexPsiStatusPart"))
if mibBuilder.loadTexts: apexPsiStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexPsiStatusEntry.setDescription('PSI Table Entry.')
apexPsiStatusTableType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("inputPsiTable", 1), ("outputPsiTable", 2))))
if mibBuilder.loadTexts: apexPsiStatusTableType.setStatus('current')
if mibBuilder.loadTexts: apexPsiStatusTableType.setDescription('Indicates whether this message is extracted from an input or being inserted on an output.')
apexPsiStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 784)))
if mibBuilder.loadTexts: apexPsiStatusIndex.setStatus('current')
if mibBuilder.loadTexts: apexPsiStatusIndex.setDescription('Indicates the input index or output number for which this message applies. For input, this is the index into the apexInputTsStatTable (1..784). For output, this is the Output Transport Stream number (1..48). ')
apexPsiStatusPid = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 8191)))
if mibBuilder.loadTexts: apexPsiStatusPid.setStatus('current')
if mibBuilder.loadTexts: apexPsiStatusPid.setDescription('Indicates the PID that this message is contained in.')
apexPsiStatusMessageType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)))
if mibBuilder.loadTexts: apexPsiStatusMessageType.setStatus('current')
if mibBuilder.loadTexts: apexPsiStatusMessageType.setDescription('Indicates the MPEG message type of this message.')
apexPsiStatusProgramNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)))
if mibBuilder.loadTexts: apexPsiStatusProgramNumber.setStatus('current')
if mibBuilder.loadTexts: apexPsiStatusProgramNumber.setDescription('Indicates the Program Number which this message is part of. When a message is not specifically related to a program, this value is 0.')
apexPsiStatusSegment = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256)))
if mibBuilder.loadTexts: apexPsiStatusSegment.setStatus('current')
if mibBuilder.loadTexts: apexPsiStatusSegment.setDescription('Indicates the segment number of this message. Useful for PAT messages. Otherwise this is 0.')
apexPsiStatusPart = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)))
if mibBuilder.loadTexts: apexPsiStatusPart.setStatus('current')
if mibBuilder.loadTexts: apexPsiStatusPart.setDescription('Since a message can be 1024 bytes long the message may divided into parts. Each part of the message is indexed using this index.')
apexPsiStatusBody = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsiStatusBody.setStatus('current')
if mibBuilder.loadTexts: apexPsiStatusBody.setDescription('Raw ASCII hex of the PSI message.')
apexPsiStatusGpsTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsiStatusGpsTime.setStatus('current')
if mibBuilder.loadTexts: apexPsiStatusGpsTime.setDescription('The GPS time when the PSI was added to the table.')
apexOutputProgramTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2), )
if mibBuilder.loadTexts: apexOutputProgramTable.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramTable.setDescription('This table shows the input program to output program mapping status.')
apexOutputProgramEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexOutputProgramIndex"))
if mibBuilder.loadTexts: apexOutputProgramEntry.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramEntry.setDescription('Output Program Table Entry.')
apexOutputProgramIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexOutputProgramIndex.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramIndex.setDescription('Output Program Table Index. ')
apexOutputProgramInputTsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramInputTsIndex.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramInputTsIndex.setDescription('The index into the apexInputTsStatTable.')
apexOutputProgramInputProgNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramInputProgNum.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramInputProgNum.setDescription('Input MPEG Program Number.')
apexOutputProgramOutputProgNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramOutputProgNum.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramOutputProgNum.setDescription('Output MPEG Program Number.')
apexOutputProgramRoutingStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramRoutingStatus.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramRoutingStatus.setDescription('Current Program Routing Status.')
apexOutputProgramInputPreEncrypted = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("clear", 1), ("preEncrypted", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramInputPreEncrypted.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramInputPreEncrypted.setDescription('Indicates whether the program was pre-encrypted. Pre-encryption status is determined by the presence or absence of a CA ECM descriptor within the input PMT.')
apexOutputProgramOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 48))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramOutputTsNum.setDescription('Output Transport Stream Number.')
apexOutputProgramError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramError.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramError.setDescription('Indicates if the program is in error.')
apexOutputProgramEncryptionMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("none", 0), ("full", 1), ("fwk", 2), ("fpk", 3), ("clear", 4), ("unencrypted", 5), ("preEncrypted", 6), ("unencryptedWithCci", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramEncryptionMode.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramEncryptionMode.setDescription('Currently configured encryption mode for the program. none - indicates the program is not being encrypted for CTE or Broadcast encryption. unencrypted - Applies to Broadcast services only. Unencrypted services are treated the same as clear services (no encryption). preEncrypted - Applies to Broadcast services only. Input program pre-encryption checking is applied. Output program is not encrypted by the APEX, regardless if input encrypted or not. unencryptedWithCci - True unencrypted mode where packets are not scrambled, but ECMs are inserted and ECM CA reference is added to output PMT (PRK contains Copy Protection information).')
apexOutputProgramEncryptionStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramEncryptionStatus.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramEncryptionStatus.setDescription('Current Program Encryption Status.')
apexOutputProgramEcmServiceId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramEcmServiceId.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramEcmServiceId.setDescription('The ECM service ID used when this program is encrypted. This is the service ID used in all ECM messages for this program.')
apexOutputProgramCciLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("notApplicable", 0), ("notDefined", 1), ("copyFreely", 2), ("copyOnce", 3), ("copyNever", 4), ("noMoreCopies", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramCciLevel.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramCciLevel.setDescription('Copy protection CCI Level. This is only applicable when the program is being encrypted.')
apexOutputProgramApsLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("notApplicable", 0), ("notDefined", 1), ("off", 2), ("splitBurstOff", 3), ("splitBurst2Line", 4), ("splitBurst4Line", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramApsLevel.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramApsLevel.setDescription('Copy protection Analog Protection Services Level. This is only applicable when the program is being encrypted.')
apexOutputProgramCitSetting = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("disabled", 1), ("enabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramCitSetting.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramCitSetting.setDescription('Copy protection Constraint Image Trigger setting. This is only applicable when the program is being encrypted.')
apexOutputProgramNumberTiers = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramNumberTiers.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramNumberTiers.setDescription('The number of program tiers. This is only applicable when the program is being encrypted.')
apexOutputProgramTierData = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 16), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramTierData.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramTierData.setDescription('Current Program Tier Data. Tier information is in hexadecimal format. Up to 7 tiers of information are provided for each program. Tier information for each program consists of 8 bytes of information. First 4 bytes are the program tier value in hexadecimal. Next 4 bytes are the tier type in hexadecimal format. This is only applicable when the program is being encrypted.')
apexOutputProgramSourceId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramSourceId.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramSourceId.setDescription("Broadcast Encryption Source ID. Only applies to programs when the input type is Gbe and the output encryption mode is Broadcast Encryption. (apexOutputTsConfEncryptionType set to 'broadcastEncryption') ")
apexOutputProgramProviderId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramProviderId.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramProviderId.setDescription("Broadcast Encryption Provider ID. Only applies to programs when the input type is Gbe and the output encryption mode is Broadcast Encryption. (apexOutputTsConfEncryptionType set to 'broadcastEncryption') ")
apexOutputProgramProgramType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("programsDerived", 1), ("programInfoProvided", 2), ("programEcmProvided", 3), ("programInfoAndEcmProvided", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramProgramType.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramProgramType.setDescription("Indicates how programs are to be built by the encryptor. 1 - programsDerived (default) - programs are derived where the encryptor builds the programs internally for the specified service. The program related ECM messages and program name/info messages are derived from the service RMD data and internal schedules. This program type is typically used for subscription services. 2 - programInfoProvided - the encryptor should build the programs based on the program information provided by the controller via the <programInfo> element of the ServiceProgramReply payload. The service RMD data is still used to generate the program related ECM messages. 3 - programEcmProvided - the encryptor should use pre-built ECM program messages as provided by the controller via the <programEcm> element of the ServiceProgramReply payload. For this program type, the controller provides the schedules; however, the encryptor must default much of the program info message since not detailed program information is provided. DTA content protection encryption makes use of the 'programEcmProvided' program type since the ECM messages cannot be derived by the encryptor. 4 - programInfoAndEcmProvided - the encryptor should build the programs based on both the program information and pre-built ECM messages provided by the controller via the <programInfo> and <programEcm> elements of the ServiceProgramReply payload. ")
apexOutputProgramDtaEncryptionMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("dtaWithCcm", 1), ("dtaWithoutCcm", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputProgramDtaEncryptionMode.setStatus('current')
if mibBuilder.loadTexts: apexOutputProgramDtaEncryptionMode.setDescription("This parameter identifies whether a service in Full Encryption is in Modified Privacy Mode (DTA) and whether the DTA service has CCM messages. This parameter is applicable only when apexOutputProgramEncryptionMode is 'full'. In other encryption modes this value is ignored. notApplicable - Non DTA Service and/or No DTA CA descriptor found dtaWithCcm - DTA, Full Encryption, Modified Privacy Mode, CCM present dtaWithoutCcm - DTA, Full Encryption, Modified Privacy Mode, CCM absent. ")
apexAcpStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2), )
if mibBuilder.loadTexts: apexAcpStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexAcpStatusTable.setDescription('This table shows the status of the Control Word Generating ACPs.')
apexAcpStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexAcpStatusIndex"))
if mibBuilder.loadTexts: apexAcpStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexAcpStatusEntry.setDescription('Output Program Table Entry.')
apexAcpStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6)))
if mibBuilder.loadTexts: apexAcpStatusIndex.setStatus('current')
if mibBuilder.loadTexts: apexAcpStatusIndex.setDescription('Acp Status Index. Index for one of six control word generating ACPs.')
apexAcpUnitAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 11))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAcpUnitAddress.setStatus('current')
if mibBuilder.loadTexts: apexAcpUnitAddress.setDescription('The unit address of the ACP in ASCII Hex. The Unit address is a 5 byte value.')
apexAcpHealthByte = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAcpHealthByte.setStatus('current')
if mibBuilder.loadTexts: apexAcpHealthByte.setDescription('The health byte of the ACP. Indicates whether the ACP has intact fuses. The health should read 255 (hex 0xFF) for all APEX ACPs. Otherwise, the ACP will not properly function.')
apexAcpEvenCsn = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAcpEvenCsn.setStatus('current')
if mibBuilder.loadTexts: apexAcpEvenCsn.setDescription('The Even Category Sequence Number of the ACP. Should match the even CSN assigned by DAC, if not may indicate a communications problem.')
apexAcpOddCsn = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAcpOddCsn.setStatus('current')
if mibBuilder.loadTexts: apexAcpOddCsn.setDescription('The Odd Category Sequence Number of the ACP. Should match the odd CSN assigned by DAC, if not may indicate a communications problem.')
apexAcpUnitAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAcpUnitAttribute.setStatus('current')
if mibBuilder.loadTexts: apexAcpUnitAttribute.setDescription('Unit attribute byte is made available to verify that the MC2.1 was properly unit created during factory production.')
apexUdpMapPreEncryptCheck = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 1, 1), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapPreEncryptCheck.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapPreEncryptCheck.setDescription("UDP Mapping pre-encryption checking. Indicates if the APEX is to check if input services are pre-encrypted or clear. Pre-encrypted is determined by examining the input PMT for a CA ECM descriptor (any CA ECM descriptor). If pre-encrypted, setting this flag will cause the APEX to pass through ECM PID for the service. For input services that have a GI CA ECM descriptor, the APEX will also pass through the PIT message (extract and re-insert the PIT). The output PMT for pre-encrypted services will contain a CA ECM descriptor (referencing the ECM PID). When PID Remapping is enabled, pre-encryption for a service is only valid when the input ECM PID is on a different PID than the associated PMT PID. If this flag is set to pre-encryption and the input service is not pre-encrypted, then the setting of this flag has no affect on the output service. Once written, the change to this parameter will take immediate effect and all mappings will be removed. Mappings will not be re-added until apexUdpMapApplyChange is set to 'apply' for all transport streams. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apexUdpMapModeBits = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapModeBits.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapModeBits.setDescription("Value that will be placed in the two MSBs of each the calculated UDP port number (bits 14 and 15). Once written, the change to this parameter will take immediate effect and all mappings will be removed. Mappings will not be re-added until apexUdpMapApplyChange is set to 'apply' for all transport streams. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apexUdpMapTsOffset = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapTsOffset.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapTsOffset.setDescription("Used as part of the Standardized UDP Port calculation. Transport Stream index can be relative 0 or relative 1. Once written, the change to this parameter will take immediate effect and all mappings will be removed. Mappings will not be re-added until apexUdpMapApplyChange is set to 'apply' for all transport streams. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apexUdpMapFollowDtcp = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 1, 4), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapFollowDtcp.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapFollowDtcp.setDescription("Determines how the copy protection settings (CCI, APS, and CIT) within the PRK will be set. All outputs in UDP Port Mapping mode will use this setting for following input DTCP. Disabled - Use CTE configured settings if output in CTE encryption mode Enabled - Follow input DTCP Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apexUdpMapApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 2), )
if mibBuilder.loadTexts: apexUdpMapApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapApplyTable.setDescription('Table of Apply Change for the data for UDP Map Table. A row in this table corresponds to the same row index in the UDP Map table. ')
apexUdpMapApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexUdpMapApplyOutputTsNum"))
if mibBuilder.loadTexts: apexUdpMapApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapApplyEntry.setDescription('UDP Map Apply Table Entry.')
apexUdpMapApplyOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexUdpMapApplyOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapApplyOutputTsNum.setDescription('The index of the Udp Map Apply Table.')
apexUdpMapApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 2, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapApplyChange.setDescription("The Apply for the row of data in the Udp Map Table. A row in this table corresponds to the same row index in the Udp Map table. This parameter MUST be set to 'apply' in order for any of the data in the Udp Map Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the Udp Map Table row has been configured. @Config(config=no, reboot=no) ")
apexUdpMapTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 3), )
if mibBuilder.loadTexts: apexUdpMapTable.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapTable.setDescription("Table of data for Udp Mapping. There are 48 rows in this table. Each row corresponds to one QAM channel. Once written, the change to this table will only take immediate effect after apexUdpMapApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexUdpMapApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apexUdpMapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexUdpMapOutputTsNum"))
if mibBuilder.loadTexts: apexUdpMapEntry.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapEntry.setDescription('Udp Mapping Table Entry.')
apexUdpMapOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexUdpMapOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapOutputTsNum.setDescription('Index of Udp Mapping Table. ')
apexUdpMapInputInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapInputInterface.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapInputInterface.setDescription("Input GBE port. Range: '1 - 4' = GBE port number ")
apexUdpMapStartProgNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapStartProgNum.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapStartProgNum.setDescription('Indicates the first program number in a sequential range of programs that are to be routed to the same output transport stream. ')
apexUdpMapNumberProgs = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapNumberProgs.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapNumberProgs.setDescription('Indicates the number of programs that are to be mapped to the output transport stream. One UDP port is opened for each program mapped to the output transport stream. ')
apexUdpMapMulticastTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4), )
if mibBuilder.loadTexts: apexUdpMapMulticastTable.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastTable.setDescription("Table of data for UDP Map Multicast. Each entry in this table identifies a Gigabit Ethernet input stream that is used for multicast UDP Port Mapping. Once written, the change to this table will only take immediate effect after apexUdpMapMulticastApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexUdpMapMulticastApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apexUdpMapMulticastEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexUdpMapMulticastIndex"))
if mibBuilder.loadTexts: apexUdpMapMulticastEntry.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastEntry.setDescription('UDP Map Multicast Table Entry.')
apexUdpMapMulticastIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256)))
if mibBuilder.loadTexts: apexUdpMapMulticastIndex.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastIndex.setDescription('Index of UDP Map Multicast Stream Table.')
apexUdpMapMulticastEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapMulticastEnable.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastEnable.setDescription('Indicates whether this UDP Map Multicast entry is enabled or disabled. ')
apexUdpMapMulticastInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapMulticastInterface.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastInterface.setDescription("Number of the input interface (Port number). Range: '0' = Not Applicable GBE = 1-4 ")
apexUdpMapMulticastUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapMulticastUdp.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastUdp.setDescription('GBE Input UDP Port. Range: 0-65535 ')
apexUdpMapMulticastMcastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapMulticastMcastIp.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastMcastIp.setDescription('The Multicast receive IP address. An IP address of 0.0.0.0 indicates singlecast only. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apexUdpMapMulticastSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapMulticastSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastSourceIp.setDescription('This is the IP address of the source device. This field is only used when a multicast IP address is also specified. ')
apexUdpMapMulticastApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 5), )
if mibBuilder.loadTexts: apexUdpMapMulticastApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastApplyTable.setDescription('Table of Apply Change for the UDP Map Multicast Table. A row in this table corresponds to the same row index in the UDP Map Multicast Table (apexUdpMapMulticastTable). ')
apexUdpMapMulticastApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 5, 1), ).setIndexNames((0, "APEX-MIB", "apexUdpMapMulticastApplyIndex"))
if mibBuilder.loadTexts: apexUdpMapMulticastApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastApplyEntry.setDescription('UDP Map Multicast Apply Table Entry.')
apexUdpMapMulticastApplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256)))
if mibBuilder.loadTexts: apexUdpMapMulticastApplyIndex.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastApplyIndex.setDescription('The index of the UDP Map Multicast Table.')
apexUdpMapMulticastApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 5, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexUdpMapMulticastApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastApplyChange.setDescription("The Apply for the row of data in the UDP Map Multicast Table. A row in this table corresponds to the same row index in the UDP Map Multicast Table. This parameter MUST be set to 'apply' in order for any of the data in the UDP Map Multicast Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the UDP Map Multicast Table row has been configured. @Config(config=no, reboot=no) ")
apexUdpMapMulticastInvalidApplyText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexUdpMapMulticastInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapMulticastInvalidApplyText.setDescription("When apexUdpMapMulticastApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a related entry that was invalid. ")
apexUdpMapStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2, 2), )
if mibBuilder.loadTexts: apexUdpMapStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapStatusTable.setDescription('Table of status data for Udp Mapping. There are 48 rows in this table. Each row corresponds to one QAM channel. ')
apexUdpMapStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexUdpMapStatusOutputTsNum"))
if mibBuilder.loadTexts: apexUdpMapStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapStatusEntry.setDescription('Udp Mapping Status Table Entry.')
apexUdpMapStatusOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexUdpMapStatusOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapStatusOutputTsNum.setDescription('Index of Udp Mapping Status Table.')
apexUdpMapInvalidApplyText = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexUdpMapInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexUdpMapInvalidApplyText.setDescription('When apexUdpMapApplyChange is set to applyNotInProgressInvalidData, this entry may contain a text description of what was wrong with the data. ')
apexRdsIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsIpAddr.setStatus('current')
if mibBuilder.loadTexts: apexRdsIpAddr.setDescription("Rights Data Server IP address. Class A, B, or C IP address of the RDS. Changing this parameter will cause the APEX to perform an EMM rollover sequence. This parameter is not changed by apexRdsSetDefault. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexRdsTcpPort = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsTcpPort.setStatus('current')
if mibBuilder.loadTexts: apexRdsTcpPort.setDescription("Rights Data Server TCP port. Changing this parameter will cause the APEX to perform an EMM rollover sequence. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexRdsProgramEpochDuration = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(60, 1440))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsProgramEpochDuration.setStatus('current')
if mibBuilder.loadTexts: apexRdsProgramEpochDuration.setDescription("The Program Epoch Duration in minutes. Changes are not applied until the end of the current epoch. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexRdsCetPollInterval = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(15, 1440))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsCetPollInterval.setStatus('current')
if mibBuilder.loadTexts: apexRdsCetPollInterval.setDescription("Interval that the APEX will use to poll for CSN/State information. After receiving the CSN/State information, the APEX will determine if it needs to retrieve new EMMs. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexRdsCetRefresh = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("refreshNotInProgress", 1), ("refresh", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsCetRefresh.setStatus('current')
if mibBuilder.loadTexts: apexRdsCetRefresh.setDescription("Setting to 'refresh' forces the APEX to retrieve new EMMs (APEX performs an EMM rollover sequence). Once written, the change to this parameter will take effect immediately. @Config(config=no, reboot=no) ")
apexRdsRmdPollInterval = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(15, 1440))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsRmdPollInterval.setStatus('current')
if mibBuilder.loadTexts: apexRdsRmdPollInterval.setDescription("Interval that the APEX will use to poll for RMD information. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexRdsRmdRefresh = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("refreshNotInProgress", 1), ("refresh", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsRmdRefresh.setStatus('current')
if mibBuilder.loadTexts: apexRdsRmdRefresh.setDescription("Setting to 'refresh' forces the APEX to retrieve new RMD data from RDS server. Once written, the change to this parameter will take effect immediately. @Config(config=no, reboot=no) ")
apexRdsPollRandomization = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsPollRandomization.setStatus('current')
if mibBuilder.loadTexts: apexRdsPollRandomization.setDescription("RDS Polling Randomization Time. Maximum time in minutes to delay polling at startup in order to avoid having many APEXs polling the RDS simultaneously. The actual delay time will be randomly calculated by the APEX and will be no greater than this value. A value of zero means no delay and the APEX will poll immediately at startup. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexRdsSetDefault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("notSettingToDefault", 1), ("setToDefault", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsSetDefault.setStatus('current')
if mibBuilder.loadTexts: apexRdsSetDefault.setDescription("This parameter sets apexRdsCetPollInterval, apexRdsPollRandomization, apexRdsTcpPort, apexRdsRmdPollInterval, apexRdsProgramEpochDuration and apexRdsInitialEcmRetryInterval to default values. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'.. @Config(config=no, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) ")
apexRdsErrorCountReset = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 10), ResetStatisticsTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsErrorCountReset.setStatus('current')
if mibBuilder.loadTexts: apexRdsErrorCountReset.setDescription('Resets RDS Communication error counts. Once written, the change to this parameter will take effect immediately. @Config(config=no, reboot=no) ')
apexRdsConfigApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 11), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexRdsConfigApplyChange.setDescription("The Apply for RDS configuration items. This parameter MUST be set to 'apply' in order for any of the following to take effect: apexRdsIpAddr apexRdsTcpPort apexRdsPollRandomization apexRdsCetPollInterval apexRdsRmdPollInterval apexRdsProgramEpochDuration apexRdsConfigRds2Enable apexRdsConfigServerUrl This parameter MUST be set LAST after all associated parameters has been configured. @Config(config=no, reboot=no) ")
apexRdsConfigRds2Enable = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 12), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsConfigRds2Enable.setStatus('current')
if mibBuilder.loadTexts: apexRdsConfigRds2Enable.setDescription("Indicates whether RDS-2 Interface is enabled or disabled. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexRdsConfigServerUrl = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 13), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsConfigServerUrl.setStatus('current')
if mibBuilder.loadTexts: apexRdsConfigServerUrl.setDescription("Rights Data Server Uniform Resource Locator (RDS-2 Server URL). This is introduced to support RDS 2 Interface since APEX 2.5 release. The syntax of this parameter shall be: [http://]<RDS-2 Server IP>[:<TCP Port>]/<Server Root Directory Path> Note: 1. The 'http://' protocol part is default and optional, 2. 'RDS-2 Server IP' is Class A, B, or C IP address, 3. 'TCP Port' is optional, if not present, default to 80, 4. 'Server Root Directory Path' is not optional e.g. http://192.168.30.107:1020/rds/controller 192.168.30.107:1020/rds/controller 192.168.30.107/rds/controller (default port is 80) The apex host will validate this parameter upon applying change, and set the following three status parameter accordingly: - apexRdsStatusServerIp - apexRdsStatusServerPort - apexRdsStatusServerRootDirPath - apexRdsStatusValidation This parameter is not changed by apexRdsSetDefault. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexRdsInitialEcmRetryInterval = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexRdsInitialEcmRetryInterval.setStatus('current')
if mibBuilder.loadTexts: apexRdsInitialEcmRetryInterval.setDescription("This parameter is used to configure RDS2 server ECM retry time. This value defines when the next retry will be performed by the host. Units are seconds. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexRdsConnectionStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("notConnectedInHoldoff", 1), ("notConnectedNoRdsIpAddress", 2), ("csnAquisitionSuccessful", 3), ("emmAquisitionSuccessful", 4), ("serviceListAquisitionSuccessful", 5), ("rmdAquisitionSuccessful", 6), ("csnAquisitionFailed", 7), ("emmAquisitionFailed", 8), ("serviceListAquisitionFailed", 9), ("rmdAquisitionFailed", 10)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsConnectionStatus.setStatus('current')
if mibBuilder.loadTexts: apexRdsConnectionStatus.setDescription('Rights Data Server connection status.')
apexRdsCurrentCsn = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsCurrentCsn.setStatus('current')
if mibBuilder.loadTexts: apexRdsCurrentCsn.setDescription('This is the current CSN that the APEX is using for encrypting all programs. ')
apexRdsCetNextPollTime = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsCetNextPollTime.setStatus('current')
if mibBuilder.loadTexts: apexRdsCetNextPollTime.setDescription('Time in seconds until the next CET polling period.')
apexRdsRmdNextPollTime = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsRmdNextPollTime.setStatus('current')
if mibBuilder.loadTexts: apexRdsRmdNextPollTime.setDescription('Time in seconds until the next RMD polling period.')
apexRdsEmmStatusTableSize = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEmmStatusTableSize.setStatus('current')
if mibBuilder.loadTexts: apexRdsEmmStatusTableSize.setDescription('EMM Status Table Size. This is the maximum number of rows in the EMM Status Table and is the limit on apexRdsEmmStatusIndex. ')
apexRdsProgramMessagesReceived = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsProgramMessagesReceived.setStatus('current')
if mibBuilder.loadTexts: apexRdsProgramMessagesReceived.setDescription('Number of successful ServiceEncrypt messages received in the last 15 minutes.')
apexRdsProgramMessagesFailed = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsProgramMessagesFailed.setStatus('current')
if mibBuilder.loadTexts: apexRdsProgramMessagesFailed.setDescription('Number of failed ServiceEncrypt messages received in the last 15 minutes.')
apexRdsCommErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsCommErrorCount.setStatus('current')
if mibBuilder.loadTexts: apexRdsCommErrorCount.setDescription('Count of total server communication errors. This parameter is set to 0 when the APEX boots up.')
apexRdsCommStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("ok", 1), ("error", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsCommStatus.setStatus('current')
if mibBuilder.loadTexts: apexRdsCommStatus.setDescription('Status of communication with RDS.')
apexRdsFlashWriteCount = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsFlashWriteCount.setStatus('current')
if mibBuilder.loadTexts: apexRdsFlashWriteCount.setDescription('Running count of the number of flash memory erasures/writes.')
apexRdsMcast16 = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 11), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsMcast16.setStatus('current')
if mibBuilder.loadTexts: apexRdsMcast16.setDescription('Multicast-16 bit address used for build PRK messages. The multicast-16 bit address is from the EMMs received.')
apexRdsStatusServerIp = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 12), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsStatusServerIp.setStatus('current')
if mibBuilder.loadTexts: apexRdsStatusServerIp.setDescription('Effective Rights Data Server IP address. Derived from RDS Server URL. This is set to 0.0.0.0 when validation on RDS Server URL fails. See apexRdsConfigServerUrl. ')
apexRdsStatusServerPort = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsStatusServerPort.setStatus('current')
if mibBuilder.loadTexts: apexRdsStatusServerPort.setDescription('Effective Rights Data Server TCP port. Derived from RDS Server URL. This is set to 0 when validation on RDS Server URL fails. See apexRdsConfigServerUrl. ')
apexRdsStatusServerRootDirPath = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 14), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsStatusServerRootDirPath.setStatus('current')
if mibBuilder.loadTexts: apexRdsStatusServerRootDirPath.setDescription('Effective Rights Data Server Root Directory Path. Derived from RDS Server URL. This is set to Null String when validation on RDS Server URL fails. See apexRdsConfigServerUrl. ')
apexRdsStatusValidation = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("notApplicable", 0), ("urlValid", 1), ("missingIpOrPath", 2), ("emptyRootPath", 3), ("invalidTcpPort", 4), ("invalidIpClass", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsStatusValidation.setStatus('current')
if mibBuilder.loadTexts: apexRdsStatusValidation.setDescription('Indicates whether the current RDS Server URL parameter is valid. urlValid (1) - RDS-2 URL is valid, missingIpOrPath (2) - RDS-2 IP or Root Path is missing, emptyRootPath (3) - RDS-2 Root Path cannot be empty, invalidTcpPort (4) - RDS-2 TCP Port ranges from 1~65535, default to 80, invalidIpClass (5) - RDS-2 IP shall be class A/B/C. See apexRdsConfigServerUrl. ')
apexRdsEmmStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2), )
if mibBuilder.loadTexts: apexRdsEmmStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexRdsEmmStatusTable.setDescription(' Table of the most recent RDS responses.')
apexRdsEmmStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexRdsEmmStatusIndex"))
if mibBuilder.loadTexts: apexRdsEmmStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexRdsEmmStatusEntry.setDescription('RDS EMM Status Table Entry.')
apexRdsEmmStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1, 1), Integer32())
if mibBuilder.loadTexts: apexRdsEmmStatusIndex.setStatus('current')
if mibBuilder.loadTexts: apexRdsEmmStatusIndex.setDescription('Index of EMM Status Table. Size of table can be found in apexRdsEmmStatusTableSize.')
apexRdsEmmStatusCsn = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEmmStatusCsn.setStatus('current')
if mibBuilder.loadTexts: apexRdsEmmStatusCsn.setDescription('Category Sequence Number (CSN). ')
apexRdsEmmStatusState = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("transitionComplete", 1), ("transitionStart", 2), ("startOfNewEpoch", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEmmStatusState.setStatus('current')
if mibBuilder.loadTexts: apexRdsEmmStatusState.setDescription('Category Epoch Transition (CET) State.')
apexRdsEmmStatusGpsTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEmmStatusGpsTime.setStatus('current')
if mibBuilder.loadTexts: apexRdsEmmStatusGpsTime.setDescription('This is the time in GPS seconds that this row was written.')
apexRdsEmmStatusServerError = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEmmStatusServerError.setStatus('current')
if mibBuilder.loadTexts: apexRdsEmmStatusServerError.setDescription('This is the error code reported to the APEX by the RDS. Zero indicates no error.')
apexRdsEmmStatusUnitAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEmmStatusUnitAddress.setStatus('current')
if mibBuilder.loadTexts: apexRdsEmmStatusUnitAddress.setDescription('This is the ACP address of the ACP associated with the error reported in apexRdsEmmStatusServerError. If no address is contained in this entry, the error applies to all ACPs or to the entire APEX. The address is made up of decimal digits formatted as ###-#####-#####-###. ')
apexRdsSourceLookupTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 3), )
if mibBuilder.loadTexts: apexRdsSourceLookupTable.setStatus('current')
if mibBuilder.loadTexts: apexRdsSourceLookupTable.setDescription('This table provides a list of Source IDs and Provider IDs along with an associated string. This table of information is provided by the RDS to make it easier for a user to figure out the Source ID and Provider ID for a particular service. ')
apexRdsSourceLookupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexRdsSourceLookupIndex"))
if mibBuilder.loadTexts: apexRdsSourceLookupEntry.setStatus('current')
if mibBuilder.loadTexts: apexRdsSourceLookupEntry.setDescription('Source Lookup Table Entry.')
apexRdsSourceLookupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 3, 1, 1), Integer32())
if mibBuilder.loadTexts: apexRdsSourceLookupIndex.setStatus('current')
if mibBuilder.loadTexts: apexRdsSourceLookupIndex.setDescription('Source Lookup Table Index.')
apexRdsSourceLookupDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 3, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsSourceLookupDescription.setStatus('current')
if mibBuilder.loadTexts: apexRdsSourceLookupDescription.setDescription('Text Description of the service provided by the Rights Data Server.')
apexRdsSourceLookupSourceId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsSourceLookupSourceId.setStatus('current')
if mibBuilder.loadTexts: apexRdsSourceLookupSourceId.setDescription('Source Id of the service.')
apexRdsSourceLookupProviderId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsSourceLookupProviderId.setStatus('current')
if mibBuilder.loadTexts: apexRdsSourceLookupProviderId.setDescription('Provider Id of the service.')
apexRdsEventTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4), )
if mibBuilder.loadTexts: apexRdsEventTable.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventTable.setDescription('Table of Rds2 Events. The first index (apexRdsEventProgramIndex) matches to the same row index in the apexManualRouteTable. ')
apexRdsEventEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexRdsEventProgramIndex"), (0, "APEX-MIB", "apexRdsEventEventIndex"))
if mibBuilder.loadTexts: apexRdsEventEntry.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventEntry.setDescription('Rds2 Events Table Entry.')
apexRdsEventProgramIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexRdsEventProgramIndex.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventProgramIndex.setDescription('apexRdsEventProgramIndex is the last 10 bits of apexOutputProgramEcmServiceId from apexOutputProgramTable.')
apexRdsEventEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexRdsEventEventIndex.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventEventIndex.setDescription('Rds Event Index.')
apexRdsEventEpochNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventEpochNumber.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventEpochNumber.setDescription('Uniquely identifies a program epoch for the specified service.')
apexRdsEventEpochStart = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventEpochStart.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventEpochStart.setDescription('Start time in GPS seconds of the returned program epoch for the specified service. ')
apexRdsEventEpochEnd = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventEpochEnd.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventEpochEnd.setDescription('End time in GPS seconds of the returned program epoch.')
apexRdsEventInterstitialDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventInterstitialDuration.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventInterstitialDuration.setDescription('The interstitial duration provides the time duration in seconds between the start of the program epoch and the start of the actual program or event. ')
apexRdsEventPreviewDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventPreviewDuration.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventPreviewDuration.setDescription('The preview window provides the time duration in seconds between the start of the program epoch and the start of the pay portion of the program. ')
apexRdsEventPurchaseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventPurchaseDuration.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventPurchaseDuration.setDescription('The purchase window provides the time duration in seconds between the start of the program epoch that IPPV purchases are allowed. ')
apexRdsEventNumberTiers = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventNumberTiers.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventNumberTiers.setDescription('A program can be associated with at most 7 tiers.')
apexRdsEventTierData = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 10), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventTierData.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventTierData.setDescription('Program Tier Data in Hexadecimal format (28 bytes). Up to 7 tiers of information are provided for each program. Tier information for each program consists of 4 bytes. First 3 bytes are the Tier Value, next 1 bytes are the Tier Type. ')
apexRdsEventProgramCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventProgramCost.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventProgramCost.setDescription('Represents the cost, in program units, of the program epoch.')
apexRdsEventRatingRegion = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventRatingRegion.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventRatingRegion.setDescription('Identifies the Program Rating Region. The US region attribute is 0.')
apexRdsEventRatingData = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 13), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventRatingData.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventRatingData.setDescription('Program Rating Data in Hexadecimal format (3 bytes). Contains 6 rating dimensions where each rating dimension is a 4-bit integer that represents a different rating control for the region. A US region defines 4 rating dimensions: MPAA rating, violence content rating, language content rating and sexual content rating. ')
apexRdsEventRatingText = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 14), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventRatingText.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventRatingText.setDescription('Program Rating optionally contains a Rating Text.')
apexRdsEventControlByte = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 15), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventControlByte.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventControlByte.setDescription('The program control byte used in the PRKM (1 Hexadecimal byte).')
apexRdsEventPrkmWkemAvailable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("available", 1), ("notAvailable", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventPrkmWkemAvailable.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventPrkmWkemAvailable.setDescription('The flag indicates that PRKM, WKEM (odd and even) is available for the associated epoch.')
apexRdsEventCcmAvailable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("available", 1), ("notAvailable", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRdsEventCcmAvailable.setStatus('current')
if mibBuilder.loadTexts: apexRdsEventCcmAvailable.setDescription('The flag indicates that CCM (odd and even) is available for the associated epoch.')
apexEncryptionConfAlgorithm = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("des-dcii", 1), ("des-scte-52", 2), ("dvb-csa", 3), ("dvb-csa-simulcrypt", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEncryptionConfAlgorithm.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionConfAlgorithm.setDescription("Configured encryption algorithm. This value determines which MUX FPGA image will be loaded. dvb-csa-simulcrypt must be selected to allow for configuration of Simulcrypt. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexSimulcryptExternalEisSetting = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("clear", 0), ("encrypt", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSimulcryptExternalEisSetting.setStatus('current')
if mibBuilder.loadTexts: apexSimulcryptExternalEisSetting.setDescription("Default simulcrypt External EIS encryption setting. This determines if services are sent out in the clear or are encrypted when Simulcrypt mode is set to External EIS and the services have not yet been provisioned. This allows a user to have services scrambled but unviewable prior to services being provisioned (to prevent services from being viewable). This parameter is only applicable for output streams that are in Simulcrypt External EIS mode. When this setting is changed, it only affects new service mappings. Services that are already mapped will not be modified. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexSimulcryptEmEnable = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 1, 3), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSimulcryptEmEnable.setStatus('current')
if mibBuilder.loadTexts: apexSimulcryptEmEnable.setDescription("Simulcrypt EM Enable. If set to 'enabled' the EM will display the Simulcrypt specific screens. User will be allowed to view Simulcrypt status and perform configuration changes via the EM. This parameter only enables and disables the ability to use the EM Simulcrypt screens. It does not enable or disable Simulcrypt as there is a specific Simulcrypt mode per output stream. Once written, the change to this parameter will only take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexCteEncryptionMode = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("full", 1), ("fwk", 2), ("fpk", 3), ("clear", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexCteEncryptionMode.setStatus('current')
if mibBuilder.loadTexts: apexCteEncryptionMode.setDescription("This parameter is used to set the Encryption Mode. It applies to all services on all QAMs in CTE mode. - 'full' - The APEX will use Full encryption. The APEX will only be able to encrypt programs in Full encryption mode if the APEX is able to communicate with an RDS. - 'fwk' - The APEX will use Fixed Working Key (FWK) encryption. - 'fpk' - The APEX will use Fixed Program Key (FPK) encryption. The APEX will not attempt to get EMMs. - 'clear' - The APEX performs no encryption of output programs. If the APEX is unable to encrypt programs in the configured mode, then those programs will not be mapped. Once written, the change to this parameter will only take immediate effect after apexCteApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexCteApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexCteCciLevel = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("notDefined", 1), ("copyFreely", 2), ("copyOnce", 3), ("copyNever", 4), ("noMoreCopies", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexCteCciLevel.setStatus('current')
if mibBuilder.loadTexts: apexCteCciLevel.setDescription("Copy Control Information (CCI) Level setting for PRK messages. - notDefined - CCI is not defined, settop box applications can configure CCI - copyFreely - program can be copied - copyOnce - program can be copied once - copyNever - program can never be copied - noMoreCopies - Once written, the change to this parameter will only take immediate effect after apexCteApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexCteApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexCteApsLevel = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("notDefined", 1), ("off", 2), ("splitBurstOff", 3), ("splitBurst2Line", 4), ("splitBurst4Line", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexCteApsLevel.setStatus('current')
if mibBuilder.loadTexts: apexCteApsLevel.setDescription("Analog Protection System (APS) Level setting for PRK messages. Defines what copy protection encoding will be applied to the analog composite output by the settop box. - notDefined - analog protection is not defined, settop box applications can configure APS - off - no analog protection - splitBurstOff - AGC on, split burst off - splitBurst2Line - AGC on, 2 line split burst on - splitBurst4Line - AGC on, 4 line split burst on The APEX will set Tier Type based on apexCteApsLevel. The APEX will set tier type to subscription with right to tape when apexCteApsLevel is 'off' or 'notDefined'. The APEX will set tier type to subscription without right to tape when apexCteApsLevel is 'splitBurstOff', 'splitBurst2Line', or 'splitBurst4Line'. Once written, the change to this parameter will only take immediate effect after apexCteApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexCteApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexCteCitEnable = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2, 4), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexCteCitEnable.setStatus('current')
if mibBuilder.loadTexts: apexCteCitEnable.setDescription("Constrained Image Trigger (CIT) setting. If set to 'enabled' the settop box is notified not to allow a high quality digital output unless the receiving device also adheres to CIT processing. If the apexCteApsLevel is set to 'notDefined', the setting of the CIT value has no affect (CIT and APS are only used when APS is set to a defined value). Once written, the change to this parameter will only take immediate effect after apexCteApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexCteApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexCteCommonTier = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexCteCommonTier.setStatus('current')
if mibBuilder.loadTexts: apexCteCommonTier.setDescription("EncryptionCommon Tier. Identifies the tier number for which access is granted. Range is 0 to 16777215. 65535 is reserved and cannot be used. The APEX will set Tier Type based on apexCteApsLevel setting. Refer to the apexCteApsLevel description for more details. Once written, the change to this parameter will only take immediate effect after apexCteApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexCteApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexCteApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2, 6), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexCteApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexCteApplyChange.setDescription("The Apply for CTE configuration items. This parameter MUST be set to 'apply' in order for any of the following to take effect: apexCteEncryptionMode apexCteCciLevel apexCteApsLevel apexCteCitEnable apexCteCommonTier This parameter MUST be set LAST after all associated parameters has been configured. @Config(config=no, reboot=no) ")
apexEncryptionStatAlgorithm = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("des-dcii", 1), ("des-scte-52", 2), ("dvb-csa", 3), ("dvb-csa-simulcrypt", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionStatAlgorithm.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionStatAlgorithm.setDescription('Current encryption algorithm. This value determines which MUX FPGA image will be loaded. ')
apexEncryptionCwgPerSecond = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionCwgPerSecond.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionCwgPerSecond.setDescription('Average control words per second generated integrated over the last minute.')
apexEncryptionMux1CollisionCount = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionMux1CollisionCount.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionMux1CollisionCount.setDescription('Triton collision counter for MUX FPGA #1.')
apexEncryptionMux2CollisionCount = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionMux2CollisionCount.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionMux2CollisionCount.setDescription('Triton collision counter for MUX FPGA #2.')
apexEncryptionMux1RolloverCount = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionMux1RolloverCount.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionMux1RolloverCount.setDescription('Counts rollovers of triton message circular buffer for MUX FPGA #1.')
apexEncryptionMux2RolloverCount = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionMux2RolloverCount.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionMux2RolloverCount.setDescription('Counts rollovers of triton message circular buffer for MUX FPGA #2.')
apexEncryptionEmmRequestsSent = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionEmmRequestsSent.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionEmmRequestsSent.setDescription('Counts number of triton EMM reports sent to 6 MC2.1 devices.')
apexEncryptionEmmGoodRepliesRecvd = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionEmmGoodRepliesRecvd.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionEmmGoodRepliesRecvd.setDescription('Counts number of triton EMM replies marked good received from mc2.1 devices.')
apexEncryptionEmmBadRepliesRecvd = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionEmmBadRepliesRecvd.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionEmmBadRepliesRecvd.setDescription('Counts number of triton EMM replies marked bad received from mc2.1 devices.')
apexEncryptionEmmGoodDeliveryTimeMs = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionEmmGoodDeliveryTimeMs.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionEmmGoodDeliveryTimeMs.setDescription('Amount of time expressed in milliseconds taken to deliver entire set of EMMs for most recent successful attempt. Note it takes MC2.1 a significant amount of time to process an EMM. They are delivered in batches of 6 (1 per MC2.1) the firmware then waits for all 6 EMM replies before continuing with the next batch.')
apexEncryptionEmmMaxDeliveryTimeMs = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionEmmMaxDeliveryTimeMs.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionEmmMaxDeliveryTimeMs.setDescription('Maximum amount of time expressed in milliseconds taken to deliver an entire set of EMMs since the Apex unit was last rebooted.')
apexEncryptionEmmMinDeliveryTimeMs = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionEmmMinDeliveryTimeMs.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionEmmMinDeliveryTimeMs.setDescription('Minimum amount of time expressed in milliseconds taken to deliver an entire set of EMMs since the Apex unit was last rebooted.')
apexEncryptionMcDiagTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 12), )
if mibBuilder.loadTexts: apexEncryptionMcDiagTable.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionMcDiagTable.setDescription('Diagnostic table that breaks out individual mc21 performance parameters. Indexed 1-6 for the 6 MC2.1 devices in an APEX ACP Module.')
apexEncryptionMcDiagEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 12, 1), ).setIndexNames((0, "APEX-MIB", "apexEncryptionMcDiagDeviceIndex"))
if mibBuilder.loadTexts: apexEncryptionMcDiagEntry.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionMcDiagEntry.setDescription('A row in the mc2.1 diagnostic table.')
apexEncryptionMcDiagDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 12, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6)))
if mibBuilder.loadTexts: apexEncryptionMcDiagDeviceIndex.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionMcDiagDeviceIndex.setDescription('Index represents 1 of 6 MC2.1 devices installed on ACP Module.')
apexEncryptionCwCountsPerSecond = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 12, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEncryptionCwCountsPerSecond.setStatus('current')
if mibBuilder.loadTexts: apexEncryptionCwCountsPerSecond.setDescription('Number of CW successfully generated on this MC2.1 per second, integrated over the last minute.')
apexEasApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1, 1), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasApplyChange.setStatus('obsolete')
if mibBuilder.loadTexts: apexEasApplyChange.setDescription("This object is obsolete. The Apply for any entries in the apexEasConfigGeneral group. This parameter MUST be set to 'apply' in order for any of the data in the apexEasConfigGeneral group to take effect. This parameter MUST be set LAST after all other data in the group has been configured. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apexEasPhysInType = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("gbe", 1), ("fastEnet", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasPhysInType.setStatus('obsolete')
if mibBuilder.loadTexts: apexEasPhysInType.setDescription("This object is obsolete. Input Type of input from which to extract EAS messages. When set to 0, no EAS is received (disables EAS extraction). Once written, the change to this parameter will only take immediate effect after apexEasApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexEasApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEasPhysInPort = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasPhysInPort.setStatus('obsolete')
if mibBuilder.loadTexts: apexEasPhysInPort.setDescription("This object is obsolete. Number of the input, of type configured by apexEasPhysInType, from which to extract EAS messages. Once written, the change to this parameter will only take immediate effect after apexEasApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Range(min=0) @Config(config=yes, reboot=no) @Commit(param=apexEasApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEasRcvUdpPort = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasRcvUdpPort.setStatus('obsolete')
if mibBuilder.loadTexts: apexEasRcvUdpPort.setDescription("This object is obsolete. This parameter indicates the UDP port on which to receive EAS messages. Range is 1024 to 65535 when apexEasPhysInType is 'fastEnet'. Range is 0 to 65535 when apexEasPhysInType is 'gbe'. Once written, the change to this parameter will only take immediate effect after apexEasApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexEasApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEasMulticastIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasMulticastIpAddress.setStatus('obsolete')
if mibBuilder.loadTexts: apexEasMulticastIpAddress.setDescription("This object is obsolete. This parameter indicates the Multicast IP Receive address on which to receive EAS messages. If 0.0.0.0, then EAS messages will be received via singlecast only. Once written, the change to this parameter will only take immediate effect after apexEasApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexEasApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEasSourceIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasSourceIpAddress.setStatus('obsolete')
if mibBuilder.loadTexts: apexEasSourceIpAddress.setDescription("This object is obsolete. This parameter indicates the Source IP Receive address on which to receive EAS messages. This is only for IGMP v3 networks. If 0.0.0.0, then source IP is not used. Once written, the change to this parameter will only take immediate effect after apexEasApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexEasApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEasOutputTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 2), )
if mibBuilder.loadTexts: apexEasOutputTable.setStatus('current')
if mibBuilder.loadTexts: apexEasOutputTable.setDescription("Table of parameters for configuring EAS Output. Table is indexed by Output Transport Stream Number. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEasOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexEasOutputStreamNum"))
if mibBuilder.loadTexts: apexEasOutputEntry.setStatus('current')
if mibBuilder.loadTexts: apexEasOutputEntry.setDescription('A row in the EAS output table.')
apexEasOutputStreamNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexEasOutputStreamNum.setStatus('current')
if mibBuilder.loadTexts: apexEasOutputStreamNum.setDescription('The output transport stream number.')
apexEasOutputEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 2, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasOutputEnable.setStatus('current')
if mibBuilder.loadTexts: apexEasOutputEnable.setDescription('The enable setting for EAS output on this Output Transport Stream. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ')
apexEasServerApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 3), )
if mibBuilder.loadTexts: apexEasServerApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexEasServerApplyTable.setDescription('Apply table for the apexEasServerTable. Table is indexed by RF Port number. ')
apexEasServerApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexEasServerApplyNum"))
if mibBuilder.loadTexts: apexEasServerApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexEasServerApplyEntry.setDescription('EAS Server Configuration Apply Table Entry.')
apexEasServerApplyNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: apexEasServerApplyNum.setStatus('current')
if mibBuilder.loadTexts: apexEasServerApplyNum.setDescription('The EAS Server number.')
apexEasServerApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 3, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasServerApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexEasServerApplyChange.setDescription("The Apply for a row in the apexEasServerTable. This parameter MUST be set to 'apply' in order for any of the data in the apexEasServerTable table to take effect. This parameter MUST be set LAST after all other data in the table has been configured. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apexEasServerTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4), )
if mibBuilder.loadTexts: apexEasServerTable.setStatus('current')
if mibBuilder.loadTexts: apexEasServerTable.setDescription("Table of parameters for configuring EAS Servers. Table is indexed by RF Port number. @Config(config=yes, reboot=no) @Commit(param=apexEasServerApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEasServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexEasServerNum"))
if mibBuilder.loadTexts: apexEasServerEntry.setStatus('current')
if mibBuilder.loadTexts: apexEasServerEntry.setDescription('A row in the EAS server table.')
apexEasServerNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: apexEasServerNum.setStatus('current')
if mibBuilder.loadTexts: apexEasServerNum.setDescription('The EAS Server number.')
apexEasServerPhysInType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("gbe", 1), ("fastEnet", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasServerPhysInType.setStatus('current')
if mibBuilder.loadTexts: apexEasServerPhysInType.setDescription("Input Type of input from which to extract EAS messages. When set to 0, no EAS is received (disables EAS extraction). Once written, the change to this parameter will only take immediate effect after apexEasServerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apexEasServerPhysInPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasServerPhysInPort.setStatus('current')
if mibBuilder.loadTexts: apexEasServerPhysInPort.setDescription("Number of the input, of type configured by apexEasServerPhysInType, from which to extract EAS messages. Once written, the change to this parameter will only take immediate effect after apexEasServerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Range(min=0) ")
apexEasServerRcvUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasServerRcvUdpPort.setStatus('current')
if mibBuilder.loadTexts: apexEasServerRcvUdpPort.setDescription("This parameter indicates the UDP port on which to receive EAS messages. Range is 1024 to 65535 when apexEasServerPhysInType is 'fastEnet'. Range is 0 to 65535 when apexEasServerPhysInType is 'gbe'. Once written, the change to this parameter will only take immediate effect after apexEasServerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apexEasServerMulticastIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasServerMulticastIpAddress.setStatus('current')
if mibBuilder.loadTexts: apexEasServerMulticastIpAddress.setDescription("This parameter indicates the Multicast IP Receive address on which to receive EAS messages. If 0.0.0.0, then EAS messages will be received via singlecast only. Once written, the change to this parameter will only take immediate effect after apexEasServerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apexEasServerSourceIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEasServerSourceIpAddress.setStatus('current')
if mibBuilder.loadTexts: apexEasServerSourceIpAddress.setDescription("This parameter indicates the Source IP Receive address on which to receive EAS messages. This is only for IGMP v3 networks. If 0.0.0.0, then source IP is not used. Once written, the change to this parameter will only take immediate effect after apexEasServerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apexEasNumRcvMsgs = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEasNumRcvMsgs.setStatus('current')
if mibBuilder.loadTexts: apexEasNumRcvMsgs.setDescription('Total number of EAS messages received.')
apexEasNumInvalRcvMsgs = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEasNumInvalRcvMsgs.setStatus('current')
if mibBuilder.loadTexts: apexEasNumInvalRcvMsgs.setDescription('Total number of Invalid EAS messages received (invalid CRC). These messages are discarded.')
apexChassisRedundancyConfigEnable = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 1), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyConfigEnable.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyConfigEnable.setDescription("This is to enable/disable APEX chassis redundancy. When set to disabled(1), APEX is not allowed to failover. When set to enabled(2), APEX can failover on its redundant APEX. Once written, the change to this parameter will only take immediate effect after apexChassisRedundancyConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyMode = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("primary", 1), ("secondary", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyMode.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyMode.setDescription("Configures the desired role of APEX. Primary has active output ports, secondary is inactive with output ports muted. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyMulticastRedundancyMode = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("hot", 1), ("warm", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyMulticastRedundancyMode.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyMulticastRedundancyMode.setDescription("This is used to process route mappings by the standby APEX. When set to hot(0) on standby APEX, all the routes processed by the active APEX will also be processed by standby APEX. When set to warm(1) on standby APEX, all the routes processed by the active APEX will be muted by standby APEX. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyUdpPort = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1024, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyUdpPort.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyUdpPort.setDescription("This UDP port number value is used as: (1) The port number on which to receive heartbeat messages from the redundant APEX (2) The port number to which heartbeat messages are sent to the redundant APEX. Valid range of UDP port numbers are 1024 to 65535. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyRedundantApexIp = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyRedundantApexIp.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyRedundantApexIp.setDescription("Unicast IP address of redundant APEX. This IP address is used to send heartbeat messages to the redundant IP. This IP address should match with the ENET1 or ENET2 IP address of the redundant APEX. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancySuspend = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 6), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancySuspend.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancySuspend.setDescription("When set to enabled(2), this results in APEX unit failover and become active if it is in standby or suspend state. If the condition above is not met, setting the value to enabled(2) has no effect. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyForceFailOver = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("failoverNotInProgress", 1), ("failover", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyForceFailOver.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyForceFailOver.setDescription('When set to failover(2), this results in the APEX unit failing over if it is in active state and the redundant APEX is in standby state. If the condition above is not met, setting the value to failvoer(2) has no effect. @Config(config=no, reboot=no) ')
apexChassisRedundancyFailOverGigE12LinkLoss = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 8), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyFailOverGigE12LinkLoss.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyFailOverGigE12LinkLoss.setDescription("Configures if both GigE 1&2 link loss is cause for a failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyFailOverGigE34LinkLoss = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 9), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyFailOverGigE34LinkLoss.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyFailOverGigE34LinkLoss.setDescription("Configures if both GigE 3&4 experience link loss is cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyFailOverEnet1LinkLoss = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 10), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyFailOverEnet1LinkLoss.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyFailOverEnet1LinkLoss.setDescription("Configures if ENET1 link loss is cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyFailOverEnet2LinkLoss = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 11), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyFailOverEnet2LinkLoss.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyFailOverEnet2LinkLoss.setDescription("Configures if ENET2 link loss is cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyFailOverTemperatureFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 12), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyFailOverTemperatureFault.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyFailOverTemperatureFault.setDescription("Configures if the temperature fault is a cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyFailOverQamModuleFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 13), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyFailOverQamModuleFault.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyFailOverQamModuleFault.setDescription("Configures if a QAM module fault is a cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyFailOverQamRfPortFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 14), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyFailOverQamRfPortFault.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyFailOverQamRfPortFault.setDescription("Configures if a QAM RF port fault is a cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyFailOverQamChannelFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 15), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyFailOverQamChannelFault.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyFailOverQamChannelFault.setDescription("Configures if a QAM channel fault is a cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyConfigApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 16), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyConfigApplyChange.setDescription("The Apply for Chassis Redundancy Configuration parameters. This parameter MUST be set to 'apply' in order for the data to take effect. This parameter MUST be set LAST after all Chassis Redundancy parameters affected by this parameter have been configured. @Config(config=no, reboot=no) ")
apexChassisRedundancyPrimaryStandbyOverride = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 17), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyPrimaryStandbyOverride.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyPrimaryStandbyOverride.setDescription('This parameter is set to ENABLED while configuring the apex as primary apex. If this parameter is set, the apex will goto ACTIVE state irrespective of secondary status. @Config(config=no, reboot=no) ')
apexChassisRedundancyRedundantApexSecIp = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 18), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyRedundantApexSecIp.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyRedundantApexSecIp.setDescription("Unicast IP address of redundant APEX heartbeat backup interface. This IP address is used to send backup heartbeat messages to the redundant IP. This IP address should match with the ENET1 or ENET2 IP address of the redundant APEX. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyRedundantHBEnable = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 19), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexChassisRedundancyRedundantHBEnable.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyRedundantHBEnable.setDescription("This parameter is set to ENABLED to configure backup heartbeat interface IP. Heartbeat message in the Backup heartbeat interface is used if the Primary heartbeat inteface fails. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexChassisRedundancyPrimaryApexStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 0), ("active", 1), ("standby", 2), ("fault", 3), ("suspend", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyPrimaryApexStatus.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyPrimaryApexStatus.setDescription('This parameter is applicable for an APEX where chassis redundancy is enabled. The APEX configured as primary will report the following values: active(1): Primary RF outputs are active. standby(2): Primary RF outputs are muted. Waiting to become active. fault(3): Primary has experienced a fault. suspend(4): Primary is suspended. The APEX configured as secondary will report the following values. These are based on its knowledge about the primary APEX from heartbeat messages. unknown(0): State of primary is not known (heartbeat not received). active(1): Primary RF outputs are active. standby(2): Primary RF outputs are muted. Waiting to become active. fault(3): Primary has experienced a fault. suspend(4): Primary is suspended. ')
apexChassisRedundancySecondaryApexStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 0), ("active", 1), ("standby", 2), ("fault", 3), ("suspend", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancySecondaryApexStatus.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancySecondaryApexStatus.setDescription('This parameter is applicable for an APEX where chassis redundancy is enabled. The APEX configured as primary will report the following values: These are based on its knowledge about the secondary APEX from heartbeat messages. unknown(0): State of secondary is not known (heartbeat not received). active(1): Secondary RF outputs are active. standby(2): Secondary RF outputs are muted. Waiting to become active. fault(3): Secondary has experienced a fault. suspend(4): Secondary is suspended. The APEX configured as secondary will report the following values: active(1): Secondary RF outputs are active. standby(2): Secondary RF outputs are muted. Waiting to become active. fault(3): Secondary has experienced a fault. suspend(4): Secondary is suspended. ')
apexChassisRedundancyState = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 0), ("available", 1), ("protected", 2), ("unavailable", 3), ("synchronizing", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyState.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyState.setDescription("This parameter is applicable for an APEX where chassis redundancy is enabled. This parameter will report the chassis redundancy availability status. These are based on its knowledge about the secondary APEX from heartbeat messages. The APEX configured as primary will report the following values: unknown(0): State of redundancy is not known (heartbeat not received). available(1): Primary is active and secondary is in standby, configurations are synchronized and no critical faults on either of the APEX. protected(2): Primary is fault and secondary is in active. unavailable(3): Configuration not synchronized or primary has not received heartbeat message from secondary. synchronizing(4): Synchronizing configuration between active and standby APEX's. The APEX configured as secondary will report the following values: unknown(0): State of redundancy is not known (heartbeat not received). available(1): Secondary is active and primary is in standby, configurations are synchronized and no critical faults on either of the APEX. protected(2): Secondary is in active and primary is fault state. unavailable(3): Configuration not synchronized or secondary is in fault state or secondary has not received heartbeat message from primary. synchronizing(4): Synchronizing configuration between active and standby APEX's. ")
apexChassisRedundancyCommunicationStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disconnected", 0), ("connected", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyCommunicationStatus.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyCommunicationStatus.setDescription('This parameter is applicable for an APEX where chassis redundancy is enabled. This parameter will report the chassis redundancy communication status. These are based on its knowledge about the secondary APEX from heartbeat messages. The APEX configured as primary will report the following values: disconnected(0): No heartbeat messages are received from secondary or communication timed out. connected(1): Heartbeat messages are received from secondary and communication has not timed out. The APEX configured as secondary will report the following values: disconnected(0): No heartbeat messages are received from primary or communication timed out. connected(1): Heartbeat messages are received from primary and communication has not timed out. ')
apexChassisRedundancyConfigurationStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("unknown", 0), ("synchronized", 1), ("outofsync", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyConfigurationStatus.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyConfigurationStatus.setDescription('This parameter is applicable for an APEX where chassis redundancy is enabled. This parameter will report the chassis redundancy configuration status. These are based on its knowledge about the secondary APEX from heartbeat messages. The APEX configured as primary will report the following values: unknown(0): Secondary configuration is not known or secondary is not connected. synchronized(1): Secondary has same configuration as primary (except for QAM outputs). outofsync(2): Secondary configuration is not in sync with primary. The APEX configured as secondary will report the following values: unknown(0): Primary configuration is not known or primary is not connected. synchronized(1): Primary has same configuration as secondary (except for QAM outputs). outofsync(2): Primary configuration is not in sync with secondary. ')
apexChassisRedundancyStatusInvalidApplyText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyStatusInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyStatusInvalidApplyText.setDescription("When apexChassisRedundancyConfigApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. ")
apexChassisRedundancyGeneralConfigSyncStatusText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyGeneralConfigSyncStatusText.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyGeneralConfigSyncStatusText.setDescription('GigE Config Sync Error info ')
apexChassisRedundancyGigEMismatchStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("unknown", 0), ("match", 1), ("mismatch", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyGigEMismatchStatus.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyGigEMismatchStatus.setDescription('This parameter indicates whether the GigE configuration of the apexes in Chassis Redundancy pair match. Both the APEXs will report the following values: These are based on its knowledge about the secondary APEX GigE configuration from heartbeat messages. unknown (0): GigE configuration of pair APEX is not known (heartbeat not received). match (1): GigE configuration of APEXs in redundancy pair match. mismatch (2): GigE configuration of APEXs in redundancy pair do not match. ')
apexChassisRedundancyQamMismatchStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("unknown", 0), ("match", 1), ("mismatch", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyQamMismatchStatus.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyQamMismatchStatus.setDescription('This parameter indicates whether the QAM configuration of the apexes in Chassis Redundancy pair match. Both the APEXs will report the following values: These are based on its knowledge about the secondary APEX QAM configuration from heartbeat messages. unknown (0): QAM configuration of pair APEX is not known (heartbeat not received). match (1): QAM configuration of APEXs in redundancy pair match. mismatch (2): QAM configuration of APEXs in redundancy pair do not match. ')
apexChassisRedundancyFirmwareMismatchStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("unknown", 0), ("match", 1), ("mismatch", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyFirmwareMismatchStatus.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyFirmwareMismatchStatus.setDescription('This parameter indicates whether the Firmware version of the apexes in Chassis Redundancy pair match. Both the APEXs will report the following values: These are based on its knowledge about the secondary APEX Firmware version from heartbeat messages. unknown (0): Firmware version of pair APEX is not known (heartbeat not received). match (1): Firmware version of APEXs in redundancy pair match. mismatch (2): Firmware version of APEXs in redundancy pair do not match. ')
apexChassisRedundancyGigE12LinkStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyGigE12LinkStatus.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyGigE12LinkStatus.setDescription('This parameter indicates the combined alarm status of the GigE 1 and GigE 2. Indicates the lower of the gigE input interface alarm conditions. ok (1): No alarm on either of GigE1 and GigE2. warning (3): Warning alarm on both GigE1 or GigE2 minor (4): minor alarm on both GigE1 or GigE2 major (5): Major alarm on both GigE1 or GigE2 critical (6): critical alarm on both GigE1 and GigE2. ')
apexChassisRedundancyGigE34LinkStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyGigE34LinkStatus.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyGigE34LinkStatus.setDescription('This parameter indicates the combined alarm status of the GigE3 and GigE4. Indicates the lower of the gigE input interface alarm conditions. ok (1): No alarm on either of GigE3 and GigE4. warning (3): Warning alarm on both GigE3 or GigE4 minor (4): minor alarm on both GigE3 or GigE4 major (5): Major alarm on both GigE3 or GigE4 critical (6): critical alarm on both GigE3 and GigE4. ')
apexChassisRedundancyCurrHBIntfIPStatus = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 13), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyCurrHBIntfIPStatus.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyCurrHBIntfIPStatus.setDescription('This parameter indicates the heartbeat interface used for receiving heartbeat from the redundant APEX. ')
apexDtaGeneralConfigCatSourceType = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("internal", 1), ("external", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaGeneralConfigCatSourceType.setStatus('current')
if mibBuilder.loadTexts: apexDtaGeneralConfigCatSourceType.setDescription("When set to internal(0), APEX generates CAT and inserts EMM pid received from DAC. When set to external(1), APEX will not generate CAT, it will receive both CAT and EMM pids from DAC and inserts EMM pid into CAT. @Config(config=yes, reboot=no) @Commit(param=apexDtaGeneralConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDtaGeneralConfigCatEmmPidMulticastIP = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaGeneralConfigCatEmmPidMulticastIP.setStatus('current')
if mibBuilder.loadTexts: apexDtaGeneralConfigCatEmmPidMulticastIP.setDescription("Multicast IPv4 address on which CAT/EMM PID stream is available. An IP Address of 0.0.0.0 indicates unicast stream. @Config(config=yes, reboot=no) @Commit(param=apexDtaGeneralConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDtaGeneralConfigCatEmmPidSourceIP = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaGeneralConfigCatEmmPidSourceIP.setStatus('current')
if mibBuilder.loadTexts: apexDtaGeneralConfigCatEmmPidSourceIP.setDescription("Source IP address to receive CAT/EMM PID stream. This is used only if apexQamRfConfigDtaNetworkPidMulticastIP is set to a multicast address. @Config(config=yes, reboot=no) @Commit(param=apexDtaGeneralConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDtaGeneralConfigCatEmmPidUdpPort = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1024, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaGeneralConfigCatEmmPidUdpPort.setStatus('current')
if mibBuilder.loadTexts: apexDtaGeneralConfigCatEmmPidUdpPort.setDescription("UDP port to receive CAT/EMM PID stream. The range of valid UDP port numbers are 1024 to 65535. @Config(config=yes, reboot=no) @Commit(param=apexDtaGeneralConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDtaGeneralConfigCatEmmPidInterface = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 5), EthernetInterfaceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaGeneralConfigCatEmmPidInterface.setStatus('current')
if mibBuilder.loadTexts: apexDtaGeneralConfigCatEmmPidInterface.setDescription("Fast Ethernet Interface to receive CAT/EMM PID stream. One of ENET1 and ENET2 interfaces are used to receive CAT/EMM PID streams. @Config(config=yes, reboot=no) @Commit(param=apexDtaGeneralConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDtaGeneralConfigEmmPidNum = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(7168, 8190))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaGeneralConfigEmmPidNum.setStatus('current')
if mibBuilder.loadTexts: apexDtaGeneralConfigEmmPidNum.setDescription("EMM PID to insert on DTA enabled OTS. The range of valid PID numbers are 0x1C00 to 0x1FFE. @Config(config=yes, reboot=no) @Commit(param=apexDtaGeneralConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDtaGeneralConfigApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 7), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaGeneralConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexDtaGeneralConfigApplyChange.setDescription("The Apply for DTA Configuration parameters. This parameter MUST be set to 'apply' in order for the DTA Cat Config data to take effect. This parameter MUST be set LAST after all DTA Config parameters affected by this parameter have been configured. @Config(config=no, reboot=no) ")
apexDtaGeneralConfigInvalidApplyText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDtaGeneralConfigInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexDtaGeneralConfigInvalidApplyText.setDescription("When apexDtaGeneralConfigApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with DTA CAT/EMM PID Config data or NET PID Config data. ")
apexDtaConfigApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 2), )
if mibBuilder.loadTexts: apexDtaConfigApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexDtaConfigApplyTable.setDescription('Apply table for the configuration tables apexDtaRfPortConfigTable and apexDtaOtsConfigTable. ')
apexDtaConfigApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexDtaConfigApplyIndex"))
if mibBuilder.loadTexts: apexDtaConfigApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexDtaConfigApplyEntry.setDescription('DTA RF Port Configuration Apply Table Entry.')
apexDtaConfigApplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: apexDtaConfigApplyIndex.setStatus('current')
if mibBuilder.loadTexts: apexDtaConfigApplyIndex.setDescription('Defines the size of apexDtaRfPortConfigTable. DTA NET PID can be configured for each RF port. This shall be the number of maximum number of QAM RF port.')
apexDtaConfigApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 2, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexDtaConfigApplyChange.setDescription("The Apply for a row of data in apexDtaRfPortConfigTable. The Apply for eight rows of data in apexDtaOtsConfigTable. A row in this table corresponds to the same row index in the apexDtaRfPortConfigTable. A row in this table corresponds to eight rows in the apexDtaOtsConfigTable when QAM module is type of either 2x4 or 2x8 as follows: Apply Table DTA OTS/QAM Config Table ----------- ----------------- 1 1-8 2 9-16 3 17-24 4 25-32 5 33-40 6 41-48 A row in this table corresponds to four rows in the apexDtaOtsConfigTable when QAM module is type of 4x4 as follows: Apply Table DTA OTS/QAM Config Table ----------- ----------------- 1 1-4 2 5-8 3 17-20 4 21-24 5 33-36 6 37-40 7 9-12 8 13-16 9 25-28 10 29-32 11 41-44 12 45-48 This parameter MUST be set to 'apply' in order for any of the data in the rows to take effect in the APEX. This parameter MUST be set LAST after all other data in the configuration table rows has been configured. @Config(config=no, reboot=no) ")
apexDtaRfPortConfigTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3), )
if mibBuilder.loadTexts: apexDtaRfPortConfigTable.setStatus('current')
if mibBuilder.loadTexts: apexDtaRfPortConfigTable.setDescription("Table of DTA configuration items configurable on a RF Port basis. Once written, the change to this table will only take immediate effect after apexDtaConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexDtaConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDtaRfPortConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexDtaRfPortConfigIndex"))
if mibBuilder.loadTexts: apexDtaRfPortConfigEntry.setStatus('current')
if mibBuilder.loadTexts: apexDtaRfPortConfigEntry.setDescription('DTA RF port configuration Table Entry.')
apexDtaRfPortConfigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: apexDtaRfPortConfigIndex.setStatus('current')
if mibBuilder.loadTexts: apexDtaRfPortConfigIndex.setDescription('The QAM RF Port number.')
apexDtaRfPortConfigNetPidMulticastIP = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaRfPortConfigNetPidMulticastIP.setStatus('current')
if mibBuilder.loadTexts: apexDtaRfPortConfigNetPidMulticastIP.setDescription('Multicast IPv4 address on which Network PID stream is available. An IP Address of 0.0.0.0 indicates unicast stream. ')
apexDtaRfPortConfigNetPidSourceIP = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaRfPortConfigNetPidSourceIP.setStatus('current')
if mibBuilder.loadTexts: apexDtaRfPortConfigNetPidSourceIP.setDescription('Source IP address to receive Network PID stream. This is used only if apexDtaRfPortConfigNetPidMulticastIP is set to a multicast address. ')
apexDtaRfPortConfigNetPidUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1024, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaRfPortConfigNetPidUdpPort.setStatus('current')
if mibBuilder.loadTexts: apexDtaRfPortConfigNetPidUdpPort.setDescription('UDP port number to receive Network PID stream. The range of valid port numbers are 1024 to 65535. ')
apexDtaRfPortConfigNetPidInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1, 5), EthernetInterfaceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaRfPortConfigNetPidInterface.setStatus('current')
if mibBuilder.loadTexts: apexDtaRfPortConfigNetPidInterface.setDescription('Fast Ethernet Interface to receive Network PID stream. Network PID stream can be received either ENET1 or ENET2. ')
apexDtaRfPortConfigNetPidNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(7168, 8190))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaRfPortConfigNetPidNum.setStatus('current')
if mibBuilder.loadTexts: apexDtaRfPortConfigNetPidNum.setDescription('Network PID to insert on DTA enabled OTS. The range of valid PID numbers are 0x1C00 to 0x1FFE. ')
apexDtaOtsConfigTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 4), )
if mibBuilder.loadTexts: apexDtaOtsConfigTable.setStatus('current')
if mibBuilder.loadTexts: apexDtaOtsConfigTable.setDescription("Table of DTA configuration items for output transport streams (OTS). Once written, the change to this table will only take immediate effect after apexDtaConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexDtaConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDtaOtsConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexDtaOtsConfigIndex"))
if mibBuilder.loadTexts: apexDtaOtsConfigEntry.setStatus('current')
if mibBuilder.loadTexts: apexDtaOtsConfigEntry.setDescription('DTA OTS enable configuration Table Entry.')
apexDtaOtsConfigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexDtaOtsConfigIndex.setStatus('current')
if mibBuilder.loadTexts: apexDtaOtsConfigIndex.setDescription('The Output Transport Stream(OTS) number.')
apexDtaOtsConfigEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 4, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDtaOtsConfigEnable.setStatus('current')
if mibBuilder.loadTexts: apexDtaOtsConfigEnable.setDescription('This is to enable/disable of inserting DTA messages on OTS. When set to disabled(1), DTA messages are not allowed to insert on OTS. When set to enabled(2), DTA messages are allowed to insert on OTS. ')
apexDepiConfigHostname = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiConfigHostname.setStatus('current')
if mibBuilder.loadTexts: apexDepiConfigHostname.setDescription("Host name defined as the FQDM of the APEX-EQAM device. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2, default=yes) @File(config.ini, type='ini') ")
apexDepiStatusGeneralDtiPort1LinkActive = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 1), ActiveTYPE()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiPort1LinkActive.setStatus('current')
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiPort1LinkActive.setDescription('This indicates if the DTI Ethernet link is active.')
apexDepiStatusGeneralDtiPort2LinkActive = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 2), ActiveTYPE()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiPort2LinkActive.setStatus('current')
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiPort2LinkActive.setDescription('This indicates if the second DTI Ethernet link is active.')
apexDepiStatusGeneralDtiClientStatusMode = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("warmup", 1), ("free-run", 2), ("fast", 3), ("normal", 4), ("bridging", 5), ("holdover", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiClientStatusMode.setStatus('current')
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiClientStatusMode.setDescription('The DTI Client MUST support and report these operational modes.')
apexDepiStatusGeneralDtiClientPhaseError = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiClientPhaseError.setStatus('current')
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiClientPhaseError.setDescription("24-bit Phase Error in units of 149.8 MHz sample clock cycles. The lower eight bits of the 24-bit field MUST be padded with zeros and MUST NOT be used by the DTI server. The value MUST be a signed 2's complement number. If the DTI client supports more bits of resolution, the DTI client MUST round the reported value to the nearest integer sample clock cycle. ")
apexDepiStatusGeneralDtiCurrentTimestamp = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiCurrentTimestamp.setStatus('current')
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiCurrentTimestamp.setDescription('DOCSIS 32-bit timestamp (DTS). ')
apexDepiStatusGeneralDtiPort1CableAdvanceValue = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiPort1CableAdvanceValue.setStatus('current')
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiPort1CableAdvanceValue.setDescription('24-bit Cable Advance value is derived by dividing the cable delay by 2.')
apexDepiStatusGeneralDtiPort2CableAdvanceValue = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiPort2CableAdvanceValue.setStatus('current')
if mibBuilder.loadTexts: apexDepiStatusGeneralDtiPort2CableAdvanceValue.setDescription('24-bit Cable Advance value is derived by dividing the cable delay by 2.')
apexDepiControlConfigGeneralKeepaliveTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 600))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiControlConfigGeneralKeepaliveTimeout.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigGeneralKeepaliveTimeout.setDescription("Timeout in seconds to wait while no control or data messages are received within the connection before sending a DEPI:HELLO message. Default is 60 seconds. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDepiControlConfigApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 2), )
if mibBuilder.loadTexts: apexDepiControlConfigApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigApplyTable.setDescription('Table of Apply Change for the data for apexDepiControlConfigTable. Entries in the apexDepiControlConfigTable cannot be modified while DEPI Control Connections and DEPI Sessions currently exist. ')
apexDepiControlConfigApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexDepiControlConfigApplyIndex"))
if mibBuilder.loadTexts: apexDepiControlConfigApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigApplyEntry.setDescription('DEPI Control Configuration Apply Table Entry. ')
apexDepiControlConfigApplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10)))
if mibBuilder.loadTexts: apexDepiControlConfigApplyIndex.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigApplyIndex.setDescription('The index of the Depi Control Config Apply Table.')
apexDepiControlConfigApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 2, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiControlConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigApplyChange.setDescription("The Apply for any entries in the apexDepiControlConfigTable. Entries in the apexDepiControlConfigTable cannot be modified while DEPI Control Connections and DEPI Sessions currently exist. This parameter MUST be set to 'apply' in order for any of the data in the apexDepiControlConfigTable to take effect. This parameter MUST be set LAST after all other data in the group has been configured. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apexDepiControlConfigTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3), )
if mibBuilder.loadTexts: apexDepiControlConfigTable.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigTable.setDescription("This table provides a list of DEPI Control Connections initiated by M-CMTS Cores. A maximum of 10 connections is accepted. Entries in the apexDepiControlConfigTable cannot be modified while DEPI Control Connections and DEPI Sessions currently exist. @Config(config=yes, reboot=no) @Commit(param=apexDepiControlConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDepiControlConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexDepiControlConfigIndex"))
if mibBuilder.loadTexts: apexDepiControlConfigEntry.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigEntry.setDescription('DEPI Control Configuration Table Entry. ')
apexDepiControlConfigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10)))
if mibBuilder.loadTexts: apexDepiControlConfigIndex.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigIndex.setDescription('The index of the Depi Control Config Table.')
apexDepiControlConfigEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiControlConfigEnable.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigEnable.setDescription('The enable setting for DEPI Control Connection. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ')
apexDepiControlConfigInterfaceNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiControlConfigInterfaceNumber.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigInterfaceNumber.setDescription("Represents the Gigabit Ethernet interface number. Range: '0' = Not Applicable GBE = 1-4 ")
apexDepiControlConfigSrcIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiControlConfigSrcIpAddr.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigSrcIpAddr.setDescription('This parameter indicates the M-CMTS Core IP address. ')
apexDepiControlConfigOverUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("over-IP", 1), ("over-UDP", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiControlConfigOverUdp.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigOverUdp.setDescription('This parameter indicates whether the DEPI Control Connection and Sessions will be accepted over the UDP protocol. ')
apexDepiControlConfigType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("static", 1), ("dynamic", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiControlConfigType.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlConfigType.setDescription('This parameter indicates whether DEPI Sessions are established dynamically using the DEPI control protocol or statically. Not supported. ')
apexDepiControlStatusGeneralTotalConnections = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusGeneralTotalConnections.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusGeneralTotalConnections.setDescription('The number of DEPI Control Connections established since reboot.')
apexDepiControlStatusGeneralCurrentConnections = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusGeneralCurrentConnections.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusGeneralCurrentConnections.setDescription('The current number of DEPI Control Connections currently connected.')
apexDepiControlStatusGeneralRejectedConnections = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusGeneralRejectedConnections.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusGeneralRejectedConnections.setDescription('The number of control connection requests rejected for any reason.')
apexDepiControlStatusGeneralUnknownConnectionMessages = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusGeneralUnknownConnectionMessages.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusGeneralUnknownConnectionMessages.setDescription('The number of DEPI control messages ignored not related to any existing control connection i.e. unrecognized connection identifier.')
apexDepiControlStatusGeneralUnknownSessionMessages = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusGeneralUnknownSessionMessages.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusGeneralUnknownSessionMessages.setDescription('The number of DEPI messages ignored not related to any existing session i.e. unrecognized session identifier.')
apexDepiControlStatusGeneralInvalidApplyText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusGeneralInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusGeneralInvalidApplyText.setDescription("When apexDepiControlConfigApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a related entry that was invalid. ")
apexDepiControlStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2), )
if mibBuilder.loadTexts: apexDepiControlStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusTable.setDescription('Table of read-only status information pertaining to the DEPI Control Connections.')
apexDepiControlStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexDepiControlStatusIndex"))
if mibBuilder.loadTexts: apexDepiControlStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusEntry.setDescription('DEPI Control Status Table Entry.')
apexDepiControlStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10)))
if mibBuilder.loadTexts: apexDepiControlStatusIndex.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusIndex.setDescription('DEPI Session ID')
apexDepiControlStatusLocalUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusLocalUdp.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusLocalUdp.setDescription('The EQAM UDP port used in DEPI session messages from M-CMTS core. Only valid for DEPI connections using L2TPv3/UDP/IP. ')
apexDepiControlStatusRemoteUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusRemoteUdp.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusRemoteUdp.setDescription('The M-CMTS UDP port used in DEPI session messages from M-CMTS core. Only valid for DEPI connections using L2TPv3/UDP/IP. ')
apexDepiControlStatusConnectionStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("terminated", 1), ("failed", 2), ("waiting", 3), ("established", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusConnectionStatus.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusConnectionStatus.setDescription('M-CMTS core to the EQAM control connection status')
apexDepiControlStatusUnknownCtl = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusUnknownCtl.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusUnknownCtl.setDescription('Number of unrecognized DEPI messages not marked as mandatory received on this control connection. ')
apexDepiControlStatusMalformedCtl = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusMalformedCtl.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusMalformedCtl.setDescription('Number of malformed DEPI messages received on this control connection. ')
apexDepiControlStatusUnknownAvp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 7), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusUnknownAvp.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusUnknownAvp.setDescription('Number of messages received on this control connection with an unsupported AVP. ')
apexDepiControlStatusMalformedAvp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 8), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusMalformedAvp.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusMalformedAvp.setDescription('Number of messages received on this control connection with malformed AVP. ')
apexDepiControlStatusInvalidVendorId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 9), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusInvalidVendorId.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusInvalidVendorId.setDescription('Number of messages with an unsupported Vendor ID received on this control connection. The supported vendor IDs are 0 or 4491. ')
apexDepiControlStatusHbitSet = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 10), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusHbitSet.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusHbitSet.setDescription('Number of messages received on this control connection with H-bit set to 1. ')
apexDepiControlStatusTotalSessions = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 11), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusTotalSessions.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusTotalSessions.setDescription('Total number of sessions established on this control connection since EQAM reboot. Only valid for dynamically established connections. ')
apexDepiControlStatusCurrentSessions = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 12), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusCurrentSessions.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusCurrentSessions.setDescription('Number of session currently established on this control connection. Only valid for dynamically established connections. ')
apexDepiControlStatusRejectedSessions = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 13), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiControlStatusRejectedSessions.setStatus('current')
if mibBuilder.loadTexts: apexDepiControlStatusRejectedSessions.setDescription('Number of session setup related (ICQR/ICCN) messages rejected on this control connection. ')
apexDepiSessionConfigApplyTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 1), )
if mibBuilder.loadTexts: apexDepiSessionConfigApplyTable.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionConfigApplyTable.setDescription('Table of Apply Change for the data for apexDepiSessionConfigTable. ')
apexDepiSessionConfigApplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 1, 1), ).setIndexNames((0, "APEX-MIB", "apexDepiSessionConfigApplyOutputTsNum"))
if mibBuilder.loadTexts: apexDepiSessionConfigApplyEntry.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionConfigApplyEntry.setDescription('DEPI Session Status Table Entry.')
apexDepiSessionConfigApplyOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexDepiSessionConfigApplyOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionConfigApplyOutputTsNum.setDescription('The index of the Depi Session Config Apply Table.')
apexDepiSessionConfigApplyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 1, 1, 2), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiSessionConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionConfigApplyChange.setDescription("The Apply for any entries in the apexDepiSessionConfigTable. This parameter MUST be set to 'apply' in order for any of the data in the apexDepiSessionConfigTable to take effect. This parameter MUST be set LAST after all other data in the table entry has been configured. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apexDepiSessionConfigTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2), )
if mibBuilder.loadTexts: apexDepiSessionConfigTable.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionConfigTable.setDescription("Table of data for DEPI Session Mapping. There are 48 rows in this table mapping QAM output TS to DEPI Session. Once written, the change to this table will only take immediate effect after apexDepiSessionConfigApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexDepiSessionConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexDepiSessionConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexDepiSessionConfigOutputTsNum"))
if mibBuilder.loadTexts: apexDepiSessionConfigEntry.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionConfigEntry.setDescription('DEPI Session Config Table Entry.')
apexDepiSessionConfigOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexDepiSessionConfigOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionConfigOutputTsNum.setDescription('The QAM output transport stream number which to associate the DEPI Session. ')
apexDepiSessionConfigEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1, 2), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiSessionConfigEnable.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionConfigEnable.setDescription('The enable setting for DEPI Session. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ')
apexDepiSessionConfigControlId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiSessionConfigControlId.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionConfigControlId.setDescription('DOCSIS Control ID assignment. Value of 0 indicates transport stream to be used for Video only. ')
apexDepiSessionConfigDocsisTsid = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiSessionConfigDocsisTsid.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionConfigDocsisTsid.setDescription('The system wide unique M-CMTS TSID mapped to the QAM. This TSID is specified by the remote ID from the ICRQ message. ')
apexDepiSessionConfigUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiSessionConfigUdpPort.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionConfigUdpPort.setDescription('UDP port number defining the DEPI Session (if UDP is enabled.) The range of valid port numbers is 1 to 65535. ')
apexDepiSessionConfigSyncCorrection = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1, 6), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexDepiSessionConfigSyncCorrection.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionConfigSyncCorrection.setDescription('Enable or disable updating the timestamp in the SYNC messages. This is only valid for static connections. (For dynamically established sessions, M-CMTS core enables or disables the SYNC correction during session establishment) ')
apexDepiSessionStatusGeneralInvalidApplyText = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusGeneralInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusGeneralInvalidApplyText.setDescription("When apexDepiSessionConfigApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a related entry that was invalid. ")
apexDepiSessionStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2), )
if mibBuilder.loadTexts: apexDepiSessionStatusTable.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusTable.setDescription('Table of read-only status information pertaining to the DEPI Sessions.')
apexDepiSessionStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexDepiSessionStatusIndex"))
if mibBuilder.loadTexts: apexDepiSessionStatusEntry.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusEntry.setDescription('DEPI Session Status Table Entry.')
apexDepiSessionStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexDepiSessionStatusIndex.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusIndex.setDescription('DEPI Session ID.')
apexDepiSessionStatusControlId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusControlId.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusControlId.setDescription('The DEPI Control ID this session belongs to.')
apexDepiSessionStatusOutputQAMChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusOutputQAMChannel.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusOutputQAMChannel.setDescription('The QAM Channel number this session is mapped to.')
apexDepiSessionStatusLocalUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusLocalUdp.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusLocalUdp.setDescription('The local UDP port used by the APEX to communicate the DEPI Session messages to the M-CMTS Core')
apexDepiSessionStatusRemoteUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusRemoteUdp.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusRemoteUdp.setDescription('The remote UDP port used by the M-CMTS Core to communicate the DEPI Session messages to the Apex.')
apexDepiSessionStatusStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("terminated", 1), ("failed", 2), ("waiting", 3), ("established", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusStatus.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusStatus.setDescription('M-CMTS core to the EQAM control connection status')
apexDepiSessionStatusPerHopBehavior = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusPerHopBehavior.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusPerHopBehavior.setDescription('Per Hop Behavior value for this session.')
apexDepiSessionStatusUnknownCtl = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 8), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusUnknownCtl.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusUnknownCtl.setDescription('Number of unrecognized DEPI messages not marked as mandatory received on this session.')
apexDepiSessionStatusMalformedCtl = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 9), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusMalformedCtl.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusMalformedCtl.setDescription('Number of malformed DEPI messages received on this session.')
apexDepiSessionStatusUnknownAvp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 10), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusUnknownAvp.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusUnknownAvp.setDescription('Number of messages received on this session with an unsupported AVP.')
apexDepiSessionStatusMalformedAvp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 11), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusMalformedAvp.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusMalformedAvp.setDescription('Number of messages received on this session with malformed AVP.')
apexDepiSessionStatusInvalidVendorId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 12), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusInvalidVendorId.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusInvalidVendorId.setDescription('Number of messages with an unsupported Vendor ID received on this session. The supported vendor IDs are 0 or 4491.')
apexDepiSessionStatusHbitSet = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 13), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusHbitSet.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusHbitSet.setDescription('Number of messages received on this session with H-bit set to 1.')
apexDepiSessionStatusInSLIMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 14), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusInSLIMsgs.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusInSLIMsgs.setDescription('Number of SLI messages received on this session.')
apexDepiSessionStatusOutSLIMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 15), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusOutSLIMsgs.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusOutSLIMsgs.setDescription('Number of SLI messages sent on this session.')
apexDepiSessionStatusIngressDlmMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 16), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusIngressDlmMsgs.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusIngressDlmMsgs.setDescription('Number of DLM messages received on this session.')
apexDepiSessionStatusEgressDlmMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 17), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusEgressDlmMsgs.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusEgressDlmMsgs.setDescription('Number of DLM messages sent on this session.')
apexDepiSessionStatusLatencyStart = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 18), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusLatencyStart.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusLatencyStart.setDescription('Last latency related timestamp start value received.')
apexDepiSessionStatusLatencyEnd = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 19), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusLatencyEnd.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusLatencyEnd.setDescription('Last latency related timestamp end value received.')
apexDepiSessionStatusInDataPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 20), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusInDataPackets.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusInDataPackets.setDescription('Number of data packets received on this session.')
apexDepiSessionStatusInSequenceDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 21), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusInSequenceDiscards.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusInSequenceDiscards.setDescription('Number of data packets received on this session that are discarded due to sequencing error.')
apexDepiSessionStatusInDataPacketDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 22), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusInDataPacketDiscards.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusInDataPacketDiscards.setDescription('Number of data packets received on this session that are discarded for reasons other than sequencing errors.')
apexDepiSessionStatusSessionID = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 23), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexDepiSessionStatusSessionID.setStatus('current')
if mibBuilder.loadTexts: apexDepiSessionStatusSessionID.setDescription('Remote DEPI Session ID, used by the Remote End to identify the DEPI Session and locally to bind the Session to a QAM Channel.')
apexPsipConfigApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 1), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigApplyChange.setDescription("The Apply for parameters in apexPsipConfigGeneral. This parameter MUST be set to 'apply' in order for other apexPsipConfigGeneral parameters to take effect. This parameter MUST be set LAST after other apexPsipConfigGeneral parameters have been configured. @Config(config=no, reboot=no) ")
apexPsipConfigMgtMsgInsertionPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(150, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigMgtMsgInsertionPeriod.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigMgtMsgInsertionPeriod.setDescription("Specify insertion rate (ms) for MGT PSIP table. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigSttMsgInsertionPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1000, 5000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigSttMsgInsertionPeriod.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigSttMsgInsertionPeriod.setDescription("Specify insertion rate (ms) for STT PSIP table. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigCvctMsgInsertionPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(400, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigCvctMsgInsertionPeriod.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigCvctMsgInsertionPeriod.setDescription("Specify insertion rate (ms) for CVCT PSIP table. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigRrtMsgInsertionPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(30000, 60000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigRrtMsgInsertionPeriod.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigRrtMsgInsertionPeriod.setDescription("Specify insertion rate (ms) for RRT PSIP table. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigEit0InsertionPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(500, 60000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigEit0InsertionPeriod.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigEit0InsertionPeriod.setDescription("EIT insertion rate (ms) of EIT-0. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigEit1InsertionPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(500, 60000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigEit1InsertionPeriod.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigEit1InsertionPeriod.setDescription("EIT insertion rate (ms) of EIT-1. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigEit2InsertionPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(500, 60000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigEit2InsertionPeriod.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigEit2InsertionPeriod.setDescription("EIT insertion rate (ms) of EIT-2. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigEit3InsertionPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 9), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(500, 60000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigEit3InsertionPeriod.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigEit3InsertionPeriod.setDescription("EIT insertion rate (ms) of EIT-3. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigTimeApplyChange = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 1), ApplyDataToDeviceTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigTimeApplyChange.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigTimeApplyChange.setDescription("The Apply for parameters in apexPsipConfigTime group. This parameter MUST be set to 'apply' in order for other apexPsipConfigTime parameters to take effect. This parameter MUST be set LAST after other apexPsipConfigTime parameters have been configured. @Config(config=no, reboot=no) ")
apexPsipConfigTimeDsMonthIn = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigTimeDsMonthIn.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigTimeDsMonthIn.setDescription("Configurable month for entering DST. Once written, the change to this parameter will only take immediate effect after apexPsipConfigTimeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigTimeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigTimeDsDayIn = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigTimeDsDayIn.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigTimeDsDayIn.setDescription("Configurable day for entering DST. Once written, the change to this parameter will only take immediate effect after apexPsipConfigTimeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigTimeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigTimeDsHourIn = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 18))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigTimeDsHourIn.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigTimeDsHourIn.setDescription("Configurable hour for entering DST. Once written, the change to this parameter will only take immediate effect after apexPsipConfigTimeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigTimeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigTimeDsMonthOut = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigTimeDsMonthOut.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigTimeDsMonthOut.setDescription("Configurable month for exiting DST. Once written, the change to this parameter will only take immediate effect after apexPsipConfigTimeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigTimeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigTimeDsDayOut = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigTimeDsDayOut.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigTimeDsDayOut.setDescription("Configurable day for exiting DST. Once written, the change to this parameter will only take immediate effect after apexPsipConfigTimeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigTimeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipConfigTimeDsHourOut = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 18))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexPsipConfigTimeDsHourOut.setStatus('current')
if mibBuilder.loadTexts: apexPsipConfigTimeDsHourOut.setDescription("Configurable hour for exiting DST. Once written, the change to this parameter will only take immediate effect after apexPsipConfigTimeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigTimeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexPsipStatusInputTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2), )
if mibBuilder.loadTexts: apexPsipStatusInputTable.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusInputTable.setDescription('The following table contains a list of messages that are being extracted from the input side. ')
apexPsipStatusInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexPsipStatusInputIndex"), (0, "APEX-MIB", "apexPsipStatusInputPid"), (0, "APEX-MIB", "apexPsipStatusInputMessageType"), (0, "APEX-MIB", "apexPsipStatusInputSourceId"), (0, "APEX-MIB", "apexPsipStatusInputSegment"), (0, "APEX-MIB", "apexPsipStatusInputPart"))
if mibBuilder.loadTexts: apexPsipStatusInputEntry.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusInputEntry.setDescription('PSIP Table Entry.')
apexPsipStatusInputIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 784)))
if mibBuilder.loadTexts: apexPsipStatusInputIndex.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusInputIndex.setDescription('Indicates the input index for which this message applies.')
apexPsipStatusInputPid = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 8191)))
if mibBuilder.loadTexts: apexPsipStatusInputPid.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusInputPid.setDescription('Indicates the PID that this message is contained in.')
apexPsipStatusInputMessageType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)))
if mibBuilder.loadTexts: apexPsipStatusInputMessageType.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusInputMessageType.setDescription('Indicates the PSIP message type. 199 - MGT 200 - TVCT 201 - CVCT 203 - EIT 202 - RRT 205 - STT ')
apexPsipStatusInputSourceId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)))
if mibBuilder.loadTexts: apexPsipStatusInputSourceId.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusInputSourceId.setDescription('Indicates the Source Id of EIT tables. When a message is not specifically related to a program, this value is 0.')
apexPsipStatusInputSegment = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256)))
if mibBuilder.loadTexts: apexPsipStatusInputSegment.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusInputSegment.setDescription('Indicates the segment number of this message. Otherwise this is 0.')
apexPsipStatusInputPart = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)))
if mibBuilder.loadTexts: apexPsipStatusInputPart.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusInputPart.setDescription('Since a message can be 4096 bytes long the message may divided into parts. Each part of the message is indexed using this index.')
apexPsipStatusInputBody = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsipStatusInputBody.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusInputBody.setDescription('Raw ASCII hex of the PSIP message.')
apexPsipStatusInputGpsTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsipStatusInputGpsTime.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusInputGpsTime.setDescription('The GPS time when the PSIP message was added to the table.')
apexPsipStatusInputInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsipStatusInputInfo.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusInputInfo.setDescription('Comma-separated string showing Input Interface, UDP port, Multicast IP, and Source IP for this PSIP message.')
apexPsipStatusOutputTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3), )
if mibBuilder.loadTexts: apexPsipStatusOutputTable.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusOutputTable.setDescription('The following table contains a list of messages that are being inserted to the output side of the apex. ')
apexPsipStatusOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexPsipStatusOutputIndex"), (0, "APEX-MIB", "apexPsipStatusOutputPid"), (0, "APEX-MIB", "apexPsipStatusOutputMessageType"), (0, "APEX-MIB", "apexPsipStatusOutputSourceId"), (0, "APEX-MIB", "apexPsipStatusOutputSegment"), (0, "APEX-MIB", "apexPsipStatusOutputPart"))
if mibBuilder.loadTexts: apexPsipStatusOutputEntry.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusOutputEntry.setDescription('PSIP Table Entry.')
apexPsipStatusOutputIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48)))
if mibBuilder.loadTexts: apexPsipStatusOutputIndex.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusOutputIndex.setDescription('Indicates the Output index for which this message applies. This is the Output Transport Stream number (1..48). ')
apexPsipStatusOutputPid = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 8191)))
if mibBuilder.loadTexts: apexPsipStatusOutputPid.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusOutputPid.setDescription('Indicates the PID that this message is contained in.')
apexPsipStatusOutputMessageType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)))
if mibBuilder.loadTexts: apexPsipStatusOutputMessageType.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusOutputMessageType.setDescription('Indicates the PSIP message type. 199 - MGT 200 - TVCT 201 - CVCT 203 - EIT 202 - RRT 205 - STT')
apexPsipStatusOutputSourceId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)))
if mibBuilder.loadTexts: apexPsipStatusOutputSourceId.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusOutputSourceId.setDescription('Indicates the Source Id of EIT tables. When a message is not specifically related to a program, this value is 0.')
apexPsipStatusOutputSegment = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256)))
if mibBuilder.loadTexts: apexPsipStatusOutputSegment.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusOutputSegment.setDescription('Indicates the segment number of this message. Otherwise this is 0.')
apexPsipStatusOutputPart = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)))
if mibBuilder.loadTexts: apexPsipStatusOutputPart.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusOutputPart.setDescription('Since a message can be 4096 bytes long the message may divided into parts. Each part of the message is indexed using this index.')
apexPsipStatusOutputBody = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsipStatusOutputBody.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusOutputBody.setDescription('Raw ASCII hex of the PSIP message.')
apexPsipStatusOutputGpsTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsipStatusOutputGpsTime.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusOutputGpsTime.setDescription('The GPS time when the PSIP message was added to the table.')
apexPsipStatusServiceTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4), )
if mibBuilder.loadTexts: apexPsipStatusServiceTable.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusServiceTable.setDescription('The following table shows the PSIP status per service. For each service, the service number, the Output Transport Stream number, its PSIP state and its source id are shown in the current entry. This table is indexed the same as apexOutputProgramTable. ')
apexPsipStatusServiceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexPsipStatusServiceIndex"))
if mibBuilder.loadTexts: apexPsipStatusServiceEntry.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusServiceEntry.setDescription('PSIP Status Table Entry per service.')
apexPsipStatusServiceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 768)))
if mibBuilder.loadTexts: apexPsipStatusServiceIndex.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusServiceIndex.setDescription('Output Program Table Index.')
apexPsipStatusServiceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsipStatusServiceNum.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusServiceNum.setDescription('Current Output Service Number.')
apexPsipStatusServiceOutputTs = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 48))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsipStatusServiceOutputTs.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusServiceOutputTs.setDescription('Current Output Transport Stream of this service.')
apexPsipStatusServiceState = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsipStatusServiceState.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusServiceState.setDescription('Current program PSIP state.')
apexPsipStatusServiceSourceId = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexPsipStatusServiceSourceId.setStatus('current')
if mibBuilder.loadTexts: apexPsipStatusServiceSourceId.setDescription('Current PSIP Program Source Id.')
apexSupportPreencryptedSimulcrypt = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 26, 1, 1, 1), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexSupportPreencryptedSimulcrypt.setStatus('current')
if mibBuilder.loadTexts: apexSupportPreencryptedSimulcrypt.setDescription("Allows to configure the APEX to support services pre-encrypted with Simulcrypt. All the CA descriptors present in the input PMT will be copied to the output PMT, modifying the ECM PID references if needed. Default value is enabled. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexAlarmHardwareFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8000), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmHardwareFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmHardwareFault.setDescription("Indicates that a Hardware related error occurred. Examples include missing or uncommunicative HW, failures in initialization of HW, and failures to configure HW. These can occur at startup or when the system is operational. Types of HW Faults include: Application File(s) Download failure; SPI Interface Initialization failure; PCI Interface Initialization failure; GigE Configuration failure; MUX Configuration failure; QAM Module Communication failure; Unsupported/Incorrect HW/FW Version (QAM, etc.); Fatal Host Firmware Exception. 'critical' indicates a fatal error occurred that prevents the APEX from performing operational requirements. 'warning' indicates an error that does not prevent the APEX from performing operational requirements. ")
apexAlarmInvalidInitData = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8001), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmInvalidInitData.setStatus('current')
if mibBuilder.loadTexts: apexAlarmInvalidInitData.setDescription('Set when invalid Initialization data (ini files) is encountered. ')
apexAlarmTemperatureFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8002), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmTemperatureFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmTemperatureFault.setDescription("'critical' indicates one or more temperature sensors is reporting a high temperature condition. ")
apexAlarmFanFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8003), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmFanFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmFanFault.setDescription("'major' indicates one or more fans has reduced RPM readings. ")
apexAlarmPowerFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8004), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmPowerFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmPowerFault.setDescription("Power Supply Fault Alarm. 'warning' indicates power supply not compatible (apexPsStatusInstalled). 'major' indicates power supply or fan only module) removed (apexPsStatusInstalled). 'major' indicates power supply input power fault (apexPsStatusInputPowerStatus), output power fault (apexPsStatusOutputPowerStatus), or comm fault (apexPsStatusCommError). 'critical' indicates power supply over temperature fault (apexPsStatusTemperatureStatus). ")
apexAlarmGbeLossOfPhysicalInput = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8020), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmGbeLossOfPhysicalInput.setStatus('current')
if mibBuilder.loadTexts: apexAlarmGbeLossOfPhysicalInput.setDescription("Loss of Physical Gigabit Ethernet Input Alarm. 'critical' indicates that one or more physical interfaces that are configured as enabled to receive input have a failure (apexGbeStatusLossOfPhysicalInput). Physical input interfaces can be disabled to prevent this alarm when no input is connected. ")
apexAlarmGbeBufferFullness = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8021), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmGbeBufferFullness.setStatus('current')
if mibBuilder.loadTexts: apexAlarmGbeBufferFullness.setDescription("Gigabit Ethernet Frame Buffer Fullness Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet Frame buffers are about to or have overflowed. The overflow level is based on the actual input data rate. 'major' when the frame buffer crosses a user specified threshold (apexGbeConfigFrameBufferAlarmThreshold). Cleared when the buffer level drops below the threshold. 'critical' when the frame buffer is completely full and frames are being dropped. Cleared when the overflow condition stops. A Major alarm, depending on the threshold setting, indicates that the APEX is getting close to overflowing it's internal Gigabit Ethernet frame buffers. A Critical alarm indicates that the frame buffer levels have overflowed. This will cause loss of packets and may result in tiling and other output anomalies. ")
apexAlarmGbeInputStreamLowBitRate = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8022), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmGbeInputStreamLowBitRate.setStatus('current')
if mibBuilder.loadTexts: apexAlarmGbeInputStreamLowBitRate.setDescription("Gigabit Ethernet Input Stream Low Bit Rate Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet Input Streams as configured in apexManRteGbeInRedTable have a low bit rate condition. For alarm status of each stream refer to entries apexGbeStatInTsPriLowBitRateAlarm and apexGbeStatInTsSecLowBitRateAlarm. 'major' when one or more stream bit rates are below their apexManRteGbeInRedPriLowAlarmBitRate or apexManRteGbeInRedSecLowAlarmBitRate. Clears when all streams have been restored to at or above their configured apexManRteGbeInRedPriLowAlarmBitRate or apexManRteGbeInRedSecLowAlarmBitRate. ")
apexAlarmGbeInputStreamHighBitRate = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8023), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmGbeInputStreamHighBitRate.setStatus('current')
if mibBuilder.loadTexts: apexAlarmGbeInputStreamHighBitRate.setDescription("Gigabit Ethernet Input Stream High Bit Rate Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet Input Streams as configured in apexManRteGbeInRedTable or via a Session Controller have a high bit rate condition. For alarm status of each stream refer to entry apexGbeStatInTsPriHighBitRateAlarm and apexGbeStatInTsSecHighBitRateAlarm. 'major' when one or more stream bit rates are above their apexManRteGbeInRedPriHighAlarmBitRate or apexManRteGbeInRedSecHighAlarmBitRate. Clears when all streams have been restored to at or below their configured apexManRteGbeInRedPriHighAlarmBitRate or apexManRteGbeInRedSecHighAlarmBitRate. ")
apexAlarmGbeMptsRedundPrimaryThreshold = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8024), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmGbeMptsRedundPrimaryThreshold.setStatus('current')
if mibBuilder.loadTexts: apexAlarmGbeMptsRedundPrimaryThreshold.setDescription("Gigabit Ethernet Input MPTS Redundant Primary Stream Below Threshold Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet Input Streams configured in apexManRteGbeInRedTable as being the Primary stream of a Redundant Pair are below the configured threshold. For alarm status of each stream refer to entry apexGbeStatInTsMptsRedundPriAlarm. 'major' when one or more stream bit rates are below their threshold as specified in apexManRteGbeInRedThreshold. Clears when all streams have been restored to at or above their configured apexManRteGbeInRedThreshold. ")
apexAlarmGbeMptsRedundFailOver = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8025), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmGbeMptsRedundFailOver.setStatus('current')
if mibBuilder.loadTexts: apexAlarmGbeMptsRedundFailOver.setDescription("Gigabit Ethernet Input MPTS Redundant Fail Over Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet Input Streams configured in apexManRteGbeInRedTable as being the Primary stream of a Redundant Pair have Failed Over to the Secondary stream. For alarm status of each stream refer to entry apexGbeStatInTsMptsRedundFailAlarm. 'major' when one or more Redundant Primary streams have failed over to the Secondary. Clears when all Primary streams have been restored and the APEX has switched back to the Primary from the Secondary. ")
apexAlarmServiceInError = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8026), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmServiceInError.setStatus('current')
if mibBuilder.loadTexts: apexAlarmServiceInError.setDescription("Alarm Service In Error. 'major' indicates that one or more services is in error (unable to fully continue processing). However, this is only for very specific errors where the error could be caused by either the input stream being invalid or another command along with the input stream is causing the error. For example, if mapping an input service to an output and that PMT is not referenced in the PAT, or the number of PIDs in the PMT is greater than the number of PIDs supported, then the command is in error. This error condition would be cleared if a new PAT is received referencing the PMT or in the other case, if a new PMT is received referencing a valid number of PIDs. Refer to apexOutputProgramRoutingStatus for more information. This alarm occurs on the first error. It is not issued for additional errors. It is cleared when all errors are cleared. ")
apexAlarmGbeLossOfInputStream = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8027), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmGbeLossOfInputStream.setStatus('current')
if mibBuilder.loadTexts: apexAlarmGbeLossOfInputStream.setDescription('Loss of Gbe Input Stream Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet Input Streams is missing. A missing input stream is determined based on user configured data or stream rate and detection timeout value. This alarm is only applicable when the input streams are configured to be monitored for loss of input stream. This alarm occurs on the first error. It is not issued for additional errors. It is cleared when all errors are cleared. ')
apexAlarmGigeToHostCommFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8028), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmGigeToHostCommFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmGigeToHostCommFault.setDescription('Loss of Communications from Gige to Host Alarm. This alarm is used to inform the user when the Host processor is no longer receiving periodic status messages from the Gige processor. This alarm occurs on the first error. It is not issued for additional errors. It is cleared when the condition is resolved. ')
apexAlarmGbeInterfaceRedundFailOver = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8029), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmGbeInterfaceRedundFailOver.setStatus('current')
if mibBuilder.loadTexts: apexAlarmGbeInterfaceRedundFailOver.setDescription("Gigabit Ethernet Interface Redundant Fail Over Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet interfaces have Failed Over to the Secondary interface. The APEX determines an interface as failed when link has been lost. 'major' when one or more Primary interfaces have failed over to the Secondary. Clears when all Primary interfaces have been restored and the APEX has switched back to the Primary from the Secondary. ")
apexAlarmOutputUtilizationFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8040), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmOutputUtilizationFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmOutputUtilizationFault.setDescription("Output Transport Stream Utilization Threshold Alarm. 'minor' when apexOutputTsUtilMonAlarmThreshold is met or exceeded for apexOutputTsUtilMonSetAlarmDelay for an OTS. The alarm will clear after the OTS remains below apexOutputTsUtilMonAlarmThreshold for apexOutputTsUtilMonClearAlarmDelay. ")
apexAlarmOutputOverflow = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8041), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmOutputOverflow.setStatus('current')
if mibBuilder.loadTexts: apexAlarmOutputOverflow.setDescription("Output Transport Stream Overflow Alarm. 'critical' when apexOutputTsUtilizOverflow occurs for an OTS. The alarm will clear when OTS no longer in overflow. ")
apexAlarmQamModuleFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8042), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmQamModuleFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmQamModuleFault.setDescription("QAM Port Fault Alarm. 'major' when apexQamModuleStatError occurs when all QAM channels on the QAM Module have apexQamChanStatActive of not 'active'. 'critical' when apexQamModuleStatError occurs when all QAM channels on the QAM Module have apexQamChanStatActive of 'active'. The alarm will clear after all faults clear on the QAM Module. The current alarm status on a QAM Module basis can be found in apexQamModuleStatFaultCondition. ")
apexAlarmQamRfPortFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8043), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmQamRfPortFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmQamRfPortFault.setDescription("QAM RF Port Fault Alarm. 'major' when power voltage or output RF level error occurs on the RF Port. 'critical' when clock, PLL, or data sync error occurs on the RF Port. The alarm will clear after all faults clear for the RF Port. The current alarm status on an RF port basis can be found in apexQamRfPortStatFaultCondition. ")
apexAlarmQamChannelFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8044), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmQamChannelFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmQamChannelFault.setDescription("QAM Channel Fault Alarm. 'critical' when any or all of the QAM Channel errors enumerated in apexQamChanStatError occur on a QAM channel. The alarm will clear after all faults clear on the QAM channel. The current alarm status on a QAM channel basis can be found in apexQamChanStatFaultCondition. ")
apexAlarmQamRfRedundFailOver = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8045), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmQamRfRedundFailOver.setStatus('current')
if mibBuilder.loadTexts: apexAlarmQamRfRedundFailOver.setDescription("QAM RF Redundancy Fail Over Alarm. 'major' when the backup QAM RF Port status is 'active' (apexQamRfRedundStatusBackupPort). This occurs when a primary QAM RF Port has failed over to the backup RF Port or the user has forced a primary to the backup. The alarm will clear when the backup QAM RF Port status returns to 'standby'. The alarm is relevant only when apexQamRfRedundConfigEnable is 'enabled'. The current QAM RF Port that is active on the backup port can be found in apexQamRfRedundStatusFailedPort. ")
apexAlarmQamRfRedundMismatch = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8046), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmQamRfRedundMismatch.setStatus('current')
if mibBuilder.loadTexts: apexAlarmQamRfRedundMismatch.setDescription("QAM RF Redundancy Mismatch Alarm. 'warning' when channels could be lost on QAM RF Fail Over to backup or on Switch Back to primary. Refer to apexQamRfRedundStatusMismatch for more information. The alarm will clear when mismatch condition clears. The alarm is relevant only when apexQamRfRedundConfigEnable is 'enabled'. ")
apexAlarmRtspControllerCommFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8050), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmRtspControllerCommFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmRtspControllerCommFault.setDescription("RTSP Controller Communication Fault. 'major' when the RTSP Controller is experiencing a communication fault. The alarm will clear when connection is restored the RTSP controller. ")
apexAlarmRdsCommFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8060), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmRdsCommFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmRdsCommFault.setDescription("RDS Communication Fault. 'major' when experiencing an RDS communication fault. The alarm will clear when RDS connection is restored. ")
apexAlarmRemCommFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8070), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmRemCommFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmRemCommFault.setDescription("REM Communication Fault. 'major' when experiencing an REM communication fault. The alarm will clear when REM connection is restored. Refer to apexQamRfRedundStatusRemConnection for more information. The alarm is relevant only when apexQamRfRedundConfigEnable is 'enabled' and apexQamRfRedundConfigRemConnection is not 'none'. ")
apexAlarmRemFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8071), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmRemFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmRemFault.setDescription("REM Fault. 'warning' when REM is reporting a 0x05 error code. 'major' when error received from REM (other than 0x05) or REM is reporting incorrect switch configuration. The alarm will clear when REM errors clear. Refer to apexQamRfRedundStatusRemError and apexQamRfRedundStatusRemSwitch for more information. The alarm is relevant only when apexQamRfRedundConfigEnable is 'enabled' and apexQamRfRedundConfigRemConnection is not 'none'. ")
apexAlarmDepiControlConnectionFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8080), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmDepiControlConnectionFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmDepiControlConnectionFault.setDescription('DEPI Control connection setup Fault. ')
apexAlarmDepiSessionSetupFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8081), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmDepiSessionSetupFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmDepiSessionSetupFault.setDescription('DEPI Session Setup Fault. ')
apexAlarmDtiSyncLossFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8082), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmDtiSyncLossFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmDtiSyncLossFault.setDescription('EQAM lost SYNC with the DTI Server. ')
apexAlarmChassisRedundancyPrimaryFailover = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8090), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmChassisRedundancyPrimaryFailover.setStatus('current')
if mibBuilder.loadTexts: apexAlarmChassisRedundancyPrimaryFailover.setDescription('Generated when the primary active APEX fails over to the secondary standby unit. Trap tells if failover is operator induced, or automatic because of a fault. Major if automatic due to some fault Warning if force-failover. Cleared when redundancy is disabled or when the primary becomes active and the secondary is standby. ')
apexAlarmChassisRedundancySecondaryFailover = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8091), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmChassisRedundancySecondaryFailover.setStatus('current')
if mibBuilder.loadTexts: apexAlarmChassisRedundancySecondaryFailover.setDescription('Generated when the secondary active APEX fails over to the primary standby unit. Trap tells if failover is operator induced, or automatic because of a fault. Major if automatic due to some fault Warning if force-failover. Cleared when redundancy is disabled or when the secondary becomes active and the primary is standby. ')
apexAlarmChassisRedundancyAvailabilityFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8092), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmChassisRedundancyAvailabilityFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmChassisRedundancyAvailabilityFault.setDescription('Generated when redundancy status is unavailable (except for link loss) configuration not synchronized secondary in fault state Cleared when redundancy status is available or redundancy disabled. ')
apexAlarmChassisRedundancyLinkFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8093), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmChassisRedundancyLinkFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmChassisRedundancyLinkFault.setDescription('Generated when ENET2 link is lost Cleared when ENET 2 link is present or redundancy disabled.')
apexAlarmChassisRedundancyConfigurationFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8094), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexAlarmChassisRedundancyConfigurationFault.setStatus('current')
if mibBuilder.loadTexts: apexAlarmChassisRedundancyConfigurationFault.setDescription('Generated when primary APEX receives heartbeat from another primary. Critical if APEX was in active state (sourcing broadcast content) Major if APEX was in standby state (broadcast ports muted). Cleared when primary APEX receives heartbeat from a secondary, configuration is changed to secondary, or redundancy is disabled.')
apexEventEmUserLoginFailed = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101, 8100), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEventEmUserLoginFailed.setStatus('current')
if mibBuilder.loadTexts: apexEventEmUserLoginFailed.setDescription('Event to indicate APEX EM User login failed 5 times.')
apexEventQamModuleUpgraded = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101, 8101), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEventQamModuleUpgraded.setStatus('current')
if mibBuilder.loadTexts: apexEventQamModuleUpgraded.setDescription('Event to indicate a QAM Module has been upgraded from 2x4 to 2x8 channel capability.')
apexEventChassisRedunPrimaryForceFailover = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101, 8110), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEventChassisRedunPrimaryForceFailover.setStatus('obsolete')
if mibBuilder.loadTexts: apexEventChassisRedunPrimaryForceFailover.setDescription('Generated when the operator forces a failover from the primary, back to the secondary APEX.')
apexEventChassisRedunSecondaryForceFailover = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101, 8111), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEventChassisRedunSecondaryForceFailover.setStatus('obsolete')
if mibBuilder.loadTexts: apexEventChassisRedunSecondaryForceFailover.setDescription('Generated when the operator forces a failover from the secondary, back to the primary APEX.')
apexEventChassisRedunFirmwareVersionMismatch = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101, 8112), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEventChassisRedunFirmwareVersionMismatch.setStatus('current')
if mibBuilder.loadTexts: apexEventChassisRedunFirmwareVersionMismatch.setDescription('Generated when the primary and secondary APEX firmware versions are mismatched.')
apexEventChassisRedunQAMVersionMismatch = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101, 8113), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexEventChassisRedunQAMVersionMismatch.setStatus('current')
if mibBuilder.loadTexts: apexEventChassisRedunQAMVersionMismatch.setDescription('Generated when the primary and secondary APEX QAM versions are mismatched.')
apexEnableInvalidInitData = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8001), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableInvalidInitData.setStatus('current')
if mibBuilder.loadTexts: apexEnableInvalidInitData.setDescription("This setting enables or disables apexAlarmInvalidInitData. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableGbeLossOfPhysicalInput = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8020), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableGbeLossOfPhysicalInput.setStatus('current')
if mibBuilder.loadTexts: apexEnableGbeLossOfPhysicalInput.setDescription("This setting enables or disables apexAlarmGbeLossOfPhysicalInput. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableGbeBufferFullness = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8021), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableGbeBufferFullness.setStatus('current')
if mibBuilder.loadTexts: apexEnableGbeBufferFullness.setDescription("This setting enables or disables apexAlarmGbeBufferFullness. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableGbeInputStreamLowBitRate = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8022), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableGbeInputStreamLowBitRate.setStatus('current')
if mibBuilder.loadTexts: apexEnableGbeInputStreamLowBitRate.setDescription("This setting enables or disables apexAlarmGbeInputStreamLowBitRate. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableGbeInputStreamHighBitRate = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8023), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableGbeInputStreamHighBitRate.setStatus('current')
if mibBuilder.loadTexts: apexEnableGbeInputStreamHighBitRate.setDescription("This setting enables or disables apexAlarmGbeInputStreamHighBitRate. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableGbeMptsRedundPrimaryThreshold = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8024), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableGbeMptsRedundPrimaryThreshold.setStatus('current')
if mibBuilder.loadTexts: apexEnableGbeMptsRedundPrimaryThreshold.setDescription("This setting enables or disables apexAlarmGbeMptsRedundPrimaryThreshold. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableGbeMptsRedundFailOver = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8025), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableGbeMptsRedundFailOver.setStatus('current')
if mibBuilder.loadTexts: apexEnableGbeMptsRedundFailOver.setDescription("This setting enables or disables apexAlarmGbeMptsRedundFailOver. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableServiceInError = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8026), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableServiceInError.setStatus('current')
if mibBuilder.loadTexts: apexEnableServiceInError.setDescription("This setting enables or disables apexAlarmServiceInError. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableGbeLossOfInputTsFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8027), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableGbeLossOfInputTsFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableGbeLossOfInputTsFault.setDescription("This setting enables or disables apexAlarmGbeLossOfInputStream. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableGbeInterfaceRedundFailOver = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8029), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableGbeInterfaceRedundFailOver.setStatus('current')
if mibBuilder.loadTexts: apexEnableGbeInterfaceRedundFailOver.setDescription("This setting enables or disables apexAlarmGbeInterfaceRedundFailOver. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableOutputUtilizationFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8040), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableOutputUtilizationFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableOutputUtilizationFault.setDescription("This setting enables or disables apexAlarmOutputUtilizationFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableOutputOverflow = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8041), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableOutputOverflow.setStatus('current')
if mibBuilder.loadTexts: apexEnableOutputOverflow.setDescription("This setting enables or disables apexAlarmOutputOverflow. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableQamModuleFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8042), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableQamModuleFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableQamModuleFault.setDescription("This setting enables or disables apexAlarmQamModuleFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableQamRfPortFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8043), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableQamRfPortFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableQamRfPortFault.setDescription("This setting enables or disables apexAlarmQamRfPortFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableQamChannelFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8044), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableQamChannelFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableQamChannelFault.setDescription("This setting enables or disables apexAlarmQamChannelFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableQamRfRedundFailOver = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8045), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableQamRfRedundFailOver.setStatus('current')
if mibBuilder.loadTexts: apexEnableQamRfRedundFailOver.setDescription("This setting enables or disables apexAlarmQamRfRedundFailOver. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableQamRfRedundMismatch = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8046), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableQamRfRedundMismatch.setStatus('current')
if mibBuilder.loadTexts: apexEnableQamRfRedundMismatch.setDescription("This setting enables or disables apexAlarmQamRfRedundMismatch. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableRtspControllerCommFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8050), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableRtspControllerCommFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableRtspControllerCommFault.setDescription("This setting enables or disables apexAlarmRtspControllerCommFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableRdsCommAlarmFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8060), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableRdsCommAlarmFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableRdsCommAlarmFault.setDescription("This setting enables or disables apexAlarmRdsCommFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableRemCommFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8070), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableRemCommFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableRemCommFault.setDescription("This setting enables or disables apexAlarmRemCommFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableRemFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8071), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableRemFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableRemFault.setDescription("This setting enables or disables apexAlarmRemFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableDepiControlConnectionFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8080), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableDepiControlConnectionFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableDepiControlConnectionFault.setDescription("This setting enables or disables apexAlarmDepiControlConnectionFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableDepiSessionSetupFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8081), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableDepiSessionSetupFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableDepiSessionSetupFault.setDescription("This setting enables or disables apexAlarmDepiSessionSetupFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableDtiSyncLossFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8082), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableDtiSyncLossFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableDtiSyncLossFault.setDescription("This setting enables or disables apexAlarmDtiSyncLossFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableChassisRedundancyPrimaryFailover = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8090), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableChassisRedundancyPrimaryFailover.setStatus('current')
if mibBuilder.loadTexts: apexEnableChassisRedundancyPrimaryFailover.setDescription("This setting enables or disables apexEnableChassisRedundancyPrimaryFailover. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableChassisRedundancySecondaryFailover = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8091), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableChassisRedundancySecondaryFailover.setStatus('current')
if mibBuilder.loadTexts: apexEnableChassisRedundancySecondaryFailover.setDescription("This setting enables or disables apexEnableChassisRedundancySecondaryFailover. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableChassisRedundancyAvailabilityFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8092), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableChassisRedundancyAvailabilityFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableChassisRedundancyAvailabilityFault.setDescription("This setting enables or disables apexEnableChassisRedundancyAvailabilityFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableChassisRedundancyLinkFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8093), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableChassisRedundancyLinkFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableChassisRedundancyLinkFault.setDescription("This setting enables or disables apexEnableChassisRedundancyLinkFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexEnableChassisRedundancyConfigurationFault = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8094), EnableDisableTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexEnableChassisRedundancyConfigurationFault.setStatus('current')
if mibBuilder.loadTexts: apexEnableChassisRedundancyConfigurationFault.setDescription("This setting enables or disables apexEnableChassisRedundancyConfigurationFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apexClearInvalidInitData = MibScalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 2, 8001), ClearAlarmTYPE()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: apexClearInvalidInitData.setStatus('current')
if mibBuilder.loadTexts: apexClearInvalidInitData.setDescription("Setting to 'clearAlarm' clears the apexAlarmInvalidInitData. The APEX will set this parameter back to 'clearAlarmNotInProgress' after clearing the alarm. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apexHwEventTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1), )
if mibBuilder.loadTexts: apexHwEventTable.setStatus('current')
if mibBuilder.loadTexts: apexHwEventTable.setDescription('Table of Hardware Events that have occurred. Maximum of 100 events will be recorded. ')
apexHwEventEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1), ).setIndexNames((0, "APEX-MIB", "apexHwEventIndex"))
if mibBuilder.loadTexts: apexHwEventEntry.setStatus('current')
if mibBuilder.loadTexts: apexHwEventEntry.setDescription('Hardware Event Table Entry.')
apexHwEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647)))
if mibBuilder.loadTexts: apexHwEventIndex.setStatus('current')
if mibBuilder.loadTexts: apexHwEventIndex.setDescription('Index to HW Event table entry.')
apexHwEventTimeLogged = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexHwEventTimeLogged.setStatus('current')
if mibBuilder.loadTexts: apexHwEventTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this event was logged. ')
apexHwEventAlarmCode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexHwEventAlarmCode.setStatus('current')
if mibBuilder.loadTexts: apexHwEventAlarmCode.setDescription('Last number of alarm OID. Can be one of the following: 0 Indicates event is informational and may or may not cause an alarm. 8000 apexAlarmHardwareFault 8002 apexAlarmTemperatureFault 8003 apexAlarmFanFault 8004 apexAlarmPowerFault 8042 apexAlarmQamModuleFault 8043 apexAlarmQamRfPortFault 8044 apexAlarmQamChannelFault 8045 apexAlarmQamRfRedundFailOver 8046 apexAlarmQamRfRedundMismatch 8070 apexAlarmRemCommFault 8071 apexAlarmRemFault More details about the error can be found in apexHwEventDescription. ')
apexHwEventAlarmSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexHwEventAlarmSeverity.setStatus('current')
if mibBuilder.loadTexts: apexHwEventAlarmSeverity.setDescription('Alarm severity level of this event. ')
apexHwEventData = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexHwEventData.setStatus('current')
if mibBuilder.loadTexts: apexHwEventData.setDescription('Additional integer data. When apexHwEventAlarmCode is non-zero, this will be the same as Additional Data 1 as in the trap for the alarm. When apexHwEventAlarmCode is zero, this may contain additional data helpful in debug. ')
apexHwEventDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexHwEventDescription.setStatus('current')
if mibBuilder.loadTexts: apexHwEventDescription.setDescription('Text description of the event.')
apexInvalidInitDataTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 2), )
if mibBuilder.loadTexts: apexInvalidInitDataTable.setStatus('current')
if mibBuilder.loadTexts: apexInvalidInitDataTable.setDescription('Table of Invalid Initialization Data Errors. Maximum of 100 errors will be recorded. ')
apexInvalidInitDataEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 2, 1), ).setIndexNames((0, "APEX-MIB", "apexInvalidInitDataIndex"))
if mibBuilder.loadTexts: apexInvalidInitDataEntry.setStatus('current')
if mibBuilder.loadTexts: apexInvalidInitDataEntry.setDescription('Invalid Initialization Data Table Entry.')
apexInvalidInitDataIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647)))
if mibBuilder.loadTexts: apexInvalidInitDataIndex.setStatus('current')
if mibBuilder.loadTexts: apexInvalidInitDataIndex.setDescription('Index to Invalid Initialization Data table entry.')
apexInvalidInitDataTimeLogged = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInvalidInitDataTimeLogged.setStatus('current')
if mibBuilder.loadTexts: apexInvalidInitDataTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this event was logged. ')
apexInvalidInitDataDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 2, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexInvalidInitDataDescription.setStatus('current')
if mibBuilder.loadTexts: apexInvalidInitDataDescription.setDescription('Text string describing the data error.')
apexOutputTsEventTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3), )
if mibBuilder.loadTexts: apexOutputTsEventTable.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventTable.setDescription('Table of Output Stream events that have occurred. Maximum of 200 events will be recorded. ')
apexOutputTsEventEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1), ).setIndexNames((0, "APEX-MIB", "apexOutputTsEventIndex"))
if mibBuilder.loadTexts: apexOutputTsEventEntry.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventEntry.setDescription('Output Stream Error Table Entry.')
apexOutputTsEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647)))
if mibBuilder.loadTexts: apexOutputTsEventIndex.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventIndex.setDescription('Index to Output Stream Error table. ')
apexOutputTsEventTimeLogged = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventTimeLogged.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this event was logged. ')
apexOutputTsEventAlarmCode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventAlarmCode.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventAlarmCode.setDescription('Last number of alarm OID. Can be one of the following: 0 Indicates event is informational and may or may not cause an alarm. 8040 apexAlarmOutputUtilizationFault 8041 apexAlarmOutputOverflow More details about the error can be found in apexOutputTsEventDescription. ')
apexOutputTsEventAlarmSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventAlarmSeverity.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventAlarmSeverity.setDescription('Alarm severity level of this event. ')
apexOutputTsEventOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 48))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventOutputTsNum.setDescription('The number of the output transport stream for this event. ')
apexOutputTsEventCurRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventCurRate.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventCurRate.setDescription('Value of apexOutputTsUtilizCurRate when event occurred. ')
apexOutputTsEventAvgRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventAvgRate.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventAvgRate.setDescription('Value of apexOutputTsUtilizAvgRate when event occurred. ')
apexOutputTsEventMinRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventMinRate.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventMinRate.setDescription('Value of apexOutputTsUtilizMinRate when event occurred. ')
apexOutputTsEventPeakRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventPeakRate.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventPeakRate.setDescription('Value of apexOutputTsUtilizPeakRate when event occurred. ')
apexOutputTsEventCurDropPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventCurDropPackets.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventCurDropPackets.setDescription('Value of apexOutputTsUtilizCurDropPackets when event occurred. ')
apexOutputTsEventPeakDropPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventPeakDropPackets.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventPeakDropPackets.setDescription('Value of apexOutputTsUtilizPeakDropPackets when event occurred. ')
apexOutputTsEventRollingDropPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventRollingDropPackets.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventRollingDropPackets.setDescription('Value of apexOutputTsUtilizRollingDropPackets when event occurred. ')
apexOutputTsEventTotalDropPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventTotalDropPackets.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventTotalDropPackets.setDescription('Value of apexOutputTsUtilizTotalDropPackets when event occurred. ')
apexOutputTsEventDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 14), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexOutputTsEventDescription.setStatus('current')
if mibBuilder.loadTexts: apexOutputTsEventDescription.setDescription('Text description of the event. Maximum length is 128 characters. ')
apexGbeInputTsEventTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4), )
if mibBuilder.loadTexts: apexGbeInputTsEventTable.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventTable.setDescription('Table of Gigabit Ethernet Input Transport Stream Events that have occurred. Maximum of 100 events will be recorded. ')
apexGbeInputTsEventEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1), ).setIndexNames((0, "APEX-MIB", "apexGbeInputTsEventIndex"))
if mibBuilder.loadTexts: apexGbeInputTsEventEntry.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventEntry.setDescription('Gigabit Ethernet Input Transport Stream Event Table Entry.')
apexGbeInputTsEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647)))
if mibBuilder.loadTexts: apexGbeInputTsEventIndex.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventIndex.setDescription('Index to Gigabit Ethernet Input Transport Stream Event table. ')
apexGbeInputTsEventTimeLogged = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventTimeLogged.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this event was logged. ')
apexGbeInputTsEventAlarmCode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventAlarmCode.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventAlarmCode.setDescription('Last number of alarm OID. Can be one of the following: 0 Indicates event is informational and may or may not cause an alarm. 8022 apexAlarmGbeInputStreamLowBitRate 8023 apexAlarmGbeInputStreamHighBitRate 8024 apexAlarmGbeMptsRedundPrimaryThreshold 8025 apexAlarmGbeMptsRedundFailOver More details about the error may be found in apexGbeInputTsEventDescription. ')
apexGbeInputTsEventAlarmSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ok", 1), ("indeterminate", 2), ("warning", 3), ("minor", 4), ("major", 5), ("critical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventAlarmSeverity.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventAlarmSeverity.setDescription('Alarm severity level of this event. ')
apexGbeInputTsEventRedundantConfig = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("primary", 1), ("secondary", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventRedundantConfig.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventRedundantConfig.setDescription('Indicates whether this input transport stream was configured as a primary or secondary at the time of the event. ')
apexGbeInputTsEventGbeInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventGbeInterface.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventGbeInterface.setDescription('Value of apexInputTsStatPriInputInterface or apexInputTsStatSecInputInterface at the time of the event. ')
apexGbeInputTsEventUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventUdpPort.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventUdpPort.setDescription('Value of apexInputTsStatPriInputUdp or apexInputTsStatSecInputUdp at the time of the event. ')
apexGbeInputTsEventMulticastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 8), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventMulticastIp.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventMulticastIp.setDescription('Value of apexInputTsStatPriInputMulticastIp or apexInputTsStatSecInputMulticastIp at the time of the event. ')
apexGbeInputTsEventSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 9), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventSourceIp.setDescription('Value of apexInputTsStatPriInputSourceIp or apexInputTsStatSecInputSourceIp at the time of the event. ')
apexGbeInputTsEventInputTsState = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 10), InputTsStateTYPE()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventInputTsState.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventInputTsState.setDescription('Value of apexInputTsStatPriState or apexInputTsStatSecState at the time of the event. For threshold or fail over events, the state reported is always the Primary input stream state. ')
apexGbeInputTsEventRateCompareType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 11), RateComparisonTYPE()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventRateCompareType.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventRateCompareType.setDescription('Comparison type at time of event (stream or data). ')
apexGbeInputTsEventSamplingPeriod = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventSamplingPeriod.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventSamplingPeriod.setDescription('Sample period in seconds of the stream and data counts reported. Using the sample period and the stream or data counts, the actual input rate at the time of the event can be computed. ')
apexGbeInputTsEventPriCurStreamCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventPriCurStreamCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventPriCurStreamCount.setDescription('Current Primary input stream Packet Count at the time of the event. This is the number of packets received, including Nulls, during the sample period defined in apexGbeInputTsEventSamplingPeriod. ')
apexGbeInputTsEventPriCurDataCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventPriCurDataCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventPriCurDataCount.setDescription('Current Primary input data Packet Count at the time of the event. This is the number of data packets received (non-Nulls), during the sample period defined in apexGbeInputTsEventSamplingPeriod. ')
apexGbeInputTsEventSecCurStreamCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventSecCurStreamCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventSecCurStreamCount.setDescription('Current Secondary input stream Packet Count at the time of the event. This is the number of packets received, including Nulls, during the sample period defined in apexGbeInputTsEventSamplingPeriod. ')
apexGbeInputTsEventSecCurDataCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventSecCurDataCount.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventSecCurDataCount.setDescription('Current Secondary input data Packet Count at the time of the event. This is the number of data packets received (non-Nulls), during the sample period defined in apexGbeInputTsEventSamplingPeriod. ')
apexGbeInputTsEventDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 17), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexGbeInputTsEventDescription.setStatus('current')
if mibBuilder.loadTexts: apexGbeInputTsEventDescription.setDescription('Text description of the event. Maximum length is 128 characters. ')
apexRtspEventTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5), )
if mibBuilder.loadTexts: apexRtspEventTable.setStatus('current')
if mibBuilder.loadTexts: apexRtspEventTable.setDescription('Table of RTSP Events that have occurred. Maximum of 100 events will be recorded. ')
apexRtspEventEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1), ).setIndexNames((0, "APEX-MIB", "apexRtspEventIndex"))
if mibBuilder.loadTexts: apexRtspEventEntry.setStatus('current')
if mibBuilder.loadTexts: apexRtspEventEntry.setDescription('RTSP Event Table Entry.')
apexRtspEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647)))
if mibBuilder.loadTexts: apexRtspEventIndex.setStatus('current')
if mibBuilder.loadTexts: apexRtspEventIndex.setDescription('Index to RTSP Event table entry.')
apexRtspEventTimeLogged = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspEventTimeLogged.setStatus('current')
if mibBuilder.loadTexts: apexRtspEventTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this event was logged. ')
apexRtspEventControllerIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspEventControllerIp.setStatus('current')
if mibBuilder.loadTexts: apexRtspEventControllerIp.setDescription('IP address of the RTSP Controller associated with this event. Value will be zero if the event is not associated with a specific controller. Refer to apexRtspEventSourceDescription for the source of the event. ')
apexRtspEventSessionCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspEventSessionCount.setStatus('current')
if mibBuilder.loadTexts: apexRtspEventSessionCount.setDescription('Number of active sessions for the RTSP Controller associated with this event. Value will be total count of all sessions for all controllers if the event is not associated with a specific controller. Refer to apexRtspEventSourceDescription for the source of the event. ')
apexRtspEventSourceDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspEventSourceDescription.setStatus('current')
if mibBuilder.loadTexts: apexRtspEventSourceDescription.setDescription('Text description of the source of the event. May indicate a controller identifier or an APEX application process. ')
apexRtspEventDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexRtspEventDescription.setStatus('current')
if mibBuilder.loadTexts: apexRtspEventDescription.setDescription('Text description of the event.')
apexMappingErrorTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6), )
if mibBuilder.loadTexts: apexMappingErrorTable.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorTable.setDescription('Table of program, ancillary PID, and stream pass through mapping errors that have occurred. Maximum of 100 error events will be recorded. ')
apexMappingErrorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1), ).setIndexNames((0, "APEX-MIB", "apexMappingErrorIndex"))
if mibBuilder.loadTexts: apexMappingErrorEntry.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorEntry.setDescription('Program, PID, Stream Pass Through Error Table Entry.')
apexMappingErrorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647)))
if mibBuilder.loadTexts: apexMappingErrorIndex.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorIndex.setDescription('Index to Program, PID, Stream Pass Through, DEPI Control, DEPI Session Error table. ')
apexMappingErrorTimeLogged = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorTimeLogged.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this error was logged. ')
apexMappingErrorCode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorCode.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorCode.setDescription('Error code for this mapping error. 0 indicates no error. ')
apexMappingErrorMappingType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("notApplicable", 0), ("program", 1), ("ancillaryPid", 2), ("streamPassthru", 3), ("depiControl", 4), ("depiSession", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorMappingType.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorMappingType.setDescription('Type of mapping (program, ancillary PID, or stream pass through). ')
apexMappingErrorInputType = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("gbe", 1), ("fastEnet", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorInputType.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorInputType.setDescription('Input Type. Indicates if mapping is from Gigabit Ethernet or Fast Ethernet. ')
apexMappingErrorInputInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorInputInterface.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorInputInterface.setDescription('Interface port number of the primary input interface. ')
apexMappingErrorUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorUdpPort.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorUdpPort.setDescription('Input UDP Port for primary input. ')
apexMappingErrorMulticastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 8), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorMulticastIp.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorMulticastIp.setDescription('The Multicast receive IP address for primary input. ')
apexMappingErrorSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 9), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorSourceIp.setDescription('This is the IGMP v3 Source IP address of the source device for the primary input. ')
apexMappingErrorInputProgramPid = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorInputProgramPid.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorInputProgramPid.setDescription('For program mappings, this is the input program number of the program being mapped. For ancillary PID mappings, this is the input PID number being mapped. For stream pass through mappings, this field is not used and is set to 0. ')
apexMappingErrorOutputProgramPid = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorOutputProgramPid.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorOutputProgramPid.setDescription('For program mappings, this is the output program number of the program being mapped. For ancillary PID mappings, this is the output PID number being mapped. For stream pass through mappings, this field is not used and is set to 0. ')
apexMappingErrorOutputOpMode = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notInUse", 0), ("sessionControl", 1), ("manualRouting", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorOutputOpMode.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorOutputOpMode.setDescription('Operating mode of the output transport stream for this mapping. ')
apexMappingErrorOutputTsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 48))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorOutputTsNum.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorOutputTsNum.setDescription('The number of the output transport stream for this mapping error. ')
apexMappingErrorSecInputInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorSecInputInterface.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorSecInputInterface.setDescription('Interface port number of the secondary input interface. An interface number of 0 indicates no secondary input. ')
apexMappingErrorSecUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorSecUdpPort.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorSecUdpPort.setDescription('Input UDP Port for secondary input. ')
apexMappingErrorSecMulticastIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 16), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorSecMulticastIp.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorSecMulticastIp.setDescription('The Multicast receive IP address for secondary input. ')
apexMappingErrorSecSourceIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 17), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexMappingErrorSecSourceIp.setStatus('current')
if mibBuilder.loadTexts: apexMappingErrorSecSourceIp.setDescription('This is the IGMP v3 Source IP address of the source device for the secondary input. ')
apexChassisRedundancyEventTable = MibTable((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 7), )
if mibBuilder.loadTexts: apexChassisRedundancyEventTable.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyEventTable.setDescription('Table of Chassis Redundancy Events. Maximum of 300 events will be recorded. ')
apexChassisRedundancyEventEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 7, 1), ).setIndexNames((0, "APEX-MIB", "apexChassisRedundancyEventIndex"))
if mibBuilder.loadTexts: apexChassisRedundancyEventEntry.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyEventEntry.setDescription('Chassis Redundancy Event Table Entry.')
apexChassisRedundancyEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 7, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647)))
if mibBuilder.loadTexts: apexChassisRedundancyEventIndex.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyEventIndex.setDescription('Index for Chassis Redundancy Event table.')
apexChassisRedundancyEventTimeLogged = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 7, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyEventTimeLogged.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyEventTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this event was logged. ')
apexChassisRedundancyEventDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 7, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apexChassisRedundancyEventDescription.setStatus('current')
if mibBuilder.loadTexts: apexChassisRedundancyEventDescription.setDescription('Text string describing the event.')
trapConfigurationChangeInteger = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 3)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"))
if mibBuilder.loadTexts: trapConfigurationChangeInteger.setStatus('current')
if mibBuilder.loadTexts: trapConfigurationChangeInteger.setDescription("This trap is issued if configuration of a single variable with integer type was changed (via ANY interface). TrapChangedValueInteger variable may contain current reading of that variable. trapPerceivedSeverity - 'indeterminate'")
trapConfigurationChangeDisplayString = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 4)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueDisplayString"))
if mibBuilder.loadTexts: trapConfigurationChangeDisplayString.setStatus('current')
if mibBuilder.loadTexts: trapConfigurationChangeDisplayString.setDescription("This trap is issued if configuration of a single variable with DisplayString type was changed (via ANY interface). TrapChangedValueDisplayString variable may contain current reading of that variable. trapPerceivedSeverity - 'indeterminate'")
trapConfigurationChangeOID = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 5)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueOID"))
if mibBuilder.loadTexts: trapConfigurationChangeOID.setStatus('current')
if mibBuilder.loadTexts: trapConfigurationChangeOID.setDescription("This trap is issued if configuration of a single variable with OID type was changed (via ANY interface). TrapChangedValueOID variable may contain current reading of that variable. trapPerceivedSeverity - 'indeterminate'")
trapConfigurationChangeIpAddress = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 6)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueIpAddress"))
if mibBuilder.loadTexts: trapConfigurationChangeIpAddress.setStatus('current')
if mibBuilder.loadTexts: trapConfigurationChangeIpAddress.setDescription("This trap is issued if configuration of a single variable with IpAddress type was changed (via ANY interface). TrapChangedValueIpAddress variable may contain current reading of that variable. trapPerceivedSeverity - 'indeterminate'")
trapConditionNotInList = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 20)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapConditionNotInList.setStatus('current')
if mibBuilder.loadTexts: trapConditionNotInList.setDescription('This trap is issued if a condition is being cleared and it is not in the condition list. trapAdditionalInfoInteger1 : Task and Function ID (task and function generates the error condition) trapAdditionalInfoInteger2 : Condition number trapAdditionalInfoInteger3 : Condition severity')
trapConditionAlreadyInList = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 21)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapConditionAlreadyInList.setStatus('current')
if mibBuilder.loadTexts: trapConditionAlreadyInList.setDescription('This trap is issued if a condition is being set and it is already in the condition list. trapAdditionalInfoInteger1 : Task and Function ID (task and function generates the error condition) trapAdditionalInfoInteger2 : Condition number trapAdditionalInfoInteger3 : Condition severity')
trapConditionListFull = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 22)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapConditionListFull.setStatus('current')
if mibBuilder.loadTexts: trapConditionListFull.setDescription('This trap is issued if a condition is being set and the condition list is full. trapAdditionalInfoInteger1 : Task and Function ID (task and function generates the error condition) trapAdditionalInfoInteger2 : Condition number trapAdditionalInfoInteger3 : Condition severity')
trapInvalidCaseInSwitch = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 23)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapInvalidCaseInSwitch.setStatus('current')
if mibBuilder.loadTexts: trapInvalidCaseInSwitch.setDescription('This trap is issued when in a switch statement the default case is reached. The trapAdditionalInfoInteger1 will contain the task and Function ID. The trapAdditionalInfoInteger2 will contain value of the switch. The trapAdditionalInfoInteger3 is not used.')
trapCannotCreateSemaphore = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 24)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapCannotCreateSemaphore.setStatus('current')
if mibBuilder.loadTexts: trapCannotCreateSemaphore.setDescription('This trap is issued when a semaphore cannot be created. The trapAdditionalInfoInteger1 will contain the task and Function ID, the trapAdditionalInfoInteger2 and trapAdditionalInfoInteger3 will not be used.')
trapCannotOpenSocket = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 25)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapCannotOpenSocket.setStatus('current')
if mibBuilder.loadTexts: trapCannotOpenSocket.setDescription('This trap is issued when a socket cannot be opened. The trapAdditionalInfoInteger1 will contain the task and Function ID. The trapAdditionalInfoInteger2 will contain the errno returned by the call to socket(). The trapAdditionalInfoInteger3 is not used.')
trapUnknownMessageReceived = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 26)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapUnknownMessageReceived.setStatus('current')
if mibBuilder.loadTexts: trapUnknownMessageReceived.setDescription('This trap is issued when an unknown message is received. The trapAdditionalInfoInteger1 will contain the task and Function ID. The trapAdditionalInfoInteger2 will contain the message ID and the trapAdditionalInfoInteger3 is not used.')
trapInvalidMessageReceived = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 27)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapInvalidMessageReceived.setStatus('current')
if mibBuilder.loadTexts: trapInvalidMessageReceived.setDescription('This trap is issued when an invalid message is received. The trapAdditionalInfoInteger1 will contain the task and Function ID. The trapAdditionalInfoInteger2 will contain the message ID and the trapAdditionalInfoInteger3 is not used.')
trapHardwareFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8000)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapHardwareFault.setStatus('current')
if mibBuilder.loadTexts: trapHardwareFault.setDescription('See corresponding alarm apexAlarmHardwareFault. Additional Info 1 carries HW Error Code (refer to HW Event Log for details). Additional Info 2 is not used. Additional Info 3 is not used. ')
trapInvalidInitData = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8001)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapInvalidInitData.setStatus('current')
if mibBuilder.loadTexts: trapInvalidInitData.setDescription('See corresponding alarm apexAlarmInvalidInitData. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapTemperatureFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8002)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapTemperatureFault.setStatus('current')
if mibBuilder.loadTexts: trapTemperatureFault.setDescription('See corresponding alarm apexAlarmTemperatureFault. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapFanFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8003)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapFanFault.setStatus('current')
if mibBuilder.loadTexts: trapFanFault.setDescription('See corresponding alarm apexAlarmFanFault. This trap is sent on summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapPowerFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8004)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapPowerFault.setStatus('current')
if mibBuilder.loadTexts: trapPowerFault.setDescription('See corresponding alarm apexAlarmPowerFault. Additional Info 1 carries the apexPsStatusTable index (1 to 2). Additional Info 2 is not used. Additional Info 3 is not used. ')
trapGbeLossOfPhysicalInput = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8020)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapGbeLossOfPhysicalInput.setStatus('current')
if mibBuilder.loadTexts: trapGbeLossOfPhysicalInput.setDescription('See corresponding alarm apexAlarmGbeLossOfPhysicalInput. Additional Info 1 carries the Gigabit Ethernet Interface Number (1 to 4). Additional Info 2 is not used. Additional Info 3 is not used. ')
trapGbeBufferFullness = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8021)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapGbeBufferFullness.setStatus('current')
if mibBuilder.loadTexts: trapGbeBufferFullness.setDescription('See corresponding alarm apexAlarmGbeBufferFullness. Additional Info 1 carries the Gigabit Ethernet Processor Number (1 to 2). Additional Info 2 is not used. Additional Info 3 is not used. ')
trapGbeInputStreamLowBitRate = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8022)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapGbeInputStreamLowBitRate.setStatus('current')
if mibBuilder.loadTexts: trapGbeInputStreamLowBitRate.setDescription('See corresponding alarm apexAlarmGbeInputStreamLowBitRate. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapGbeInputStreamHighBitRate = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8023)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapGbeInputStreamHighBitRate.setStatus('current')
if mibBuilder.loadTexts: trapGbeInputStreamHighBitRate.setDescription('See corresponding alarm apexAlarmGbeInputStreamHighBitRate. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapGbeMptsRedundPrimaryThreshold = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8024)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapGbeMptsRedundPrimaryThreshold.setStatus('current')
if mibBuilder.loadTexts: trapGbeMptsRedundPrimaryThreshold.setDescription('See corresponding alarm apexAlarmGbeMptsRedundPrimaryThreshold. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapGbeMptsRedundFailOver = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8025)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapGbeMptsRedundFailOver.setStatus('current')
if mibBuilder.loadTexts: trapGbeMptsRedundFailOver.setDescription('See corresponding alarm apexAlarmGbeMptsRedundFailOver. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapServiceInError = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8026)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapServiceInError.setStatus('current')
if mibBuilder.loadTexts: trapServiceInError.setDescription('See corresponding alarm apexAlarmServiceInError. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapGbeLossOfInputStream = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8027)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapGbeLossOfInputStream.setStatus('current')
if mibBuilder.loadTexts: trapGbeLossOfInputStream.setDescription('See corresponding alarm apexAlarmGbeLossOfInputStream. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapGigeToHostCommFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8028)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapGigeToHostCommFault.setStatus('current')
if mibBuilder.loadTexts: trapGigeToHostCommFault.setDescription('See corresponding alarm apexAlarmGigeToHostCommFault. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapGbeInterfaceRedundFailOver = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8029)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapGbeInterfaceRedundFailOver.setStatus('current')
if mibBuilder.loadTexts: trapGbeInterfaceRedundFailOver.setDescription('See corresponding alarm apexAlarmGbeInterfaceRedundFailOver. This trap is sent on a GbE Redundant Pair basis. Additional Info 1 contains the GbE interface number that lost link. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapOutputUtilizationFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8040)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapOutputUtilizationFault.setStatus('current')
if mibBuilder.loadTexts: trapOutputUtilizationFault.setDescription('See corresponding alarm apexAlarmOutputUtilizationFault. This trap is sent on an Output Transport Stream basis. Additional Info 1 carries the Output Transport Stream number (1 to 48). Additional Info 2 is not used. Additional Info 3 is not used. ')
trapOutputOverflow = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8041)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapOutputOverflow.setStatus('current')
if mibBuilder.loadTexts: trapOutputOverflow.setDescription('See corresponding alarm apexAlarmOutputOverflow. This trap is sent on an Output Transport Stream basis. Additional Info 1 carries the Output Transport Stream number (1 to 48). Additional Info 2 is not used. Additional Info 3 is not used. ')
trapQamModuleFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8042)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapQamModuleFault.setStatus('current')
if mibBuilder.loadTexts: trapQamModuleFault.setDescription('See corresponding alarm apexAlarmQamModuleFault. This trap is sent on a QAM Module basis. Additional Info 1 carries the QAM Module number (1 to 3). Additional Info 2 is not used. Additional Info 3 is not used. ')
trapQamRfPortFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8043)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapQamRfPortFault.setStatus('current')
if mibBuilder.loadTexts: trapQamRfPortFault.setDescription('See corresponding alarm apexAlarmQamRfPortFault. This trap is sent on a QAM RF Port basis. Additional Info 1 carries the QAM RF Port number: RF Port 1 = QAM Module 1, RF 1 RF Port 2 = QAM Module 1, RF 2 RF Port 3 = QAM Module 2, RF 1 RF Port 4 = QAM Module 2, RF 2 RF Port 5 = QAM Module 3, RF 1 RF Port 6 = QAM Module 3, RF 2 Additional Info 2 is not used. Additional Info 3 is not used. ')
trapQamChannelFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8044)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapQamChannelFault.setStatus('current')
if mibBuilder.loadTexts: trapQamChannelFault.setDescription('See corresponding alarm apexAlarmQamChannelFault. This trap is sent on a QAM Channel basis. Additional Info 1 carries the QAM Channel number. 1 to 8 = QAM Module 1, RF 1, QAM Channel A to H 9 to 16 = QAM Module 1, RF 2, QAM Channel A to H 17 to 24 = QAM Module 2, RF 1, QAM Channel A to H 25 to 32 = QAM Module 2, RF 2, QAM Channel A to H 33 to 40 = QAM Module 3, RF 1, QAM Channel A to H 41 to 48 = QAM Module 3, RF 2, QAM Channel A to H Additional Info 2 is not used. Additional Info 3 is not used. ')
trapQamRfRedundFailOver = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8045)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapQamRfRedundFailOver.setStatus('current')
if mibBuilder.loadTexts: trapQamRfRedundFailOver.setDescription('See corresponding alarm apexAlarmQamRfRedundFailOver. This trap is sent on a Primary QAM RF Port basis. Additional Info 1 carries the Primary QAM RF Port number. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapQamRfRedundMismatch = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8046)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapQamRfRedundMismatch.setStatus('current')
if mibBuilder.loadTexts: trapQamRfRedundMismatch.setDescription('See corresponding alarm apexAlarmQamRfRedundMismatch. This trap is sent on a summary basis. Additional Info is not used. ')
trapRtspControllerCommFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8050)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapRtspControllerCommFault.setStatus('current')
if mibBuilder.loadTexts: trapRtspControllerCommFault.setDescription('See corresponding alarm apexAlarmRtspControllerCommFault. This trap is sent on a controller basis. Additional Info 1 carries the controller number. Additional Info 2 is not used. Additional Info 3 is not used. ')
trapRdsCommFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8060)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapRdsCommFault.setStatus('current')
if mibBuilder.loadTexts: trapRdsCommFault.setDescription('See corresponding alarm apexAlarmRdsCommFault. Additional Info is not used. ')
trapRemCommFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8070)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapRemCommFault.setStatus('current')
if mibBuilder.loadTexts: trapRemCommFault.setDescription('See corresponding alarm apexAlarmRemCommFault. This trap is sent on a summary basis. Additional Info is not used. ')
trapRemFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8071)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapRemFault.setStatus('current')
if mibBuilder.loadTexts: trapRemFault.setDescription('See corresponding alarm apexAlarmRemFault. This trap is sent on a summary basis. Additional Info is not used. ')
trapDepiControlConnectionFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8080)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapDepiControlConnectionFault.setStatus('current')
if mibBuilder.loadTexts: trapDepiControlConnectionFault.setDescription('See corresponding alarm apexAlarmDepiControlConnectionFault. This trap is sent on a summary basis. Additional Info is not used. ')
trapDepiSessionSetupFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8081)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapDepiSessionSetupFault.setStatus('current')
if mibBuilder.loadTexts: trapDepiSessionSetupFault.setDescription('See corresponding alarm apexAlarmDepiSessionSetupFault. This trap is sent on a summary basis. Additional Info is not used. ')
trapDtiSyncLossFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8082)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapDtiSyncLossFault.setStatus('current')
if mibBuilder.loadTexts: trapDtiSyncLossFault.setDescription('See corresponding alarm apexAlarmDtiSyncLossFault. This trap is sent on a summary basis. Additional Info is not used. ')
trapChassisRedundancyPrimaryFailover = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8090)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapChassisRedundancyPrimaryFailover.setStatus('current')
if mibBuilder.loadTexts: trapChassisRedundancyPrimaryFailover.setDescription('See corresponding alarm apexAlarmChassisRedundancyPrimaryFailover. This trap is sent on a summary basis. Additional Info is not used. ')
trapChassisRedundancySecondaryFailover = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8091)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapChassisRedundancySecondaryFailover.setStatus('current')
if mibBuilder.loadTexts: trapChassisRedundancySecondaryFailover.setDescription('See corresponding alarm apexAlarmChassisRedundancySecondaryFailover. This trap is sent on a summary basis. Additional Info is not used. ')
trapChassisRedundancyAvailabilityFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8092)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapChassisRedundancyAvailabilityFault.setStatus('current')
if mibBuilder.loadTexts: trapChassisRedundancyAvailabilityFault.setDescription('See corresponding alarm apexAlarmChassisRedundancyAvailabilityFault. This trap is sent on a summary basis. Additional Info is not used. ')
trapChassisRedundancyLinkFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8093)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapChassisRedundancyLinkFault.setStatus('current')
if mibBuilder.loadTexts: trapChassisRedundancyLinkFault.setDescription('See corresponding alarm apexAlarmChassisRedundancyLinkFault. This trap is sent on a summary basis. Additional Info is not used. ')
trapChassisRedundancyConfigurationFault = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8094)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapChassisRedundancyConfigurationFault.setStatus('current')
if mibBuilder.loadTexts: trapChassisRedundancyConfigurationFault.setDescription('See corresponding alarm apexAlarmChassisRedundancyConfigurationFault. This trap is sent on a summary basis. Additional Info is not used. ')
trapEmUserLoginFailed = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8100)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapEmUserLoginFailed.setStatus('current')
if mibBuilder.loadTexts: trapEmUserLoginFailed.setDescription('See corresponding event apexEventEmUserLoginFailed. Additional Info is not used.')
trapQamModuleUpgraded = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8101)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapQamModuleUpgraded.setStatus('current')
if mibBuilder.loadTexts: trapQamModuleUpgraded.setDescription('See corresponding event apexEventQamModuleUpgraded. Additional Info is not used.')
trapChassisRedundancyPrimaryForceFailover = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8110)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapChassisRedundancyPrimaryForceFailover.setStatus('current')
if mibBuilder.loadTexts: trapChassisRedundancyPrimaryForceFailover.setDescription('See corresponding event apexEventChassisRedunPrimaryForceFailover. Additional Info is not used.')
trapChassisRedundancySecondaryForceFailover = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8111)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapChassisRedundancySecondaryForceFailover.setStatus('current')
if mibBuilder.loadTexts: trapChassisRedundancySecondaryForceFailover.setDescription('See corresponding event apexEventChassisRedunSecondaryForceFailover. Additional Info is not used.')
trapChassisRedundancyFirmwareVersionMismatch = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8112)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapChassisRedundancyFirmwareVersionMismatch.setStatus('current')
if mibBuilder.loadTexts: trapChassisRedundancyFirmwareVersionMismatch.setDescription('See corresponding event apexEventChassisRedunFirmwareVersionMismatch. Additional Info is not used.')
trapChassisRedundancyQAMVersionMismatch = NotificationType((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8113)).setObjects(("BCS-TRAPS-MIB", "trapIdentifier"), ("BCS-TRAPS-MIB", "trapSequenceId"), ("BCS-TRAPS-MIB", "trapNetworkElemModelNumber"), ("BCS-TRAPS-MIB", "trapNetworkElemSerialNum"), ("BCS-TRAPS-MIB", "trapPerceivedSeverity"), ("BCS-TRAPS-MIB", "trapNetworkElemOperState"), ("BCS-TRAPS-MIB", "trapNetworkElemAlarmStatus"), ("BCS-TRAPS-MIB", "trapNetworkElemAdminState"), ("BCS-TRAPS-MIB", "trapNetworkElemAvailStatus"), ("BCS-TRAPS-MIB", "trapText"), ("BCS-TRAPS-MIB", "trapNETrapLastTrapTimeStamp"), ("BCS-TRAPS-MIB", "trapChangedObjectId"), ("BCS-TRAPS-MIB", "trapChangedValueInteger"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger1"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger2"), ("BCS-TRAPS-MIB", "trapAdditionalInfoInteger3"))
if mibBuilder.loadTexts: trapChassisRedundancyQAMVersionMismatch.setStatus('current')
if mibBuilder.loadTexts: trapChassisRedundancyQAMVersionMismatch.setDescription('See corresponding event apexEventChassisRedunQAMVersionMismatch. Additional Info is not used.')
mibBuilder.exportSymbols("APEX-MIB", apexRpcQamStatSdvGroupBandwidth=apexRpcQamStatSdvGroupBandwidth, apexGbeStatusTable=apexGbeStatusTable, apexDepiSessionStatusInvalidVendorId=apexDepiSessionStatusInvalidVendorId, apexDtaGeneralConfigInvalidApplyText=apexDtaGeneralConfigInvalidApplyText, apexPsiStatusPid=apexPsiStatusPid, apexRdsEventEpochEnd=apexRdsEventEpochEnd, apexDta=apexDta, apexOutputTsStatusEntry=apexOutputTsStatusEntry, apexRpcNumShellSessions=apexRpcNumShellSessions, apexRdsEmmStatusTableSize=apexRdsEmmStatusTableSize, apexDepiSession=apexDepiSession, apexQamRfPortMuteStatusTable=apexQamRfPortMuteStatusTable, apexFastEnetStatusPacketsEntry=apexFastEnetStatusPacketsEntry, apexQrmDownloadStatusDescription=apexQrmDownloadStatusDescription, apexMappingErrorOutputProgramPid=apexMappingErrorOutputProgramPid, apexManRteGbeInRedSecMulticastIp=apexManRteGbeInRedSecMulticastIp, apexEasApplyChange=apexEasApplyChange, trapQamRfRedundMismatch=trapQamRfRedundMismatch, apexFastEnetRoutingTable=apexFastEnetRoutingTable, apexManRteGbeInRedStatusMapIndex=apexManRteGbeInRedStatusMapIndex, apexRdsConnectionStatus=apexRdsConnectionStatus, apexOampDuplexMode=apexOampDuplexMode, apexEnableGbeInterfaceRedundFailOver=apexEnableGbeInterfaceRedundFailOver, apexOutputTsUtilizThresholdAlarm=apexOutputTsUtilizThresholdAlarm, apexDepiControlStatusMalformedCtl=apexDepiControlStatusMalformedCtl, apexUserSuppliedTime=apexUserSuppliedTime, apexSysConfigGeneral=apexSysConfigGeneral, apexQamChannelConfigEntry=apexQamChannelConfigEntry, apexOutputTsStatus=apexOutputTsStatus, apexDtiFpgaVersion=apexDtiFpgaVersion, apexInputTransport=apexInputTransport, apexDepiSessionStatusUnknownCtl=apexDepiSessionStatusUnknownCtl, apexEncryptionConfig=apexEncryptionConfig, apexPsipConfigEit1InsertionPeriod=apexPsipConfigEit1InsertionPeriod, apexOutputTsUtilMonOutputTsNum=apexOutputTsUtilMonOutputTsNum, apexOampMacAddr=apexOampMacAddr, apexGbeConfigInputDataTsUdp=apexGbeConfigInputDataTsUdp, apexDepiControlConfigApplyChange=apexDepiControlConfigApplyChange, apexQamModuleStatBoardTemperatureFault=apexQamModuleStatBoardTemperatureFault, apexRtspConfMhaSbeApplyChange=apexRtspConfMhaSbeApplyChange, apexRdsEventNumberTiers=apexRdsEventNumberTiers, apexFastEnetStatusGeneral=apexFastEnetStatusGeneral, apexMappingErrorSecUdpPort=apexMappingErrorSecUdpPort, apexSesContConfGbePrimaryInterface=apexSesContConfGbePrimaryInterface, apexOutputTsEventPeakDropPackets=apexOutputTsEventPeakDropPackets, apexPsiStatusTableType=apexPsiStatusTableType, apexQamChannelIdChannelNum=apexQamChannelIdChannelNum, apexRpcRfChannelTable=apexRpcRfChannelTable, apexUdpMapFollowDtcp=apexUdpMapFollowDtcp, apexPsipStatusOutputGpsTime=apexPsipStatusOutputGpsTime, apexQamRfPortStat3dot3VdcSupply=apexQamRfPortStat3dot3VdcSupply, apexManRtePassThroughInputUdp=apexManRtePassThroughInputUdp, apexGbeFrameBufferHourlyResets=apexGbeFrameBufferHourlyResets, apexRpcDeviceName=apexRpcDeviceName, apexOampInputTsAssignedCount=apexOampInputTsAssignedCount, apexManualRoutingConfig=apexManualRoutingConfig, apexDepiStatusGeneral=apexDepiStatusGeneral, apexQamRfConfigMute=apexQamRfConfigMute, apexOampStatus=apexOampStatus, apexPreencryption=apexPreencryption, apexQamRfPortStatusEntry=apexQamRfPortStatusEntry, trapCannotCreateSemaphore=trapCannotCreateSemaphore, apexOutputTsStatusFault=apexOutputTsStatusFault, apexManRteGbeInRedPriSourceIp=apexManRteGbeInRedPriSourceIp, apexFastEnetConfigGeneral=apexFastEnetConfigGeneral, apexTemperatureStatusGeneral=apexTemperatureStatusGeneral, apexDtaGeneralConfigEmmPidNum=apexDtaGeneralConfigEmmPidNum, apexGbeConfInputUnicastTimeout=apexGbeConfInputUnicastTimeout, apexRtspSessionStatOutputProgramNum=apexRtspSessionStatOutputProgramNum, apexGbeSfp=apexGbeSfp, apexDtaGeneralConfigCatEmmPidUdpPort=apexDtaGeneralConfigCatEmmPidUdpPort, apexPidMapInputMulticastIp=apexPidMapInputMulticastIp, apexQamRfRedundStatusInvalidApplyText=apexQamRfRedundStatusInvalidApplyText, apexQrmDownloadRequired=apexQrmDownloadRequired, apexOutputTsUtilizCurDropPackets=apexOutputTsUtilizCurDropPackets, apexManualRouteInputProgNum=apexManualRouteInputProgNum, apexInsertPacketStatisticsEntry=apexInsertPacketStatisticsEntry, trapHardwareFault=trapHardwareFault, apexQamModuleSerialNumEntry=apexQamModuleSerialNumEntry, apexGbeSfpStatusGbeIfNum=apexGbeSfpStatusGbeIfNum, apexQrmDownloadSupported=apexQrmDownloadSupported, apexUdpMapModeBits=apexUdpMapModeBits, apexMaxServiceMappings=apexMaxServiceMappings, apexChassisRedundancyEventDescription=apexChassisRedundancyEventDescription, apexDepiStatus=apexDepiStatus, apexRdsEmmStatusServerError=apexRdsEmmStatusServerError, apexChassisRedundancyFailOverGigE34LinkLoss=apexChassisRedundancyFailOverGigE34LinkLoss, apexOutputTsUtilizTotalDropPackets=apexOutputTsUtilizTotalDropPackets, apexEnableRdsCommAlarmFault=apexEnableRdsCommAlarmFault, apexRtspSessionStatManagerIpAddr=apexRtspSessionStatManagerIpAddr, apexProductType=apexProductType, apexRdsMcast16=apexRdsMcast16, apexManualRouteEntry=apexManualRouteEntry, apexMcEmmInsertionMode=apexMcEmmInsertionMode, apexRtspConfMhaAddressDomain=apexRtspConfMhaAddressDomain, trapChassisRedundancyLinkFault=trapChassisRedundancyLinkFault, apexAcpConfigGeneral=apexAcpConfigGeneral, apexEasServerPhysInPort=apexEasServerPhysInPort, apexInvalidInitDataDescription=apexInvalidInitDataDescription, apexOutputTsEventDescription=apexOutputTsEventDescription, apexGbeStatInTsInputTsNum=apexGbeStatInTsInputTsNum, apexQamQrmRevStatBootLoaderFw=apexQamQrmRevStatBootLoaderFw, apexSesContConfFollowDtcp=apexSesContConfFollowDtcp, apexGbeStatusFrameCounterGeneral=apexGbeStatusFrameCounterGeneral, apexGbeSfpConfig=apexGbeSfpConfig, apexGbeConfigGeneral=apexGbeConfigGeneral, apexInsertPacketStatTotPkts=apexInsertPacketStatTotPkts, apexQamRfRedundConfigRemDirectIpOctet1=apexQamRfRedundConfigRemDirectIpOctet1, apexAlarmDepiControlConnectionFault=apexAlarmDepiControlConnectionFault, apexRtspSessionIdTable=apexRtspSessionIdTable, apexManualRouteInputType=apexManualRouteInputType, apexDepiStatusGeneralDtiClientPhaseError=apexDepiStatusGeneralDtiClientPhaseError, apexMappingErrorSecMulticastIp=apexMappingErrorSecMulticastIp, apexGbeTotalRxErrorFrames=apexGbeTotalRxErrorFrames, apexRpcConfig=apexRpcConfig, apexRdsStatus=apexRdsStatus, trapGbeBufferFullness=trapGbeBufferFullness, apexManualRouteIndex=apexManualRouteIndex, apexPsStatusOutputCurrent=apexPsStatusOutputCurrent, apexQamModuleStatCommError=apexQamModuleStatCommError, apexEnableQamRfPortFault=apexEnableQamRfPortFault, trapGbeLossOfInputStream=trapGbeLossOfInputStream, apexQrmDownload=apexQrmDownload, apexQamRfPortStatFreqPllLock=apexQamRfPortStatFreqPllLock, apexAcpStatusIndex=apexAcpStatusIndex, apexRtspEventTimeLogged=apexRtspEventTimeLogged, apexUdpMapOutputTsNum=apexUdpMapOutputTsNum, apexRdsCetPollInterval=apexRdsCetPollInterval, apexHwEventAlarmCode=apexHwEventAlarmCode, apexDepiSessionStatusUnknownAvp=apexDepiSessionStatusUnknownAvp, apexDepiControlStatusUnknownCtl=apexDepiControlStatusUnknownCtl, apexPsipStatusInputPart=apexPsipStatusInputPart, apexUdpMapConfigGeneral=apexUdpMapConfigGeneral, apexEasPhysInType=apexEasPhysInType, apexOutputTsConfPsipEnable=apexOutputTsConfPsipEnable, apexGbeConfigFrameBufferEntry=apexGbeConfigFrameBufferEntry, apexQrmDownloadStatusRfPortNum=apexQrmDownloadStatusRfPortNum, apexGbeTotalRxFrames=apexGbeTotalRxFrames, apexQamRfPortStatRfPortNum=apexQamRfPortStatRfPortNum, apexUdpMapApplyEntry=apexUdpMapApplyEntry, apexOutputTsEventCurRate=apexOutputTsEventCurRate, apexGbeOpenInputUdpPortCount=apexGbeOpenInputUdpPortCount, apexSupportPreencryptedSimulcrypt=apexSupportPreencryptedSimulcrypt, trapGbeMptsRedundFailOver=trapGbeMptsRedundFailOver, apexQamRfConfigRfPortNum=apexQamRfConfigRfPortNum, apexDepiControlConfigOverUdp=apexDepiControlConfigOverUdp, apexGbeStatusFrameCounter=apexGbeStatusFrameCounter, apexMappingErrorMulticastIp=apexMappingErrorMulticastIp, apexHostProcessorBootCodeVersion=apexHostProcessorBootCodeVersion, apexPsipStatusInputEntry=apexPsipStatusInputEntry, apexQamRfPortStat5VdcSupply=apexQamRfPortStat5VdcSupply, apexConfAlarmEnable=apexConfAlarmEnable, apexOutputProgramTable=apexOutputProgramTable, apexGbeInputTsEventSourceIp=apexGbeInputTsEventSourceIp, apexDataIpInputTsAssignedCount=apexDataIpInputTsAssignedCount, apexQamQrmRevSerialNumber=apexQamQrmRevSerialNumber, apexInsertionConfig=apexInsertionConfig, apexPidMapEnable=apexPidMapEnable, apexChassisRedundancyEventIndex=apexChassisRedundancyEventIndex, apexFastEnetPacketsNumPkts=apexFastEnetPacketsNumPkts, apexDepiStatusGeneralDtiCurrentTimestamp=apexDepiStatusGeneralDtiCurrentTimestamp, apexGbeStatInTsPriCurDataCount=apexGbeStatInTsPriCurDataCount, apexManRtePassThroughApplyChange=apexManRtePassThroughApplyChange, apexInputTsStatPriInputMulticastIp=apexInputTsStatPriInputMulticastIp, apexGbeSfpConfigGeneral=apexGbeSfpConfigGeneral, apexDtaRfPortConfigNetPidNum=apexDtaRfPortConfigNetPidNum, apexRtspConfGbeEdgeGroupName=apexRtspConfGbeEdgeGroupName, apexEnableRtspControllerCommFault=apexEnableRtspControllerCommFault, apexRtspSessionIdIndex=apexRtspSessionIdIndex, apexDepiControlStatusTotalSessions=apexDepiControlStatusTotalSessions, apexMcEmmInsertionPid2Enable=apexMcEmmInsertionPid2Enable, apexGbeInputTsEventRateCompareType=apexGbeInputTsEventRateCompareType, apexEasSourceIpAddress=apexEasSourceIpAddress, apexQamRfPortStatTemperature=apexQamRfPortStatTemperature, apexPsiStatusGpsTime=apexPsiStatusGpsTime, apexEasServerApplyEntry=apexEasServerApplyEntry, apexRdsEventRatingText=apexRdsEventRatingText, apexDepiSessionStatusEgressDlmMsgs=apexDepiSessionStatusEgressDlmMsgs, apexManualRouteOutputProgNum=apexManualRouteOutputProgNum, apexInvalidInitDataEntry=apexInvalidInitDataEntry, apexTimeStatus=apexTimeStatus, apexOutputTsStatusInvalidApplyText=apexOutputTsStatusInvalidApplyText, apexAlarmQamModuleFault=apexAlarmQamModuleFault, apexRtspConfControllerEntry=apexRtspConfControllerEntry, apexRdsEventPrkmWkemAvailable=apexRdsEventPrkmWkemAvailable, apexInputTsStatSecState=apexInputTsStatSecState, apexOutputTsStatusProgramsPerTs=apexOutputTsStatusProgramsPerTs, apexQrmFileRevFileSetNum=apexQrmFileRevFileSetNum, apexChassisRedundancyConfigGeneral=apexChassisRedundancyConfigGeneral, apexFastEnetInsertRateOutputTsNum=apexFastEnetInsertRateOutputTsNum, apexMappingErrorInputProgramPid=apexMappingErrorInputProgramPid, apexPsiConfig=apexPsiConfig, apexEventEmUserLoginFailed=apexEventEmUserLoginFailed, apexRtspSessionStatTable=apexRtspSessionStatTable, apexGbeFrameBufferHourlyInUdp=apexGbeFrameBufferHourlyInUdp, apexDtaGeneralConfigCatEmmPidSourceIP=apexDtaGeneralConfigCatEmmPidSourceIP, apexGbeStatusInterfaceRedund=apexGbeStatusInterfaceRedund, apexQamRfRedundStatusUdpPort=apexQamRfRedundStatusUdpPort, apexPidMapInputUdp=apexPidMapInputUdp, apexGbeInputTsEventPriCurDataCount=apexGbeInputTsEventPriCurDataCount, apexEnableGbeInputStreamHighBitRate=apexEnableGbeInputStreamHighBitRate, apexGbeConfigInputDataTsApplyChange=apexGbeConfigInputDataTsApplyChange, apexQamRfPortStatDataSyncFault=apexQamRfPortStatDataSyncFault, apexInputTsStatus=apexInputTsStatus, apexGbeConfigInputDataTsApplyTable=apexGbeConfigInputDataTsApplyTable, apexEnableGbeBufferFullness=apexEnableGbeBufferFullness, apexRpcDeviceType=apexRpcDeviceType, apexSysConfig=apexSysConfig, apexInputTsStatIndex=apexInputTsStatIndex, apexAlarmHardwareFault=apexAlarmHardwareFault, apexEncryptionConfigGeneral=apexEncryptionConfigGeneral, apexEncryptionEmmGoodDeliveryTimeMs=apexEncryptionEmmGoodDeliveryTimeMs, apexChassisRedundancyGigE12LinkStatus=apexChassisRedundancyGigE12LinkStatus, apexCteEncryptionMode=apexCteEncryptionMode, apexQamRfPortStatDataClockPresent=apexQamRfPortStatDataClockPresent, trapConfigurationChangeIpAddress=trapConfigurationChangeIpAddress, apexQamModuleStat3dot3VdcFault=apexQamModuleStat3dot3VdcFault, apexFastEnetPacketsTotPkts=apexFastEnetPacketsTotPkts, apexDtaRfPortConfigEntry=apexDtaRfPortConfigEntry, apexDepiSessionConfigUdpPort=apexDepiSessionConfigUdpPort, apexQamChannelIdEntry=apexQamChannelIdEntry, apexQamChanStatEiaChanNum=apexQamChanStatEiaChanNum, apexDtaRfPortConfigNetPidInterface=apexDtaRfPortConfigNetPidInterface, apexOutputTsEventAlarmSeverity=apexOutputTsEventAlarmSeverity, apexQrmFileRevisionEntry=apexQrmFileRevisionEntry, apexInputTsStatStreamInUse=apexInputTsStatStreamInUse, apexChassisRedundancyForceFailOver=apexChassisRedundancyForceFailOver, apexOampStatusGeneral=apexOampStatusGeneral, apexQamRfPortStatusTable=apexQamRfPortStatusTable, apexAcpHealthByte=apexAcpHealthByte, apexPidMapMaxPidMappings=apexPidMapMaxPidMappings, apexQamModuleStatusEntry=apexQamModuleStatusEntry, apexQamChannelStatusEntry=apexQamChannelStatusEntry, apexQamRfPortChannelInfoChanCount=apexQamRfPortChannelInfoChanCount, apexGbeTotalRxMulticastFrames=apexGbeTotalRxMulticastFrames, apexOutputProgramApsLevel=apexOutputProgramApsLevel, apexGbeStatInTsSecPeakDataCount=apexGbeStatInTsSecPeakDataCount, apexQamConfigTransmissionMode=apexQamConfigTransmissionMode, apexUdpMapConfig=apexUdpMapConfig, apexGbeInputTsEventSecCurStreamCount=apexGbeInputTsEventSecCurStreamCount, apexPsipStatusServiceState=apexPsipStatusServiceState, apexAlarmRdsCommFault=apexAlarmRdsCommFault, apexGbeConfIfRedundApplyIndex=apexGbeConfIfRedundApplyIndex, apexSessionControlConfig=apexSessionControlConfig, apexPsiStatus=apexPsiStatus, apexRtspConfControllerBandwidthDelta=apexRtspConfControllerBandwidthDelta, apexEncryptionEmmMaxDeliveryTimeMs=apexEncryptionEmmMaxDeliveryTimeMs, apexGbeConfigInterfaceRedundancyGeneral=apexGbeConfigInterfaceRedundancyGeneral, apexPidMapInputInterface=apexPidMapInputInterface, apexEnableDepiControlConnectionFault=apexEnableDepiControlConnectionFault, apexChassisRedundancySuspend=apexChassisRedundancySuspend, apexQrmDownloadProgress=apexQrmDownloadProgress, apexEventChassisRedunSecondaryForceFailover=apexEventChassisRedunSecondaryForceFailover, apexPsipConfigEit2InsertionPeriod=apexPsipConfigEit2InsertionPeriod)
mibBuilder.exportSymbols("APEX-MIB", trapQamModuleUpgraded=trapQamModuleUpgraded, apexPsiDetectionEnabled=apexPsiDetectionEnabled, apexDepiControlConfigIndex=apexDepiControlConfigIndex, apexEnableGbeLossOfPhysicalInput=apexEnableGbeLossOfPhysicalInput, apexUdpMapMulticastInvalidApplyText=apexUdpMapMulticastInvalidApplyText, apexLogs=apexLogs, apexGbeInputTsAssignedTable=apexGbeInputTsAssignedTable, apexGbeStatInTsPriCurStreamCount=apexGbeStatInTsPriCurStreamCount, apexAsiMonitorPortOutputTsNum=apexAsiMonitorPortOutputTsNum, apexBootMethod=apexBootMethod, apexPsStatusInstalled=apexPsStatusInstalled, apexGlueCpldVersion=apexGlueCpldVersion, apexQamChannelIdChannelLetter=apexQamChannelIdChannelLetter, apexQamChannelsActiveCount=apexQamChannelsActiveCount, apexDepiConfig=apexDepiConfig, apexEnableServiceInError=apexEnableServiceInError, apexEasOutputEntry=apexEasOutputEntry, apexRtspConfMhaSbeEncryptionMode=apexRtspConfMhaSbeEncryptionMode, apexOutputProgramError=apexOutputProgramError, apexEnableOutputUtilizationFault=apexEnableOutputUtilizationFault, apexEncryptionEmmMinDeliveryTimeMs=apexEncryptionEmmMinDeliveryTimeMs, apexHwEventIndex=apexHwEventIndex, apexEncryptionMux1RolloverCount=apexEncryptionMux1RolloverCount, apexMainBoardTempAcpModule=apexMainBoardTempAcpModule, apexRdsEventRatingRegion=apexRdsEventRatingRegion, apexRtspStatControllerNum=apexRtspStatControllerNum, apexManualRouteInputSourceIp=apexManualRouteInputSourceIp, apexGbeStatusInterfaceRedundTable=apexGbeStatusInterfaceRedundTable, apexQamChanStatChannelNum=apexQamChanStatChannelNum, apexDtaGeneralConfigCatEmmPidInterface=apexDtaGeneralConfigCatEmmPidInterface, apexRpcSessionStatSessionIdWord2=apexRpcSessionStatSessionIdWord2, apexSesContConfGbeSecondaryInterface=apexSesContConfGbeSecondaryInterface, apexPreencryptionConfig=apexPreencryptionConfig, apexQamModuleStatFaultSumm=apexQamModuleStatFaultSumm, trapFanFault=trapFanFault, apexMappingErrorInputInterface=apexMappingErrorInputInterface, apexMcEmmInsertionPid1Enable=apexMcEmmInsertionPid1Enable, apexManRteGbeInRedSuspend=apexManRteGbeInRedSuspend, apexInputTsStatPriInputInterface=apexInputTsStatPriInputInterface, apexRtspStatQamMptsModeEntry=apexRtspStatQamMptsModeEntry, apexPsipConfigTimeDsMonthOut=apexPsipConfigTimeDsMonthOut, apexEncryptionEmmGoodRepliesRecvd=apexEncryptionEmmGoodRepliesRecvd, apexDepiSessionStatusRemoteUdp=apexDepiSessionStatusRemoteUdp, apexGbeFrameBufferCurrMsLevel=apexGbeFrameBufferCurrMsLevel, apexUdpMapStatusGeneral=apexUdpMapStatusGeneral, apexMainBoardTempHostProcessorFault=apexMainBoardTempHostProcessorFault, apexGbeStatInTsSecAvgStreamCount=apexGbeStatInTsSecAvgStreamCount, apexPsStatusFaultCondition=apexPsStatusFaultCondition, apexTimeConfigGeneral=apexTimeConfigGeneral, apexAsiConfig=apexAsiConfig, apexGbeTotalTxErrorFrames=apexGbeTotalTxErrorFrames, apexOutputProgramOutputTsNum=apexOutputProgramOutputTsNum, apexPsStatusCommError=apexPsStatusCommError, apexTemperatureConfigGeneral=apexTemperatureConfigGeneral, apexQamModuleUpgrade=apexQamModuleUpgrade, apexQamConfigApplyRfPortNum=apexQamConfigApplyRfPortNum, apexTraps=apexTraps, apexPsipStatusOutputEntry=apexPsipStatusOutputEntry, apexPsipStatusServiceEntry=apexPsipStatusServiceEntry, apexQamQrmRevisionEntry=apexQamQrmRevisionEntry, apexQamConfigApplyChange=apexQamConfigApplyChange, apexChassisRedundancyRedundantHBEnable=apexChassisRedundancyRedundantHBEnable, apexDepiSessionConfigApplyTable=apexDepiSessionConfigApplyTable, apexQamChanStatFaultCondition=apexQamChanStatFaultCondition, apexUdpMapStatusTable=apexUdpMapStatusTable, apexRdsSourceLookupTable=apexRdsSourceLookupTable, apexOutputTsConfOutputTsNum=apexOutputTsConfOutputTsNum, trapGbeInputStreamHighBitRate=trapGbeInputStreamHighBitRate, apexQamModuleStatusTable=apexQamModuleStatusTable, apexRpcDataCarouselProgram=apexRpcDataCarouselProgram, apexManualRouteRmdClear=apexManualRouteRmdClear, apexRpcSessionStatOutputQamChannel=apexRpcSessionStatOutputQamChannel, apexGbeNominalBufferLevel=apexGbeNominalBufferLevel, apexGbeConfigIpSubnetMask=apexGbeConfigIpSubnetMask, apexMcEmmInsertionPid2=apexMcEmmInsertionPid2, apexDepiConfigHostname=apexDepiConfigHostname, apex=apex, apexDataIpAddrInUse=apexDataIpAddrInUse, apexRtspConfMhaEntry=apexRtspConfMhaEntry, apexChassisRedundancyConfig=apexChassisRedundancyConfig, apexRdsStatusServerRootDirPath=apexRdsStatusServerRootDirPath, apexInsertionConfigGeneral=apexInsertionConfigGeneral, apexManRteGbeInRedPriHighAlarmBitRate=apexManRteGbeInRedPriHighAlarmBitRate, apexInputTsStatusGeneral=apexInputTsStatusGeneral, apexGbeRxMulticastFrames=apexGbeRxMulticastFrames, apexFastEnetRoutingGatewayIp=apexFastEnetRoutingGatewayIp, apexGbeSfpStatusEntry=apexGbeSfpStatusEntry, apexRpcSessionStatSourceIpAddr3=apexRpcSessionStatSourceIpAddr3, apexGbeStatInTsPriAvgStreamCount=apexGbeStatInTsPriAvgStreamCount, apexManRteGbeInRedInvalidApplyText=apexManRteGbeInRedInvalidApplyText, apexMappingErrorCode=apexMappingErrorCode, apexGbeConfInRedundForceToSecondary=apexGbeConfInRedundForceToSecondary, apexAutoRebootEnable=apexAutoRebootEnable, apexOutputTsEventAlarmCode=apexOutputTsEventAlarmCode, apexDepiControlStatusEntry=apexDepiControlStatusEntry, apexPsipStatusOutputMessageType=apexPsipStatusOutputMessageType, apexGbeStatusInputTsGeneral=apexGbeStatusInputTsGeneral, apexPsipStatusServiceTable=apexPsipStatusServiceTable, apexManualRouteApplyTable=apexManualRouteApplyTable, apexAlarmDtiSyncLossFault=apexAlarmDtiSyncLossFault, apexFastEnetInsPacketsNumDiscarded=apexFastEnetInsPacketsNumDiscarded, apexQamChanStatDataPresent=apexQamChanStatDataPresent, apexOutputProgramInputTsIndex=apexOutputProgramInputTsIndex, apexRtspConfControllerApplyEntry=apexRtspConfControllerApplyEntry, apexDepiSessionStatusEntry=apexDepiSessionStatusEntry, apexInvalidInitDataTimeLogged=apexInvalidInitDataTimeLogged, apexOutputProgramEncryptionMode=apexOutputProgramEncryptionMode, apexOutputTsUtilizAvgRate=apexOutputTsUtilizAvgRate, apexGbeStatusGeneral=apexGbeStatusGeneral, apexGbeInputTsEventSecCurDataCount=apexGbeInputTsEventSecCurDataCount, apexGbeDefaultGateway1=apexGbeDefaultGateway1, apexDtaGeneralConfigCatEmmPidMulticastIP=apexDtaGeneralConfigCatEmmPidMulticastIP, apexPsStatusVersionsSerialNumber=apexPsStatusVersionsSerialNumber, apexEasConfigGeneral=apexEasConfigGeneral, apexGbeStatInTsSecLossInputError=apexGbeStatInTsSecLossInputError, apexOutputTsUtilizPeakDropPackets=apexOutputTsUtilizPeakDropPackets, apexEventChassisRedunFirmwareVersionMismatch=apexEventChassisRedunFirmwareVersionMismatch, apexEncryptionEmmBadRepliesRecvd=apexEncryptionEmmBadRepliesRecvd, apexGbeIpFragmentedPkts=apexGbeIpFragmentedPkts, apexUdpMapStartProgNum=apexUdpMapStartProgNum, apexQamChannelIdRfPortNum=apexQamChannelIdRfPortNum, apexDtaRfPortConfigNetPidUdpPort=apexDtaRfPortConfigNetPidUdpPort, apexOutputTsUtilizMinRate=apexOutputTsUtilizMinRate, apexGbeInputTsEventTable=apexGbeInputTsEventTable, trapTemperatureFault=trapTemperatureFault, apexDepiSessionStatusControlId=apexDepiSessionStatusControlId, apexRtspStatus=apexRtspStatus, apexAlarmGbeInputStreamLowBitRate=apexAlarmGbeInputStreamLowBitRate, apexQamQrmRevStatFpga=apexQamQrmRevStatFpga, apexOutputTsUtilizOverflow=apexOutputTsUtilizOverflow, apexManRteGbeInRedSecRedundMcJoin=apexManRteGbeInRedSecRedundMcJoin, apexDepiControlStatusRejectedSessions=apexDepiControlStatusRejectedSessions, apexQamConfigGeneral=apexQamConfigGeneral, apexAcpConfig=apexAcpConfig, apexPidMapOutputPid=apexPidMapOutputPid, apexRtspQamStatAllocatedBandwidth=apexRtspQamStatAllocatedBandwidth, apexGbeConfIfRedundForceFailover=apexGbeConfIfRedundForceFailover, apexPsipStatusServiceNum=apexPsipStatusServiceNum, apexGbeStatInTsPriPeakStreamCount=apexGbeStatInTsPriPeakStreamCount, apexOampAutoNegotiate=apexOampAutoNegotiate, apexRdsProgramMessagesReceived=apexRdsProgramMessagesReceived, apexRpcRfPortTable=apexRpcRfPortTable, apexOutputTsUtilizationEntry=apexOutputTsUtilizationEntry, apexQrmDownloadStatus=apexQrmDownloadStatus, apexOutputTsUtilizationMonitorGeneral=apexOutputTsUtilizationMonitorGeneral, apexOutputTsUtilMonClearAlarmDelay=apexOutputTsUtilMonClearAlarmDelay, apexManRteGbeInRedEntry=apexManRteGbeInRedEntry, apexRtspEventDescription=apexRtspEventDescription, trapDtiSyncLossFault=trapDtiSyncLossFault, apexGbeStatInTsPriLowBitRateError=apexGbeStatInTsPriLowBitRateError, apexMainBoardTempFrontIntakeFault=apexMainBoardTempFrontIntakeFault, apexRdsSourceLookupEntry=apexRdsSourceLookupEntry, apexQamRfRedundConfigAutoSwitchBack=apexQamRfRedundConfigAutoSwitchBack, apexRdsProgramMessagesFailed=apexRdsProgramMessagesFailed, apexManualRouteSourceId=apexManualRouteSourceId, apexRpcControlInterface=apexRpcControlInterface, apexDepiSessionConfigEnable=apexDepiSessionConfigEnable, ResetStatisticsTYPE=ResetStatisticsTYPE, apexGbeFrameBufferStatsGeneral=apexGbeFrameBufferStatsGeneral, apexCteCommonTier=apexCteCommonTier, apexPmtVersionIncrement=apexPmtVersionIncrement, trapConditionNotInList=trapConditionNotInList, apexGlueFpgaVersion=apexGlueFpgaVersion, apexOampIpAddr=apexOampIpAddr, apexDpmVersion=apexDpmVersion, apexDtaRfPortConfigNetPidSourceIP=apexDtaRfPortConfigNetPidSourceIP, apexSaveConfig=apexSaveConfig, apexEnableChassisRedundancyLinkFault=apexEnableChassisRedundancyLinkFault, apexGbeInputTsEventEntry=apexGbeInputTsEventEntry, apexRtspEventControllerIp=apexRtspEventControllerIp, apexQamRfRedundConfigApplyChange=apexQamRfRedundConfigApplyChange, apexSesContConfRedundThreshold=apexSesContConfRedundThreshold, apexMainBoardTemperature=apexMainBoardTemperature, apexManualRoutingStatusGeneral=apexManualRoutingStatusGeneral, apexPsipConfigEit0InsertionPeriod=apexPsipConfigEit0InsertionPeriod, apexRdsFlashWriteCount=apexRdsFlashWriteCount, apexOampSpeed=apexOampSpeed, apexPsStatusOutputPowerStatus=apexPsStatusOutputPowerStatus, apexRdsEmmStatusUnitAddress=apexRdsEmmStatusUnitAddress, apexOutputTsConfApplyChange=apexOutputTsConfApplyChange, apexPsStatusTable=apexPsStatusTable, apexDtaRfPortConfigIndex=apexDtaRfPortConfigIndex, apexCteApplyChange=apexCteApplyChange, apexChassisRedundancyFailOverTemperatureFault=apexChassisRedundancyFailOverTemperatureFault, apexDtaRfPortConfigTable=apexDtaRfPortConfigTable, apexManualRouteGbeInputRedundConfig=apexManualRouteGbeInputRedundConfig, apexMainBoardTempHostProcessor=apexMainBoardTempHostProcessor, apexPowerSupply=apexPowerSupply, trapInvalidInitData=trapInvalidInitData, apexDepiSessionStatusTable=apexDepiSessionStatusTable, apexQamRfRedundConfigForceSwitch=apexQamRfRedundConfigForceSwitch, apexRtspSessionId=apexRtspSessionId, apexGbeConfInRedundSwitchTime=apexGbeConfInRedundSwitchTime, apexRdsSetDefault=apexRdsSetDefault, apexDtaOtsConfigTable=apexDtaOtsConfigTable, apexGbeSfpUpdateStatus=apexGbeSfpUpdateStatus, apexRpcSessionStatTable=apexRpcSessionStatTable, apexRdsEventRatingData=apexRdsEventRatingData, apexRpcRfChannelEntry=apexRpcRfChannelEntry, apexSesContConfTableApplyChange=apexSesContConfTableApplyChange, apexManRteGbeInRedForceSwitchIndex=apexManRteGbeInRedForceSwitchIndex, apexUdpMapNumberProgs=apexUdpMapNumberProgs, apexGbeStatusFrameCounterTable=apexGbeStatusFrameCounterTable, apexRdsStatusValidation=apexRdsStatusValidation, apexAlarmOutputOverflow=apexAlarmOutputOverflow, apexQamRfPortStatRefClockPresent=apexQamRfPortStatRefClockPresent, apexQam=apexQam, apexRpcRfPortNum=apexRpcRfPortNum, apexRtspConfGbeEdgeGroupEntry=apexRtspConfGbeEdgeGroupEntry, apexPidMapApplyChange=apexPidMapApplyChange, apexQrmDownloadFileSet=apexQrmDownloadFileSet, apexEncryptionMux2RolloverCount=apexEncryptionMux2RolloverCount, apexRtspConfQamChannelApplyTable=apexRtspConfQamChannelApplyTable, apexOutputTsUtilizNumSamples=apexOutputTsUtilizNumSamples, apexGbeConfigEnable=apexGbeConfigEnable, apexGbeStatusFrameCounterEntry=apexGbeStatusFrameCounterEntry, apexDepi=apexDepi, apexInsertionStatus=apexInsertionStatus, apexGbeStatusInterfaceRedundIndex=apexGbeStatusInterfaceRedundIndex, apexGbeConfigInputDataTsInterface=apexGbeConfigInputDataTsInterface, apexOutputProgramProgramType=apexOutputProgramProgramType, apexPsiStatusEntry=apexPsiStatusEntry, apexInputTsStatEntry=apexInputTsStatEntry, apexQamChannelConfigApplyEntry=apexQamChannelConfigApplyEntry, apexRpcQamStatQamChannelNum=apexRpcQamStatQamChannelNum, apexDepiControlConfigTable=apexDepiControlConfigTable, apexOutputTsUtilizPeakRate=apexOutputTsUtilizPeakRate, apexRdsEventTable=apexRdsEventTable, apexFastEnetPacketsTotDiscarded=apexFastEnetPacketsTotDiscarded, apexRtspConfMhaNum=apexRtspConfMhaNum, apexCteConfig=apexCteConfig, apexQamRfRedundancyConfigGeneral=apexQamRfRedundancyConfigGeneral, trapConditionListFull=trapConditionListFull, apexQamChanConfigInterleaverSelect=apexQamChanConfigInterleaverSelect, apexRtspEventSourceDescription=apexRtspEventSourceDescription, apexFastEnetPacketsNumDiscarded=apexFastEnetPacketsNumDiscarded, trapUnknownMessageReceived=trapUnknownMessageReceived, apexGbeStatInTsPriAvgDataCount=apexGbeStatInTsPriAvgDataCount, apexOutputTsConfSimulcryptMode=apexOutputTsConfSimulcryptMode, apexGbeTotalTxGoodFrames=apexGbeTotalTxGoodFrames, apexGbeConfigInterfaceRedundancy=apexGbeConfigInterfaceRedundancy, apexSessionControlStatus=apexSessionControlStatus, apexGbeSfpStatusTable=apexGbeSfpStatusTable, apexEasMulticastIpAddress=apexEasMulticastIpAddress, apexRtspConfMhaTable=apexRtspConfMhaTable, apexEasStatusGeneral=apexEasStatusGeneral, apexPidMapConfig=apexPidMapConfig, apexSysStatus=apexSysStatus, apexDepiControlStatusRemoteUdp=apexDepiControlStatusRemoteUdp, apexEncryption=apexEncryption, apexFastEnetDefaultGateway=apexFastEnetDefaultGateway, apexDataIpMacAddr=apexDataIpMacAddr, apexSntpServerIpAddr=apexSntpServerIpAddr, apexOutputTsEventMinRate=apexOutputTsEventMinRate)
mibBuilder.exportSymbols("APEX-MIB", apexFastEnetInsPacketsTotDiscarded=apexFastEnetInsPacketsTotDiscarded, apexPsStatusOutputVoltage=apexPsStatusOutputVoltage, apexGbeTotalRxDocsisFrames=apexGbeTotalRxDocsisFrames, apexPidMapEntry=apexPidMapEntry, apexFanModuleInstalledCount=apexFanModuleInstalledCount, apexRpcSessionStatManagerIpAddr=apexRpcSessionStatManagerIpAddr, apexGbeStatusTotRoutedPackets=apexGbeStatusTotRoutedPackets, apexQamRfRedundConfigSuspendFailover=apexQamRfRedundConfigSuspendFailover, apexRtspStatControllerDiscovery=apexRtspStatControllerDiscovery, apexPsiStatusIndex=apexPsiStatusIndex, apexDtaGeneralConfig=apexDtaGeneralConfig, trapChassisRedundancyConfigurationFault=trapChassisRedundancyConfigurationFault, apexGbeFrameBufferHourlyIndex=apexGbeFrameBufferHourlyIndex, apexChassisRedundancy=apexChassisRedundancy, apexGbeStatusGbeInterfaceNum=apexGbeStatusGbeInterfaceNum, PYSNMP_MODULE_ID=apex, apexGbeConfigInputDataTsIndex=apexGbeConfigInputDataTsIndex, apexQamQrmRevisionTable=apexQamQrmRevisionTable, apexDepiControlStatusIndex=apexDepiControlStatusIndex, apexRdsCetNextPollTime=apexRdsCetNextPollTime, apexEncryptionEmmRequestsSent=apexEncryptionEmmRequestsSent, apexFastEnetStatusPacketsTable=apexFastEnetStatusPacketsTable, apexDepiSessionStatusInSequenceDiscards=apexDepiSessionStatusInSequenceDiscards, apexTemperatureStatus=apexTemperatureStatus, apexManRteGbeInRedForceSwitch=apexManRteGbeInRedForceSwitch, apexPsipConfigTimeDsHourOut=apexPsipConfigTimeDsHourOut, apexAlarmGbeBufferFullness=apexAlarmGbeBufferFullness, apexGbeStatus=apexGbeStatus, apexGbeRxSinglecastFrames=apexGbeRxSinglecastFrames, apexGbeStatInTsSecErrorSummary=apexGbeStatInTsSecErrorSummary, apexDepiControlConfigEntry=apexDepiControlConfigEntry, apexAlarmQamRfPortFault=apexAlarmQamRfPortFault, apexHwEventTable=apexHwEventTable, apexRtspSessionStatOutputQamChannel=apexRtspSessionStatOutputQamChannel, apexDepiControlConfigApplyEntry=apexDepiControlConfigApplyEntry, apexOutputTsStatusDepiSessionsMapped=apexOutputTsStatusDepiSessionsMapped, apexDataIpInUseReason=apexDataIpInUseReason, apexEnableRemCommFault=apexEnableRemCommFault, apexRpcApplyChange=apexRpcApplyChange, apexInputTsStatSecInputMulticastIp=apexInputTsStatSecInputMulticastIp, apexQrmFileRevDateTime=apexQrmFileRevDateTime, apexGbeInputTsEventPriCurStreamCount=apexGbeInputTsEventPriCurStreamCount, apexDepiControlStatusTable=apexDepiControlStatusTable, apexPsStatusDiagnosticData1=apexPsStatusDiagnosticData1, apexRdsConfigRds2Enable=apexRdsConfigRds2Enable, apexRdsEmmStatusIndex=apexRdsEmmStatusIndex, apexPsipStatusInputTable=apexPsipStatusInputTable, apexQamRfPortStatChanFaultSumm=apexQamRfPortStatChanFaultSumm, apexEasPhysInPort=apexEasPhysInPort, apexGbeConfIfRedundAutoSwitchBackPeriod=apexGbeConfIfRedundAutoSwitchBackPeriod, apexDtaGeneralConfigApplyChange=apexDtaGeneralConfigApplyChange, apexManualRouteOutputCopyProtectSource=apexManualRouteOutputCopyProtectSource, apexMainBoardType=apexMainBoardType, apexManRteGbeInRedStatusMapTable=apexManRteGbeInRedStatusMapTable, apexPidMapOutputTsNum=apexPidMapOutputTsNum, apexChassisRedundancyConfigApplyChange=apexChassisRedundancyConfigApplyChange, apexOutputTsUtilizDataFlag=apexOutputTsUtilizDataFlag, apexGbeStatInTsMptsRedundPriError=apexGbeStatInTsMptsRedundPriError, apexRtspStatControllerConnection=apexRtspStatControllerConnection, apexDepiSessionStatus=apexDepiSessionStatus, apexRdsProgramEpochDuration=apexRdsProgramEpochDuration, apexAsiMonitorPortConfig=apexAsiMonitorPortConfig, apexRtspStatQamChannelTable=apexRtspStatQamChannelTable, apexMpc2FpgaVersion=apexMpc2FpgaVersion, apexGbeConfigInputDataTsMulticastIp=apexGbeConfigInputDataTsMulticastIp, apexPsipConfigApplyChange=apexPsipConfigApplyChange, apexQamRfRedundStatusRemSwitch=apexQamRfRedundStatusRemSwitch, apexQamRfRedundStatusRemConnection=apexQamRfRedundStatusRemConnection, apexPreencryptionConfigGeneral=apexPreencryptionConfigGeneral, apexOutputProgramEcmServiceId=apexOutputProgramEcmServiceId, apexRtspEventTable=apexRtspEventTable, apexGbeFrameCounterReset=apexGbeFrameCounterReset, apexQamRfConfigRfCenterFreqChannelA=apexQamRfConfigRfCenterFreqChannelA, apexDataIpStatusGeneral=apexDataIpStatusGeneral, apexHwEventTimeLogged=apexHwEventTimeLogged, apexHwEventData=apexHwEventData, apexGbeStatInTsSecHighBitRateError=apexGbeStatInTsSecHighBitRateError, apexUdpMapStatusEntry=apexUdpMapStatusEntry, apexEnableQamChannelFault=apexEnableQamChannelFault, apexGbeStatInTsPriMinStreamCount=apexGbeStatInTsPriMinStreamCount, apexQamChanConfigTestMode=apexQamChanConfigTestMode, apexDepiStatusGeneralDtiPort1LinkActive=apexDepiStatusGeneralDtiPort1LinkActive, apexPsipConfig=apexPsipConfig, apexGbeFrameBufferStatsTable=apexGbeFrameBufferStatsTable, apexRtspConfQamChannelApplyNum=apexRtspConfQamChannelApplyNum, apexEncryptionMux1CollisionCount=apexEncryptionMux1CollisionCount, EthernetInterfaceTYPE=EthernetInterfaceTYPE, apexQamQrmRevFpga=apexQamQrmRevFpga, apexEventChassisRedunQAMVersionMismatch=apexEventChassisRedunQAMVersionMismatch, apexUdpMapApplyChange=apexUdpMapApplyChange, apexRtspConfControllerIp=apexRtspConfControllerIp, apexManualRouteGbeInputRedundStatus=apexManualRouteGbeInputRedundStatus, apexGbeFrameBufferResetLevelLimit=apexGbeFrameBufferResetLevelLimit, apexChassisRedundancyGigEMismatchStatus=apexChassisRedundancyGigEMismatchStatus, apexEasOutputStreamNum=apexEasOutputStreamNum, apexDepiSessionConfigApplyOutputTsNum=apexDepiSessionConfigApplyOutputTsNum, apexMappingErrorIndex=apexMappingErrorIndex, apexUdpMapMulticastEnable=apexUdpMapMulticastEnable, apexDepiStatusGeneralDtiPort2CableAdvanceValue=apexDepiStatusGeneralDtiPort2CableAdvanceValue, apexGbeStatusInterfaceRedundActiveIf=apexGbeStatusInterfaceRedundActiveIf, apexUdpMapTsOffset=apexUdpMapTsOffset, apexFastEnetInsertRate=apexFastEnetInsertRate, apexPsipStatusInputBody=apexPsipStatusInputBody, apexRdsEmmStatusState=apexRdsEmmStatusState, apexQamRfConfigSpectrumInvert=apexQamRfConfigSpectrumInvert, trapConfigurationChangeDisplayString=trapConfigurationChangeDisplayString, apexManRteGbeInRedPriInterface=apexManRteGbeInRedPriInterface, apexAcp=apexAcp, apexOutputTsUtilizOutpuTsNum=apexOutputTsUtilizOutpuTsNum, apexDepiSessionConfigDocsisTsid=apexDepiSessionConfigDocsisTsid, apexSimulcryptEmEnable=apexSimulcryptEmEnable, apexQamQrmRevStatQrmSupported=apexQamQrmRevStatQrmSupported, apexFastEnetInsertPacketsEntry=apexFastEnetInsertPacketsEntry, apexFastEnetConfig=apexFastEnetConfig, apexQamQrmRevBoardId=apexQamQrmRevBoardId, apexMappingErrorEntry=apexMappingErrorEntry, apexDataIpSubnetMaskInUse=apexDataIpSubnetMaskInUse, apexGbeRxErrorFrames=apexGbeRxErrorFrames, apexRtspStatQamChannelName=apexRtspStatQamChannelName, apexPidMapStatus=apexPidMapStatus, apexInputTsStatTable=apexInputTsStatTable, apexEasServerMulticastIpAddress=apexEasServerMulticastIpAddress, apexManRteGbeInRedThreshold=apexManRteGbeInRedThreshold, apexAlarmQamChannelFault=apexAlarmQamChannelFault, apexChassisRedundancyStatusGeneral=apexChassisRedundancyStatusGeneral, apexAlarmPowerFault=apexAlarmPowerFault, apexOutputProgramInputProgNum=apexOutputProgramInputProgNum, apexPsipConfigMgtMsgInsertionPeriod=apexPsipConfigMgtMsgInsertionPeriod, apexPsipStatusOutputSegment=apexPsipStatusOutputSegment, apexRdsConfigGeneral=apexRdsConfigGeneral, apexRtspSessionStatInputProgramNum=apexRtspSessionStatInputProgramNum, apexManRteGbeInRedSecSourceIp=apexManRteGbeInRedSecSourceIp, apexQamRfPortStatRefClockLock=apexQamRfPortStatRefClockLock, apexEasServerApplyNum=apexEasServerApplyNum, apexDepiControlStatusUnknownAvp=apexDepiControlStatusUnknownAvp, apexGbeTxErrorFrames=apexGbeTxErrorFrames, apexRtspSessionStatProgramBandwidth=apexRtspSessionStatProgramBandwidth, apexPsipStatusOutputIndex=apexPsipStatusOutputIndex, apexGbeTotalRxBroadcastFrames=apexGbeTotalRxBroadcastFrames, apexRdsEventControlByte=apexRdsEventControlByte, apexRtspConfQamChannelApplyChange=apexRtspConfQamChannelApplyChange, apexRtspEventIndex=apexRtspEventIndex, apexBootReason=apexBootReason, apexProductName=apexProductName, apexInputTsStatSecInputInterface=apexInputTsStatSecInputInterface, apexQamRfConfigInterleaverDepth1=apexQamRfConfigInterleaverDepth1, apexEasServerNum=apexEasServerNum, apexEnableQamModuleFault=apexEnableQamModuleFault, apexPsipStatusOutputPart=apexPsipStatusOutputPart, apexQamConfig=apexQamConfig, apexQamRfPortChannelInfoTable=apexQamRfPortChannelInfoTable, apexDataIpDuplexMode=apexDataIpDuplexMode, apexQamRfRedundConfigEnable=apexQamRfRedundConfigEnable, trapGigeToHostCommFault=trapGigeToHostCommFault, apexGbeConfigInputDataTsEnable=apexGbeConfigInputDataTsEnable, apexGbeStatusLossOfPhysicalInput=apexGbeStatusLossOfPhysicalInput, apexPsipStatusInputGpsTime=apexPsipStatusInputGpsTime, apexOutputTsUtilization=apexOutputTsUtilization, apexEncryptionCwgStatus=apexEncryptionCwgStatus, apexPidMapApplyTable=apexPidMapApplyTable, apexDepiControlStatusHbitSet=apexDepiControlStatusHbitSet, apexQrmDownloadStatusEntry=apexQrmDownloadStatusEntry, apexQamRfPortMuteStatus=apexQamRfPortMuteStatus, apexQamModuleStatError=apexQamModuleStatError, apexRtspConfQamChannelTable=apexRtspConfQamChannelTable, apexClearInvalidInitData=apexClearInvalidInitData, apexRpcRfPortName=apexRpcRfPortName, apexRtspConfControllerNum=apexRtspConfControllerNum, apexRpcAvgBandwidthEnable=apexRpcAvgBandwidthEnable, apexQamModuleUpgradeSlot=apexQamModuleUpgradeSlot, apexManRteGbeInRedStatusGeneral=apexManRteGbeInRedStatusGeneral, apexDataIpSpeed=apexDataIpSpeed, apexSessionControlStatusGeneral=apexSessionControlStatusGeneral, apexGbeJitterAbsorption=apexGbeJitterAbsorption, apexDepiControlStatusCurrentSessions=apexDepiControlStatusCurrentSessions, apexGbeFrameBufferHourlyInMulticastIp=apexGbeFrameBufferHourlyInMulticastIp, apexOutputProgramInputPreEncrypted=apexOutputProgramInputPreEncrypted, apexGbeConfInRedundManualRouteRedundType=apexGbeConfInRedundManualRouteRedundType, apexQrmDownloadConfig=apexQrmDownloadConfig, apexQamChannelIdModuleRfPortNum=apexQamChannelIdModuleRfPortNum, trapConfigurationChangeInteger=trapConfigurationChangeInteger, apexRdsStatusServerPort=apexRdsStatusServerPort, apexGbeConfig=apexGbeConfig, apexUdpMapMulticastTable=apexUdpMapMulticastTable, apexCteApsLevel=apexCteApsLevel, apexDepiSessionStatusGeneral=apexDepiSessionStatusGeneral, apexPsiConfigGeneral=apexPsiConfigGeneral, apexQamQrmRevisionStatusTable=apexQamQrmRevisionStatusTable, apexRpcConfigGeneral=apexRpcConfigGeneral, apexOutputTsConfPcrLess=apexOutputTsConfPcrLess, apexOutputProgramOutputProgNum=apexOutputProgramOutputProgNum, apexCteCitEnable=apexCteCitEnable, apexRtspSessionIdEntry=apexRtspSessionIdEntry, apexRtspConfControllerHoldTime=apexRtspConfControllerHoldTime, apexQrmDownloadConfigTable=apexQrmDownloadConfigTable, apexEasOutputEnable=apexEasOutputEnable, apexPsiStatusTable=apexPsiStatusTable, apexOutputTsStatusAncillaryPidsMapped=apexOutputTsStatusAncillaryPidsMapped, apexPsiStatusMessageType=apexPsiStatusMessageType, apexAcpStatusEntry=apexAcpStatusEntry, apexDepiSessionStatusLatencyEnd=apexDepiSessionStatusLatencyEnd, apexPsiRangeStop=apexPsiRangeStop, apexManRteGbeInRedPriUdp=apexManRteGbeInRedPriUdp, apexInputTsStatPriState=apexInputTsStatPriState, apexChassisRedundancyEventTable=apexChassisRedundancyEventTable, apexHwEventEntry=apexHwEventEntry, apexOutputTsConfEncryptionType=apexOutputTsConfEncryptionType, apexSysStatusGeneral=apexSysStatusGeneral, apexManRtePassThroughApplyOutputTsNum=apexManRtePassThroughApplyOutputTsNum, apexEnableChassisRedundancyConfigurationFault=apexEnableChassisRedundancyConfigurationFault, apexPsipStatusGeneral=apexPsipStatusGeneral, apexInputTsStatRateCompareType=apexInputTsStatRateCompareType, apexChassisRedundancyFailOverQamModuleFault=apexChassisRedundancyFailOverQamModuleFault, apexManualRouteApplyIndex=apexManualRouteApplyIndex, apexQamModuleUpgradeApplyChange=apexQamModuleUpgradeApplyChange, apexOutputTsUtilizRollingDropPackets=apexOutputTsUtilizRollingDropPackets, apexRtspQamStatEntry=apexRtspQamStatEntry, apexChassisRedundancyRedundantApexSecIp=apexChassisRedundancyRedundantApexSecIp, apexChassisRedundancyConfigurationStatus=apexChassisRedundancyConfigurationStatus, trapChassisRedundancyQAMVersionMismatch=trapChassisRedundancyQAMVersionMismatch, apexDepiSessionConfigOutputTsNum=apexDepiSessionConfigOutputTsNum, apexQamStatusTransmissionMode=apexQamStatusTransmissionMode, apexGbeTxGoodFrames=apexGbeTxGoodFrames, apexGbeStatInTsErrorInputTsNum=apexGbeStatInTsErrorInputTsNum, apexGbeFrameBufferHourlyGpsTime=apexGbeFrameBufferHourlyGpsTime, apexGbeConfigInputDataTsEntry=apexGbeConfigInputDataTsEntry, apexInsertionMode=apexInsertionMode, apexEncryptionMcDiagTable=apexEncryptionMcDiagTable, apexRtspConfig=apexRtspConfig, apexManRteGbeInRedTable=apexManRteGbeInRedTable, apexGbeStatInTsPriLossInputError=apexGbeStatInTsPriLossInputError, apexEasServerApplyTable=apexEasServerApplyTable, apexManRteGbeInRedSecHighAlarmBitRate=apexManRteGbeInRedSecHighAlarmBitRate, apexManualRouteEnable=apexManualRouteEnable, apexPsipConfigTimeDsDayIn=apexPsipConfigTimeDsDayIn, apexRpcStatusGeneral=apexRpcStatusGeneral, trapChassisRedundancySecondaryForceFailover=trapChassisRedundancySecondaryForceFailover, apexQamModuleStatBoardTemperature=apexQamModuleStatBoardTemperature, apexDepiControlStatusGeneralTotalConnections=apexDepiControlStatusGeneralTotalConnections, apexDepiControlStatusMalformedAvp=apexDepiControlStatusMalformedAvp, apexDepiSessionStatusGeneralInvalidApplyText=apexDepiSessionStatusGeneralInvalidApplyText, apexQamRfPortStatOutputLevelFault=apexQamRfPortStatOutputLevelFault, apexEnableQamRfRedundFailOver=apexEnableQamRfRedundFailOver, apexPsipStatusInputInfo=apexPsipStatusInputInfo, apexSesContConfEntry=apexSesContConfEntry, apexQamRfPortStatCommError=apexQamRfPortStatCommError, apexQamQrmRevFpga2=apexQamQrmRevFpga2, apexRdsTcpPort=apexRdsTcpPort, apexRpcQamStatNumVodBcSessions=apexRpcQamStatNumVodBcSessions, apexPsStatus=apexPsStatus, apexGbeRxMpegDocsisFrames=apexGbeRxMpegDocsisFrames, apexQrmDownloadConfigQrmNum=apexQrmDownloadConfigQrmNum, apexEasServerRcvUdpPort=apexEasServerRcvUdpPort, apexSesContStatProtocol=apexSesContStatProtocol)
mibBuilder.exportSymbols("APEX-MIB", apexManualRouteProviderId=apexManualRouteProviderId, apexQamRfPortStatNumChannelsActive=apexQamRfPortStatNumChannelsActive, apexEncryptionMcDiagDeviceIndex=apexEncryptionMcDiagDeviceIndex, apexMappingErrorInputType=apexMappingErrorInputType, apexPsipStatusInputSegment=apexPsipStatusInputSegment, apexQamModuleStatTemperatureFault=apexQamModuleStatTemperatureFault, apexQamStatusGeneral=apexQamStatusGeneral, apexPsStatusVersionsModel=apexPsStatusVersionsModel, apexDepiControlStatusGeneralCurrentConnections=apexDepiControlStatusGeneralCurrentConnections, apexOutputTsConfig=apexOutputTsConfig, apexOutputTsStatusMessageGenerationNum=apexOutputTsStatusMessageGenerationNum, apexAlarmRemFault=apexAlarmRemFault, apexRtspConfigGeneral=apexRtspConfigGeneral, trapChassisRedundancySecondaryFailover=trapChassisRedundancySecondaryFailover, apexSntpUtcOffset=apexSntpUtcOffset, apexMappingErrorUdpPort=apexMappingErrorUdpPort, trapQamRfPortFault=trapQamRfPortFault, apexRtspStatQamChannelNum=apexRtspStatQamChannelNum, apexRdsStatusServerIp=apexRdsStatusServerIp, trapRemCommFault=trapRemCommFault, apexRtspConfMhaPort=apexRtspConfMhaPort, apexRtspSessionStatEntry=apexRtspSessionStatEntry, apexQamRfPortStatError=apexQamRfPortStatError, apexQrmFileRevCalibration=apexQrmFileRevCalibration, apexManRtePassThroughEntry=apexManRtePassThroughEntry, apexQamQrmRevAppFw=apexQamQrmRevAppFw, apexGbeConfigFrameBufferProcessorNum=apexGbeConfigFrameBufferProcessorNum, trapOutputUtilizationFault=trapOutputUtilizationFault, apexRtspConfControlNamesNum=apexRtspConfControlNamesNum, apexGbeStatusLinkActive=apexGbeStatusLinkActive, apexRtspConfMhaSbeCitSetting=apexRtspConfMhaSbeCitSetting, apexPidMapInvalidApplyText=apexPidMapInvalidApplyText, apexRdsInitialEcmRetryInterval=apexRdsInitialEcmRetryInterval, apexDepiSessionConfigApplyChange=apexDepiSessionConfigApplyChange, apexManualRouteOutputEncryptMode=apexManualRouteOutputEncryptMode, apexManualRoutingConfigGeneral=apexManualRoutingConfigGeneral, apexEncryptionStatus=apexEncryptionStatus, apexManRteGbeInRedStatusMapEntry=apexManRteGbeInRedStatusMapEntry, apexOutputTsUtilizationMonitorTable=apexOutputTsUtilizationMonitorTable, trapDepiSessionSetupFault=trapDepiSessionSetupFault, apexRpcSessionStatSessionIdWord1=apexRpcSessionStatSessionIdWord1, apexRtspQamStatTable=apexRtspQamStatTable, apexQamRfConfigRfLevelAttenuation=apexQamRfConfigRfLevelAttenuation, apexDtaOtsConfigEnable=apexDtaOtsConfigEnable, apexEncryptionCwgPerSecond=apexEncryptionCwgPerSecond, apexMcEmmInsertionApplyChange=apexMcEmmInsertionApplyChange, apexUdpMapMulticastMcastIp=apexUdpMapMulticastMcastIp, apexOampConfig=apexOampConfig, apexPsipStatusServiceOutputTs=apexPsipStatusServiceOutputTs, apexGbeFrameBufferHourlyTable=apexGbeFrameBufferHourlyTable, apexQamChannelIdSlotNum=apexQamChannelIdSlotNum, trapServiceInError=trapServiceInError, apexQamRfConfigRfChanSpacing=apexQamRfConfigRfChanSpacing, apexQamModuleStat5VdcFault=apexQamModuleStat5VdcFault, apexSimulcryptExternalEisSetting=apexSimulcryptExternalEisSetting, apexManualRouteInputUdp=apexManualRouteInputUdp, apexManRtePassThroughEnable=apexManRtePassThroughEnable, apexQamRfPortChannelInfoEntry=apexQamRfPortChannelInfoEntry, apexOutputTsUtilizationTable=apexOutputTsUtilizationTable, apexSesContConfRateCompareType=apexSesContConfRateCompareType, apexGbeStatInTsPriErrorSummary=apexGbeStatInTsPriErrorSummary, apexManRteGbeInRedApplyChange=apexManRteGbeInRedApplyChange, apexGbeStatInTsSamplingPeriod=apexGbeStatInTsSamplingPeriod, apexAlarmChassisRedundancyConfigurationFault=apexAlarmChassisRedundancyConfigurationFault, apexManRteGbeInRedSecInterface=apexManRteGbeInRedSecInterface, apexQamQrmRevStatBoardId=apexQamQrmRevStatBoardId, apexPsipConfigRrtMsgInsertionPeriod=apexPsipConfigRrtMsgInsertionPeriod, apexRpcRfChannelName=apexRpcRfChannelName, apexDepiSessionStatusIngressDlmMsgs=apexDepiSessionStatusIngressDlmMsgs, apexDataIpConfigGeneral=apexDataIpConfigGeneral, apexGbeInputTsEventIndex=apexGbeInputTsEventIndex, apexAlarms=apexAlarms, trapRdsCommFault=trapRdsCommFault, apexUdpMapApplyOutputTsNum=apexUdpMapApplyOutputTsNum, apexTemperature=apexTemperature, apexFastEnetRoutingSubnetMask=apexFastEnetRoutingSubnetMask, apexDepiControlStatusLocalUdp=apexDepiControlStatusLocalUdp, apexPsipConfigTime=apexPsipConfigTime, apexEasRcvUdpPort=apexEasRcvUdpPort, apexPsipConfigSttMsgInsertionPeriod=apexPsipConfigSttMsgInsertionPeriod, apexRds=apexRds, apexInsertion=apexInsertion, apexQamRfConfigRfLevelHighThreshold=apexQamRfConfigRfLevelHighThreshold, apexQrmDownloadConfigGeneral=apexQrmDownloadConfigGeneral, apexGbeFrameBufferHourlyInInterface=apexGbeFrameBufferHourlyInInterface, apexChassisRedundancyRedundantApexIp=apexChassisRedundancyRedundantApexIp, apexChassisRedundancyCurrHBIntfIPStatus=apexChassisRedundancyCurrHBIntfIPStatus, apexChassisRedundancySecondaryApexStatus=apexChassisRedundancySecondaryApexStatus, apexPsipStatusInputIndex=apexPsipStatusInputIndex, apexPidMapIndex=apexPidMapIndex, apexDepiSessionStatusOutputQAMChannel=apexDepiSessionStatusOutputQAMChannel, apexPsiStatusProgramNumber=apexPsiStatusProgramNumber, apexQamModuleSerialNumber=apexQamModuleSerialNumber, apexPsStatusFanStatus=apexPsStatusFanStatus, apexRtspStatusGeneral=apexRtspStatusGeneral, apexGbeStatInTsSecCurStreamCount=apexGbeStatInTsSecCurStreamCount, apexOutputTsUtilizTime=apexOutputTsUtilizTime, trapChassisRedundancyPrimaryForceFailover=trapChassisRedundancyPrimaryForceFailover, apexChassisRedundancyFirmwareMismatchStatus=apexChassisRedundancyFirmwareMismatchStatus, apexRdsEmmStatusCsn=apexRdsEmmStatusCsn, apexSessionControl=apexSessionControl, apexQrmFileRevFirmware=apexQrmFileRevFirmware, apexEncryptionStatusGeneral=apexEncryptionStatusGeneral, apexDepiSessionStatusPerHopBehavior=apexDepiSessionStatusPerHopBehavior, apexQrmDownloadConfigRequest=apexQrmDownloadConfigRequest, apexGbeFrameCounterGbeInterfaceNum=apexGbeFrameCounterGbeInterfaceNum, apexFastEnet=apexFastEnet, apexTimeSource=apexTimeSource, apexQamRfConfigInterleaverDepth2=apexQamRfConfigInterleaverDepth2, apexChassisRedundancyPrimaryApexStatus=apexChassisRedundancyPrimaryApexStatus, apexOutputTsStatusServicesMapped=apexOutputTsStatusServicesMapped, apexQamModuleSerialNumTable=apexQamModuleSerialNumTable, apexOutputTsUtilizAvgPercent=apexOutputTsUtilizAvgPercent, apexOutputTsStatusScgsProvisioned=apexOutputTsStatusScgsProvisioned, apexRtspStatControllerEntry=apexRtspStatControllerEntry, apexOutputProgramTierData=apexOutputProgramTierData, apexSys=apexSys, apexRtspConfControlNamesDeviceName=apexRtspConfControlNamesDeviceName, apexQamRfRedundConfigRemCommonIpAddr=apexQamRfRedundConfigRemCommonIpAddr, apexRdsCommErrorCount=apexRdsCommErrorCount, apexRpcSessionStatIndex=apexRpcSessionStatIndex, apexOutputTsUtilizThreshold=apexOutputTsUtilizThreshold, apexOutputProgramSourceId=apexOutputProgramSourceId, apexGbeStatusInputTsUpdateInterval=apexGbeStatusInputTsUpdateInterval, apexPidMapInputType=apexPidMapInputType, apexGbeStatusInputTsEntry=apexGbeStatusInputTsEntry, apexEnableInvalidInitData=apexEnableInvalidInitData, apexGbeConfigInputDataTsSourceIp=apexGbeConfigInputDataTsSourceIp, apexQamChannelConfigApplyChannelNum=apexQamChannelConfigApplyChannelNum, apexRdsEmmStatusTable=apexRdsEmmStatusTable, apexOutputProgramDtaEncryptionMode=apexOutputProgramDtaEncryptionMode, apexRpcRfChannelNum=apexRpcRfChannelNum, apexManRteGbeInRedApplyEntry=apexManRteGbeInRedApplyEntry, apexPsipConfigTimeDsDayOut=apexPsipConfigTimeDsDayOut, apexOutputTsUtilizPeakPercent=apexOutputTsUtilizPeakPercent, apexDtaConfig=apexDtaConfig, apexGbeConfigInputDataTsApplyText=apexGbeConfigInputDataTsApplyText, apexGbeConfigFrameBufferMaxInDataRate=apexGbeConfigFrameBufferMaxInDataRate, trapGbeInterfaceRedundFailOver=trapGbeInterfaceRedundFailOver, apexGbeFrameBufferAlarmStatus=apexGbeFrameBufferAlarmStatus, apexPsStatusPsNum=apexPsStatusPsNum, apexGbe=apexGbe, apexGbeRoutedPacketUpdateInterval=apexGbeRoutedPacketUpdateInterval, apexUdpMapStatusOutputTsNum=apexUdpMapStatusOutputTsNum, apexGbeGarpPeriodicity=apexGbeGarpPeriodicity, apexOutputProgramIndex=apexOutputProgramIndex, apexGbeConfIfRedundApplyChange=apexGbeConfIfRedundApplyChange, apexOutputTsConfApplyEntry=apexOutputTsConfApplyEntry, apexGbeStatusInterfaceRedundInvalidApplyText=apexGbeStatusInterfaceRedundInvalidApplyText, apexQamRfPortStat5VdcFault=apexQamRfPortStat5VdcFault, apexRdsErrorCountReset=apexRdsErrorCountReset, apexAlarmChassisRedundancyAvailabilityFault=apexAlarmChassisRedundancyAvailabilityFault, apexQamModuleStatInstalled=apexQamModuleStatInstalled, apexQamQrmRevBootLoaderFw=apexQamQrmRevBootLoaderFw, apexRtspSessionStatInputTsIndex=apexRtspSessionStatInputTsIndex, apexOutputTsEventRollingDropPackets=apexOutputTsEventRollingDropPackets, apexQamConfigApplyEntry=apexQamConfigApplyEntry, apexEnableChassisRedundancyAvailabilityFault=apexEnableChassisRedundancyAvailabilityFault, trapConditionAlreadyInList=trapConditionAlreadyInList, apexAlarmQamRfRedundMismatch=apexAlarmQamRfRedundMismatch, apexOutputTsConfigEntry=apexOutputTsConfigEntry, ActiveTYPE=ActiveTYPE, apexPsipStatus=apexPsipStatus, apexOutputTsConfOperatingMode=apexOutputTsConfOperatingMode, apexUdpMapMulticastApplyIndex=apexUdpMapMulticastApplyIndex, apexMuxFpgaEncryption=apexMuxFpgaEncryption, apexManRtePassThroughInputSourceIp=apexManRtePassThroughInputSourceIp, apexOutputProgram=apexOutputProgram, apexGbeConfIfRedundEnable=apexGbeConfIfRedundEnable, apexAlarmGbeMptsRedundPrimaryThreshold=apexAlarmGbeMptsRedundPrimaryThreshold, apexGbeFrameBufferHourlyMaxPercentFull=apexGbeFrameBufferHourlyMaxPercentFull, apexQamChanStatActive=apexQamChanStatActive, apexInputTsConfigGeneral=apexInputTsConfigGeneral, apexDepiControl=apexDepiControl, apexSystemTime=apexSystemTime, apexRtspConfControllerApplyTable=apexRtspConfControllerApplyTable, apexAcpStatusGeneral=apexAcpStatusGeneral, apexAcpOddCsn=apexAcpOddCsn, apexRtspConfQamChannelEntry=apexRtspConfQamChannelEntry, apexGbeStatusInputTsErrorEntry=apexGbeStatusInputTsErrorEntry, apexDepiSessionConfigEntry=apexDepiSessionConfigEntry, apexQamChannelIdTable=apexQamChannelIdTable, apexChassisRedundancyMulticastRedundancyMode=apexChassisRedundancyMulticastRedundancyMode, apexRdsCommStatus=apexRdsCommStatus, apexPsipConfigEit3InsertionPeriod=apexPsipConfigEit3InsertionPeriod, apexOutputProgramStatusGeneral=apexOutputProgramStatusGeneral, apexPsStatusTemperatureStatus=apexPsStatusTemperatureStatus, apexRtspReportGbeInterfaces=apexRtspReportGbeInterfaces, apexDepiControlStatusGeneralUnknownConnectionMessages=apexDepiControlStatusGeneralUnknownConnectionMessages, apexOutputTsEventEntry=apexOutputTsEventEntry, apexPsipConfigTimeApplyChange=apexPsipConfigTimeApplyChange, apexQamRfRedundancyStatus=apexQamRfRedundancyStatus, apexDepiSessionStatusMalformedCtl=apexDepiSessionStatusMalformedCtl, apexQamModuleStatFanFault=apexQamModuleStatFanFault, apexEnableChassisRedundancySecondaryFailover=apexEnableChassisRedundancySecondaryFailover, trapOutputOverflow=trapOutputOverflow, apexOutputTsStatusOutputTsNum=apexOutputTsStatusOutputTsNum, apexRdsRmdRefresh=apexRdsRmdRefresh, apexRdsRmdPollInterval=apexRdsRmdPollInterval, apexPsip=apexPsip, apexRpcSessionStatProgramBandwidth=apexRpcSessionStatProgramBandwidth, apexOutputTsConfOutPatTsId=apexOutputTsConfOutPatTsId, apexDataIpLinkActive=apexDataIpLinkActive, apexMainBoardVersion=apexMainBoardVersion, apexQamRfRedundStatusBackupPort=apexQamRfRedundStatusBackupPort, apexInputTsConfig=apexInputTsConfig, apexPsipConfigGeneral=apexPsipConfigGeneral, apexRtspConfMhaUdpMapEnable=apexRtspConfMhaUdpMapEnable, apexRdsEmmStatusEntry=apexRdsEmmStatusEntry, apexAlarmGbeMptsRedundFailOver=apexAlarmGbeMptsRedundFailOver, apexEnableOutputOverflow=apexEnableOutputOverflow, apexGbeInputTsAssignedEntry=apexGbeInputTsAssignedEntry, apexChassisRedundancyUdpPort=apexChassisRedundancyUdpPort, apexFastEnetRoutingDestinIp=apexFastEnetRoutingDestinIp, apexGbeStatInTsSecLowBitRateError=apexGbeStatInTsSecLowBitRateError, apexPsipStatusOutputBody=apexPsipStatusOutputBody, apexPsiDetectionTimeout=apexPsiDetectionTimeout, apexChassisRedundancyEventTimeLogged=apexChassisRedundancyEventTimeLogged, apexQamChannelStatusTable=apexQamChannelStatusTable, apexQrmDownloadStatusTable=apexQrmDownloadStatusTable, apexQamRfConfigTuningMode=apexQamRfConfigTuningMode, apexOampLinkActive=apexOampLinkActive, apexAncillaryPidMapping=apexAncillaryPidMapping, apexAlarmRtspControllerCommFault=apexAlarmRtspControllerCommFault, apexAlarmChassisRedundancyPrimaryFailover=apexAlarmChassisRedundancyPrimaryFailover, apexManRtePassThroughOutputTsNum=apexManRtePassThroughOutputTsNum, apexQamRfConfigRfLevelLowThreshold=apexQamRfConfigRfLevelLowThreshold, apexInputTsStatPriInputSourceIp=apexInputTsStatPriInputSourceIp, apexGbeOpenInputUdpPortEntry=apexGbeOpenInputUdpPortEntry, apexOutputProgramEntry=apexOutputProgramEntry, apexDepiControlConfigType=apexDepiControlConfigType, apexOutputTsUtilMonResetTotDropPacket=apexOutputTsUtilMonResetTotDropPacket, apexPsStatusErrorStatus=apexPsStatusErrorStatus, apexQamChannelConfigApplyTable=apexQamChannelConfigApplyTable, apexEasServerTable=apexEasServerTable, apexGbeConfIfRedundIndex=apexGbeConfIfRedundIndex, apexAsiMonitorPortEncryption=apexAsiMonitorPortEncryption, apexQamQrmRevStatAppFw=apexQamQrmRevStatAppFw, apexChassisRedundancyCommunicationStatus=apexChassisRedundancyCommunicationStatus, apexRtspConfControllerApplyNum=apexRtspConfControllerApplyNum, apexEncryptionConfAlgorithm=apexEncryptionConfAlgorithm, apexRtsp=apexRtsp, apexDepiSessionStatusHbitSet=apexDepiSessionStatusHbitSet, apexDtaGeneralConfigCatSourceType=apexDtaGeneralConfigCatSourceType, apexQamChanConfigChannelNum=apexQamChanConfigChannelNum, apexChassisRedundancyFailOverEnet2LinkLoss=apexChassisRedundancyFailOverEnet2LinkLoss, apexOutputTsEventAvgRate=apexOutputTsEventAvgRate, apexEasServerApplyChange=apexEasServerApplyChange, apexEncryptionMux2CollisionCount=apexEncryptionMux2CollisionCount, trapChassisRedundancyPrimaryFailover=trapChassisRedundancyPrimaryFailover, apexPsStatusDiagnosticData2=apexPsStatusDiagnosticData2, apexTime=apexTime, apexRtspSessionStatIndex=apexRtspSessionStatIndex, apexPsipStatusInputPid=apexPsipStatusInputPid)
mibBuilder.exportSymbols("APEX-MIB", apexDepiControlStatusInvalidVendorId=apexDepiControlStatusInvalidVendorId, apexGbeConfigInterfaceRedundancyEntry=apexGbeConfigInterfaceRedundancyEntry, apexQamModuleStatCodeInitError=apexQamModuleStatCodeInitError, apexOutputTsUtilizCurPercent=apexOutputTsUtilizCurPercent, apexGbeConfigFrameBufferTable=apexGbeConfigFrameBufferTable, apexGbeStatInTsSecMinStreamCount=apexGbeStatInTsSecMinStreamCount, apexRtspConfControllerPort=apexRtspConfControllerPort, apexPsipStatusOutputPid=apexPsipStatusOutputPid, apexGbeStatusMacAddr=apexGbeStatusMacAddr, apexGbeInputTsEventAlarmSeverity=apexGbeInputTsEventAlarmSeverity, apexRtspConfMhaSbeApsLevel=apexRtspConfMhaSbeApsLevel, apexQamModuleStatFaultCondition=apexQamModuleStatFaultCondition, apexQamRfRedundStatusRemError=apexQamRfRedundStatusRemError, apexManualRouteInputPreEncryptCheck=apexManualRouteInputPreEncryptCheck, apexGbeTotalIpFragmentedPkts=apexGbeTotalIpFragmentedPkts, apexDepiControlConfigGeneralKeepaliveTimeout=apexDepiControlConfigGeneralKeepaliveTimeout, apexRdsStatusGeneral=apexRdsStatusGeneral, apexDtaConfigApplyIndex=apexDtaConfigApplyIndex, apexQamRfPortStatCodeInitError=apexQamRfPortStatCodeInitError, apexGbeStatusNumRoutedPackets=apexGbeStatusNumRoutedPackets, apexDataIpAddr=apexDataIpAddr, apexRdsEventEventIndex=apexRdsEventEventIndex, apexDebug=apexDebug, apexDepiSessionConfigControlId=apexDepiSessionConfigControlId, apexGbeFrameBufferCurrPercentFull=apexGbeFrameBufferCurrPercentFull, apexManRteGbeInRedForceSwitchEntry=apexManRteGbeInRedForceSwitchEntry, apexDepiControlConfigApplyIndex=apexDepiControlConfigApplyIndex, apexEnableRemFault=apexEnableRemFault, apexManualRouting=apexManualRouting, apexGbeConfigEntry=apexGbeConfigEntry, apexQamRfPortMuteStatusRfPortNum=apexQamRfPortMuteStatusRfPortNum, apexInsertionStatusGeneral=apexInsertionStatusGeneral, apexRtspConfGbeEdgeGroupTable=apexRtspConfGbeEdgeGroupTable, trapRemFault=trapRemFault, apexEasConfig=apexEasConfig, apexFastEnetInsertRateTable=apexFastEnetInsertRateTable, apexDataIpAutoNegotiate=apexDataIpAutoNegotiate, apexDepiSessionStatusIndex=apexDepiSessionStatusIndex, apexUdpMapTable=apexUdpMapTable, apexGbeInputTsEventInputTsState=apexGbeInputTsEventInputTsState, apexMappingErrorOutputOpMode=apexMappingErrorOutputOpMode, apexOutputProgramStatus=apexOutputProgramStatus, apexGbeInputTsEventRedundantConfig=apexGbeInputTsEventRedundantConfig, apexGbeStatusInterfaceRedundFaultCondition=apexGbeStatusInterfaceRedundFaultCondition, apexUdpMapPreEncryptCheck=apexUdpMapPreEncryptCheck, apexGbeRxFrames=apexGbeRxFrames, apexGbeFrameBufferStats=apexGbeFrameBufferStats, apexDataIpSubnetMask=apexDataIpSubnetMask, apexEnableDepiSessionSetupFault=apexEnableDepiSessionSetupFault, apexRpcStatus=apexRpcStatus, apexOutputProgramConfig=apexOutputProgramConfig, apexGbeConfigAutoNegotiate=apexGbeConfigAutoNegotiate, apexAcpUnitAddress=apexAcpUnitAddress, apexDepiControlConfigInterfaceNumber=apexDepiControlConfigInterfaceNumber, apexGbeConfigInterfaceRedundancyApplyEntry=apexGbeConfigInterfaceRedundancyApplyEntry, apexManRteGbeInRedApplyTable=apexManRteGbeInRedApplyTable, apexManualRouteInvalidApplyText=apexManualRouteInvalidApplyText, apexEasServerEntry=apexEasServerEntry, apexOutputTsUtilMonAlarmThreshold=apexOutputTsUtilMonAlarmThreshold, apexAcpStatus=apexAcpStatus, apexChassisRedundancyMode=apexChassisRedundancyMode, apexDepiControlConfig=apexDepiControlConfig, apexGbeInputTsEventUdpPort=apexGbeInputTsEventUdpPort, apexMappingErrorSourceIp=apexMappingErrorSourceIp, apexOutputTsUtilizMinPercent=apexOutputTsUtilizMinPercent, apexManRteGbeInRedPriMulticastIp=apexManRteGbeInRedPriMulticastIp, apexEas=apexEas, apexRtspEventSessionCount=apexRtspEventSessionCount, apexMappingErrorSecSourceIp=apexMappingErrorSecSourceIp, apexRtspStatControllerCommFault=apexRtspStatControllerCommFault, apexTimeStatusGeneral=apexTimeStatusGeneral, apexGbeConfigInterfaceRedundancyApplyTable=apexGbeConfigInterfaceRedundancyApplyTable, apexMainBoardTempMuxFpga=apexMainBoardTempMuxFpga, apexChassisRedundancyStatusInvalidApplyText=apexChassisRedundancyStatusInvalidApplyText, apexDepiConfigGeneral=apexDepiConfigGeneral, apexQamRfRedundancyStatusGeneral=apexQamRfRedundancyStatusGeneral, apexRpcSessionStatSessionType=apexRpcSessionStatSessionType, apexRdsEventTierData=apexRdsEventTierData, apexGbeStatInTsSecCurDataCount=apexGbeStatInTsSecCurDataCount, apexInsertPacketStatNumPkts=apexInsertPacketStatNumPkts, apexQamRfRedundConfigApexId=apexQamRfRedundConfigApexId, trapConfigurationChangeOID=trapConfigurationChangeOID, apexChassisRedundancyFailOverQamRfPortFault=apexChassisRedundancyFailOverQamRfPortFault, apexOutputTsConfigTable=apexOutputTsConfigTable, apexPsStatusGeneral=apexPsStatusGeneral, apexPsiRangeStart=apexPsiRangeStart, apexPidMapInputPid=apexPidMapInputPid, apexGbeConfigTableApplyChange=apexGbeConfigTableApplyChange, apexManualRouteApplyEntry=apexManualRouteApplyEntry, apexOutputTsEventTimeLogged=apexOutputTsEventTimeLogged, apexRdsConfigApplyChange=apexRdsConfigApplyChange, apexHwEventDescription=apexHwEventDescription, apexGbeApplicationCodeVersion=apexGbeApplicationCodeVersion, apexEncryptionStatAlgorithm=apexEncryptionStatAlgorithm, apexChassisRedundancyQamMismatchStatus=apexChassisRedundancyQamMismatchStatus, apexQamStatus=apexQamStatus, apexUdpMapMulticastEntry=apexUdpMapMulticastEntry, apexRtspConfMhaGeneral=apexRtspConfMhaGeneral, apexPidMapInputSourceIp=apexPidMapInputSourceIp, apexOutputTsConfigGeneral=apexOutputTsConfigGeneral, apexGbeFrameBufferOverflowLevel=apexGbeFrameBufferOverflowLevel, apexManualRouteOutputTsNum=apexManualRouteOutputTsNum, apexGbeFrameBufferProcessorNum=apexGbeFrameBufferProcessorNum, trapDepiControlConnectionFault=trapDepiControlConnectionFault, apexRdsEventProgramIndex=apexRdsEventProgramIndex, apexDepiSessionStatusMalformedAvp=apexDepiSessionStatusMalformedAvp, apexEnableGbeMptsRedundPrimaryThreshold=apexEnableGbeMptsRedundPrimaryThreshold, apexDepiSessionConfig=apexDepiSessionConfig, apexDepiSessionStatusLatencyStart=apexDepiSessionStatusLatencyStart, apexGbeConfigInputDataTsApplyEntry=apexGbeConfigInputDataTsApplyEntry, apexGbeFrameBufferUnderflowLevel=apexGbeFrameBufferUnderflowLevel, apexMappingErrorTable=apexMappingErrorTable, apexOutputTsEventIndex=apexOutputTsEventIndex, apexQamModuleSerialNumQamModuleNum=apexQamModuleSerialNumQamModuleNum, apexRtspConfQamChannelGroupName=apexRtspConfQamChannelGroupName, apexOutputProgramProviderId=apexOutputProgramProviderId, apexQrmFileRevFpga2=apexQrmFileRevFpga2, apexOampSubnetMask=apexOampSubnetMask, apexQamRfPortChannelInfoRfPortNum=apexQamRfPortChannelInfoRfPortNum, apexEnableQamRfRedundMismatch=apexEnableQamRfRedundMismatch, apexTimeConfig=apexTimeConfig, apexMainBoardTempMuxFpgaFault=apexMainBoardTempMuxFpgaFault, apexOutputTsUtilizCurRate=apexOutputTsUtilizCurRate, apexAcpUnitAttribute=apexAcpUnitAttribute, apexEasNumInvalRcvMsgs=apexEasNumInvalRcvMsgs, apexOutputTsConfPidRemappingMode=apexOutputTsConfPidRemappingMode, apexOutputTsEventPeakRate=apexOutputTsEventPeakRate, apexQamRfPortStatInfoRate=apexQamRfPortStatInfoRate, apexManualRouteApplyChange=apexManualRouteApplyChange, apexOutputProgramCitSetting=apexOutputProgramCitSetting, apexGbeInputTsEventDescription=apexGbeInputTsEventDescription, apexDepiSessionStatusInDataPackets=apexDepiSessionStatusInDataPackets, apexGbeConfInputMulticastTimeout=apexGbeConfInputMulticastTimeout, apexSesContConfInputPreEncryptCheck=apexSesContConfInputPreEncryptCheck, apexSesContConfRedundType=apexSesContConfRedundType, apexQamRfConfigSymbolRate=apexQamRfConfigSymbolRate, apexRdsEventInterstitialDuration=apexRdsEventInterstitialDuration, trapGbeLossOfPhysicalInput=trapGbeLossOfPhysicalInput, apexGbeRxBroadcastFrames=apexGbeRxBroadcastFrames, apexGbeFrameBufferHourlyMaxMsLevel=apexGbeFrameBufferHourlyMaxMsLevel, apexPsipStatusOutputSourceId=apexPsipStatusOutputSourceId, apexQamModuleStat3dot3VdcSupply=apexQamModuleStat3dot3VdcSupply, apexPatVersionIncrement=apexPatVersionIncrement, trapRtspControllerCommFault=trapRtspControllerCommFault, apexFastEnetInsPacketsTotPkts=apexFastEnetInsPacketsTotPkts, apexInputTsStatSecInputSourceIp=apexInputTsStatSecInputSourceIp, apexQamRfPortMuteStatusEntry=apexQamRfPortMuteStatusEntry, apexManualRouteInputInterface=apexManualRouteInputInterface, apexGbeStatInTsSecMinDataCount=apexGbeStatInTsSecMinDataCount, apexPsipStatusInputSourceId=apexPsipStatusInputSourceId, apexOutputTsUtilizationGeneral=apexOutputTsUtilizationGeneral, apexRtspEventEntry=apexRtspEventEntry, apexGbeStatusEntry=apexGbeStatusEntry, apexPsipStatusOutputTable=apexPsipStatusOutputTable, apexManRtePassThroughTable=apexManRtePassThroughTable, apexGbeSfpStatusDiagInfo=apexGbeSfpStatusDiagInfo, apexUdpMapMulticastApplyTable=apexUdpMapMulticastApplyTable, apexRdsCetRefresh=apexRdsCetRefresh, apexPsi=apexPsi, apexUdpMapMulticastApplyChange=apexUdpMapMulticastApplyChange, apexManRteGbeInRedStatusMapInputTsStatRow=apexManRteGbeInRedStatusMapInputTsStatRow, apexAlarmOutputUtilizationFault=apexAlarmOutputUtilizationFault, trapChassisRedundancyAvailabilityFault=trapChassisRedundancyAvailabilityFault, apexGbeInputDataTsSmoothingPeriod=apexGbeInputDataTsSmoothingPeriod, apexOutputTransport=apexOutputTransport, apexOutputProgramConfigGeneral=apexOutputProgramConfigGeneral, apexInputTsStatSecInputUdp=apexInputTsStatSecInputUdp, apexPsiStatusPart=apexPsiStatusPart, apexChassisRedundancyFailOverEnet1LinkLoss=apexChassisRedundancyFailOverEnet1LinkLoss, apexGbeFrameBufferHourlyInSourceIp=apexGbeFrameBufferHourlyInSourceIp, apexDepiSessionConfigApplyEntry=apexDepiSessionConfigApplyEntry, apexChassisRedundancyConfigEnable=apexChassisRedundancyConfigEnable, apexRdsRmdNextPollTime=apexRdsRmdNextPollTime, apexPsiStatusSegment=apexPsiStatusSegment, apexGbeInputTsEventAlarmCode=apexGbeInputTsEventAlarmCode, apexConfAlarmClear=apexConfAlarmClear, apexGbeFrameBufferHourlyProcessorNum=apexGbeFrameBufferHourlyProcessorNum, apexQamQrmRevStatFpga2=apexQamQrmRevStatFpga2, apexUdpMapInputInterface=apexUdpMapInputInterface, apexManRteGbeInRedPriLowAlarmBitRate=apexManRteGbeInRedPriLowAlarmBitRate, apexQamRfRedundancyConfig=apexQamRfRedundancyConfig, apexQamRfPortChannelInfoChanA=apexQamRfPortChannelInfoChanA, apexDepiSessionConfigTable=apexDepiSessionConfigTable, apexUdpMapInvalidApplyText=apexUdpMapInvalidApplyText, apexRtspConfControlNamesStreamingZone=apexRtspConfControlNamesStreamingZone, apexDepiControlConfigSrcIpAddr=apexDepiControlConfigSrcIpAddr, apexFastEnetRoutingIndex=apexFastEnetRoutingIndex, apexGbeInputTsEventGbeInterface=apexGbeInputTsEventGbeInterface, apexQamModuleStatFanSpeed=apexQamModuleStatFanSpeed, apexAlarmTemperatureFault=apexAlarmTemperatureFault, apexGbeConfInRedundForceToPrimary=apexGbeConfInRedundForceToPrimary, apexGbeMaxInputTs=apexGbeMaxInputTs, apexSesContConfOutputTsNum=apexSesContConfOutputTsNum, apexRtspQamStatQamChannelNum=apexRtspQamStatQamChannelNum, apexOutputTsStatusInputStreamsMapped=apexOutputTsStatusInputStreamsMapped, apexMainBoardTemperatureFault=apexMainBoardTemperatureFault, apexGbeStatInTsSecAvgDataCount=apexGbeStatInTsSecAvgDataCount, trapCannotOpenSocket=trapCannotOpenSocket, apexAlarmChassisRedundancyLinkFault=apexAlarmChassisRedundancyLinkFault, apexGbeStatusRoutedPacketTable=apexGbeStatusRoutedPacketTable, RateComparisonTYPE=RateComparisonTYPE, apexRtspQamStatNumSessions=apexRtspQamStatNumSessions, apexManRtePassThroughApplyEntry=apexManRtePassThroughApplyEntry, apexDepiSessionStatusSessionID=apexDepiSessionStatusSessionID, apexOamp=apexOamp, apexUdpMapStatus=apexUdpMapStatus, apexQamChanStatError=apexQamChanStatError, apexRtspConfControlNamesEntry=apexRtspConfControlNamesEntry, apexPidMapApplyIndex=apexPidMapApplyIndex, apexDepiSessionStatusStatus=apexDepiSessionStatusStatus, apexPsiStatusGeneral=apexPsiStatusGeneral, apexGbeStatusInputTransportStream=apexGbeStatusInputTransportStream, apexGbeStatusIgmpVersion=apexGbeStatusIgmpVersion, apexGbeConfigTable=apexGbeConfigTable, apexRdsSourceLookupIndex=apexRdsSourceLookupIndex, apexChassisRedundancyFailOverQamChannelFault=apexChassisRedundancyFailOverQamChannelFault, apexFastEnetRoutingApplyChange=apexFastEnetRoutingApplyChange, apexQamRfPortStatOutputLevel=apexQamRfPortStatOutputLevel, apexOutputProgramNumberTiers=apexOutputProgramNumberTiers, apexQamRfConfigTable=apexQamRfConfigTable, apexRpcSessionStatInputProgramNum=apexRpcSessionStatInputProgramNum, apexAlarmServiceInError=apexAlarmServiceInError, apexGbeStatusFrameCounterTableResetAll=apexGbeStatusFrameCounterTableResetAll, apexUdpPortMapping=apexUdpPortMapping, apexGbeBootCodeVersion=apexGbeBootCodeVersion, apexFastEnetRoutingEntry=apexFastEnetRoutingEntry, apexOutputTsEventTotalDropPackets=apexOutputTsEventTotalDropPackets, apexMappingErrorSecInputInterface=apexMappingErrorSecInputInterface, apexMappingErrorMappingType=apexMappingErrorMappingType, apexDtaConfigApplyEntry=apexDtaConfigApplyEntry, apexDepiStatusGeneralDtiClientStatusMode=apexDepiStatusGeneralDtiClientStatusMode, apexDataIpStatus=apexDataIpStatus, apexDtaOtsConfigIndex=apexDtaOtsConfigIndex, apexQamChannelConfigTable=apexQamChannelConfigTable, apexPsiStatusBody=apexPsiStatusBody, apexManualRouteInputMulticastIp=apexManualRouteInputMulticastIp, apexOperationalTime=apexOperationalTime, apexPsStatusEntry=apexPsStatusEntry, apexUdpMapEntry=apexUdpMapEntry, apexOutputTsStatusTable=apexOutputTsStatusTable, apexRpcRfPortServiceGroup=apexRpcRfPortServiceGroup, apexRtspConfControlNamesTable=apexRtspConfControlNamesTable, apexInputTsStatRoutingType=apexInputTsStatRoutingType, apexAcpStatusTable=apexAcpStatusTable, apexManRteGbeInRedSecUdp=apexManRteGbeInRedSecUdp, apexFastEnetInsertPacketsTable=apexFastEnetInsertPacketsTable, apexGbeStatInTsMptsRedundFailError=apexGbeStatInTsMptsRedundFailError, apexQamModuleStatQamModuleNum=apexQamModuleStatQamModuleNum, apexPsStatusInputPowerStatus=apexPsStatusInputPowerStatus, apexQamChannelConfigApplyChange=apexQamChannelConfigApplyChange, apexRtspConfControllerApplyChange=apexRtspConfControllerApplyChange, apexRpcRfPortEntry=apexRpcRfPortEntry, apexDepiControlConfigApplyTable=apexDepiControlConfigApplyTable, EnableDisableTYPE=EnableDisableTYPE)
mibBuilder.exportSymbols("APEX-MIB", apexQamModuleStatTemperature=apexQamModuleStatTemperature, apexManRtePassThroughApplyTable=apexManRtePassThroughApplyTable, apexManRteGbeInRedIndex=apexManRteGbeInRedIndex, apexGbeSfpStatus=apexGbeSfpStatus, apexQamRfPortStat3dot3VdcFault=apexQamRfPortStat3dot3VdcFault, apexFastEnetInsertRateEntry=apexFastEnetInsertRateEntry, apexQrmDownloadConfigEntry=apexQrmDownloadConfigEntry, apexEnableGbeLossOfInputTsFault=apexEnableGbeLossOfInputTsFault, apexManualRoutingStatus=apexManualRoutingStatus, apexInvalidInitDataTable=apexInvalidInitDataTable, apexManRteGbeInRedSecLowAlarmBitRate=apexManRteGbeInRedSecLowAlarmBitRate, apexAlarmRemCommFault=apexAlarmRemCommFault, apexFastEnetInsPacketsNumPkts=apexFastEnetInsPacketsNumPkts, apexAlarmChassisRedundancySecondaryFailover=apexAlarmChassisRedundancySecondaryFailover, apexPsipConfigCvctMsgInsertionPeriod=apexPsipConfigCvctMsgInsertionPeriod, apexPsipStatusInputMessageType=apexPsipStatusInputMessageType, apexEncryptionMcDiagEntry=apexEncryptionMcDiagEntry, apexRdsEventEpochNumber=apexRdsEventEpochNumber, apexMuxFpgaVersion=apexMuxFpgaVersion, apexQamRfPortStatFaultCondition=apexQamRfPortStatFaultCondition, apexEasStatus=apexEasStatus, apexManRteGbeInRedEnable=apexManRteGbeInRedEnable, apexGbeInputTsEventSamplingPeriod=apexGbeInputTsEventSamplingPeriod, apexManRteGbeInRedRateCompareType=apexManRteGbeInRedRateCompareType, apexQrmDownloadStatusGeneral=apexQrmDownloadStatusGeneral, apexManRtePassThroughInvalidApplyText=apexManRtePassThroughInvalidApplyText, apexDepiControlStatusConnectionStatus=apexDepiControlStatusConnectionStatus, apexChassisRedundancyPrimaryStandbyOverride=apexChassisRedundancyPrimaryStandbyOverride, apexDepiControlConfigGeneral=apexDepiControlConfigGeneral, apexSesContConfProtocol=apexSesContConfProtocol, apexAlarmGbeInterfaceRedundFailOver=apexAlarmGbeInterfaceRedundFailOver, apexPsipStatusServiceIndex=apexPsipStatusServiceIndex, apexDataIpConfig=apexDataIpConfig, apexPsStatusVersionsEntry=apexPsStatusVersionsEntry, apexDtaConfigApplyTable=apexDtaConfigApplyTable, apexGbeConfigInterfaceRedundancyTable=apexGbeConfigInterfaceRedundancyTable, apexPsStatusVersionsTable=apexPsStatusVersionsTable, trapInvalidCaseInSwitch=trapInvalidCaseInSwitch, apexAlarmQamRfRedundFailOver=apexAlarmQamRfRedundFailOver, trapPowerFault=trapPowerFault, apexQamChannelIdChannelDescription=apexQamChannelIdChannelDescription, apexUdpMapMulticastIndex=apexUdpMapMulticastIndex, trapGbeMptsRedundPrimaryThreshold=trapGbeMptsRedundPrimaryThreshold, apexFastEnetInsPacketsOutputTsNum=apexFastEnetInsPacketsOutputTsNum, apexOutputTsStatusGeneral=apexOutputTsStatusGeneral, apexAlarmGbeLossOfPhysicalInput=apexAlarmGbeLossOfPhysicalInput, apexManRteGbeInRedApplyIndex=apexManRteGbeInRedApplyIndex, apexGbeInputTsAssignedGbeInterfaceNum=apexGbeInputTsAssignedGbeInterfaceNum, apexGbeStatInTsSecPeakStreamCount=apexGbeStatInTsSecPeakStreamCount, apexQamModuleStatPowerFault=apexQamModuleStatPowerFault, apexGbeFrameCounterUpdateInterval=apexGbeFrameCounterUpdateInterval, trapEmUserLoginFailed=trapEmUserLoginFailed, apexAlarmGbeLossOfInputStream=apexAlarmGbeLossOfInputStream, apexRpcQamStatTable=apexRpcQamStatTable, apexEvents=apexEvents, apexGbeConfigInterfaceNum=apexGbeConfigInterfaceNum, apexQamModuleUpgradeCode=apexQamModuleUpgradeCode, apexUdpMapMulticastSourceIp=apexUdpMapMulticastSourceIp, apexMcEmmInsertionPid1=apexMcEmmInsertionPid1, apexTemperatureConfig=apexTemperatureConfig, apexChassisRedundancyGigE34LinkStatus=apexChassisRedundancyGigE34LinkStatus, apexSysConfigMcEmmInsertion=apexSysConfigMcEmmInsertion, apexGbeConfigIpAddr=apexGbeConfigIpAddr, apexFastEnetMaxInputUdpPorts=apexFastEnetMaxInputUdpPorts, apexDepiSessionStatusInDataPacketDiscards=apexDepiSessionStatusInDataPacketDiscards, apexEnableChassisRedundancyPrimaryFailover=apexEnableChassisRedundancyPrimaryFailover, apexRdsEventProgramCost=apexRdsEventProgramCost, apexGbeStatusRoutedPacketEntry=apexGbeStatusRoutedPacketEntry, ClearAlarmTYPE=ClearAlarmTYPE, apexRtspStatQamMptsModeQamChannelNum=apexRtspStatQamMptsModeQamChannelNum, apexRpcSessionStatInputTsIndex=apexRpcSessionStatInputTsIndex, apexQamQrmRevisionStatusEntry=apexQamQrmRevisionStatusEntry, apexOutputTsUtilizationMonitorEntry=apexOutputTsUtilizationMonitorEntry, apexRpcQamStatNumSdvSessions=apexRpcQamStatNumSdvSessions, apexAlarmInvalidInitData=apexAlarmInvalidInitData, apexRdsPollRandomization=apexRdsPollRandomization, apexDepiSessionStatusOutSLIMsgs=apexDepiSessionStatusOutSLIMsgs, apexQamRfConfigEiaChanNumChannelA=apexQamRfConfigEiaChanNumChannelA, apexGbeConfigInputDataTsTable=apexGbeConfigInputDataTsTable, apexEnableGbeInputStreamLowBitRate=apexEnableGbeInputStreamLowBitRate, trapQamRfRedundFailOver=trapQamRfRedundFailOver, apexQamModuleStat5VdcSupply=apexQamModuleStat5VdcSupply, apexQamConfigApplyTable=apexQamConfigApplyTable, apexGbeOpenInputUdpPortTable=apexGbeOpenInputUdpPortTable, apexRtspConfMhaSbe=apexRtspConfMhaSbe, apexDepiStatusGeneralDtiPort2LinkActive=apexDepiStatusGeneralDtiPort2LinkActive, apexOutputTsEventCurDropPackets=apexOutputTsEventCurDropPackets, apexCteCciLevel=apexCteCciLevel, apexQamRfConfigModulationMode=apexQamRfConfigModulationMode, apexGbeConfigInputRedundancy=apexGbeConfigInputRedundancy, apexOutputProgramRoutingStatus=apexOutputProgramRoutingStatus, apexGbeDefaultGateway2=apexGbeDefaultGateway2, apexDepiControlStatus=apexDepiControlStatus, apexPidMapStatusGeneral=apexPidMapStatusGeneral, apexQamRfRedundStatusFailedPort=apexQamRfRedundStatusFailedPort, apexQamQrmRevStatQrmNum=apexQamQrmRevStatQrmNum, trapQamModuleFault=trapQamModuleFault, apexOampConfigGeneral=apexOampConfigGeneral, apexPidMapTable=apexPidMapTable, apexEcmEmmNumberPids=apexEcmEmmNumberPids, apexRdsSourceLookupProviderId=apexRdsSourceLookupProviderId, apexDepiStatusGeneralDtiPort1CableAdvanceValue=apexDepiStatusGeneralDtiPort1CableAdvanceValue, apexGbeStatInTsPriMinDataCount=apexGbeStatInTsPriMinDataCount, trapQamChannelFault=trapQamChannelFault, apexAlarmGigeToHostCommFault=apexAlarmGigeToHostCommFault, apexRtspConfQamChannelNum=apexRtspConfQamChannelNum, apexGbeConfLossOfInputTsType=apexGbeConfLossOfInputTsType, apexHostApplicationDate=apexHostApplicationDate, apexUdpMapApplyTable=apexUdpMapApplyTable, apexConfigAlarms=apexConfigAlarms, apexRdsEventCcmAvailable=apexRdsEventCcmAvailable, apexDepiSessionStatusInSLIMsgs=apexDepiSessionStatusInSLIMsgs, apexOutputTsUtilizationMonitoring=apexOutputTsUtilizationMonitoring, apexRtspStatControllerTable=apexRtspStatControllerTable, apexGbeStatInTsPriPeakDataCount=apexGbeStatInTsPriPeakDataCount, apexEncryptionCwCountsPerSecond=apexEncryptionCwCountsPerSecond, apexManRteGbeInRedConfigGeneral=apexManRteGbeInRedConfigGeneral, apexSysStatusVersions=apexSysStatusVersions, apexGbeInputTsEventMulticastIp=apexGbeInputTsEventMulticastIp, apexQamRfConfigEntry=apexQamRfConfigEntry, apexRtspStatQamMptsModeTable=apexRtspStatQamMptsModeTable, apexRdsEventEpochStart=apexRdsEventEpochStart, apexHwEventAlarmSeverity=apexHwEventAlarmSeverity, apexUdpMapMulticastApplyEntry=apexUdpMapMulticastApplyEntry, apexChassisRedundancyState=apexChassisRedundancyState, apexInvalidInitDataIndex=apexInvalidInitDataIndex, apexAlarmDepiSessionSetupFault=apexAlarmDepiSessionSetupFault, apexDepiControlConfigEnable=apexDepiControlConfigEnable, apexAcpEvenCsn=apexAcpEvenCsn, apexGbeConfIfRedundAutoSwitchBackEnable=apexGbeConfIfRedundAutoSwitchBackEnable, apexPsStatusFanSpeed=apexPsStatusFanSpeed, apexRdsEventPreviewDuration=apexRdsEventPreviewDuration, apexEcmEmmFirstPid=apexEcmEmmFirstPid, apexMappingErrorTimeLogged=apexMappingErrorTimeLogged, apexChassisRedundancyGeneralConfigSyncStatusText=apexChassisRedundancyGeneralConfigSyncStatusText, apexEasNumRcvMsgs=apexEasNumRcvMsgs, apexUdpMapMulticastInterface=apexUdpMapMulticastInterface, apexRpc=apexRpc, apexManRteGbeInRedForceSwitchTable=apexManRteGbeInRedForceSwitchTable, apexManRtePassThroughInputInterface=apexManRtePassThroughInputInterface, apexGbeStatusInputTsTable=apexGbeStatusInputTsTable, apexEnableDtiSyncLossFault=apexEnableDtiSyncLossFault, apexGbeFrameBufferStatsEntry=apexGbeFrameBufferStatsEntry, apexAlarmGbeInputStreamHighBitRate=apexAlarmGbeInputStreamHighBitRate, apexChassisRedundancyEventEntry=apexChassisRedundancyEventEntry, trapInvalidMessageReceived=trapInvalidMessageReceived, apexQrmFileRevFpga=apexQrmFileRevFpga, apexManRtePassThroughInputMulticastIp=apexManRtePassThroughInputMulticastIp, apexGbeConfIfRedundSuspendFailover=apexGbeConfIfRedundSuspendFailover, apexChassisRedundancyStatus=apexChassisRedundancyStatus, apexDepiSessionConfigSyncCorrection=apexDepiSessionConfigSyncCorrection, apexInsertPacketStatisticsTable=apexInsertPacketStatisticsTable, apexSntpServerSpecified=apexSntpServerSpecified, apexMainBoardTempAcpModuleFault=apexMainBoardTempAcpModuleFault, apexQamRfPortStatTemperatureFault=apexQamRfPortStatTemperatureFault, apexRtspStatQamMptsModeQamChannelMode=apexRtspStatQamMptsModeQamChannelMode, apexMappingErrorOutputTsNum=apexMappingErrorOutputTsNum, apexPsConfigGeneral=apexPsConfigGeneral, apexRpcSessionStatEntry=apexRpcSessionStatEntry, apexDepiControlStatusGeneralUnknownSessionMessages=apexDepiControlStatusGeneralUnknownSessionMessages, apexGbeInputTsEventTimeLogged=apexGbeInputTsEventTimeLogged, apexGbeTotalRxSinglecastFrames=apexGbeTotalRxSinglecastFrames, apexFastEnetStatus=apexFastEnetStatus, trapGbeInputStreamLowBitRate=trapGbeInputStreamLowBitRate, apexGbeStatusInterfaceRedundEntry=apexGbeStatusInterfaceRedundEntry, apexGbeRxDocsisFrames=apexGbeRxDocsisFrames, apexGbeStatusRoutedPacketOutputTsNum=apexGbeStatusRoutedPacketOutputTsNum, apexDepiSessionStatusLocalUdp=apexDepiSessionStatusLocalUdp, apexRtspConfMhaSbeCciLevel=apexRtspConfMhaSbeCciLevel, apexMainBoardTempFrontIntake=apexMainBoardTempFrontIntake, apexGbeConfigFrameBufferAlarmThreshold=apexGbeConfigFrameBufferAlarmThreshold, apexRdsSourceLookupDescription=apexRdsSourceLookupDescription, apexDtaRfPortConfigNetPidMulticastIP=apexDtaRfPortConfigNetPidMulticastIP, apexRtspConfControllerTable=apexRtspConfControllerTable, apexQamRfConfigEiaFrequencyPlan=apexQamRfConfigEiaFrequencyPlan, apexOutputTsStatusServicesMuxed=apexOutputTsStatusServicesMuxed, apexGbeConfInRedundMonitorPeriod=apexGbeConfInRedundMonitorPeriod, apexOutputTsConfApplyIndex=apexOutputTsConfApplyIndex, apexRtspStatQamChannelEntry=apexRtspStatQamChannelEntry, apexRdsCurrentCsn=apexRdsCurrentCsn, trapChassisRedundancyFirmwareVersionMismatch=trapChassisRedundancyFirmwareVersionMismatch, apexEventChassisRedunPrimaryForceFailover=apexEventChassisRedunPrimaryForceFailover, apexRdsEventEntry=apexRdsEventEntry, apexRdsIpAddr=apexRdsIpAddr, apexEasServerPhysInType=apexEasServerPhysInType, apexRpcReportAllSessions=apexRpcReportAllSessions, apexGbeFrameBufferHourlyEntry=apexGbeFrameBufferHourlyEntry, apexUdpMapMulticastUdp=apexUdpMapMulticastUdp, apexGbeStatusInputTsErrorTable=apexGbeStatusInputTsErrorTable, apexQamRfRedundStatusMismatch=apexQamRfRedundStatusMismatch, apexOutputTsConfApplyTable=apexOutputTsConfApplyTable, apexOutputProgramCciLevel=apexOutputProgramCciLevel, apexSessionControlConfigGeneral=apexSessionControlConfigGeneral, apexAsi=apexAsi, apexDepiControlStatusGeneral=apexDepiControlStatusGeneral, apexRdsSourceLookupSourceId=apexRdsSourceLookupSourceId, apexRtspConfQamChannelApplyEntry=apexRtspConfQamChannelApplyEntry, apexQamModuleInstalledCount=apexQamModuleInstalledCount, apexPsipConfigTimeDsMonthIn=apexPsipConfigTimeDsMonthIn, apexGbeConfInRedundAutoSwitchBack=apexGbeConfInRedundAutoSwitchBack, apexEnableGbeMptsRedundFailOver=apexEnableGbeMptsRedundFailOver, apexQamRfRedundConfigRemConnection=apexQamRfRedundConfigRemConnection, apexFastEnetPacketsPortNum=apexFastEnetPacketsPortNum, apexOutputTsUtilizationSamplePeriod=apexOutputTsUtilizationSamplePeriod, apexDepiControlStatusGeneralRejectedConnections=apexDepiControlStatusGeneralRejectedConnections, apexOutputProgramEncryptionStatus=apexOutputProgramEncryptionStatus, apexSesContConfTable=apexSesContConfTable, apexEasOutputTable=apexEasOutputTable, apexGbeInputTsAssignedCount=apexGbeInputTsAssignedCount, apexQamQrmRevRfPortNum=apexQamQrmRevRfPortNum, apexInputTsStatInputType=apexInputTsStatInputType, apexRdsEventPurchaseDuration=apexRdsEventPurchaseDuration, apexEventQamModuleUpgraded=apexEventQamModuleUpgraded, apexEasServerSourceIpAddress=apexEasServerSourceIpAddress, apexInputTsStatPriInputUdp=apexInputTsStatPriInputUdp, apexAlarmFanFault=apexAlarmFanFault, apexPsipStatusServiceSourceId=apexPsipStatusServiceSourceId, apexQamRfConfigNumChannelsEnabled=apexQamRfConfigNumChannelsEnabled, apexRtspConfGbeEdgeGroupNum=apexRtspConfGbeEdgeGroupNum, apexDepiControlStatusGeneralInvalidApplyText=apexDepiControlStatusGeneralInvalidApplyText, apexGbeSfpStatusVendorId=apexGbeSfpStatusVendorId, apexGbeInputDataTsBufferDepth=apexGbeInputDataTsBufferDepth, apexGbeFrameBufferHourlyOverflows=apexGbeFrameBufferHourlyOverflows, apexGbeSfpStatusGeneral=apexGbeSfpStatusGeneral, apexGbeConfigInputRedundancyGeneral=apexGbeConfigInputRedundancyGeneral, InputTsStateTYPE=InputTsStateTYPE, apexProgramBasedPmtOffset=apexProgramBasedPmtOffset, apexManualRouteTable=apexManualRouteTable, apexGbeStatInTsPriHighBitRateError=apexGbeStatInTsPriHighBitRateError, apexOutputTsEventTable=apexOutputTsEventTable, apexGbeConfigInputDataTsApplyIndex=apexGbeConfigInputDataTsApplyIndex, apexRdsEmmStatusGpsTime=apexRdsEmmStatusGpsTime, apexDtaOtsConfigEntry=apexDtaOtsConfigEntry, apexRpcSessionStatOutputProgramNum=apexRpcSessionStatOutputProgramNum, apexPsipConfigTimeDsHourIn=apexPsipConfigTimeDsHourIn, apexOutputTsUtilizOverflowAlarm=apexOutputTsUtilizOverflowAlarm, apexRdsConfig=apexRdsConfig, apexPsConfig=apexPsConfig, apexGbeOpenInputUdpPortGbeInterfaceNum=apexGbeOpenInputUdpPortGbeInterfaceNum, apexPidMapApplyEntry=apexPidMapApplyEntry, apexDataIp=apexDataIp, apexQamQrmRevStatHw=apexQamQrmRevStatHw, apexQamChanStatRfFreq=apexQamChanStatRfFreq, apexChassisRedundancyFailOverGigE12LinkLoss=apexChassisRedundancyFailOverGigE12LinkLoss, apexQrmFileRevisionTable=apexQrmFileRevisionTable, apexInsertPacketStatOutputTsNum=apexInsertPacketStatOutputTsNum, apexDtaConfigApplyChange=apexDtaConfigApplyChange, apexOutputTsStatusServicesInError=apexOutputTsStatusServicesInError, apexRpcQamStatEntry=apexRpcQamStatEntry, apexRdsConfigServerUrl=apexRdsConfigServerUrl, ApplyDataToDeviceTYPE=ApplyDataToDeviceTYPE, apexOutputTsEventOutputTsNum=apexOutputTsEventOutputTsNum, apexManRtePassThroughInputType=apexManRtePassThroughInputType, apexPsStatusVersionsPsNum=apexPsStatusVersionsPsNum)
mibBuilder.exportSymbols("APEX-MIB", apexOutputTsUtilMonSetAlarmDelay=apexOutputTsUtilMonSetAlarmDelay, apexRpcSessionStatSessionIdWord3=apexRpcSessionStatSessionIdWord3, apexQamQrmRevHw=apexQamQrmRevHw)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_intersection, constraints_union, value_size_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsIntersection', 'ConstraintsUnion', 'ValueSizeConstraint', 'ValueRangeConstraint')
(giproducts,) = mibBuilder.importSymbols('BCS-IDENT-MIB', 'giproducts')
(trap_identifier, trap_network_elem_model_number, trap_network_elem_serial_num, trap_network_elem_alarm_status, trap_ne_trap_last_trap_time_stamp, trap_additional_info_integer1, trap_changed_value_ip_address, trap_changed_value_display_string, trap_network_elem_avail_status, trap_changed_value_integer, trap_sequence_id, trap_text, trap_additional_info_integer2, trap_perceived_severity, trap_changed_value_oid, trap_network_elem_oper_state, trap_additional_info_integer3, trap_changed_object_id, trap_network_elem_admin_state) = mibBuilder.importSymbols('BCS-TRAPS-MIB', 'trapIdentifier', 'trapNetworkElemModelNumber', 'trapNetworkElemSerialNum', 'trapNetworkElemAlarmStatus', 'trapNETrapLastTrapTimeStamp', 'trapAdditionalInfoInteger1', 'trapChangedValueIpAddress', 'trapChangedValueDisplayString', 'trapNetworkElemAvailStatus', 'trapChangedValueInteger', 'trapSequenceId', 'trapText', 'trapAdditionalInfoInteger2', 'trapPerceivedSeverity', 'trapChangedValueOID', 'trapNetworkElemOperState', 'trapAdditionalInfoInteger3', 'trapChangedObjectId', 'trapNetworkElemAdminState')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(counter32, module_identity, ip_address, unsigned32, integer32, bits, object_identity, counter64, gauge32, iso, time_ticks, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'ModuleIdentity', 'IpAddress', 'Unsigned32', 'Integer32', 'Bits', 'ObjectIdentity', 'Counter64', 'Gauge32', 'iso', 'TimeTicks', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
apex = module_identity((1, 3, 6, 1, 4, 1, 1166, 1, 31))
apex.setRevisions(('2011-02-15 00:00', '2010-08-17 00:00', '2010-06-30 00:00', '2010-03-05 00:00', '2010-01-19 00:00', '2009-10-16 00:00', '2009-09-14 00:00', '2009-06-09 00:00', '2009-04-20 00:00', '2009-04-08 00:00', '2009-04-14 00:00', '2009-03-23 00:00', '2009-03-10 00:00', '2008-07-24 00:00', '2008-07-08 00:00', '2008-02-18 14:00'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
apex.setRevisionsDescriptions(("Version 2.5: February 15, 2011 - Updated the description for apexDtaConfigApplyChange - Corrected the range of values for apexQamRfPortChannelInfoChanA. January 27, 2011 - Updated the description for apexDtaGeneralConfigInvalidApplyText. January 10, 2011 - Added apexChassisRedundancyRedundantApexSecIp, apexChassisRedundancyRedundantHBEnable, apexChassisRedundancyCurrHBIntfIPStatus December 20, 2010 - apexQamConfigApplyTable does not set apply change for apexQamChannelConfigTable - Added channel apply table apexQamChannelConfigApplyTable - Added status MIB variables for 4x4 apexQamModuleStatBoardTemperature, apexQamModuleStatBoardTemperatureFault, apexQamModuleStat5VdcSupplym, apexQamModuleStat5VdcFault, apexQamModuleStat3dot3VdcSupply, apexQamModuleStat3dot3VdcFault, apexQamModuleStatCommError, apexQamModuleStatCodeInitError - Added QAM versions MIB variable apexQamQrmRevFpga2 - Added QAM version status MIB variable apexQamQrmRevStatFpga2 - Added QAM file revision information MIB variables apexQrmFileRevFpga2 and apexQrmFileRevDateTime - Added EM support MIB tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable - Added 4x4 error codes dc5VoltError,dc3-3VoltError,commLost,codeVersions, codeDownload,codeDownloadError - Number of RF ports increased to 12 for apexQamConfigApplyRfPortNum - Number of RF ports increased to 12 for apexQamRfPortStatRfPortNum - Number of RF ports increased to 12 for apexQamRfPortMuteStatusRfPortNum - Number of File Revisisons increased to 3 for apexQrmFileRevFileSetNum - Number of RF ports increased to 12 for apexRpcRfPortNum - Number of RF ports increased to 12 for apexEasServerNum - Added qam4x4Channel for apexQamModuleStatInstalled - Added any4x4 for apexQamRfRedundStatusMismatch MIB parameter - Added fileSet3 for apexQrmDownloadFileSet MIB parameter December 10, 2010 - Updated RF Port and OTS numbers mapping in the description for apexDtaConfigApplyChange. December 6, 2010 - Changed the range of apexDtaConfigApplyIndex and apexDtaRfPortConfigIndex from '1 to 6' to '1 to 12' to support 4x4 QAM also. December 3, 2010 - Added apexOutputTsStatusServicesMuxed new OutputStream stats field November 23, 2010 - Added new pid-remapping mode 'unrestricted' November 18, 2010 - Added new configuration parameter apexProgramBasedPmtOffset - Added new pid remapping mode remapProgramBased2 November 11, 2010 - Obsoleted apexEventChassisRedunPrimaryForceFailover, apexEventChassisRedunSecondaryForceFailover. - Added apexChassisRedundancyGigEMismatchStatus, apexChassisRedundancyQamMismatchStatus, apexChassisRedundancyFirmwareMismatchStatus. - Added apexChassisRedundancyGigE12LinkStatus, apexChassisRedundancyGigE34LinkStatus. ", 'Version 2.3: August 17, 2010 - Added new values for apexRtspConfMhaSbeApsLevel. July 23, 2010 - Added apexChassisRedundancyPrimaryStandbyOverride which will force the primary apex to go active ', 'Version 2.2: June 30, 2010 - Renamed apexManRteGbeInRedConfigStatMapTable to apexManRteGbeInRedStatusMapTable, and moved the table to apexManualRoutingStatus Group. June 29, 2010 - Added apexManRteGbeInRedConfigStatMapTable to provide the mapping between apexManRteGbeInRedTable and apexInputTsStatTable. - Corrected parent node for apexManRteGbeInRedApplyEntry to apexManRteGbeInRedApplyTable. June 25, 2010 - Obsoleted apexEasApplyChange, apexEasPhysInType, apexEasPhysInPort, apexEasRcvUdpPort, apexEasMulticastIpAddress, apexEasSourceIpAddress. - Added apexEasServerTable containing apexEasServerNum, apexEasServerPhysInType, apexEasServerPhysInPort, apexEasServerRcvUdpPort, apexEasServerMulticastIpAddress, apexEasServerSourceIpAddress. - Added apexEasServerApplyTable which includes apexEasServerApplyChange. June 24, 2010 - Added enumeration to apexQamRfPortStatCodeInitError. June 22, 2010 - Changed range of apexQamRfPortStatNumChannelsActive to 0..8. - Changed descriptions of apexQamModuleStatTemperature, apexQamModuleStatPowerFault, apexQamQrmRevFpga, apexQamRfPortStatTemperature, and apexQamQrmRevBootLoaderFw. - Moved apexRpcRfPortTable and apexRpcRfChannelTable to the apexRpcConfig group and renumbered apexRpcAvgBandwidthEnable, and apexRpcApplyChange in apexRpcConfigGeneral. June 16, 2010 - Added apexRpcDeviceName, apexRpcDeviceType, apexRpcControlInterface, apexRpcNumShellSessions, apexRpcRfPortTable, apexRpcRfChannelTable, apexRpcAvgBandwidthEnable, apexRpcApplyChange. June 14, 2010 - Added apexOutputTsStatusScgsProvisioned. June 10, 2010 - Moved apexRdsEventTable to apexRdsStatus group from apexManualRoutingStatus group. June 04, 2010 - Removed apexDtaEventTable. - Renamed apexIppvEventTable to apexRdsEventTable and renamed all the members from apexIPPVEvent*** to apexRdsEvent***. - Added apexRdsEventPrkmWkemAvailable and apexRdsEventCcmAvailable members in the table apexRdsEventTable. June 03, 2010 - Modified the scalar apexOutputProgramDtaServiceEncryptionMode to apexOutputProgramDtaEncryptionMode. - Updated the description of apexRdsSetDefault. May 28, 2010 - Added the following MIB variables apexDtaEventTable, apexOutputProgramDtaServiceEncryptionMode apexOutputProgramDtaServiceEncryptionMode. May 27, 2010 - Added apexChassisRedundancyEventTable. May 25, 2010 - Added apexOutputTsStatusMessageGenerationNum. May 18, 2010 - Changed apexPidMapIndex and apexPidMapApplyIndex size. May 10, 2010 - Added the static routing configuration table apexFastEnetRoutingTable. May 5, 2010 - Added Follow DTCP support variables, apexSesContConfFollowDtcp and apexUdpMapFollowDtcp. April 13, 2010 - Updated the resource descriptions for MIB variables after review. April 7, 2010 - Changed description of apexDepiSessionConfigUdpPort to reflect new range. March 25, 2010 - Added the following configuration parameters: apexIppvEventTable, apexOutputProgramProgramType, apexRdsConfigRds2Enable, apexRdsConfigServerUrl, apexRdsStatusServerIp, apexRdsStatusServerPort, apexRdsStatusServerRootDirPath, and apexRdsStatusValidation. March 10, 2010 - Changed the apexDepiSessionConfigUdpPort field possible range. March 8, 2010 - Added apexDepiSessionStatusSessionID new Depi Session Status field. ', 'Version 2.1: March 5, 2010 - Changed comment in apexSesContConfRedundType description field. February 19, 2010 - Change range for MHA and RTSP Manager ports. ', "Version 2.0: January 19, 2010 - Added comments in apexPsipStatusInputMessageType description field. - Added comments in apexPsipStatusOutputMessageType description field. January 13, 2010 - Added apexRtspConfMhaSbe, apexRtspConfMhaSbeEncryptionMode, apexRtspConfMhaSbeCciLevel, apexRtspConfMhaSbeApsLevel, apexRtspConfMhaSbeCitSetting, apexRtspConfMhaSbeApplyChange, apexRtspConfMhaGeneral, and apexRtspConfMhaUdpMapEnable. - Added 'Not supported' to apexDepiControlConfigType. December 28, 2009 - Added apexGbeIpFragmentedPkts and apexGbeTotalIpFragmentedPkts. December 22, 2009 - Changed SYNTAX of apexPsipConfigApplyChange and apexPsipConfigTimeApplyChange to ApplyDataToDeviceTYPE. December 18, 2009 - Changed apexPsipApplyChange to apexPsipConfigApplyChange in descriptions for apexPsipConfigGeneral entries. - Changed apexPsipApplyTimeChange to apexPsipConfigTimeApplyChange in descriptions for apexPsipConfigTime entries. - Changed SDM file annotation to config.ini for apexGbeConfInputUnicastTimeout, apexGbeConfInputMulticastTimeout, and apexGbeConfLossOfInputTsType. December 17, 2009 - Deleted duplicate header comment and removed extraneous line termination characters. December 14, 2009 - Added SDM Commit annotations and additional text to the descriptions of apexMcEmmInsertionMode, apexMcEmmInsertionPid1Enable, apexMcEmmInsertionPid1, apexMcEmmInsertionPid2Enable, and apexMcEmmInsertionPid2. December 3, 2009 - Removed 'Not supported' from apexOutputTsConfPsipEnable description. November 17, 2009 - Added apexGbeStatusInterfaceRedundFaultCondition. November 12, 2009 - Added zero as valid integer and updated description for apexGbeStatusInterfaceRedundActiveIf. November 6, 2009 - Corrected index in apexGbeStatusInterfaceRedundEntry. November 5, 2009 - Changed description for apexGbeConfIfRedundForceFailover. November 4, 2009 - Added apexGbeStatusInterfaceRedund and apexGbeConfigInterfaceRedundancy. - Corrected range on apexChassisRedundancyUdpPort November 2, 2009 - Added trapGigeToHostCommFault October 30, 2009 - Added apexQamRfPortStatCodeInitError, apexQamQrmRevisionStatusTable, apexQrmDownloadConfigTable, apexQrmDownloadSupported, apexQrmDownloadRequired, apexQrmDownloadFileSet, and apexQrmFileRevisionTable. October 29, 2009 - Made apexSesContConfRedundThreshold obsolete. October 29, 2009 - Added apexPsipStatusServiceTable. - Added apexPsipStatusOutputTable. - Added apexPsipStatusInputTable. October 29, 2009 - Added apexAlarmGigeToHostCommFault October 26, 2009 - Added apexGbeConfInRedundManualRouteRedundType and apexSesContConfRedundType. October 19, 2009 - Merged 2.3.x MIB (version 1.9). - Brought in version 1.9 Revision Description. October 7, 2009 - Added apexRtspStatQamMptsModeTable. October 2, 2009 - Added apexRtspConfMhaTable. September 30, 2009 - Added apexPsip group. September 17, 2009 - Added apexGbeRxDocsisFrames, apexGbeRxMpegDocsisFrames, and apexGbeTotalRxDocsisFrames. September 9, 2009 - Added apexGbeConfInputUnicastTimeout, apexGbeConfInputMulticastTimeout, and apexGbeConfLossOfInputTsType. June 2, 2009 - Merged 2.1.1E MIB (version 1.7). - Brought in version 1.7 Revision Description. ", 'Version 1.10: October 16, 2009 - Added apexSysConfigMcEmmInsertion. ', 'Version 1.9: October 8, 2009 - Added enumeration for Watchdog Reboot Reason. September 14, 2009 - Corrected @Commit annotation in Chassis redundancy and DTA CAT configuration params. September 07, 2009 - Added apexChassisRedundancyGeneralConfigSyncStatusText. August 31, 2009 - Changed enumeration values of apexChassisRedundancyMulticastRedundancyMode. August 26, 2009 - Added apexQamRfPortMuteStatusTable. August 19, 2009 - Removed DTA Network pid params from apexQamRfConfigTable, DTA Enable from apexQamChannelConfigTable, and apexQamStatusInvalidApplyText. - Added apexDtaConfigApplyTable, apexDtaRfPortConfigTable and apexDtaOtsConfigTable. August 17, 2009 - Added apexChassisRedundancyUdpPort, apexChassisRedundancyRedundantApexIp, apexChassisRedundancyFailOverEnet2LinkLoss, apexChassisRedundancyStatusInvalidApplyText, apexEventChassisRedunPrimaryForceFailover, apexEventChassisRedunSecondaryForceFailover, apexEventChassisRedunFirmwareVersionMismatch, and apexEventChassisRedunQAMVersionMismatch. August 13, 2009 - Added apexDtaGeneralConfigInvalidApplyText, apexQamStatusInvalidApplyText to know DTA CAT, NET and EMM pid number validation status from host. August 06, 2009 - Removed apexEventChassisRedundancySecondaryFailOver. - Added apexAlarmChassisRedundancySecondaryFailover and apexEnableChassisRedundancySecondaryFailover. August 5, 2009 - DTA NET and CAT/EMM pid ranges and default values are changed. August 3, 2009 - Added apexDtaConfigApplyChange parameter. - Added/Merged Chassis level DTA parameters, RF Port level DTA parameters and DTA enable status for each OTS/QAM Channel. July 31, 2009 - Added apexChassisRedundancyConfigApplyChange and apexChassisRedundancyConfigEnable. June 26, 2009 - Removed apexChassisRedundancyFailOverHwFault. June 25, 2009 - Added Suspend and Config Sync states to primary and secondary apex status params. June 9, 2009 - Added apexOampLinkActive and apexDataIpLinkActive. May 27, 2009 - Added Chassis Redundancy groups apexChassisRedundancyConfig and apexChassisRedundancyStatus. - Added Chassis Redundancy alarms, events, and traps. ', 'Version 1.8: June 9, 2009 - Added apexOampLinkActive and apexDataIpLinkActive. ', "Version 1.7: Based on 2.1.0 and it does not contain MIB changes from MIB version 1.5 and 1.6. [Apex 2.2 release and Apex 2.1.4 release.] April 20, 2009 - Removed @Config(config=yes, reboot=no) @Commit(param=apexDepiControlConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') from table objects and put into apexDepiControlConfigTable. - Did the same for apexDepiSessionConfigTable. April 08, 2009 - Put back apexDepiSessionStatusInSequenceDiscards back in. April 02, 2009 - Removed apexDepiSessionStatusInSequenceDiscards - Changed enums of Control and Session status March 19, 2009 - Updated the DEPI Statistics and status related MIBs. - Removed Mcmts from the DEPI related MIB groups - Renamed mcmtsDocsis operating mode to Depi - Renamed apexMcmtsDepiControlConfigDynamic to apexDepiControlConfigType - Added the DtiSyncLoss Trap February 9, 2009 - Added M-CMTS support group apexDepiControl. - Added mcmtsDocsis to apexOutputTsConfOperatingMode ", 'Version 1.6: [Note: Version 1.6 was for APEX Release 2.1.5. Changes in this version are also in Version 1.5. This description is added to the merged Version 2.0 for completeness.] April 8, 2009 - Added apexUdpMapMulticastTable, apexUdpMapMulticastApplyTable, apexUdpMapStatusGeneral, apexUdpMapMulticastInvalidApplyText. ', 'Version 1.5: April 14, 2009 - Added apexUdpMapStatusGeneral, apexUdpMapMulticastInvalidApplyText. April 13, 2009 - Added apexUdpMapMulticastTable, apexUdpMapMulticastApplyTable. March 31, 2009 - Added dvb-csa-simulcrypt to list for Encryption algorithm March 24, 2009 - Added apexGbeInputDataTsSmoothingPeriod, apexGbeInputDataTsBufferDepth apexGbeConfigInputDataTsApplyText, apexGbeConfigInputDataTsTable, apexGbeConfigInputDataTsApplyTable. ', 'Version 1.4: March 24, 2009 - Added remapProgramBased to apexOutputTsConfPidRemappingMode. March 23, 2009 - Added 3, 5, and 7 to range of apexQamRfConfigNumChannelsEnabled. March 20, 2009 - Added apexEcmEmmFirstPid, apexEcmEmmNumberPids, apexSimulcryptExternalEisSetting, apexSimulcryptEmEnable - Changed range of apexUdpMapNumberProgs. February 12, 2009 - Added apexSimulcryptEmEnable. February 6, 2009 - Added apexGbeSfp. January 8, 2009 - Added apexOutputTsConfApplyTable and apexOutputTsStatusInvalidApplyText. - Fixed header comment group numbers for apexOutputTsConfig. ', "Version 1.3: March 10, 2009 - Added apexGbeNominalBufferLevel. - Made apexGbeJitterAbsorption obsolete. February 18, 2009 - Added RF Redundancy and REM alarm codes to apexHwEventAlarmCode description. February 5, 2009 - Added 'warning' severity to apexAlarmRemFault description. January 21, 2009 - Changed apexQamRfConfigRfLevelAttenuation range and description. - Changed apexQamChanStatActive description to reflect QAM RF Redundancy. December 5, 2008 - Added apexQamRfRedundStatusInvalidApplyText and apexQamRfRedundConfigRemDirectIpOctet1. - Changed apexQamRfRedundConfigRemIpAddr to apexQamRfRedundConfigRemCommonIpAddr. November 25, 2008 - Added apexOutputTsStatusServicesInError. October 31, 2008 - Added apexDpmVersion. October 27, 2008 - Changed apexQamRfRedundConfigApplyChange Syntax to ApplyDataToDeviceTYPE. October 16, 2008 - Added apexQamRfRedundancyConfig. - Added apexQamRfRedundancyStatus. - Added apexOampInputTsAssignedCount to apexOampStatusGeneral. - Added apexDataIpInputTsAssignedCount, apexDataIpAddrInUse, apexDataIpSubnetMaskInUse, and apexDataIpInUseReason to apexDataIpStatusGeneral. - Added apexAlarmQamRfRedundFailOver, apexAlarmQamRfRedundMismatch, apexAlarmRemCommFault, apexAlarmRemFault, apexEnableQamRfRedundFailOver, apexEnableQamRfRedundMismatch, apexEnableRemCommFault, apexEnableRemFault, trapQamRfRedundFailOver, trapQamRfRedundMismatch, trapRemCommFault, trapRemFault. ", "Version 1.2: July 24, 2008 - Added apexEncryptionEmmGoodDeliveryTimeMs, apexEncryptionEmmMaxDeliveryTimeMs apexEncryptionEmmMinDeliveryTimeMs, and apexEncryptionMcDiagTable to apexEncryptionCwgStatus section. July 15, 2008 - Added range to syntax of apexSntpUtcOffset. July 09, 2008 - Added 'annexC-Asia-Pacific' enumeration to apexQamConfigTransmissionMode. - Added enumerations to apexQamRfPortStatError and changed the description. - Added apexEncryptionCwgStatus variables for debug of cwg manager processing in the field. June 26, 2008 - Increased range of apexPsiStatusIndex from 768 to 784. June 25, 2008 - Added apexQrmDownload group. - Added apexOutputProgramSourceId and apexOutputProgramProviderId. - Changed descriptions of apexManualRouteInputType, apexManualRouteSourceId, apexManualRouteProviderId, apexManRtePassThroughInputType, and apexPidMapInputType. - Added enumerations to apexRtspStatControllerDiscovery and apexRtspStatControllerConnection. June 23, 2008 - Added to apexAcpStatusTable: apexAcpUnitAttribute. June 20, 2008 - Added to apexAcpStatusTable: apexAcpEvenCsn and apexAcpOddCsn. June 6, 2008 - Added apexFastEnetInsertRateTable, apexFastEnetStatusPacketsTable, and apexFastEnetInsertPacketsTable. June 3, 2008 - Added udpMapping enumeration to apexInputTsStatRoutingType. - Added encryption status to apexOutputProgramTable: apexOutputProgramError, apexOutputProgramEncryptionMode, apexOutputProgramEncryptionStatus, apexOutputProgramEcmServiceId, apexOutputProgramCciLevel, apexOutputProgramApsLevel, apexOutputProgramCitSetting, apexOutputProgramNumberTiers, and apexOutputProgramTierData. June 2, 2008 - Added apexManualRouteRmdClear. May 12, 2008 - Added apexEncryption group and apexOutputTsConfEncryptionType. May 8, 2008 - Added apexRds group. - Added apexAlarmRdsCommFault and trapRdsCommFault. April 4, 2008 - Added apexUdpPortMapping group. - Added udpMapping enumeration to apexOutputTsConfOperatingMode. ", "Version 1.1: July 8, 2008 - Added enumerations to apexQamRfPortStatError and changed the description. July 1, 2008 Changes to support ITU-T J.83 Annex A and C QAM: - Added 'annexC-Asia-Pacific' enumeration to apexQamStatusTransmissionMode. - Changed descriptions of: apexQamRfConfigNumChannelsEnabled, apexQamRfConfigSymbolRate, apexQamRfConfigEiaFrequencyPlan, apexQamRfConfigEiaChanNumChannelA, apexQamRfConfigRfCenterFreqChannelA, apexQamRfConfigRfChanSpacing, apexQamRfConfigInterleaverDepth1, and apexQamRfConfigInterleaverDepth2. ", 'Version 1.0: February 18, 2008 - Initial Revision.'))
if mibBuilder.loadTexts:
apex.setLastUpdated('201102150000Z')
if mibBuilder.loadTexts:
apex.setOrganization('Motorola Connected Home Solutions')
if mibBuilder.loadTexts:
apex.setContactInfo('Motorola Technical Response Center Inside USA 1-888-944-HELP (1-888-944-4357) Outside USA 1-215-323-0044 TRC Hours: Monday through Friday 8 am to 7 pm Eastern Standard Time Saturdays 10 am to 5 pm Eastern Standard Time')
if mibBuilder.loadTexts:
apex.setDescription('The MIB module for the APEX.')
class Enabledisabletype(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('disabled', 1), ('enabled', 2))
class Activetype(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2))
named_values = named_values(('notApplicable', 0), ('notActive', 1), ('active', 2))
class Applydatatodevicetype(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('applyNotInProgress', 1), ('apply', 2), ('applyNotInProgressValidData', 3), ('applyNotInProgressInvalidData', 4))
class Resetstatisticstype(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('resetNotInProgress', 1), ('reset', 2))
class Clearalarmtype(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('clearAlarmNotInProgress', 1), ('clearAlarm', 2))
class Ratecomparisontype(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('dataRate', 1), ('transportStreamRate', 2))
class Inputtsstatetype(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3, 4))
named_values = named_values(('closed', 0), ('openedInUse', 1), ('openedBackup', 2), ('openedTransToBackup', 3), ('openedTransToInUse', 4))
class Ethernetinterfacetype(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('enet1', 1), ('enet2', 2))
apex_sys = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1))
apex_sys_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1))
apex_sys_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 1))
apex_sys_config_mc_emm_insertion = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2))
apex_sys_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2))
apex_sys_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 1))
apex_sys_status_versions = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2))
apex_time = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2))
apex_time_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1))
apex_time_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1, 1))
apex_time_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 2))
apex_time_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 2, 1))
apex_temperature = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3))
apex_temperature_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 1))
apex_temperature_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 1, 1))
apex_temperature_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2))
apex_temperature_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 1))
apex_main_board_temperature = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 2))
apex_main_board_temperature_fault = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 3))
apex_power_supply = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4))
apex_ps_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 1))
apex_ps_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 1, 1))
apex_ps_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2))
apex_ps_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 1))
apex_asi = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 5))
apex_asi_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 5, 1))
apex_asi_monitor_port_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 5, 1, 2))
apex_fast_enet = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6))
apex_fast_enet_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1))
apex_fast_enet_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1))
apex_fast_enet_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2))
apex_fast_enet_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 1))
apex_oamp = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3))
apex_oamp_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 1))
apex_oamp_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 1, 1))
apex_oamp_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2))
apex_oamp_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2, 1))
apex_data_ip = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4))
apex_data_ip_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 1))
apex_data_ip_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 1, 1))
apex_data_ip_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2))
apex_data_ip_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1))
apex_gbe = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7))
apex_gbe_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1))
apex_gbe_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1))
apex_gbe_config_input_redundancy = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4))
apex_gbe_config_input_redundancy_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1))
apex_gbe_config_interface_redundancy = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7))
apex_gbe_config_interface_redundancy_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 1))
apex_gbe_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2))
apex_gbe_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 1))
apex_gbe_status_frame_counter = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6))
apex_gbe_status_frame_counter_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 1))
apex_gbe_frame_buffer_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7))
apex_gbe_frame_buffer_stats_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 1))
apex_gbe_status_input_transport_stream = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8))
apex_gbe_status_input_ts_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 1))
apex_gbe_status_interface_redund = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9))
apex_gbe_sfp = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3))
apex_gbe_sfp_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 1))
apex_gbe_sfp_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 1, 1))
apex_gbe_sfp_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2))
apex_gbe_sfp_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2, 1))
apex_qam = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8))
apex_qam_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1))
apex_qam_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 1))
apex_qam_module_upgrade = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 2))
apex_qam_rf_redundancy_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6))
apex_qam_rf_redundancy_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1))
apex_qam_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2))
apex_qam_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 1))
apex_qam_rf_redundancy_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7))
apex_qam_rf_redundancy_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1))
apex_qrm_download = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3))
apex_qrm_download_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 1))
apex_qrm_download_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 1, 1))
apex_qrm_download_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2))
apex_qrm_download_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 1))
apex_session_control = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9))
apex_session_control_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1))
apex_session_control_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1))
apex_session_control_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 2))
apex_session_control_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 2, 1))
apex_rpc = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3))
apex_rpc_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1))
apex_rpc_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1))
apex_rpc_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2))
apex_rpc_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 1))
apex_rtsp = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4))
apex_rtsp_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1))
apex_rtsp_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 1))
apex_rtsp_conf_mha_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 9))
apex_rtsp_conf_mha_sbe = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 10))
apex_rtsp_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2))
apex_rtsp_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 1))
apex_manual_routing = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10))
apex_manual_routing_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1))
apex_manual_routing_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 1))
apex_manual_route_gbe_input_redund_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6))
apex_man_rte_gbe_in_red_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 1))
apex_manual_routing_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2))
apex_manual_routing_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 1))
apex_manual_route_gbe_input_redund_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 2))
apex_man_rte_gbe_in_red_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 2, 1))
apex_ancillary_pid_mapping = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11))
apex_pid_map_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1))
apex_pid_map_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 2))
apex_pid_map_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 2, 1))
apex_insertion = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12))
apex_insertion_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 1))
apex_insertion_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 1, 1))
apex_insertion_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2))
apex_insertion_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2, 1))
apex_input_transport = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13))
apex_input_ts_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 1))
apex_input_ts_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 1, 1))
apex_input_ts_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2))
apex_input_ts_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 1))
apex_output_transport = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14))
apex_output_ts_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1))
apex_output_ts_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 1))
apex_output_ts_utilization_monitoring = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4))
apex_output_ts_utilization_monitor_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 1))
apex_output_ts_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2))
apex_output_ts_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 1))
apex_output_ts_utilization = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2))
apex_output_ts_utilization_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 1))
apex_psi = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15))
apex_psi_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1))
apex_psi_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1))
apex_psi_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2))
apex_psi_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 1))
apex_output_program = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16))
apex_output_program_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 1))
apex_output_program_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 1, 1))
apex_output_program_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2))
apex_output_program_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 1))
apex_acp = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17))
apex_acp_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 1))
apex_acp_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 1, 1))
apex_acp_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2))
apex_acp_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 1))
apex_udp_port_mapping = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18))
apex_udp_map_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1))
apex_udp_map_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 1))
apex_udp_map_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2))
apex_udp_map_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2, 1))
apex_rds = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19))
apex_rds_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1))
apex_rds_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1))
apex_rds_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2))
apex_rds_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1))
apex_encryption = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20))
apex_encryption_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1))
apex_encryption_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 1))
apex_cte_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2))
apex_encryption_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2))
apex_encryption_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1))
apex_encryption_cwg_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2))
apex_eas = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21))
apex_eas_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1))
apex_eas_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1))
apex_eas_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 2))
apex_eas_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 2, 1))
apex_chassis_redundancy = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22))
apex_chassis_redundancy_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1))
apex_chassis_redundancy_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1))
apex_chassis_redundancy_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2))
apex_chassis_redundancy_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1))
apex_dta = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23))
apex_dta_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1))
apex_dta_general_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1))
apex_depi = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24))
apex_depi_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 1))
apex_depi_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 1, 1))
apex_depi_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2))
apex_depi_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1))
apex_depi_control = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3))
apex_depi_control_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1))
apex_depi_control_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 1))
apex_depi_control_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2))
apex_depi_control_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1))
apex_depi_session = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4))
apex_depi_session_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1))
apex_depi_session_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2))
apex_depi_session_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 1))
apex_psip = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25))
apex_psip_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1))
apex_psip_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1))
apex_psip_config_time = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2))
apex_psip_status = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2))
apex_psip_status_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 1))
apex_preencryption = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 26))
apex_preencryption_config = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 26, 1))
apex_preencryption_config_general = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 26, 1, 1))
apex_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100))
apex_events = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101))
apex_config_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102))
apex_conf_alarm_enable = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1))
apex_conf_alarm_clear = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 2))
apex_logs = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200))
apex_traps = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0))
apex_debug = mib_identifier((1, 3, 6, 1, 4, 1, 1166, 1, 31, 5000))
apex_save_config = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('saveNotInProgress', 1), ('startSaveToFlash', 2), ('savingConfigToFlash', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSaveConfig.setStatus('current')
if mibBuilder.loadTexts:
apexSaveConfig.setDescription('Writing this object will commit the current configuration to Flash. While a read returns the value savingConfigToFlash, the flash is being saved; the save may not have been initiated by an SNMP set. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ')
apex_product_name = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexProductName.setStatus('current')
if mibBuilder.loadTexts:
apexProductName.setDescription("This is the Product Name of the APEX loaded at initialization from the config.ini file. Specific configurations of the APEX have specific purposes and are identified by their product name. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2, default=yes) @File(config.ini, type='ini') ")
apex_boot_method = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3))).clone(namedValues=named_values(('noDhcpOrBootp', 1), ('bootpOnly', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexBootMethod.setStatus('current')
if mibBuilder.loadTexts:
apexBootMethod.setDescription("This parameter is used to set the boot method for the APEX. Selection of noDhcpOrBootp means the APEX will not use DHCP or BOOTP - this will result in about a 10 second savings in boot time. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_auto_reboot_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 1, 4), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexAutoRebootEnable.setStatus('current')
if mibBuilder.loadTexts:
apexAutoRebootEnable.setDescription("Setting to 'enabled' allows the APEX to automatically reboot when specific APEX hardware errors occur. Setting this to Enabled will cause the APEX to automatically reboot upon specific HW faults, such as a GigE processor crash, or upon a Host processor watchdog event. When disabled, HW faults and watchdog events will not cause an automatic reboot. This is useful when it is necessary to debug the event (to allow time to gather status prior to manually rebooting). Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_mc_emm_insertion_mode = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('outOfBand', 1), ('fullInBand', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexMcEmmInsertionMode.setStatus('current')
if mibBuilder.loadTexts:
apexMcEmmInsertionMode.setDescription("Specify the mode in which MediaCipher EMMs are inserted, out of band or full in band. Once written, the change to this parameter will only take immediate effect after apexMcEmmInsertionApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexMcEmmInsertionApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_mc_emm_insertion_pid1_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexMcEmmInsertionPid1Enable.setStatus('current')
if mibBuilder.loadTexts:
apexMcEmmInsertionPid1Enable.setDescription("Enable/disable first EMM PID to include in the CAT for MediaCipher Full In Band mode. Default value is enabled. Once written, the change to this parameter will only take immediate effect after apexMcEmmInsertionApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexMcEmmInsertionApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_mc_emm_insertion_pid1 = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(7168, 8190))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexMcEmmInsertionPid1.setStatus('current')
if mibBuilder.loadTexts:
apexMcEmmInsertionPid1.setDescription("First EMM PID to include in the CAT for MediaCipher Full In Band mode. Allowed values: from 0x1C00 to 0x1FFE. Default value is 0x1C02. Once written, the change to this parameter will only take immediate effect after apexMcEmmInsertionApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexMcEmmInsertionApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_mc_emm_insertion_pid2_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2, 4), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexMcEmmInsertionPid2Enable.setStatus('current')
if mibBuilder.loadTexts:
apexMcEmmInsertionPid2Enable.setDescription("Enable/disable first EMM PID to include in the CAT for MediaCipher Full In Band mode. Default value is disabled. Once written, the change to this parameter will only take immediate effect after apexMcEmmInsertionApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexMcEmmInsertionApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_mc_emm_insertion_pid2 = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(7168, 8190))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexMcEmmInsertionPid2.setStatus('current')
if mibBuilder.loadTexts:
apexMcEmmInsertionPid2.setDescription("Second EMM PID to include in the CAT for MediaCipher Full In Band mode. Allowed values: from 0x1C00 to 0x1FFE. Default value is 0x1C03. Once written, the change to this parameter will only take immediate effect after apexMcEmmInsertionApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexMcEmmInsertionApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_mc_emm_insertion_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 1, 2, 6), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexMcEmmInsertionApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexMcEmmInsertionApplyChange.setDescription("The Apply for the MediaCipher EMM Insertion group. This parameter MUST be set to 'apply' in order for any of the data in the MC EMM Insertion group to take effect in the device. This parameter MUST be set LAST after all other data in the MC Emm Insertion group has been configured. @Config(config=no, reboot=no) ")
apex_boot_reason = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('powerCycle', 0), ('operatorReboot', 1), ('hwFault', 2), ('wdFault', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexBootReason.setStatus('current')
if mibBuilder.loadTexts:
apexBootReason.setDescription("Indicates reason for APEX boot: 'powerCycle' - Power-up or power cycled. 'operatorReboot' - Operator commanded reboot (refer to manual). 'hwFault' - Automatic reboot occurred as per apexAutoRebootEnable. 'wdFault' - Automatic Watchdog reboot as per apexAutoRebootEnable. ")
apex_max_service_mappings = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMaxServiceMappings.setStatus('current')
if mibBuilder.loadTexts:
apexMaxServiceMappings.setDescription('Maximum number of service mappings supported by the APEX. ')
apex_host_processor_boot_code_version = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexHostProcessorBootCodeVersion.setStatus('current')
if mibBuilder.loadTexts:
apexHostProcessorBootCodeVersion.setDescription('APEX Host Processor Boot Code Version.')
apex_mux_fpga_version = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMuxFpgaVersion.setStatus('current')
if mibBuilder.loadTexts:
apexMuxFpgaVersion.setDescription('APEX MUX FPGA Version.')
apex_mux_fpga_encryption = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('noEncryption', 0), ('des', 1), ('csa', 2), ('aes', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMuxFpgaEncryption.setStatus('current')
if mibBuilder.loadTexts:
apexMuxFpgaEncryption.setDescription('APEX MUX FPGA Encryption type currently loaded.')
apex_main_board_version = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMainBoardVersion.setStatus('current')
if mibBuilder.loadTexts:
apexMainBoardVersion.setDescription('APEX Main Board Version. This is the revision of the apexMainBoardType.')
apex_host_application_date = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexHostApplicationDate.setStatus('current')
if mibBuilder.loadTexts:
apexHostApplicationDate.setDescription('APEX Host Processor Application Creation Date.')
apex_product_type = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('invalid', 0), ('apex1000', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexProductType.setStatus('current')
if mibBuilder.loadTexts:
apexProductType.setDescription('APEX Product Type. The corresponding product name text setting can be found in identUnitModel.')
apex_main_board_type = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMainBoardType.setStatus('current')
if mibBuilder.loadTexts:
apexMainBoardType.setDescription('APEX Main Board Type. The revision is found in apexMainBoardVersion.')
apex_glue_fpga_version = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGlueFpgaVersion.setStatus('current')
if mibBuilder.loadTexts:
apexGlueFpgaVersion.setDescription('APEX Glue FPGA Version.')
apex_glue_cpld_version = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGlueCpldVersion.setStatus('current')
if mibBuilder.loadTexts:
apexGlueCpldVersion.setDescription('APEX Glue CPLD Version.')
apex_dti_fpga_version = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDtiFpgaVersion.setStatus('current')
if mibBuilder.loadTexts:
apexDtiFpgaVersion.setDescription('APEX DTI FPGA Version.')
apex_mpc2_fpga_version = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMpc2FpgaVersion.setStatus('current')
if mibBuilder.loadTexts:
apexMpc2FpgaVersion.setDescription('APEX MPC2 FPGA Version.')
apex_dpm_version = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 1, 2, 2, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDpmVersion.setStatus('current')
if mibBuilder.loadTexts:
apexDpmVersion.setDescription('APEX DPM Version.')
apex_time_source = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('sntp', 1), ('internal', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexTimeSource.setStatus('current')
if mibBuilder.loadTexts:
apexTimeSource.setDescription("The source for system time. The time source can be configured to come from an SNTP time source, or be generated internally. When configured as internal: - The APEX will internally keep time starting at GPS time 0. A user can set the time to a valid GPS time in this mode. - The system time and UTC offset in internal mode are not updated and therefore are not valid. When configured to receive time via SNTP the SntpServerSpecified object and SntpServiceIP objects can be used to optionally define the SNTP server. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_sntp_utc_offset = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSntpUtcOffset.setStatus('current')
if mibBuilder.loadTexts:
apexSntpUtcOffset.setDescription("The value of this object is the Universal Time Coordinated (UTC) offset from GPS time. Subtract this from GPS time to convert from GPS to UTC. Units are seconds. When time source is SNTP, this object can be set to specify the UTC offset that the APEX will use in calculating GPS time. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_sntp_server_specified = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('notSpecified', 1), ('specified', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSntpServerSpecified.setStatus('current')
if mibBuilder.loadTexts:
apexSntpServerSpecified.setDescription("When the TimeSource is SNTP, this object specifies whether the APEX will only accept time for a single SNTP server or from any server that broadcasts time. When notSpecified, the APEX will accept time from any SNTP server. When specified, the APEX will poll for time from the address of the SNTP server specified by the SntpServerIP address object. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_sntp_server_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSntpServerIpAddr.setStatus('current')
if mibBuilder.loadTexts:
apexSntpServerIpAddr.setDescription("This contains the IP address of the specified SNTP server. If apexTimeSource is SNTP and apexSntpServerSpecified is set to specified, then the apex will poll for time from this IP address. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_user_supplied_time = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 1, 1, 5), unsigned32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUserSuppliedTime.setStatus('current')
if mibBuilder.loadTexts:
apexUserSuppliedTime.setDescription('The value of this object is the GPS Time the APEX is given via user entry. The time is reported in GPS seconds. This time is ONLY used when the APEX is set to Internal time mode. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ')
apex_system_time = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexSystemTime.setStatus('current')
if mibBuilder.loadTexts:
apexSystemTime.setDescription('The value of this object is the current System Time of the APEX. The system time is reported in GPS seconds. To determine the APEXs system time in UTC the apexSntpUtcOffset object must also be read and used in the calculation.')
apex_operational_time = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 2, 2, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOperationalTime.setStatus('current')
if mibBuilder.loadTexts:
apexOperationalTime.setDescription('The Operational Time is the time in seconds since the APEX completed the boot sequence. It is the time that the APEX has been operational.')
apex_main_board_temp_front_intake = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMainBoardTempFrontIntake.setStatus('current')
if mibBuilder.loadTexts:
apexMainBoardTempFrontIntake.setDescription('Ambient temperature at the intake vent at the front of the unit. Measured in whole number degrees Celsius.')
apex_main_board_temp_mux_fpga = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 2, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMainBoardTempMuxFpga.setStatus('current')
if mibBuilder.loadTexts:
apexMainBoardTempMuxFpga.setDescription('Ambient temperature at the MUX FPGAs. Measured in whole number degrees Celsius.')
apex_main_board_temp_acp_module = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 2, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMainBoardTempAcpModule.setStatus('current')
if mibBuilder.loadTexts:
apexMainBoardTempAcpModule.setDescription('Ambient temperature at the ACP Module location. This reading is valid for all models whether an ACP Module is standard on the model. Measured in whole number degrees Celsius.')
apex_main_board_temp_host_processor = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 2, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMainBoardTempHostProcessor.setStatus('current')
if mibBuilder.loadTexts:
apexMainBoardTempHostProcessor.setDescription('Ambient temperature at the Host Processor. Measured in whole number degrees Celsius.')
apex_main_board_temp_front_intake_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 3, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('overTemp', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMainBoardTempFrontIntakeFault.setStatus('current')
if mibBuilder.loadTexts:
apexMainBoardTempFrontIntakeFault.setDescription('Fault status of ambient temperature at the intake vent at the front of the unit.')
apex_main_board_temp_mux_fpga_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 3, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('overTemp', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMainBoardTempMuxFpgaFault.setStatus('current')
if mibBuilder.loadTexts:
apexMainBoardTempMuxFpgaFault.setDescription('Fault status of ambient temperature at the MUX FPGAs.')
apex_main_board_temp_acp_module_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 3, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('overTemp', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMainBoardTempAcpModuleFault.setStatus('current')
if mibBuilder.loadTexts:
apexMainBoardTempAcpModuleFault.setDescription('Fault status of ambient temperature at the ACP Module location.')
apex_main_board_temp_host_processor_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 3, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('overTemp', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMainBoardTempHostProcessorFault.setStatus('current')
if mibBuilder.loadTexts:
apexMainBoardTempHostProcessorFault.setDescription('Fault status of ambient temperature at the Host Processor.')
apex_ps_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2))
if mibBuilder.loadTexts:
apexPsStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusTable.setDescription('This is a table of status parameters for the two Power Supplies.')
apex_ps_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexPsStatusPsNum'))
if mibBuilder.loadTexts:
apexPsStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusEntry.setDescription('Power Supply Status Table Entry.')
apex_ps_status_ps_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)))
if mibBuilder.loadTexts:
apexPsStatusPsNum.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusPsNum.setDescription('PS Number.')
apex_ps_status_installed = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('notApplicable', 0), ('notInstalled', 1), ('installedAcInput', 2), ('installedDcInput', 3), ('fanModuleInstalled', 4), ('unsupported', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusInstalled.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusInstalled.setDescription('This parameter indicates installed status of the PS.')
apex_ps_status_output_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusOutputVoltage.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusOutputVoltage.setDescription('PS measured output voltage in milli-Volts.')
apex_ps_status_output_current = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusOutputCurrent.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusOutputCurrent.setDescription('PS measured output current in milli-Amps.')
apex_ps_status_fan_speed = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusFanSpeed.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusFanSpeed.setDescription('The fan speed in RPM an installed Power Supply or Fan Module. Zero if not installed.')
apex_ps_status_fan_status = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusFanStatus.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusFanStatus.setDescription('PS Fan Status.')
apex_ps_status_temperature_status = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusTemperatureStatus.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusTemperatureStatus.setDescription("Indicates whether the power supply is in protection mode due to an over temperature condition. The PS is shut down while in 'overTemp' and will recover when the temperature returns to normal operating range. A power cycle is not required for recovery. Note that Output Power Status will be 'error' when Temperature status is 'overTemp'.")
apex_ps_status_input_power_status = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusInputPowerStatus.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusInputPowerStatus.setDescription("Indicates whether AC Input is within specification. Note that Output Power Status will be 'error' when Input Power status is 'error'")
apex_ps_status_output_power_status = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusOutputPowerStatus.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusOutputPowerStatus.setDescription('Indicates whether the +12V and +3.3V output power are within specification. If the output power error occurs with an Input Power error, apply input power to recover. If the output power error occurs with an Over Temperature error, a power cycle is not required for recovery. Otherwise, a power cycle is required for recovery. If the problem persists after the power cycle, the PS must be replaced for recovery.')
apex_ps_status_error_status = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('ok', 1), ('psNotInstalled', 2), ('psUnsupported', 3), ('inputPower', 4), ('fanFault', 5), ('overTemp', 6), ('outputPower', 7), ('commLost', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusErrorStatus.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusErrorStatus.setDescription('Summary of errors reported on a power supply basis. The reported error will be the most severe.')
apex_ps_status_fault_condition = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusFaultCondition.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusFaultCondition.setDescription('Current fault condition of the power supply errors.')
apex_ps_status_diagnostic_data1 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusDiagnosticData1.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusDiagnosticData1.setDescription('Diagnostic data word 1 (HP) - Contents for Motorola diagnostic purposes.')
apex_ps_status_diagnostic_data2 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusDiagnosticData2.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusDiagnosticData2.setDescription('Diagnostic data word 2 (PS) - Contents for Motorola diagnostic purposes.')
apex_ps_status_comm_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusCommError.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusCommError.setDescription('Communication with the Power Supply has failed and status cannot be determined. Only applies when valid PS installed.')
apex_ps_status_versions_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 3))
if mibBuilder.loadTexts:
apexPsStatusVersionsTable.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusVersionsTable.setDescription('This is a table of version status parameters for the two Power Supplies.')
apex_ps_status_versions_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexPsStatusVersionsPsNum'))
if mibBuilder.loadTexts:
apexPsStatusVersionsEntry.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusVersionsEntry.setDescription('Power Supply Version Status Table Entry.')
apex_ps_status_versions_ps_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)))
if mibBuilder.loadTexts:
apexPsStatusVersionsPsNum.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusVersionsPsNum.setDescription('PS Number.')
apex_ps_status_versions_model = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 3, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 17))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusVersionsModel.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusVersionsModel.setDescription('PS Model.')
apex_ps_status_versions_serial_number = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 4, 2, 3, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsStatusVersionsSerialNumber.setStatus('current')
if mibBuilder.loadTexts:
apexPsStatusVersionsSerialNumber.setDescription('PS serial number.')
apex_asi_monitor_port_output_ts_num = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 5, 1, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 48))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexAsiMonitorPortOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexAsiMonitorPortOutputTsNum.setDescription("The number of the output transport stream to route to the ASI Monitor Port. Zero indicates that no stream is to be routed to the ASI Monitor port. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_asi_monitor_port_encryption = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 5, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('preEncryption', 1), ('postEncryption', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexAsiMonitorPortEncryption.setStatus('current')
if mibBuilder.loadTexts:
apexAsiMonitorPortEncryption.setDescription("Selects pre or post encryption for the ASI monitor port. This parameter is only applicable to APEXs with encryption capability. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_fast_enet_default_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexFastEnetDefaultGateway.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetDefaultGateway.setDescription("This is the IP address of the default gateway for the Fast Ethernet interfaces. This should be zero or a valid Class A, B, or C IP address. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_fast_enet_routing_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1, 3), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexFastEnetRoutingApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetRoutingApplyChange.setDescription("The Apply for the Fast Ethernet Static Routing Table. This parameter MUST be set to 'apply' in order for any of the data in the apexFastEnetRoutingTable to take effect. This parameter MUST be set LAST after all other data in the apexFastEnetRoutingTable has been configured. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apex_fast_enet_routing_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 2))
if mibBuilder.loadTexts:
apexFastEnetRoutingTable.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetRoutingTable.setDescription("This table is the configuration Static Routing table for the Fast Ethernet Interface. @Commit(param=apexFastEnetRoutingApplyChange, value=2) @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_fast_enet_routing_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexFastEnetRoutingIndex'))
if mibBuilder.loadTexts:
apexFastEnetRoutingEntry.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetRoutingEntry.setDescription('Fast Ethernet Interface Configuration Static Routing Table Entry.')
apex_fast_enet_routing_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)))
if mibBuilder.loadTexts:
apexFastEnetRoutingIndex.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetRoutingIndex.setDescription('The index of the Routing table entry. Currently limited to 16.')
apex_fast_enet_routing_destin_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 2, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexFastEnetRoutingDestinIp.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetRoutingDestinIp.setDescription("The Fast Ethernet Routing Destination IP address. Once written, the change to this parameter will only take immediate effect after apexFastEnetRoutingApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apex_fast_enet_routing_gateway_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 2, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexFastEnetRoutingGatewayIp.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetRoutingGatewayIp.setDescription("The Fast Ethernet Routing Gateway IP address. Once written, the change to this parameter will only take immediate effect after apexFastEnetRoutingApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apex_fast_enet_routing_subnet_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 2, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexFastEnetRoutingSubnetMask.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetRoutingSubnetMask.setDescription("The Fast Ethernet Routing Subnet Mask. Once written, the change to this parameter will only take immediate effect after apexFastEnetRoutingApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apex_fast_enet_insert_rate_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1, 2))
if mibBuilder.loadTexts:
apexFastEnetInsertRateTable.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetInsertRateTable.setDescription('This is a table of configuration parameters for Output Transport Rate of Fast Ethernet MPEG data Insertion.')
apex_fast_enet_insert_rate_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexFastEnetInsertRateOutputTsNum'))
if mibBuilder.loadTexts:
apexFastEnetInsertRateEntry.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetInsertRateEntry.setDescription('Output Transport Rate of Fast Ethernet MPEG Insertion Configuration Table Entry.')
apex_fast_enet_insert_rate_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexFastEnetInsertRateOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetInsertRateOutputTsNum.setDescription('Output Transport Stream Number.')
apex_fast_enet_insert_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 1, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexFastEnetInsertRate.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetInsertRate.setDescription("Insertion Rate for the transport stream for Fast Ethernet MPEG data. Maximum MPEG data rate to insert data received via Fast Ethernet interfaces. Range is 0 Kbps to 2500 Kbps for each transport stream. Total for all transport streams must not exceed 10000 Kbps. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Range(min=0, max=2500) @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_fast_enet_max_input_udp_ports = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexFastEnetMaxInputUdpPorts.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetMaxInputUdpPorts.setDescription('Maximum number of Fast Ethernet input UDP ports that can be opened on this APEX.')
apex_fast_enet_status_packets_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2))
if mibBuilder.loadTexts:
apexFastEnetStatusPacketsTable.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetStatusPacketsTable.setDescription('Table of Fast Ethernet Insert Packet Statistics for each Fast Ethernet interface. Indexed by FE interface port number.')
apex_fast_enet_status_packets_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexFastEnetPacketsPortNum'))
if mibBuilder.loadTexts:
apexFastEnetStatusPacketsEntry.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetStatusPacketsEntry.setDescription('A row in the FE Insert Packets table.')
apex_fast_enet_packets_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)))
if mibBuilder.loadTexts:
apexFastEnetPacketsPortNum.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetPacketsPortNum.setDescription('Fast Ethernet interface port Number.')
apex_fast_enet_packets_num_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexFastEnetPacketsNumPkts.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetPacketsNumPkts.setDescription('Number of MPEG packets inserted during the last monitoring period (currently 5 seconds) on this FE interface port.')
apex_fast_enet_packets_tot_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2, 1, 3), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexFastEnetPacketsTotPkts.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetPacketsTotPkts.setDescription('Total number of MPEG packets inserted on this FE interface port.')
apex_fast_enet_packets_num_discarded = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexFastEnetPacketsNumDiscarded.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetPacketsNumDiscarded.setDescription('Number of MPEG packets discarded during the last monitoring period (currently 5 seconds) on this FE interface port. This may be due to a buffer overflow or incorrect configuration of the FE output stream insertion rate.')
apex_fast_enet_packets_tot_discarded = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 2, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexFastEnetPacketsTotDiscarded.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetPacketsTotDiscarded.setDescription('Total number of FE MPEG packets discarded on this Output Transport Stream. Discarded packets on an FE interface port are those packets discarded due to an overflow condition.')
apex_fast_enet_insert_packets_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3))
if mibBuilder.loadTexts:
apexFastEnetInsertPacketsTable.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetInsertPacketsTable.setDescription('Table of Output Transport Stream FE Insert Packet Statistics. Indexed by Output Transport Stream number.')
apex_fast_enet_insert_packets_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexFastEnetInsPacketsOutputTsNum'))
if mibBuilder.loadTexts:
apexFastEnetInsertPacketsEntry.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetInsertPacketsEntry.setDescription('A row in the Output Transport Stream FE Insert Packets table.')
apex_fast_enet_ins_packets_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexFastEnetInsPacketsOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetInsPacketsOutputTsNum.setDescription('Output Transport Stream Number.')
apex_fast_enet_ins_packets_num_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexFastEnetInsPacketsNumPkts.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetInsPacketsNumPkts.setDescription('Number of MPEG packets inserted during the last monitoring period (currently 5 seconds) on this Output Transport Stream.')
apex_fast_enet_ins_packets_tot_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3, 1, 3), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexFastEnetInsPacketsTotPkts.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetInsPacketsTotPkts.setDescription('Total number of MPEG packets inserted on this Output Transport Stream.')
apex_fast_enet_ins_packets_num_discarded = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexFastEnetInsPacketsNumDiscarded.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetInsPacketsNumDiscarded.setDescription('Number of MPEG packets discarded during the last monitoring period (currently 5 seconds) on this Output Transport Stream. This may be due to a buffer overflow or incorrect configuration of the FE output stream insertion rate.')
apex_fast_enet_ins_packets_tot_discarded = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 2, 3, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexFastEnetInsPacketsTotDiscarded.setStatus('current')
if mibBuilder.loadTexts:
apexFastEnetInsPacketsTotDiscarded.setDescription('Total number of FE MPEG packets discarded on this Output Transport Stream. Discarded packets on an output stream are those packets discarded due to an overflow condition.')
apex_oamp_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 1, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOampIpAddr.setStatus('current')
if mibBuilder.loadTexts:
apexOampIpAddr.setDescription("This is the IP address of the OAMP IP (Enet1) interface of the APEX. This IP address is set via a BootP when connected to a Bootp server. When not connected to a BootP server, the IP address may directly be changed by setting this parameter. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_oamp_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 1, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOampSubnetMask.setStatus('current')
if mibBuilder.loadTexts:
apexOampSubnetMask.setDescription("This is subnet mask of the OAMP IP (Enet1) interface of the APEX. The subnet mask is normally via a BootP when connected to a BootP server. When not connected to a Bootp Server, the Subnet Mask may directly be changed by setting this parameter. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_oamp_auto_negotiate = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 1, 1, 3), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOampAutoNegotiate.setStatus('current')
if mibBuilder.loadTexts:
apexOampAutoNegotiate.setDescription("OAMP IP (Enet1) Ethernet Auto-Negotiation setting. 'disabled' is not supported. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_oamp_mac_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 17))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOampMacAddr.setStatus('current')
if mibBuilder.loadTexts:
apexOampMacAddr.setDescription("This is the MAC address of the APEX OAMP IP (Enet1) Interface. It is set at the factory and cannot be changed. The string length is 17 characters in the format 'hh:hh:hh:hh:hh:hh' where 'hh' is a hexadecimal number.")
apex_oamp_speed = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('interfaceSpeed10Mbps', 1), ('interfaceSpeed100Mbps', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOampSpeed.setStatus('current')
if mibBuilder.loadTexts:
apexOampSpeed.setDescription('OAMP IP (Enet1) Ethernet speed (10Mbps or 100Mbps). This is determined by the results of the auto-negotiation process. If auto-negotiation fails, the default speed is 100Mbps.')
apex_oamp_duplex_mode = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('halfDuplex', 1), ('fullDuplex', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOampDuplexMode.setStatus('current')
if mibBuilder.loadTexts:
apexOampDuplexMode.setDescription('OAMP IP (Enet1) Ethernet Duplex Mode (full or half) This is determined by the results of the auto-negotiation process. If auto-negotiation fails, the default mode is Full.')
apex_oamp_input_ts_assigned_count = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOampInputTsAssignedCount.setStatus('current')
if mibBuilder.loadTexts:
apexOampInputTsAssignedCount.setDescription('Number of input transport streams assigned to the OAMP IP interface (Enet1).')
apex_oamp_link_active = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 3, 2, 1, 5), active_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOampLinkActive.setStatus('current')
if mibBuilder.loadTexts:
apexOampLinkActive.setDescription('This indicates if the OAMP (ENET1) link is active.')
apex_data_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 1, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDataIpAddr.setStatus('current')
if mibBuilder.loadTexts:
apexDataIpAddr.setDescription("This is the IP address of the Data IP (Enet2) interface of this APEX. The data IP address may directly be changed by setting this parameter. The Data IP address must be configured such that the Data IP interface and the OAMP interface are on different networks. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_data_ip_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 1, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDataIpSubnetMask.setStatus('current')
if mibBuilder.loadTexts:
apexDataIpSubnetMask.setDescription("This is subnet mask of the Data IP (Enet2) interface of this APEX. The data IP Subnet Mask may directly be changed by setting this parameter. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_data_ip_auto_negotiate = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 1, 1, 3), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDataIpAutoNegotiate.setStatus('current')
if mibBuilder.loadTexts:
apexDataIpAutoNegotiate.setDescription("Data IP (Enet2) Ethernet Auto-Negotiation setting. 'disabled' is not supported. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_data_ip_mac_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 17))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDataIpMacAddr.setStatus('current')
if mibBuilder.loadTexts:
apexDataIpMacAddr.setDescription("This is the MAC address of the APEX Data IP (Enet2) Interface. It is set at the factory and cannot be changed. The string length is 17 characters in the format 'hh:hh:hh:hh:hh:hh' where 'hh' is a hexadecimal number.")
apex_data_ip_speed = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('interfaceSpeed10Mbps', 1), ('interfaceSpeed100Mbps', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDataIpSpeed.setStatus('current')
if mibBuilder.loadTexts:
apexDataIpSpeed.setDescription('Data IP (Enet2) Ethernet speed (10Mbps or 100Mbps). This is determined by the results of the auto-negotiation process. If auto-negotiation fails, the default speed is 100Mbps. This status item is only valid when the Data IP port is enabled and properly configured.')
apex_data_ip_duplex_mode = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('halfDuplex', 1), ('fullDuplex', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDataIpDuplexMode.setStatus('current')
if mibBuilder.loadTexts:
apexDataIpDuplexMode.setDescription('Data IP (Enet2) Ethernet Duplex Mode (full or half) This is determined by the results of the auto-negotiation process. If auto-negotiation fails, the default mode is Full. This status item is only valid when the Data IP port is enabled and properly configured.')
apex_data_ip_input_ts_assigned_count = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDataIpInputTsAssignedCount.setStatus('current')
if mibBuilder.loadTexts:
apexDataIpInputTsAssignedCount.setDescription('Number of input transport streams assigned to the Data IP interface.')
apex_data_ip_addr_in_use = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDataIpAddrInUse.setStatus('current')
if mibBuilder.loadTexts:
apexDataIpAddrInUse.setDescription('Indicates the IP Address currently being used by the Data IP port (Enet2). This parameter will be either apexDataIpAddr or an APEX selected IP address. Refer to apexDataIpInUseReason for more information.')
apex_data_ip_subnet_mask_in_use = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDataIpSubnetMaskInUse.setStatus('current')
if mibBuilder.loadTexts:
apexDataIpSubnetMaskInUse.setDescription('Indicates the Subnet Mask currently being used by the Data IP port (Enet2). This parameter will be either apexDataIpSubnetMask or an APEX selected mask. Refer to apexDataIpInUseReason for more information.')
apex_data_ip_in_use_reason = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('userConfig', 1), ('directRemConnection', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDataIpInUseReason.setStatus('current')
if mibBuilder.loadTexts:
apexDataIpInUseReason.setDescription("Reason for apexDataIpAddrInUse and apexDataIpSubnetMaskInUse Data IP (Enet2) parameters. 'notApplicable' - Enet2 not configured by user or for REM connection. 'userConfig' - APEX is not overriding user configured parameters. 'directRemConnection' - The DATA IP port (Enet2) is in use for QAM RF Redundancy so the APEX has overridden the user configured parameters. ")
apex_data_ip_link_active = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 6, 4, 2, 1, 8), active_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDataIpLinkActive.setStatus('current')
if mibBuilder.loadTexts:
apexDataIpLinkActive.setDescription('This indicates if the DataIP (ENET2) link is active.')
apex_gbe_default_gateway1 = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeDefaultGateway1.setStatus('current')
if mibBuilder.loadTexts:
apexGbeDefaultGateway1.setDescription("This is the IP address of the default gateway for Gigabit Ethernet interfaces 1 and 2. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_gbe_default_gateway2 = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeDefaultGateway2.setStatus('current')
if mibBuilder.loadTexts:
apexGbeDefaultGateway2.setDescription("This is the IP address of the default gateway for Gigabit Ethernet interfaces 3 and 4. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_gbe_jitter_absorption = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 200))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeJitterAbsorption.setStatus('obsolete')
if mibBuilder.loadTexts:
apexGbeJitterAbsorption.setDescription("This object is obsolete. Jitter Absorption setting in range of 0 to 200 milliseconds in increments of 5 ms. A change to this parameter will cause the Gigabit Ethernet processor to reset all of its internal Ethernet frame buffers. This will result in a momentary loss of data causing a minor glitch on all output streams. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Range(step=5) @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_gbe_garp_periodicity = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(20, 300))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeGarpPeriodicity.setStatus('current')
if mibBuilder.loadTexts:
apexGbeGarpPeriodicity.setDescription("Gratuitous ARP period in range of 20 to 300 seconds. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_gbe_config_table_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 5), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigTableApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigTableApplyChange.setDescription("The Apply for the Gigabit Ethernet Configuration Table. This parameter MUST be set to 'apply' in order for any of the data in the apexGbeConfigTable to take effect. This parameter MUST be set LAST after all other data in the apexGbeConfigTable has been configured. @Config(config=no, reboot=no) ")
apex_gbe_nominal_buffer_level = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(50, 475))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeNominalBufferLevel.setStatus('current')
if mibBuilder.loadTexts:
apexGbeNominalBufferLevel.setDescription("Gigabit Ethernet Nominal Buffer Level. Range of 50 to 475 milliseconds in increments of 5 ms. A change to this parameter will cause the Gigabit Ethernet processor to reset all of its internal Ethernet frame buffers. This will result in a momentary loss of data causing a minor glitch on all output streams. The buffer level is the normal standard starting level for an input stream buffer. It is highly recommended that this level not be changed from its default setting. The buffer level needs to be set at an appropriate amount to allow for network jitter, clock skew between the APEX and input source, and for maximum time between PCRs (100ms). In addition, the level must not be set too high as the buffer needs to be able to grow as packets are received and PCR processing is applied. This buffer level is the initial level the APEX will attempt to maintain at all times. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_gbe_input_data_ts_smoothing_period = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(250, 650))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeInputDataTsSmoothingPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputDataTsSmoothingPeriod.setDescription("Input Data stream smoothing period. Amount of time in milliseconds over which the GigE will smooth out input streams that do not contain PCRs. This allows the GigE to play out the input streams with the packets equally spaced out over this period. This helps to reduce network jitter and bursts of data to the output. The smoothing period is used in conjunction with the data stream buffer depth to perform this smoothing algorithm. The smoothing period must be equal to or less than the data stream buffer depth. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apex_gbe_input_data_ts_buffer_depth = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(250, 650))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeInputDataTsBufferDepth.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputDataTsBufferDepth.setDescription("GBE Input Data stream buffer depth. Amount of time in milliseconds that the GigE will buffer input streams that do not contain PCRs. This allows the GigE to buffer these streams to remove network jitter and then play them out with the packets equally spaced out. The buffer depth must be equal to or greater than the data stream smoothing period. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apex_gbe_config_input_data_ts_apply_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsApplyText.setDescription("When apexGbeConfigInputDataTsApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a related entry that was invalid. ")
apex_gbe_conf_input_unicast_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(600, 6000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfInputUnicastTimeout.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfInputUnicastTimeout.setDescription("Loss of input stream timeout value (in milliseconds) for unicast inputs. This determines the amount of time a unicast input stream is missing before the APEX will declare the input stream lost. Loss of input is used for determining all SDV failover conditions. It is also used for Manual Routing failover conditions when using hot/warm transport stream redundancy. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Range(step=200) @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_gbe_conf_input_multicast_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(600, 6000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfInputMulticastTimeout.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfInputMulticastTimeout.setDescription("Loss of input stream timeout value (in milliseconds) for multicast inputs. This determines the amount of time a unicast input stream is missing before the APEX will declare the input stream lost. Loss of input is used for determining all SDV failover conditions. It is also used for Manual Routing failover conditions when using hot/warm transport stream redundancy. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Range(step=200) @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_gbe_conf_loss_of_input_ts_type = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 1, 12), rate_comparison_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfLossOfInputTsType.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfLossOfInputTsType.setDescription("Loss of input stream type. Determines if detection of loss of an input stream is based on data rate or stream rate. Data rate includes only non-null MPEG packets (such as video and audio packets). Stream rate includes all packets, including null packets. The loss of an input stream uses the timeout value for the specific input (unicast or multicast) and the input type. If no packets are received within the specified timeout value, taking into account the loss of input type checking, then the input stream is determined to be missing. Data rate should be used for detecting loss of input when the input stream is normally null filled. When a user requires notification of a loss of input stream when there is no content streamed, data rate should be selected. Stream rate should be used for detecting loss of input stream when the user requires to be notified when there is no input stream at all being received. Loss of input is used for determining all SDV failover conditions. It is also used for Manual Routing failover conditions when using hot/warm transport stream redundancy. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_gbe_config_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2))
if mibBuilder.loadTexts:
apexGbeConfigTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigTable.setDescription("This is a table of configuration parameters for the Gigabit Ethernet Interfaces. Once written, the change to this table will only take immediate effect after apexGbeConfigTableApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexGbeConfigTableApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_gbe_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeConfigInterfaceNum'))
if mibBuilder.loadTexts:
apexGbeConfigEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigEntry.setDescription('Gigabit Ethernet Interface Configuration Table Entry.')
apex_gbe_config_interface_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)))
if mibBuilder.loadTexts:
apexGbeConfigInterfaceNum.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInterfaceNum.setDescription('Gigabit Ethernet Interface Number.')
apex_gbe_config_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigEnable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigEnable.setDescription('This parameter enables the Gigabit Ethernet Interface. ')
apex_gbe_config_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigIpAddr.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigIpAddr.setDescription('This is the IP address of this Gigabit Ethernet interface. It is recommended that each Gigabit Ethernet interface be on a different subnet. Each must be given a unique IP address. 0.0.0.0 indicates the interface is not in use. ')
apex_gbe_config_ip_subnet_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigIpSubnetMask.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigIpSubnetMask.setDescription('This is subnet mask of this Gigabit Ethernet interface. ')
apex_gbe_config_auto_negotiate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 2, 1, 5), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigAutoNegotiate.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigAutoNegotiate.setDescription('Auto negotiation enabled or disabled. ')
apex_gbe_config_frame_buffer_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 3))
if mibBuilder.loadTexts:
apexGbeConfigFrameBufferTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigFrameBufferTable.setDescription("This is a table of configuration parameters related to Gigabit Ethernet Frame Buffer statistics gathering. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_gbe_config_frame_buffer_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeConfigFrameBufferProcessorNum'))
if mibBuilder.loadTexts:
apexGbeConfigFrameBufferEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigFrameBufferEntry.setDescription('Gigabit Ethernet Frame Buffer Configuration Table Entry.')
apex_gbe_config_frame_buffer_processor_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)))
if mibBuilder.loadTexts:
apexGbeConfigFrameBufferProcessorNum.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigFrameBufferProcessorNum.setDescription('Gigabit Ethernet Processor Number. Proc 1 = GBE Interfaces 1 and 2 Proc 2 = GBE Interfaces 3 and 4 ')
apex_gbe_config_frame_buffer_max_in_data_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 3, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(1000000, 2000000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigFrameBufferMaxInDataRate.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigFrameBufferMaxInDataRate.setDescription('Maximum Gigabit Ethernet MPEG input data rate in bps. This is the total amount of MPEG data expected to be received by Gigabit Ethernet frame interfaces on the processor. This data rate is used to determine the frame buffer reset limit. The expected data rate should always be set equal to or greater than the actual input data rate. The value of apexGbeJitterAbsorption can limit the valid range of this data rate. It is highly recommended that the user consult with Motorola prior to changing the expected data rate. ')
apex_gbe_config_frame_buffer_alarm_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigFrameBufferAlarmThreshold.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigFrameBufferAlarmThreshold.setDescription('User defined threshold representing a percentage of frame buffer depth. The frame buffer level is monitored by the APEX and the maximum level is based on the actual input data rate. The threshold percentage is used to determine when to issue a Gigabit Ethernet Frame Buffer Fullness alarm (apexAlarmGbeBufferFullness). ')
apex_gbe_conf_in_redund_monitor_period = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfInRedundMonitorPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfInRedundMonitorPeriod.setDescription("This is the time in seconds over which Redundant Gigabit Ethernet Input Transport Stream Pairs will be monitored. Range is 1 to 30 seconds. Primary to Secondary Fail Over - The monitored data rate of the Primary must be below the Secondary by apexManRteGbeInRedThreshold (for Manual Routing) percent for apexGbeConfInRedundMonitorPeriod before fail over to Secondary will occur. Fail over to Secondary will not occur if fail over is suspended for the Primary. Secondary to Primary Switch Back - The monitored data rate of the Primary must have returned above apexManRteGbeInRedThreshold (for Manual Routing) percent below the Secondary for apexGbeConfInRedundMonitorPeriod before switch back to Primary will occur. Switch back to Primary will not occur if fail over is suspended for the Secondary. Once the Primary is restored, switch back to Primary will be delayed by apexGbeConfInRedundSwitchTime when apexGbeConfInRedundAutoSwitchBack is 'enabled'. Note that if apexGbeConfInRedundAutoSwitchBack is 'disabled' switch back will not occur. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apex_gbe_conf_in_redund_switch_time = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfInRedundSwitchTime.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfInRedundSwitchTime.setDescription("This is the time in seconds to wait before switching back to the Primary of a Redundant Gigabit Ethernet Input TS pair after the Primary is healthy. Range is 0 to 3600. This time is in addition to apexGbeConfInRedundMonitorPeriod. Switch back to Primary will not occur if fail over is suspended for the Secondary. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apex_gbe_conf_in_redund_auto_switch_back = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1, 3), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfInRedundAutoSwitchBack.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfInRedundAutoSwitchBack.setDescription("This is the enable/disable of automatic switch back from Secondary to Primary for Gigabit Ethernet redundancy. When 'enabled', switch back to the Primary will automatically occur when the Primary is restored. When 'disabled', the user must force back to the Primary using apexGbeConfInRedundForceToPrimary or apexManRteGbeInRedForceSwitch. This parameter applies to all configured redundant pairs. Auto switch back to the primary will not occur if the user forced a failover to the secondary. Auto switch back only occurs after a non-forced failover event. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apex_gbe_conf_in_redund_force_to_secondary = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('switchNotInProgress', 1), ('forceSwitch', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfInRedundForceToSecondary.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfInRedundForceToSecondary.setDescription("The Gigabit Ethernet Redundant Pair force switch any pair that is currently on the Primary to the Secondary. This will have no effect if the corresponding row setting of apexManRteGbeInRedEnable is 'disabled'. This will only have an effect when the Primary is the In-Use Input TS of a Redundant Pair (apexInputTsStatPriState or apexInputTsStatSecState is 'openedInUse'). Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apex_gbe_conf_in_redund_force_to_primary = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('switchNotInProgress', 1), ('forceSwitch', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfInRedundForceToPrimary.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfInRedundForceToPrimary.setDescription("The Gigabit Ethernet Redundant Pair force switch any pair that is currently on the Secondary to the Primary. This will have no effect if the corresponding row setting of apexManRteGbeInRedEnable is 'disabled'. This will only have an effect when the Secondary is the In-Use Input TS of a Redundant Pair (apexInputTsStatPriState or apexInputTsStatSecState is 'openedInUse'). Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apex_gbe_conf_in_redund_manual_route_redund_type = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('hotWarm', 1), ('hotHot', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfInRedundManualRouteRedundType.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfInRedundManualRouteRedundType.setDescription("The redundancy type for output streams in Manual Routing operating mode. - hotWarm indicates only 1 input stream, primary or secondary, is open at any one time. For multicast streams, primary will be joined initially. The secondary is joined after a failover (the primary will be dropped prior to joining the secondary). When falling back to the primary, the secondary is dropped (closed), then the primary is joined (opened). - hotHot indicates both the primary and secondary streams are opened at the same time. For multicast streams, both streams are joined immediately. Changes to the redundancy type cannot be made while there are active routes. All routes must be deleted prior to changing the redundancy type. Once written, a save must be performed via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apex_gbe_config_input_data_ts_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5))
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsTable.setDescription("Table of data for GBE input data stream identification. Each entry in this table identifies a Gigabit Ethernet input stream that is a data stream only. Data streams are streams without PCR. These streams require special processing to avoid overflowing the output. There are 128 rows in this table. Once written, the change to this table will only take immediate effect after apexGbeConfigInputDataTsApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexGbeConfigInputDataTsApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apex_gbe_config_input_data_ts_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeConfigInputDataTsIndex'))
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsEntry.setDescription('GBE Input Data Stream Table Entry.')
apex_gbe_config_input_data_ts_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsIndex.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsIndex.setDescription('Index of GBE Input Data Stream Table.')
apex_gbe_config_input_data_ts_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsEnable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsEnable.setDescription('Indicates whether this GBE Input Data Stream entry is enabled or disabled. ')
apex_gbe_config_input_data_ts_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsInterface.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsInterface.setDescription("Number of the input interface (Port number). Range: '0' = Not Applicable GBE = 1-4 ")
apex_gbe_config_input_data_ts_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsUdp.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsUdp.setDescription('GBE Input UDP Port. Range: 0-65535 ')
apex_gbe_config_input_data_ts_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsMulticastIp.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsMulticastIp.setDescription('The Multicast receive IP address. An IP address of 0.0.0.0 indicates singlecast only. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apex_gbe_config_input_data_ts_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 5, 1, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsSourceIp.setDescription('This is the IP address of the source device. This field is only used when a multicast IP address is also specified. ')
apex_gbe_config_input_data_ts_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 6))
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsApplyTable.setDescription('Table of Apply Change for the GBE Input Data Stream Table. A row in this table corresponds to the same row index in the GBE Input Data Stream table (apexGbeConfigInputDataTsTable). ')
apex_gbe_config_input_data_ts_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 6, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeConfigInputDataTsApplyIndex'))
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsApplyEntry.setDescription('GBE Input Data Stream Apply Table Entry.')
apex_gbe_config_input_data_ts_apply_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 6, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsApplyIndex.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsApplyIndex.setDescription('The index of the GBE Input Data Stream Apply Table.')
apex_gbe_config_input_data_ts_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 6, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInputDataTsApplyChange.setDescription("The Apply for the row of data in the GBE Input Data Stream Table. A row in this table corresponds to the same row index in the GBE Input Data Stream table. This parameter MUST be set to 'apply' in order for any of the data in the GBE Input Data Stream Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the GBE Input Data Stream Table row has been configured. @Config(config=no, reboot=no) ")
apex_gbe_conf_if_redund_auto_switch_back_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 1, 1), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfIfRedundAutoSwitchBackEnable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfIfRedundAutoSwitchBackEnable.setDescription("Enables the ability for the secondary interface to switch back when link is re-detected on the primary interface. Auto switch back to the primary interface will not occur if the user forced a failover to the secondary. Auto switch back only occurs after a non-forced failover. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apex_gbe_conf_if_redund_auto_switch_back_period = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfIfRedundAutoSwitchBackPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfIfRedundAutoSwitchBackPeriod.setDescription("Timer for determining that the primary interface is OK for auto- switchback. The primary interface must have link for the configured amount of time. Valid time is 1-30 seconds. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apex_gbe_config_interface_redundancy_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 2))
if mibBuilder.loadTexts:
apexGbeConfigInterfaceRedundancyTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInterfaceRedundancyTable.setDescription('This is a table of configuration parameters for GbE Interface Redundancy.')
apex_gbe_config_interface_redundancy_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeConfIfRedundIndex'))
if mibBuilder.loadTexts:
apexGbeConfigInterfaceRedundancyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInterfaceRedundancyEntry.setDescription('GbE Interface Redundancy Configuration Table Entry.')
apex_gbe_conf_if_redund_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)))
if mibBuilder.loadTexts:
apexGbeConfIfRedundIndex.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfIfRedundIndex.setDescription('GbE Interface Pair number. Value of 1 is GbE1 and GbE2 pair. Value of 2 is GbE3 and GbE4 pair.')
apex_gbe_conf_if_redund_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 2, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfIfRedundEnable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfIfRedundEnable.setDescription("Enables GbE Interface Redundancy for ports pair. Failover is based on link status. If the primary GbE fails, the secondary GbE will become active and will start receiving content. There is no data rate comparison, as only one interface in the redundancy pair is active. The secondary GbE cannot be in use prior to enabling redundancy. TS redundancy may not be used at the same time as interface redundancy. Interface redundancy is not applicable when chassis redundancy is enabled. Once written, the change to this table will only take immediate effect after apexGbeConfIfRedundApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexGbeConfIfRedundApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apex_gbe_conf_if_redund_force_failover = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('failoverNotInProgress', 1), ('failover', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfIfRedundForceFailover.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfIfRedundForceFailover.setDescription('When set to failover(2), this results in the APEX switching to the interface that is currently not in use. If the primary GbE is in use and this is set to failover(2) mappings will be then routed to the secondary GbE. If the secondary GbE is in use and this is set to failover(2) mappings will then be routed back to the primary GbE. Once written, the change to this table will take immediate @Config(config=no, reboot=no) ')
apex_gbe_conf_if_redund_suspend_failover = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 2, 1, 4), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfIfRedundSuspendFailover.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfIfRedundSuspendFailover.setDescription("Enables and disables suspending of Interface failover. Prevents failovers to or from backup. Force failover (apexGbeConfIfRedundForceFailover) overrides this setting. Once written, the change to this table will only take immediate effect after apexGbeConfIfRedundApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexGbeConfIfRedundApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apex_gbe_config_interface_redundancy_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 3))
if mibBuilder.loadTexts:
apexGbeConfigInterfaceRedundancyApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInterfaceRedundancyApplyTable.setDescription('Table of Apply Change for the GBE Interface Redundancy Configuration Table. A row in this table corresponds to the same row index in the GBE Config Interface Redundancy table (apexGbeConfigInterfaceRedundancyTable). ')
apex_gbe_config_interface_redundancy_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeConfIfRedundApplyIndex'))
if mibBuilder.loadTexts:
apexGbeConfigInterfaceRedundancyApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfigInterfaceRedundancyApplyEntry.setDescription('GBE Config Interface Redundancy Table Entry.')
apex_gbe_conf_if_redund_apply_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)))
if mibBuilder.loadTexts:
apexGbeConfIfRedundApplyIndex.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfIfRedundApplyIndex.setDescription('The index of the GBE Config Interface Redundancy Table.')
apex_gbe_conf_if_redund_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 1, 7, 3, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeConfIfRedundApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexGbeConfIfRedundApplyChange.setDescription("The Apply for the row of data in the GBE Config Interface Redundancy Table. A row in this table corresponds to the same row index in the GBE Config Interface Redundancy table. This parameter MUST be set to 'apply' in order for any of the data in the GBE Input Data Stream Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the GBE Input Data Stream Table row has been configured. @Config(config=no, reboot=no) ")
apex_gbe_boot_code_version = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeBootCodeVersion.setStatus('current')
if mibBuilder.loadTexts:
apexGbeBootCodeVersion.setDescription('APEX Gigabit Ethernet Processor Boot Code Version.')
apex_gbe_application_code_version = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeApplicationCodeVersion.setStatus('current')
if mibBuilder.loadTexts:
apexGbeApplicationCodeVersion.setDescription('APEX Gigabit Ethernet Processor Application Code Version.')
apex_gbe_max_input_ts = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeMaxInputTs.setStatus('current')
if mibBuilder.loadTexts:
apexGbeMaxInputTs.setDescription('Maximum number of Gigabit Ethernet input transport streams that can be opened on this APEX. This is the maximum across all installed GigE interfaces. One GigE interface can use all Input TS.')
apex_gbe_routed_packet_update_interval = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeRoutedPacketUpdateInterval.setStatus('current')
if mibBuilder.loadTexts:
apexGbeRoutedPacketUpdateInterval.setDescription('Time in seconds between Gigabit Ethernet Routed Packet Count updates. The count during this time is defined as one sample. This time applies to packet counts contained in apexGbeStatusRoutedPacketTable. To compute rate from packet count for the last update interval: Rate(bps) = (Packet_Count * 188 bytes/packet * 8 bits/byte) / Update_Interval This value is set by the APEX at startup and is constant. ')
apex_gbe_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2))
if mibBuilder.loadTexts:
apexGbeStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusTable.setDescription('This is a table of status parameters for the Gigabit Ethernet Interface.')
apex_gbe_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeStatusGbeInterfaceNum'))
if mibBuilder.loadTexts:
apexGbeStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusEntry.setDescription('Gigabit Ethernet Interface Status Table Entry.')
apex_gbe_status_gbe_interface_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)))
if mibBuilder.loadTexts:
apexGbeStatusGbeInterfaceNum.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusGbeInterfaceNum.setDescription('Gigabit Ethernet Interface Number.')
apex_gbe_status_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 17))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatusMacAddr.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusMacAddr.setDescription("This is the MAC address of the Gigabit Ethernet Interface. It is set at the factory and cannot be changed. The string length is 17 characters in the format 'hh:hh:hh:hh:hh:hh' where 'hh' is a hexadecimal number.")
apex_gbe_status_link_active = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2, 1, 3), active_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatusLinkActive.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusLinkActive.setDescription('This indicates if the Gigabit Ethernet optical link is active.')
apex_gbe_status_igmp_version = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('notApplicable', 0), ('igmpV1', 1), ('igmpV2', 2), ('igmpV3', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatusIgmpVersion.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusIgmpVersion.setDescription('This indicates the IGMP Version being used on this interface.')
apex_gbe_status_loss_of_physical_input = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatusLossOfPhysicalInput.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusLossOfPhysicalInput.setDescription('The current severity of apexAlarmGbeLossOfPhysicalInput for this interface. ')
apex_gbe_input_ts_assigned_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 3))
if mibBuilder.loadTexts:
apexGbeInputTsAssignedTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsAssignedTable.setDescription('Table of Gigabit Ethernet Input TS Assigned data.')
apex_gbe_input_ts_assigned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeInputTsAssignedGbeInterfaceNum'))
if mibBuilder.loadTexts:
apexGbeInputTsAssignedEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsAssignedEntry.setDescription('Gigabit Ethernet Interface Input TS Assigned Table Entry.')
apex_gbe_input_ts_assigned_gbe_interface_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)))
if mibBuilder.loadTexts:
apexGbeInputTsAssignedGbeInterfaceNum.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsAssignedGbeInterfaceNum.setDescription('The index of the Gigabit Ethernet Input TS Assigned Table. Represents the Gigabit Ethernet interface number.')
apex_gbe_input_ts_assigned_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 3, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsAssignedCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsAssignedCount.setDescription('Number of input transport streams assigned to the GigE interface.')
apex_gbe_open_input_udp_port_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 4))
if mibBuilder.loadTexts:
apexGbeOpenInputUdpPortTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeOpenInputUdpPortTable.setDescription('Table of Gigabit Ethernet Input Open UDP Port data.')
apex_gbe_open_input_udp_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeOpenInputUdpPortGbeInterfaceNum'))
if mibBuilder.loadTexts:
apexGbeOpenInputUdpPortEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeOpenInputUdpPortEntry.setDescription('Gigabit Ethernet Interface Input Open UDP Port Table Entry.')
apex_gbe_open_input_udp_port_gbe_interface_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)))
if mibBuilder.loadTexts:
apexGbeOpenInputUdpPortGbeInterfaceNum.setStatus('current')
if mibBuilder.loadTexts:
apexGbeOpenInputUdpPortGbeInterfaceNum.setDescription('The index of the Gigabit Ethernet Input Open UDP Port Table. Represents the Gigabit Ethernet interface number.')
apex_gbe_open_input_udp_port_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 4, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeOpenInputUdpPortCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeOpenInputUdpPortCount.setDescription('Number of open Input UDP Ports on the GigE interface.')
apex_gbe_status_routed_packet_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 5))
if mibBuilder.loadTexts:
apexGbeStatusRoutedPacketTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusRoutedPacketTable.setDescription('This table contains Gigabit Ethernet MPEG packet counts for each Output Transport Stream of this APEX. Update interval is apexGbeRoutedPacketUpdateInterval.')
apex_gbe_status_routed_packet_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 5, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeStatusRoutedPacketOutputTsNum'))
if mibBuilder.loadTexts:
apexGbeStatusRoutedPacketEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusRoutedPacketEntry.setDescription('Gigabit Ethernet Interface Status Routed Packet Table Entry.')
apex_gbe_status_routed_packet_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexGbeStatusRoutedPacketOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusRoutedPacketOutputTsNum.setDescription('The index of the Gigabit Ethernet Routed Packet Status Table. Represents Output Transport Stream number.')
apex_gbe_status_tot_routed_packets = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 5, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatusTotRoutedPackets.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusTotRoutedPackets.setDescription('Total number of Gigabit Ethernet MPEG packets routed to this Output Transport Stream.')
apex_gbe_status_num_routed_packets = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 5, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatusNumRoutedPackets.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusNumRoutedPackets.setDescription('Number of Gigabit Ethernet MPEG packets routed to this Output Transport Stream during the last monitoring period (apexGbeRoutedPacketUpdateInterval).')
apex_gbe_status_frame_counter_table_reset_all = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 1, 1), reset_statistics_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeStatusFrameCounterTableResetAll.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusFrameCounterTableResetAll.setDescription('Reset Ethernet Frame Counter Totals for all GigE interfaces: - apexGbeTotalRxSinglecastFrames - apexGbeTotalRxMulticastFrames - apexGbeTotalRxBroadcastFrames - apexGbeTotalRxErrorFrames - apexGbeTotalRxFrames - apexGbeTotalTxGoodFrames - apexGbeTotalTxErrorFrames Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ')
apex_gbe_frame_counter_update_interval = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameCounterUpdateInterval.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameCounterUpdateInterval.setDescription('Time in seconds between Gigabit Ethernet Frame Counter updates. The count during this time is defined as one sample. This time applies to packet counts contained in apexGbeStatusFrameCounterTable. To compute rate from frame count for the last update interval: Rate(bps) = (Frame_Count * 7 packets/frame 188 bytes/packet * 8 bits/byte) / Update_Interval This value is set by the APEX at startup and is constant. ')
apex_gbe_status_frame_counter_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2))
if mibBuilder.loadTexts:
apexGbeStatusFrameCounterTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusFrameCounterTable.setDescription('Table of Gigabit Ethernet Frame Counter Statistics.')
apex_gbe_status_frame_counter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeFrameCounterGbeInterfaceNum'))
if mibBuilder.loadTexts:
apexGbeStatusFrameCounterEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusFrameCounterEntry.setDescription('Gigabit Ethernet Interface Frame Counter Table Entry.')
apex_gbe_frame_counter_gbe_interface_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)))
if mibBuilder.loadTexts:
apexGbeFrameCounterGbeInterfaceNum.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameCounterGbeInterfaceNum.setDescription('The index of the Gigabit Ethernet Frame Counter Table. Represents the Gigabit Ethernet interface number.')
apex_gbe_frame_counter_reset = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 2), reset_statistics_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeFrameCounterReset.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameCounterReset.setDescription('Reset Ethernet Frame Counter Statistics totals for a single GigE interface: - apexGbeTotalRxSinglecastFrames - apexGbeTotalRxMulticastFrames - apexGbeTotalRxBroadcastFrames - apexGbeTotalRxErrorFrames - apexGbeTotalRxFrames - apexGbeTotalTxGoodFrames - apexGbeTotalTxErrorFrames Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ')
apex_gbe_total_rx_singlecast_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeTotalRxSinglecastFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeTotalRxSinglecastFrames.setDescription('Total number of singlecast Ethernet frames received since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apex_gbe_total_rx_multicast_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeTotalRxMulticastFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeTotalRxMulticastFrames.setDescription('Total number of multicast Ethernet frames received since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apex_gbe_total_rx_broadcast_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeTotalRxBroadcastFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeTotalRxBroadcastFrames.setDescription('Total number of broadcast Ethernet frames received since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apex_gbe_total_rx_error_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeTotalRxErrorFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeTotalRxErrorFrames.setDescription('Total number of bad Ethernet frames received since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apex_gbe_total_rx_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeTotalRxFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeTotalRxFrames.setDescription('Total number of Ethernet frames received since last reset. This is the sum of apexGbeTotalRxSinglecastFrames, apexGbeTotalRxMulticastFrames, apexGbeTotalRxBroadcastFrames, and apexGbeTotalRxErrorFrames. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apex_gbe_rx_singlecast_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeRxSinglecastFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeRxSinglecastFrames.setDescription('Number of singlecast Ethernet frames received during last status checking interval. Status checking interval is apexGbeFrameCounterUpdateInterval.')
apex_gbe_rx_multicast_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeRxMulticastFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeRxMulticastFrames.setDescription('Number of multicast Ethernet frames received during last status checking interval. Status checking interval is apexGbeFrameCounterUpdateInterval.')
apex_gbe_rx_broadcast_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeRxBroadcastFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeRxBroadcastFrames.setDescription('Number of broadcast Ethernet frames received during last status checking interval. Status checking interval is apexGbeFrameCounterUpdateInterval.')
apex_gbe_rx_error_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeRxErrorFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeRxErrorFrames.setDescription('Number of bad Ethernet frames received during last status checking interval. Status checking interval is apexGbeFrameCounterUpdateInterval.')
apex_gbe_rx_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeRxFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeRxFrames.setDescription('Number of Ethernet frames received during last status checking interval. This is the sum of apexGbeRxSinglecastFrames, apexGbeRxMulticastFrames, apexGbeRxBroadcastFrames, and apexGbeRxErrorFrames. Status checking interval is five seconds.')
apex_gbe_total_tx_good_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeTotalTxGoodFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeTotalTxGoodFrames.setDescription('Total number of good Ethernet frames (singlecast, multicast, and broadcast) transmitted since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apex_gbe_total_tx_error_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeTotalTxErrorFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeTotalTxErrorFrames.setDescription('Total number of bad Ethernet frames transmitted since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apex_gbe_tx_good_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeTxGoodFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeTxGoodFrames.setDescription('Number of good Ethernet frames (singlecast, multicast, and broadcast) transmitted during last status checking interval. Status checking interval is five seconds.')
apex_gbe_tx_error_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeTxErrorFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeTxErrorFrames.setDescription('Number of bad Ethernet frames transmitted during last status checking interval. Status checking interval is five seconds.')
apex_gbe_rx_docsis_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeRxDocsisFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeRxDocsisFrames.setDescription('Number of good Ethernet frames containing DOCSIS (singlecast, multicast, and broadcast) received during last status checking interval. Status checking interval is five seconds.')
apex_gbe_total_rx_docsis_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeTotalRxDocsisFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeTotalRxDocsisFrames.setDescription('Total number of good Ethernet frames containing DOCSIS(singlecast, multicast, and broadcast) received since last reset. Reset using apexGbeStatusFrameCounterTableResetAll or apexGbeFrameCounterReset.')
apex_gbe_rx_mpeg_docsis_frames = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeRxMpegDocsisFrames.setStatus('current')
if mibBuilder.loadTexts:
apexGbeRxMpegDocsisFrames.setDescription('Number of MPEG packets generated from DOCSIS data (singlecast, multicast, and broadcast) received during last status checking interval. Status checking interval is five seconds.')
apex_gbe_ip_fragmented_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeIpFragmentedPkts.setStatus('current')
if mibBuilder.loadTexts:
apexGbeIpFragmentedPkts.setDescription('Number of IP fragmented packets received during last status checking interval. Status checking interval is five seconds.')
apex_gbe_total_ip_fragmented_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 6, 2, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeTotalIpFragmentedPkts.setStatus('current')
if mibBuilder.loadTexts:
apexGbeTotalIpFragmentedPkts.setDescription('Total number of IP fragmented packets received during last status checking interval. Status checking interval is five seconds.')
apex_gbe_frame_buffer_stats_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2))
if mibBuilder.loadTexts:
apexGbeFrameBufferStatsTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferStatsTable.setDescription('Table of Gigabit Ethernet Frame Buffer Statistics for each GBE processor.')
apex_gbe_frame_buffer_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeFrameBufferProcessorNum'))
if mibBuilder.loadTexts:
apexGbeFrameBufferStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferStatsEntry.setDescription('Gigabit Ethernet Frame Buffer Statistics Table Entry.')
apex_gbe_frame_buffer_processor_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)))
if mibBuilder.loadTexts:
apexGbeFrameBufferProcessorNum.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferProcessorNum.setDescription('Index of the Gigabit Ethernet Buffer Statistics Table. Gigabit Ethernet Processor Number. Proc 1 = GBE Interfaces 1 and 2 Proc 2 = GBE Interfaces 3 and 4 ')
apex_gbe_frame_buffer_reset_level_limit = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferResetLevelLimit.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferResetLevelLimit.setDescription('The point at which the GigE frame buffer will be reset, in milliseconds. This value is equal to (maximum buffer depth - 5). The maximum buffer depth is calculated based on the expected input data rate (apexGbeConfigFrameBufferMaxInDataRate).')
apex_gbe_frame_buffer_curr_ms_level = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferCurrMsLevel.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferCurrMsLevel.setDescription('Current highest Gigabit Ethernet Frame Buffer level in milliseconds.')
apex_gbe_frame_buffer_curr_percent_full = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferCurrPercentFull.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferCurrPercentFull.setDescription('Current highest Gigabit Ethernet Frame Buffer fullness as a percentage of the buffer depth available for a given aggregate rate. This percentage is calculated using the current buffer level (apexGbeFrameBufferCurrMsLevel) and the actual input data rate.')
apex_gbe_frame_buffer_underflow_level = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferUnderflowLevel.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferUnderflowLevel.setDescription('The point at which the GigE frame buffer will underflow, in milliseconds. This value is calculated based on the sum of the number of received frames per second for all interfaces.')
apex_gbe_frame_buffer_overflow_level = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferOverflowLevel.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferOverflowLevel.setDescription('The point at which the GigE frame buffer will overflow, in milliseconds. This value is calculated based on the sum of the number of received frames per second for all interfaces.')
apex_gbe_frame_buffer_alarm_status = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferAlarmStatus.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferAlarmStatus.setDescription('The current highest severity of apexAlarmGbeBufferFullness for the GBE Processor. ')
apex_gbe_frame_buffer_hourly_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3))
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyTable.setDescription('Table of Gigabit Ethernet Frame Buffer Statistics. There can be up to 24 entries in the table for each GBE Processor. Each entry represents one hour. The newest entry is placed at the beginning of the table and, if necessary, the oldest entry is pushed off the end of the table. The table will not be full until 24 hours have passed.')
apex_gbe_frame_buffer_hourly_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeFrameBufferHourlyProcessorNum'), (0, 'APEX-MIB', 'apexGbeFrameBufferHourlyIndex'))
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyEntry.setDescription('Gigabit Ethernet Interface Frame Buffer Table Entry.')
apex_gbe_frame_buffer_hourly_processor_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)))
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyProcessorNum.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyProcessorNum.setDescription('First index of the Gigabit Ethernet Buffer Status Table. Gigabit Ethernet Processor Number. Proc 1 = GBE Interfaces 1 and 2 Proc 2 = GBE Interfaces 3 and 4 ')
apex_gbe_frame_buffer_hourly_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 24)))
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyIndex.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyIndex.setDescription('Second index of the Gigabit Ethernet Buffer Status Table. Each index represents one hour. There can be up to 24 entries in the table. The most recent entry is always at the beginning of the table.')
apex_gbe_frame_buffer_hourly_in_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyInInterface.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyInInterface.setDescription('Number of the input interface for the Gigabit Ethernet interface that experienced the highest buffer level for the hour. ')
apex_gbe_frame_buffer_hourly_in_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyInUdp.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyInUdp.setDescription('Input UDP Port for the Gigabit Ethernet interface that experienced the highest buffer level for the hour. ')
apex_gbe_frame_buffer_hourly_in_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyInMulticastIp.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyInMulticastIp.setDescription('Input Multicast IP address for the Gigabit Ethernet interface that experienced the highest buffer level for the hour. ')
apex_gbe_frame_buffer_hourly_in_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyInSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyInSourceIp.setDescription('Input IGMP v3 Source IP for the Gigabit Ethernet interface that experienced the highest buffer level for the hour. ')
apex_gbe_frame_buffer_hourly_max_ms_level = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyMaxMsLevel.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyMaxMsLevel.setDescription('The maximum Gigabit Ethernet frame buffer level (in milliseconds) recorded for the hour.')
apex_gbe_frame_buffer_hourly_max_percent_full = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyMaxPercentFull.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyMaxPercentFull.setDescription('The maximum Gigabit Ethernet frame buffer level percentage recorded for the hour.')
apex_gbe_frame_buffer_hourly_gps_time = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyGpsTime.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyGpsTime.setDescription('The GPS time when the maximum Gigabit Ethernet frame buffer level was reached.')
apex_gbe_frame_buffer_hourly_overflows = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyOverflows.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyOverflows.setDescription('The number of overflows recorded on Gigabit Ethernet interface for the hour.')
apex_gbe_frame_buffer_hourly_resets = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 7, 3, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyResets.setStatus('current')
if mibBuilder.loadTexts:
apexGbeFrameBufferHourlyResets.setDescription('The number of resets reported by the GigE processor during the hour.')
apex_gbe_status_input_ts_update_interval = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatusInputTsUpdateInterval.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusInputTsUpdateInterval.setDescription('Time in seconds between Gigabit Ethernet Input Transport Stream Packet Count updates. The count during this time is defined as one sample. This time applies to packet counts contained in apexGbeStatusInputTsTable. To compute rate from packet count for the last update interval: Rate(bps) = (Packet_Count * 188 bytes/packet * 8 bits/byte) / Update_Interval This value is set by the APEX at startup and is constant. ')
apex_gbe_status_input_ts_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2))
if mibBuilder.loadTexts:
apexGbeStatusInputTsTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusInputTsTable.setDescription('Table of Gigabit Ethernet Input Transport Stream status. A row in this table corresponds to the same index row in apexInputTsStatTable and apexGbeStatusInputTsErrorTable. Packet Counts are updated every apexGbeStatusInputTsUpdateInterval. The count during a apexGbeStatusInputTsUpdateInterval is a sample. The samples are accumulated into a set of rolling statistics that cover a maximum of a 15 minute sampling time period. The sampling period is the amount of time over which the data in the corresponding row has been collected. When the sampling period reaches 15 minutes, old data is removed from the accumulated statistics and new data is rolled in. In this way, the average, minimum, and peak rates for the sampling period are maintained. ')
apex_gbe_status_input_ts_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeStatInTsInputTsNum'))
if mibBuilder.loadTexts:
apexGbeStatusInputTsEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusInputTsEntry.setDescription('Gigabit Ethernet Input Transport Stream Status Table Entry.')
apex_gbe_stat_in_ts_input_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexGbeStatInTsInputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsInputTsNum.setDescription('The Gigabit Ethernet Input Transport Stream Status table index. A row in this table corresponds to the same index row in apexInputTsStatTable and apexGbeStatusInputTsErrorTable. ')
apex_gbe_stat_in_ts_sampling_period = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 900))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSamplingPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSamplingPeriod.setDescription('The total time, in seconds, over which the packet counts statistics in this row have been collected. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_pri_cur_data_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsPriCurDataCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsPriCurDataCount.setDescription('The Data Packet Count of the most recent sample for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_pri_avg_data_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsPriAvgDataCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsPriAvgDataCount.setDescription('The Average Data Packet Count per sample during apexGbeStatInTsSamplingPeriod for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_pri_min_data_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsPriMinDataCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsPriMinDataCount.setDescription('The Minimum Data Packet Count sample during apexGbeStatInTsSamplingPeriod for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_pri_peak_data_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsPriPeakDataCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsPriPeakDataCount.setDescription('The Peak Data Packet Count sample during apexGbeStatInTsSamplingPeriod for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_pri_cur_stream_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsPriCurStreamCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsPriCurStreamCount.setDescription('The Transport Stream Packet Count of the most recent sample for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_pri_avg_stream_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsPriAvgStreamCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsPriAvgStreamCount.setDescription('The Average Transport Stream Packet Count per sample during apexGbeStatInTsSamplingPeriod for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_pri_min_stream_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsPriMinStreamCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsPriMinStreamCount.setDescription('The Minimum Transport Stream Packet Count sample during apexGbeStatInTsSamplingPeriod for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_pri_peak_stream_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsPriPeakStreamCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsPriPeakStreamCount.setDescription('The Peak Transport Stream Packet Count sample during apexGbeStatInTsSamplingPeriod for the primary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_sec_cur_data_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSecCurDataCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSecCurDataCount.setDescription('The Data Packet Count of the most recent sample for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_sec_avg_data_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSecAvgDataCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSecAvgDataCount.setDescription('The Average Data Packet Count per sample during apexGbeStatInTsSamplingPeriod for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_sec_min_data_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSecMinDataCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSecMinDataCount.setDescription('The Minimum Data Packet Count sample during apexGbeStatInTsSamplingPeriod for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_sec_peak_data_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSecPeakDataCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSecPeakDataCount.setDescription('The Peak Data Packet Count sample during apexGbeStatInTsSamplingPeriod for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_sec_cur_stream_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSecCurStreamCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSecCurStreamCount.setDescription('The Transport Stream Packet Count of the most recent sample for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_sec_avg_stream_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSecAvgStreamCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSecAvgStreamCount.setDescription('The Average Transport Stream Packet Count per sample during apexGbeStatInTsSamplingPeriod for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_sec_min_stream_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSecMinStreamCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSecMinStreamCount.setDescription('The Minimum Transport Stream Packet Count sample during apexGbeStatInTsSamplingPeriod for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_stat_in_ts_sec_peak_stream_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 2, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSecPeakStreamCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSecPeakStreamCount.setDescription('The Peak Transport Stream Packet Count sample during apexGbeStatInTsSamplingPeriod for the secondary. Refer to the description of apexGbeStatusInputTsTable for an explanation of packet counting. Refer to the description of apexGbeStatusInputTsUpdateInterval for an explanation of update interval and computing rates. ')
apex_gbe_status_input_ts_error_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3))
if mibBuilder.loadTexts:
apexGbeStatusInputTsErrorTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusInputTsErrorTable.setDescription('Table of Gigabit Ethernet Input Transport Stream Error status. A row in this table corresponds to the same index row in apexInputTsStatTable and apexGbeStatusInputTsTable. ')
apex_gbe_status_input_ts_error_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeStatInTsErrorInputTsNum'))
if mibBuilder.loadTexts:
apexGbeStatusInputTsErrorEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusInputTsErrorEntry.setDescription('Gigabit Ethernet Input Transport Stream Status Table Entry.')
apex_gbe_stat_in_ts_error_input_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexGbeStatInTsErrorInputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsErrorInputTsNum.setDescription('The Gigabit Ethernet Input Transport Stream Error Status table index. A row in this table corresponds to the same index row in apexInputTsStatTable and apexGbeStatusInputTsTable. ')
apex_gbe_stat_in_ts_pri_error_summary = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsPriErrorSummary.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsPriErrorSummary.setDescription('The current highest error of the following errors for the primary input transport stream: apexGbeStatInTsPriLowBitRateError apexGbeStatInTsPriHighBitRateError apexGbeStatInTsMptsRedundPriError apexGbeStatInTsMptsRedundFailError apexGbeStatInTsPriLossInputError ')
apex_gbe_stat_in_ts_pri_low_bit_rate_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsPriLowBitRateError.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsPriLowBitRateError.setDescription('The current low bit rate state for the primary input stream. Ok indicates no errors or not checking low bit rate. Error indicates primary input stream is below the low bit rate specified. ')
apex_gbe_stat_in_ts_pri_high_bit_rate_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsPriHighBitRateError.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsPriHighBitRateError.setDescription('The current high bit rate state for the primary input stream. Ok indicates no errors or not checking high bit rate. Error indicates primary input stream is above the high bit rate specified. ')
apex_gbe_stat_in_ts_mpts_redund_pri_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsMptsRedundPriError.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsMptsRedundPriError.setDescription('The current redundant threshold state for the primary input stream. Ok indicates no errors or input stream is not part of a redundant pair. Error indicates primary input stream is below the threshold level specified. ')
apex_gbe_stat_in_ts_mpts_redund_fail_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsMptsRedundFailError.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsMptsRedundFailError.setDescription('The current fail over state for a redundancy pair. Ok indicates no errors or input stream is not part of a redundant pair. Error indicates primary input stream is no longer in use and the APEX has fallen over to use the secondary input stream. ')
apex_gbe_stat_in_ts_sec_error_summary = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSecErrorSummary.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSecErrorSummary.setDescription('The current highest error state of the following for the secondary input transport stream: apexGbeStatInTsSecLowBitRateError apexGbeStatInTsSecHighBitRateError apexGbeStatInTsSecLossInputError ')
apex_gbe_stat_in_ts_sec_low_bit_rate_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSecLowBitRateError.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSecLowBitRateError.setDescription('The current low bit rate state for the secondary input stream. Ok indicates no errors or not checking low bit rate. Error indicates secondary input stream is below the low bit rate specified. ')
apex_gbe_stat_in_ts_sec_high_bit_rate_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSecHighBitRateError.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSecHighBitRateError.setDescription('The current high bit rate state for the secondary input stream. Ok indicates no errors or not checking high bit rate. Error indicates secondary input stream is above the high bit rate specified. ')
apex_gbe_stat_in_ts_pri_loss_input_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsPriLossInputError.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsPriLossInputError.setDescription('The current loss of input stream state for the primary input stream. Ok indicates no errors or not checking for loss of input stream. Error indicates primary input stream is missing. ')
apex_gbe_stat_in_ts_sec_loss_input_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 8, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatInTsSecLossInputError.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatInTsSecLossInputError.setDescription('The current loss of input stream state for the secondary input stream. Ok indicates no errors or not checking for loss of input stream. Error indicates secondary input stream is missing. ')
apex_gbe_status_interface_redund_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9, 1))
if mibBuilder.loadTexts:
apexGbeStatusInterfaceRedundTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusInterfaceRedundTable.setDescription('This is a table of status parameters for GbE Interface Redundancy.')
apex_gbe_status_interface_redund_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9, 1, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeStatusInterfaceRedundIndex'))
if mibBuilder.loadTexts:
apexGbeStatusInterfaceRedundEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusInterfaceRedundEntry.setDescription('GbE Interface Redundancy Status Table Entry.')
apex_gbe_status_interface_redund_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)))
if mibBuilder.loadTexts:
apexGbeStatusInterfaceRedundIndex.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusInterfaceRedundIndex.setDescription('GbE Interface Pair number. Value of 1 is GbE1 and GbE2 pair. Value of 2 is GbE3 and GbE4 pair.')
apex_gbe_status_interface_redund_active_if = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatusInterfaceRedundActiveIf.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusInterfaceRedundActiveIf.setDescription('The current active interface for the redundant pair. This is only applicable if GbE Interface Redundancy is enabled for the pair. If GbE Interface Redundancy is not enabled it will be set to zero. ')
apex_gbe_status_interface_redund_invalid_apply_text = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatusInterfaceRedundInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusInterfaceRedundInvalidApplyText.setDescription('When apexGbeConfIfRedundApplyChange is set to applyNotInProgressInvalidData this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of an entry that was invalid.')
apex_gbe_status_interface_redund_fault_condition = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 2, 9, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeStatusInterfaceRedundFaultCondition.setStatus('current')
if mibBuilder.loadTexts:
apexGbeStatusInterfaceRedundFaultCondition.setDescription('Current fault condition of the GbE Interface pair. Reflects apexAlarmGbeInterfaceRedundFailOver for this redundant pair. ')
apex_gbe_sfp_update_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('updateNotInProgress', 1), ('update', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexGbeSfpUpdateStatus.setStatus('current')
if mibBuilder.loadTexts:
apexGbeSfpUpdateStatus.setDescription("When set to 'update' the APEX will update the apexGbeSfpStatusTable by performing an one-time read of SFP memory. APEX sets back to 'updateNotInProgress' when complete. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apex_gbe_sfp_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2, 2))
if mibBuilder.loadTexts:
apexGbeSfpStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeSfpStatusTable.setDescription('Table of SFP status parameters. Indexed by Gigabit Ethernet Interface Number. ')
apex_gbe_sfp_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeSfpStatusGbeIfNum'))
if mibBuilder.loadTexts:
apexGbeSfpStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeSfpStatusEntry.setDescription('SFP status table entry.')
apex_gbe_sfp_status_gbe_if_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)))
if mibBuilder.loadTexts:
apexGbeSfpStatusGbeIfNum.setStatus('current')
if mibBuilder.loadTexts:
apexGbeSfpStatusGbeIfNum.setDescription('Gigabit Ethernet Interface Number.')
apex_gbe_sfp_status_vendor_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeSfpStatusVendorId.setStatus('current')
if mibBuilder.loadTexts:
apexGbeSfpStatusVendorId.setDescription('ASCII format of bytes 0-127 from SFP-MSA ID Memory Map address A0h. Zero-length indicates that no SFP module is installed. ')
apex_gbe_sfp_status_diag_info = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 7, 3, 2, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeSfpStatusDiagInfo.setStatus('current')
if mibBuilder.loadTexts:
apexGbeSfpStatusDiagInfo.setDescription('ASCII format of bytes 96-127 from SFP Diagnostic Memory address A2h. Zero-length indicates that diagnostic information is not available. ')
apex_qam_config_transmission_mode = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('annexB-ATSC-DCII', 1), ('annexA-DVB', 2), ('annexC-Asia-Pacific', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamConfigTransmissionMode.setStatus('current')
if mibBuilder.loadTexts:
apexQamConfigTransmissionMode.setDescription("This is the QAM Transmission Mode as defined in: Series J: Transmission of Television, Sound Programme and other Multimedia Signals, ITU-T J.83. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_qam_module_upgrade_slot = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamModuleUpgradeSlot.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleUpgradeSlot.setDescription("This is the QAM slot number of the QAM Module that is being upgraded from a 2x4 channel module to a 2x8 channel module. Zero indicates no slot selected. Once written, the change to this table will only take immediate effect after apexQamModuleUpgradeApplyChange is set to 'apply'. @Config(config=no, reboot=no) @Commit(param=apexQamModuleUpgradeApplyChange, value=2) ")
apex_qam_module_upgrade_code = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 2, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 48))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamModuleUpgradeCode.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleUpgradeCode.setDescription("This is the encrypted upgrade code for the QAM Module that is being upgraded from a 2x4 channel module to a 2x8 channel module. The Upgrade Code is specific to a QAM Module and can only be used for the QAM Module with the serial number for which the Upgrade Code was created. Once written, the change to this parameter will only take immediate effect after the corresponding apexQamModuleUpgradeApplyChange is set to 'apply'. This parameter is cleared by the APEX after the apply is complete. @Config(config=no, reboot=no) @Commit(param=apexQamModuleUpgradeApplyChange, value=2) ")
apex_qam_module_upgrade_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 2, 3), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamModuleUpgradeApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleUpgradeApplyChange.setDescription("This is the Apply for QAM Module Upgrade Slot and Code. This parameter MUST be set to 'apply' in order for apexQamModuleUpgradeSlot and apexQamModuleUpgradeCode to take effect. This parameter MUST be set LAST after apexQamModuleUpgradeSlot and apexQamModuleUpgradeCode has been configured. The APEX will set this to applyNotInProgressInvalidData if the Upgrade Code is incorrect and the QAM Module is not upgraded. @Config(config=no, reboot=no) ")
apex_qam_config_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 3))
if mibBuilder.loadTexts:
apexQamConfigApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamConfigApplyTable.setDescription('Table of Apply Change for the data for apexQamRfConfigTable. ')
apex_qam_config_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamConfigApplyRfPortNum'))
if mibBuilder.loadTexts:
apexQamConfigApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamConfigApplyEntry.setDescription('QAM Configuration Apply Table Entry.')
apex_qam_config_apply_rf_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12)))
if mibBuilder.loadTexts:
apexQamConfigApplyRfPortNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamConfigApplyRfPortNum.setDescription('The QAM RF Port number. Port 1,2,7,8 is Slot 1 Port 3,4,9,10 is Slot 2 Port 5,6,11,12 is Slot 3')
apex_qam_config_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 3, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexQamConfigApplyChange.setDescription("The Apply for a row of data in apexQamRfConfigTable. A row in this table corresponds to the same row index in the apexQamRfConfigTable. This parameter MUST be set to 'apply' in order for any of the data in the rows to take effect in the APEX. This parameter MUST be set LAST after all other data in the configuration table rows has been configured. @Config(config=no, reboot=no) ")
apex_qam_rf_config_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4))
if mibBuilder.loadTexts:
apexQamRfConfigTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigTable.setDescription("Table of configuration items configurable on a QAM RF Port basis. There can be up to 12 RF Ports on an APEX1000 depending on how the 3 QAM slots are populated. There can be 2 or 4 RF Ports in each QAM slot. The 2 RF Ports in a 2x8(2x4) QAM module (1,2) in a QAM slot are mapped to table rows as follows: Slot Rows (RF port) 1 1,2 2 3,4 3 5,6 If a QAM Module in a slot only has 2 RF ports, the first three rows in this table for that slot are to be used. For example, if there is a 2x4 or 2x8 module in slot 3, port 5 and 6 are to be used for configuring the RF Ports of the module. The 4 RF Ports in a 4x4 QAM module (1,2,7,8) in a QAM slot are mapped to table rows as follows: Slot Rows (RF port) 1 1,2,7,8 2 3,4,9,10 3 5,6,11,12 All entries/rows in this table are used for the 4x4 QAM Module with any exceptions noted in the descriptions for the table entries. All entries in this table have the same ranges for the 4x4 QAM Module with any exceptions noted in the descriptions for the table entries. Refer to the description of apexQamChannelConfigTable for information on QAM Channel to RF Port mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. Once written, the change to this table will only take immediate effect after apexQamConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_qam_rf_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamRfConfigRfPortNum'))
if mibBuilder.loadTexts:
apexQamRfConfigEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigEntry.setDescription('QAM RF Port Configuration Table Entry.')
apex_qam_rf_config_rf_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12)))
if mibBuilder.loadTexts:
apexQamRfConfigRfPortNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigRfPortNum.setDescription('The QAM RF Port number.')
apex_qam_rf_config_num_channels_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigNumChannelsEnabled.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigNumChannelsEnabled.setDescription("The number of QAM Channels enabled on the RF Port. APEX will not allow enabling of more channels than the installed QAM Module will support. Note that when this parameter is changed and applied there will be an interruption in service on all active channels on this RF Port. When QAM Transmission Mode is 'annexA-DVB', enabled channels is also limited by the Channel Spacing such that the total bandwidth of the RF must not exceed 48 MHz. ")
apex_qam_rf_config_modulation_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('qam64', 1), ('qam256', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigModulationMode.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigModulationMode.setDescription('The QAM Modulation mode for the QAM RF Port. This is the QAM Modulation mode of all QAM Channels enabled on the RF Port. For 4x4 QAM Modules: This parameter applies on an RF pair basis, 1-2 and 7-8. APEX1000 will use only odd table indices. Even index of pair will be ignored and set to value for odd index of pair. ')
apex_qam_rf_config_symbol_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(800000, 6980000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigSymbolRate.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigSymbolRate.setDescription("The Symbol Rate Setting of the QAM Channels enabled on the RF Port. It is in symbols per second (sps). When QAM Transmission Mode is 'annexA-DVB' the range is 800,000 sps to 6,980,000 sps in 1000 sps steps. When QAM Transmission Mode is 'annexC-Asia-Pacific' the range is 800,000 sps to 5,310,000 sps in 1000 sps steps. The APEX will correct values not on a 1000 sps boundary so the user or management system does not need to enforce the step size. When QAM Transmission Mode is 'annexB-ATSC-DCII' this parameter is not configurable and is set by the APEX based on QAM Modulation Mode. For 4x4 QAM Modules: This parameter applies on an RF pair basis, 1-2 and 7-8. APEX1000 will use only odd table indices. Even index of pair will be ignored and set to value for odd index of pair. @Range(step=1000) ")
apex_qam_rf_config_spectrum_invert = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('normal', 1), ('invert', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigSpectrumInvert.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigSpectrumInvert.setDescription('The Spectrum Inversion Setting of the QAM Channels enabled on the RF Port. ')
apex_qam_rf_config_tuning_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('frequency', 1), ('channel', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigTuningMode.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigTuningMode.setDescription("The tuning mode of the QAM Channels enabled on the RF Port. 'frequency' - The APEX tunes based on frequency as configured in RF Center Frequency for QAM Channel A and channel spacing as configured in RF Channel Spacing to determine the frequency of the B - H channels. 'channel' - The APEX tunes based on channel as configured in Channel Number for QAM Channel A using the selected Frequency Plan. The APEX will set the B - H channels to the next sequential channels. Applies only when QAM Transmission Mode is 'annexB-ATSC-DCII'. ")
apex_qam_rf_config_eia_frequency_plan = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('std', 1), ('hrc', 2), ('irc', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigEiaFrequencyPlan.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigEiaFrequencyPlan.setDescription("This is the frequency plan to use for tuning of the QAM Channels enabled on the RF Port. Frequency plans are as per CEA Standard: Cable Television Channel Identification Plan (CEA-542-B). This parameter is valid only when QAM Transmission Mode is 'annexB-ATSC-DCII'. 'std' - Standard (STD) North American frequency plan. 'hrc' - Harmonic Related Carrier (HRC) frequency plan. 'irc' - Incremental Related Carrier (IRC) frequency plan. ")
apex_qam_rf_config_eia_chan_num_channel_a = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 158))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigEiaChanNumChannelA.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigEiaChanNumChannelA.setDescription("The Channel Number for QAM Channel A. Range is 0 to 158, with valid channels being 1 to 158 and 0 indicating 'not applicable'. This parameter is valid only when QAM Transmission Mode is 'annexB-ATSC-DCII'. This parameter is configurable only when Tuning Mode is 'channel'. When Tuning Mode is 'channel', this is the Channel Number used to determine the output frequency of QAM Channel A using the selected Frequency Plan. When Tuning Mode is 'frequency', this value is determined by the APEX using the selected Frequency Plan. If there is no channel number for the frequency, the value is set to zero. This parameter is not configurable for Transmission Modes of 'annexA-DVB' or 'annexC-Asia-Pacific' and the value is set to zero by the APEX. Channel 1 is not defined in CEA Standard: Cable Television Channel Identification Plan (CEA-542-B) for the Standard (STD) North American frequency plan. Channel 1 cannot be selected when apexQamRfConfigEiaFrequencyPlan is 'std'. Channel 2 as defined in defined in CEA Standard: Cable Television Channel Identification Plan (CEA-542-B) for the Harmonic Related Carrier (HRC) frequency plan is below the APEX 57 MHz minimum frequency. Channel 2 cannot be selected when apexQamRfConfigEiaFrequencyPlan is 'hrc'. For 4x4 QAM Modules: Channels with frequencies below 69 MHz may not be available. This limitation is dependent upon the HW version installed and number of channels enabled. ")
apex_qam_rf_config_rf_center_freq_channel_a = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(57000000, 999000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigRfCenterFreqChannelA.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigRfCenterFreqChannelA.setDescription("The RF Center Frequency for QAM Channel A. When QAM Transmission Mode is 'annexA-DVB' the range is 85,000,000 Hz to 999,000,000 Hz in 250,000 Hz steps. For 2x4/2x8 QAM Modules: When QAM Transmission Mode is 'annexB-ATSC-DCII' or 'annexC-Asia-Pacific' the range is 57,000,000 Hz to 999,000,000 Hz in 250,000 Hz steps. For 4x4 QAM Modules: When QAM Transmission Mode is 'annexB-ATSC-DCII' or 'annexC-Asia-Pacific' the range may be limited to 69,000,000 Hz to 999,000,000 Hz in 250,000 Hz steps. This limitation is dependent upon the HW version installed and number of channels enabled. The APEX will correct values not on a 250 kHz boundary so the user or management system does not need to enforce the step size. This parameter is configurable ONLY when Tuning Mode is 'frequency'. When Tuning Mode is 'channel', the value is set by the APEX using the selected Frequency Plan. @Range(step=250000) ")
apex_qam_rf_config_rf_chan_spacing = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1000000, 8000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigRfChanSpacing.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigRfChanSpacing.setDescription("The Channel spacing for the QAM Channels enabled on the RF Port. This value must be in Hz in the range 1,000,000 Hz to 8,000,000 Hz in 500,000 Hz steps. The APEX will correct values not on a 500,000 Hz boundary so the user or management system does not need to enforce the step size. For 2x4/2x8 QAM Modules: When Transmission Mode is 'annexA-DVB' this value is configurable. Note that number of channels enabled can be affected by changing channel spacing. The total bandwidth of the RF must not exceed 48 MHz. For 2x4/2x8 QAM Modules: When Transmission Mode is 'annexB-ATSC-DCII' or 'annexC-Asia-Pacific' this value is fixed and is set by the APEX. For 4x4 QAM Modules: This value is fixed and is set by the APEX. @Range(step=500000) ")
apex_qam_rf_config_rf_level_attenuation = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(-300, 800))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigRfLevelAttenuation.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigRfLevelAttenuation.setDescription("The RF level attenuation setting of each enabled channel on the RF Port. Range is -300 to 800 representing -3 to 8 dB attenuation in 0.01 dB steps. (See 'Note' below.) Positive values are the amount below the nominal RF output level for the number of channels enabled on the RF Port. Negative values are the amount above the nominal. Number Nominal dBmV dBmV Channels dBmV W/-300 W/800 1 60 63 52 2 56 59 48 4 52 55 44 6 50 53 42 8 49 52 41 Note: Early APEX only supported attenuation. Gain was added later, hence the negative attenuation values for this parameter. For clarity, the APEX Element Manager display indicates 'RF Level Adjust', with a user selectable range of -8.00 to +3.00 dB, rather than 'Attenuation'. The APEX EM then sets this MIB parameter appropriately. ")
apex_qam_rf_config_rf_level_low_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigRfLevelLowThreshold.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigRfLevelLowThreshold.setDescription('The threshold delta relative to the configured RF level that will indicate an RF Low condition. The measured output must drop this amount for RF Low condition. Range is 0 to 100 representing 0 to 10 dB in 0.1 dB steps. ')
apex_qam_rf_config_rf_level_high_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigRfLevelHighThreshold.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigRfLevelHighThreshold.setDescription('The threshold delta relative to the configured RF level that will indicate an RF High condition. The measured output must rise this amount for RF High condition. Range is 0 to 100 representing 0 to 10 dB in 0.1 dB steps. ')
apex_qam_rf_config_mute = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('unmute', 1), ('mute', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigMute.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigMute.setDescription('Mute the RF Port. This will mute all QAM channels enabled on the RF Port. ')
apex_qam_rf_config_interleaver_depth1 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=named_values(('i64-j2', 1), ('i32-j4', 2), ('i16-j8', 3), ('i8-j16', 4), ('i128-j1', 5), ('i128-j2', 6), ('i128-j3', 7), ('i128-j4', 8), ('i128-j5', 9), ('i128-j6', 10), ('i128-j7', 11), ('i128-j8', 12), ('i12-j17', 13)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigInterleaverDepth1.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigInterleaverDepth1.setDescription("The first of two Interleaver settings that can be assigned to the QAM Channels of this RF Port. Configurable only for Transmission Mode 'annexB-ATSC-DCII'. Values 1 to 12 used only for Transmission Mode 'annexB-ATSC-DCII'. Value 13 (i12-j17) used only for Transmission Modes 'annexA-DVB' and 'annexC-Asia-Pacific' and is set by the APEX. ")
apex_qam_rf_config_interleaver_depth2 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 4, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=named_values(('i64-j2', 1), ('i32-j4', 2), ('i16-j8', 3), ('i8-j16', 4), ('i128-j1', 5), ('i128-j2', 6), ('i128-j3', 7), ('i128-j4', 8), ('i128-j5', 9), ('i128-j6', 10), ('i128-j7', 11), ('i128-j8', 12), ('i12-j17', 13)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfConfigInterleaverDepth2.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfConfigInterleaverDepth2.setDescription("The second of two Interleaver settings that can be assigned to the QAM Channels of this RF Port. Configurable only for Transmission Mode 'annexB-ATSC-DCII'. Values 1 to 12 used only for Transmission Mode 'annexB-ATSC-DCII'. Value 13 (i12-j17) used only for Transmission Modes 'annexA-DVB' and 'annexC-Asia-Pacific' and is set by the APEX. ")
apex_qam_channel_config_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 5))
if mibBuilder.loadTexts:
apexQamChannelConfigTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelConfigTable.setDescription("Table of configuration items configurable on a QAM Channel basis. There are 48 Output Transport Streams (OTS) on an APEX1000. There can be up to 48 QAM Channels on an APEX1000 depending on how the 3 QAM slots are populated. There is a one-to-one mapping between QAM Channels and Output Transport Streams. QAM Channel (OTS) ranges are mapped to QAM slots as follows: Slot Channels 1 1..15 2 15..32 3 33..48 There can be either 4 or 8 QAM channels (OTS) on each RF Port. The slot and RF Port to QAM Channel (OTS) mappings for each QAM Module type are shown below. For a 2x4 or 2x8 QAM Module, QAM Channels (OTS) are mapped to RF Ports in a QAM Slot and table rows as follows: QAM Channel RF Port and OTS Slot/Port Table Row Table Rows 1/1 1 1..8 1/2 2 9..16 2/1 5 17..24 2/2 6 25..32 3/1 9 33..40 3/2 10 41..48 If a 2x4 QAM Module is in a slot, only the first four rows in this table for the slot/port are to be used. For example, if there is a 2x4 module in slot 3, rows 8..12 are to be used for configuring the QAM Channels of RF Port 1 on the module. For a 4x4 QAM Module, QAM Channels (OTS) are mapped to RF Ports in a QAM Slot and table rows as follows: QAM Channel RF Port and OTS Slot/Port Table Row Table Rows 1/1 1 1..4 1/2 2 5..8 1/3 7 9..12 1/4 8 13..16 2/1 3 17..20 2/2 4 21..24 2/3 9 25..28 2/4 10 29..32 3/1 5 33..36 3/2 6 37..40 3/3 11 41..44 3/4 12 45..48 Note that the QAM Channels on an RF Port are designated with the letters 'A'..'H' on the APEX Element Manager. Refer to the description of apexQamChannelConfigTable for information on QAM Channel to RF Port mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. Once written, the change to this table will only take immediate effect after apexQamConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamChannelConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_qam_channel_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 5, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamChanConfigChannelNum'))
if mibBuilder.loadTexts:
apexQamChannelConfigEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelConfigEntry.setDescription('QAM Channel Configuration Table Entry.')
apex_qam_chan_config_channel_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexQamChanConfigChannelNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamChanConfigChannelNum.setDescription('The QAM RF Port number.')
apex_qam_chan_config_interleaver_select = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('interleaverDepth1', 1), ('interleaverDepth2', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamChanConfigInterleaverSelect.setStatus('current')
if mibBuilder.loadTexts:
apexQamChanConfigInterleaverSelect.setDescription('The interleaver selection for this Channel. Will use either apexQamRfConfigInterleaverDepth1 or apexQamRfConfigInterleaverDepth2. ')
apex_qam_chan_config_test_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 5, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2, 3, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17))).clone(namedValues=named_values(('off', 0), ('cwtest', 2), ('prbs23m', 3), ('prbs23', 5), ('mpegNull', 6), ('suppress', 9), ('prbs60', 10), ('prbs63', 11), ('prbs65', 12), ('prbs68', 13), ('prbs71', 14), ('prbs73', 15), ('prbs79', 16), ('prbs81', 17)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamChanConfigTestMode.setStatus('current')
if mibBuilder.loadTexts:
apexQamChanConfigTestMode.setDescription("Test mode setting for the QAM Channel. Setting to other than 'off' will cause a service interruption. ")
apex_qam_rf_redund_config_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 1), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfRedundConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundConfigApplyChange.setDescription("The Apply for QAM RF Redundancy Configuration parameters. This parameter MUST be set to 'apply' in order for the data to take effect. This parameter MUST be set LAST after all QAM RF Redundancy parameters affected by this parameter have been configured. @Config(config=no, reboot=no) ")
apex_qam_rf_redund_config_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfRedundConfigEnable.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundConfigEnable.setDescription("Enables RF redundancy mode, allowing the APEX to failover to backup RF port and communicate with the REM1000. Allows for failover/ switching without requiring a REM1000 connection. Cannot be 'enabled' if the backup port (RF Port 6) is not present (there is no QAM Module in QAM slot 3). Cannot be 'enabled' if there are any mappings to any QAM Channel on the backup port. RF Port 6, QAM Channels 6A to 6H (Output Transport Streams 41 to 48). Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_qam_rf_redund_config_rem_connection = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('direct', 1), ('common', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfRedundConfigRemConnection.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundConfigRemConnection.setDescription("Configures how the APEX is connected to the REM1000. 'none' - Not connecting to REM1000. 'direct' - Connected to REM1000 dedicated IP interface through APEX Data IP (Enet2). Broadcast connection is always used in this case. Cannot be set to 'direct' if the QAM RF Redundancy UDP Port is in use on the Data IP Port (Enet2). QAM RF Redundancy UDP Port value is found in apexQamRfRedundStatusUdpPort. 'common' - Connected to REM1000 OAM&P interface through APEX OAM&P IP (Enet 1). Requires user to configure REM1000 IP address in apexQamRfRedundConfigRemCommonIpAddr. Cannot be set to 'common' if the QAM RF Redundancy UDP Port is in use on the OAM&P IP (Enet 1). QAM RF Redundancy UDP Port value is found in apexQamRfRedundStatusUdpPort. Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_qam_rf_redund_config_apex_id = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfRedundConfigApexId.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundConfigApexId.setDescription("Identifies which set of RF inputs on the REM1000 are associated with this APEX. Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_qam_rf_redund_config_rem_common_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfRedundConfigRemCommonIpAddr.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundConfigRemCommonIpAddr.setDescription("Target REM1000 IP address. Must be singlecast address. Only used when apexQamRfRedundConfigRemConnection is set to 'common'. Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_qam_rf_redund_config_auto_switch_back = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 6), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfRedundConfigAutoSwitchBack.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundConfigAutoSwitchBack.setDescription("This is the enable/disable of automatic switch back to the previous RF port from backup for QAM RF redundancy. When 'enabled', switch back to the previous RF port will automatically occur when the RF port comes back online. When 'disabled', the user must force back to the previous RF port using apexQamRfRedundConfigForceSwitch. Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini')")
apex_qam_rf_redund_config_suspend_failover = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 7), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfRedundConfigSuspendFailover.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundConfigSuspendFailover.setDescription("Enables and disables suspending of RF failover. Prevents failovers to or from backup. Force failover (apexQamRfRedundConfigForceSwitch) overrides this setting. Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_qam_rf_redund_config_force_switch = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('switchNotInProgress', 0), ('forceFrom1', 1), ('forceFrom2', 2), ('forceFrom3', 3), ('forceFrom4', 4), ('forceFrom5', 5), ('forceFromBackup', 6)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfRedundConfigForceSwitch.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundConfigForceSwitch.setDescription("Force a switch of an RF Port to or from the backup. Selects which RF Port to switch from. Overrides Suspend Failover (apexQamRfRedundConfigSuspendFailover). Parameter is ignored when: - apexQamRfRedundConfigEnable is 'disabled'. - backup is active and other than 'forceFromBackup' is selected. - backup is not active and 'forceFromBackup' is selected. 'forceFromBackup' will force back to the failed primary indicated in apexQamRfRedundStatusFailedPort. APEX sets back to 'switchNotInProgress' when complete. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apex_qam_rf_redund_config_rem_direct_ip_octet1 = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 6, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(1, 126))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamRfRedundConfigRemDirectIpOctet1.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundConfigRemDirectIpOctet1.setDescription("Target REM1000 IP address first octet. Only used when apexQamRfRedundConfigRemConnection is set to 'direct'. The remainder of the IP address will be filled in by the APEX. The IP address used will be reflected in apexDataIpAddrInUse. Once written, the change to this parameter will only take immediate effect after apexQamRfRedundConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexQamRfRedundConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_qam_channel_config_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 7))
if mibBuilder.loadTexts:
apexQamChannelConfigApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelConfigApplyTable.setDescription('Table of Apply Change for the data for apexQamChannelConfigTable. ')
apex_qam_channel_config_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 7, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamChannelConfigApplyChannelNum'))
if mibBuilder.loadTexts:
apexQamChannelConfigApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelConfigApplyEntry.setDescription('QAM Channel Configuration Apply Table Entry.')
apex_qam_channel_config_apply_channel_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 7, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexQamChannelConfigApplyChannelNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelConfigApplyChannelNum.setDescription('The QAM Channel number.')
apex_qam_channel_config_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 1, 7, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQamChannelConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelConfigApplyChange.setDescription("The Apply for a row of data in apexQamChannelConfigTable. A row in this table corresponds to the same row index in the apexQamChannelConfigTable. This parameter MUST be set to 'apply' in order for any of the data in the rows to take effect in the APEX. This parameter MUST be set LAST after all other data in the configuration table rows has been configured. @Config(config=no, reboot=no) ")
apex_qam_status_transmission_mode = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('annexB-ATSC-DCII', 1), ('annexA-DVB', 2), ('annexC-Asia-Pacific', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamStatusTransmissionMode.setStatus('current')
if mibBuilder.loadTexts:
apexQamStatusTransmissionMode.setDescription('This is the QAM Transmission Mode that is currently in use. QAM Transmission Mode is defined in: Series J: Transmission of Television, Sound Programme and other Multimedia Signals, ITU-T J.83. ')
apex_qam_module_installed_count = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleInstalledCount.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleInstalledCount.setDescription('Number of hot swappable QAM Modules currently installed.')
apex_fan_module_installed_count = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexFanModuleInstalledCount.setStatus('current')
if mibBuilder.loadTexts:
apexFanModuleInstalledCount.setDescription('Number of Fan-Only Modules currently installed in QAM Module slots.')
apex_qam_channels_active_count = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamChannelsActiveCount.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelsActiveCount.setDescription('Number of QAM Channels that are present (QAM Module installed) and enabled for use.')
apex_qam_module_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2))
if mibBuilder.loadTexts:
apexQamModuleStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatusTable.setDescription('Table of QAM Module Status. Refer to the descriptions of apexQamRfConfigTable and apexQamChannelConfigTable for information on QAM slot, RF Port mapping, and QAM Channel mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. ')
apex_qam_module_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamModuleStatQamModuleNum'))
if mibBuilder.loadTexts:
apexQamModuleStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatusEntry.setDescription('QAM Module Status Table Entry.')
apex_qam_module_stat_qam_module_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 3)))
if mibBuilder.loadTexts:
apexQamModuleStatQamModuleNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatQamModuleNum.setDescription('QAM Module slot number. ')
apex_qam_module_stat_installed = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('notApplicable', 0), ('notInstalled', 1), ('qam2x4Channel', 2), ('qam2x8Channel', 3), ('fanModule', 4), ('unsupported', 5), ('removed', 6), ('qamDiscovery', 7), ('qam4x4Channel', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatInstalled.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatInstalled.setDescription('Indicates if a module is installed and what type. notApplicable - When APEX does not boot properly. notInstalled - No QAM or Fan Module detected in slot. Reported in apexAlarmQamModuleFault. qam2x4Channel - A 2x4 Channel QAM Module installed. qam2x8Channel - A 2x8 Channel QAM Module installed. fanModule - A Fan Module installed. unsupported - Unknown module installed. Reported in apexAlarmQamModuleFault. removed - A QAM Module removed when there are active QAM channels. Reported in apexAlarmQamModuleFault. qamDiscovery - A QAM Module is present and type is being determined. qam4x4Channel - A 4x4 Channel QAM Module is installed. ')
apex_qam_module_stat_fan_speed = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 3), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatFanSpeed.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatFanSpeed.setDescription('The fan speed in RPM for installed QAM or Fan Module. Zero if not installed. ')
apex_qam_module_stat_fan_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatFanFault.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatFanFault.setDescription('Fan Fault. This fault is reported in apexAlarmFanFault not apexAlarmQamModuleFault. ')
apex_qam_module_stat_temperature = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatTemperature.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatTemperature.setDescription('Temperature at sensor near the fan of the QAM Module or Fan Module in degrees Celsius. ')
apex_qam_module_stat_temperature_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('overTemp', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatTemperatureFault.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatTemperatureFault.setDescription('Temperature fault. This fault is reported in apexAlarmTemperatureFault not apexAlarmQamModuleFault. ')
apex_qam_module_stat_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('removed', 2), ('unsupported', 3), ('notInstalled', 4), ('powerFault', 5), ('offline', 6), ('dc5VoltError', 7), ('dc3-3VoltError', 8), ('commLost', 9), ('codeVersions', 10), ('codeDownload', 11), ('codeDownloadError', 12)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatError.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatError.setDescription('Summary of errors reported on an QAM Module basis. These errors are reported in apexAlarmQamModuleFault. ok - No errors. removed - Reflects apexQamModuleStatInstalled. unsupported - Reflects apexQamModuleStatInstalled. notInstalled - Reflects apexQamModuleStatInstalled. powerFault - Reflects apexQamModuleStatPowerFault. offline - Indicates the QAM Module and the RF Ports on it are being brought to operational mode after module is inserted or the module has recovered from a power fault. dc5VoltError - 5 Vdc error, see also apexQamModuleStat5VdcSupply and apexQamModuleStat5VdcFault. dc3-3VoltError - 3.3 Vdc error, see also apexQamModuleStat3dot3VdcSupply and apexQamModuleStat3dot3VdcFault. commLost - Communication Lost, see also apexQamModuleStatCommError. codeVersions - Incorrect Code Versions on module, see also apexQamModuleStatCodeInitError, apexQamQrmRevisionTable, and apexQamQrmRevisionStatusTable. codeDownload - Code Download In Progress, see also apexQrmDownloadStatusTable. codeDownloadError - Code Download Error, see also apexQrmDownloadStatusTable. ')
apex_qam_module_stat_fault_condition = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatFaultCondition.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatFaultCondition.setDescription('Current fault condition of the QAM Module errors. Reflects apexAlarmQamModuleFault for this QAM Module. ')
apex_qam_module_stat_fault_summ = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatFaultSumm.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatFaultSumm.setDescription('Roll-up of QAM RF Port and QAM Channel fault conditions for this QAM Module. ')
apex_qam_module_stat_power_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('lowVoltageMainboard', 2), ('lowVoltageQamModule', 3), ('overCurrent', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatPowerFault.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatPowerFault.setDescription('Power fault. notApplicable - No module installed. ok - Power good. lowVoltageMainboard - Low voltage detected on Mainboard side of connector. lowVoltageQamModule - Low voltage detected on QAM Module side of connector. overCurrent - Over current detected on QAM Module. This fault is reported in apexAlarmQamModuleFault. ')
apex_qam_module_stat_board_temperature = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatBoardTemperature.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatBoardTemperature.setDescription("Temperature of the 4x4 QAM module board ('plate' temp) in degrees Celsius. Used only for 4x4 QAM Modules. ")
apex_qam_module_stat_board_temperature_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('overTemp', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatBoardTemperatureFault.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatBoardTemperatureFault.setDescription("Board temperature fault of the 4x4 QAM module board ('plate' temp). Used only for 4x4 QAM Modules. This fault is reported in apexAlarmTemperatureFault not apexAlarmQamModuleFault. ")
apex_qam_module_stat5_vdc_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStat5VdcSupply.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStat5VdcSupply.setDescription('Measured level of the +5 VDC supply input of the 4x4 QAM module board. Used only for 4x4 QAM Modules. Range is 0 to 1000 representing 0 to 10 Volts in 0.01 Volt steps. ')
apex_qam_module_stat5_vdc_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('low', 2), ('high', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStat5VdcFault.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStat5VdcFault.setDescription('The +5 VDC supply fault of the 4x4 QAM module board. Used only for 4x4 QAM Modules. Indicates there is a problem with the direct 5 VDC supply or any internal module supply derived from the 5 VDC supply. Indicates voltage problem that can impair module function. ')
apex_qam_module_stat3dot3_vdc_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStat3dot3VdcSupply.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStat3dot3VdcSupply.setDescription('Measured level of the +3.3 VDC supply input of the 4x4 QAM module board. Used only for 4x4 QAM Modules. Range is 0 to 1000 representing 0 to 10 Volts in 0.01 Volt steps. ')
apex_qam_module_stat3dot3_vdc_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('low', 2), ('high', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStat3dot3VdcFault.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStat3dot3VdcFault.setDescription('The +3.3 VDC supply fault of the 4x4 QAM module board. Used only for 4x4 QAM Modules. Indicates there is a problem with the direct 3.3 VDC supply or any internal module supply derived from the 3.3 VDC supply. Indicates voltage problem that can impair module function. ')
apex_qam_module_stat_comm_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('inComm', 1), ('commLost', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatCommError.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatCommError.setDescription('Communication with the 4x4 QAM Module has failed. Used only for 4x4 QAM Modules. ')
apex_qam_module_stat_code_init_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleStatCodeInitError.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleStatCodeInitError.setDescription('Code initialization error of the 4x4 QAM Module. Used only for 4x4 QAM Modules. Indicates a code, firmware, or FPGA startup issue. The module failed to load the FW/FPGA files to the devices or valid FW/FPGA files could not be found in the module. Code download is required to restore the module. ')
apex_qam_module_serial_num_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 3))
if mibBuilder.loadTexts:
apexQamModuleSerialNumTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleSerialNumTable.setDescription('Table of QAM Module Serial Numbers. ')
apex_qam_module_serial_num_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamModuleSerialNumQamModuleNum'))
if mibBuilder.loadTexts:
apexQamModuleSerialNumEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleSerialNumEntry.setDescription('QAM Module Serial Number Table Entry.')
apex_qam_module_serial_num_qam_module_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 3)))
if mibBuilder.loadTexts:
apexQamModuleSerialNumQamModuleNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleSerialNumQamModuleNum.setDescription('QAM Module slot number.')
apex_qam_module_serial_number = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 3, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamModuleSerialNumber.setStatus('current')
if mibBuilder.loadTexts:
apexQamModuleSerialNumber.setDescription('The serial number of an installed QAM Module. Zero if not installed.')
apex_qam_qrm_revision_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4))
if mibBuilder.loadTexts:
apexQamQrmRevisionTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevisionTable.setDescription('Table of QAM Module hardware and software revisions. There are 2 QRM modules on each 2x4/2x8 QAM Module. QRMs in QAM Module slots are mapped to table rows as follows: Slot/QRM Table Row 1/1 1 1/2 2 2/1 3 2/2 4 3/1 5 3/2 6 4x4 QAM Modules do not use QRM boards. There is only one board. These will be found in the odd indexed rows of this table. The even indexed rows of the table are not used for 4x4 QAM Modules. 4x4 QAM Modules in QAM Module slots are mapped to table rows as follows: Slot Table Row 1 1 2 3 3 5 ')
apex_qam_qrm_revision_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamQrmRevRfPortNum'))
if mibBuilder.loadTexts:
apexQamQrmRevisionEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevisionEntry.setDescription('QAM Module Revision Table Entry.')
apex_qam_qrm_rev_rf_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 6)))
if mibBuilder.loadTexts:
apexQamQrmRevRfPortNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevRfPortNum.setDescription('QAM Module Revision Table index.')
apex_qam_qrm_rev_board_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevBoardId.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevBoardId.setDescription("Model ID of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Hex XXYY.")
apex_qam_qrm_rev_app_fw = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevAppFw.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevAppFw.setDescription("Application firmware version of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Hex XXYY where XX is major version and YY is minor version. 'FFFF' indicates no valid application code is present.")
apex_qam_qrm_rev_boot_loader_fw = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevBootLoaderFw.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevBootLoaderFw.setDescription("Boot loader firmware version of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Hex XXYY where XX is major version and YY is minor version.")
apex_qam_qrm_rev_fpga = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevFpga.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevFpga.setDescription("FPGA version of the 2x4/2x8 QAM Module's QRM board or FPGA1 version of the 4x4 QAM Module. Hex XXYY where XX is major version and YY is minor version.")
apex_qam_qrm_rev_hw = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevHw.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevHw.setDescription("Hardware version of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Hex XXYY where XX is major version and YY is minor version.")
apex_qam_qrm_rev_serial_number = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevSerialNumber.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevSerialNumber.setDescription("The serial number of the 2x4/2x8 QAM Module's QRM board. Used only for 2x4/2x8 QAM Modules. Zero if not installed.")
apex_qam_qrm_rev_fpga2 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 4, 1, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevFpga2.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevFpga2.setDescription('FPGA2 version of the 4x4 QAM Module. Used only for 4x4 QAM Modules. Hex XXYY where XX is major version and YY is minor version. ')
apex_qam_rf_port_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5))
if mibBuilder.loadTexts:
apexQamRfPortStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatusTable.setDescription('Table of QAM RF Port Status. Refer to the descriptions of apexQamRfConfigTable and apexQamChannelConfigTable for information on QAM slot, RF Port mapping, and QAM Channel mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. ')
apex_qam_rf_port_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamRfPortStatRfPortNum'))
if mibBuilder.loadTexts:
apexQamRfPortStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatusEntry.setDescription('QAM RF Port Status Table Entry.')
apex_qam_rf_port_stat_rf_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12)))
if mibBuilder.loadTexts:
apexQamRfPortStatRfPortNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatRfPortNum.setDescription('RF Port number.')
apex_qam_rf_port_stat_info_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatInfoRate.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatInfoRate.setDescription('The information rate of the QAM channels on this RF Port in bits per second.')
apex_qam_rf_port_stat_num_channels_active = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatNumChannelsActive.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatNumChannelsActive.setDescription('Number of QAM Channels that are present (QAM Module installed) and enabled for use on this RF Port.')
apex_qam_rf_port_stat_output_level = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 8000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatOutputLevel.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatOutputLevel.setDescription('Measured per channel RF Output Level. Range is 0 to 8000 representing 0 to 80 dBmV in 0.01 dBmV steps.')
apex_qam_rf_port_stat_output_level_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('low', 2), ('high', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatOutputLevelFault.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatOutputLevelFault.setDescription('RF Output Level fault. Indicates if the user configured apexQamRfConfigRfLevelLowThreshold or apexQamRfConfigRfLevelHighThreshold has been reached.')
apex_qam_rf_port_stat_temperature = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatTemperature.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatTemperature.setDescription("Temperature of the 2x4/2x8 QAM Module's QRM board ('plate' temp) in degrees Celsius. Used only for 2x4/2x8 QAM Modules. ")
apex_qam_rf_port_stat_temperature_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('overTemp', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatTemperatureFault.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatTemperatureFault.setDescription("Temperature fault of the 2x4/2x8 QAM Module's QRM board ('plate' temp). Used only for 2x4/2x8 QAM Modules. This fault is reported in apexAlarmTemperatureFault not apexAlarmQamRfPortFault.")
apex_qam_rf_port_stat5_vdc_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStat5VdcSupply.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStat5VdcSupply.setDescription("Measured level of the +5 VDC supply input of the 2x4/2x8 QAM Module's QRM board. Used only for 2x4/2x8 QAM Modules. Range is 0 to 1000 representing 0 to 10 Volts in 0.01 Volt steps.")
apex_qam_rf_port_stat5_vdc_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('low', 2), ('high', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStat5VdcFault.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStat5VdcFault.setDescription("The +5 VDC supply fault of the 2x4/2x8 QAM Module's QRM board. Used only for 2x4/2x8 QAM Modules. Indicates voltage problem that can impair QRM function.")
apex_qam_rf_port_stat3dot3_vdc_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStat3dot3VdcSupply.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStat3dot3VdcSupply.setDescription("Measured level of the +3.3 VDC supply input of the 2x4/2x8 QAM Module's QRM board. Used only for 2x4/2x8 QAM Modules. Range is 0 to 1000 representing 0 to 10 Volts in 0.01 Volt steps.")
apex_qam_rf_port_stat3dot3_vdc_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('low', 2), ('high', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStat3dot3VdcFault.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStat3dot3VdcFault.setDescription("The +3.3 VDC supply fault of the 2x4/2x8 QAM Module's QRM board. Used only for 2x4/2x8 QAM Modules. Indicates voltage problem that can impair QRM function.")
apex_qam_rf_port_stat_freq_pll_lock = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('locked', 1), ('notLocked', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatFreqPllLock.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatFreqPllLock.setDescription('Frequency tuning PLL lock status.')
apex_qam_rf_port_stat_ref_clock_present = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('present', 1), ('notPresent', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatRefClockPresent.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatRefClockPresent.setDescription('External reference clock present indication.')
apex_qam_rf_port_stat_ref_clock_lock = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('locked', 1), ('notLocked', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatRefClockLock.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatRefClockLock.setDescription('Board not phase-locked to the External reference clock. ')
apex_qam_rf_port_stat_data_clock_present = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('present', 1), ('notPresent', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatDataClockPresent.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatDataClockPresent.setDescription('Data clock present indication.')
apex_qam_rf_port_stat_data_sync_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('inSync', 1), ('syncLost', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatDataSyncFault.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatDataSyncFault.setDescription('One or more of the QAM Channel data interfaces is not synchronized.')
apex_qam_rf_port_stat_comm_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('inComm', 1), ('commLost', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatCommError.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatCommError.setDescription("Communication with the 2x4/2x8 QAM Module's QRM board has failed. ")
apex_qam_rf_port_stat_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('outputRfLevel', 2), ('dc5VoltError', 3), ('dc3-3VoltError', 4), ('freqPllNotLocked', 5), ('extClkNotPresent', 6), ('extClkNotLocked', 7), ('dataClkNotPresent', 8), ('dataSyncLost', 9), ('commLost', 10), ('unsupportedQrm', 11), ('configFailed', 12), ('codeVersions', 13), ('codeDownload', 14), ('codeDownloadError', 15)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatError.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatError.setDescription("Error status on an RF Port basis. These errors are reported in apexAlarmQamRfPortFault. 'major' for: 'outputRfLevel', 'dc5VoltError', 'dc3-3VoltError'. 'critical' for: 'freqPllNotLocked', 'extClkNotPresent', 'extClkNotLocked', 'dataClkNotPresent', 'dataSyncLost', 'commLost', 'codeVersions', 'codeDownload', 'codeDownloadError', 'unsupportedQrm', or 'configFailed'. outputRfLevel - RF Output Level error, see also apexQamRfPortStatOutputLevel and apexQamRfPortStatOutputLevelFault. dc5VoltError - 5 Vdc error, see also apexQamRfPortStat5VdcSupply and apexQamRfPortStat5VdcFault. dc3-3VoltError - 3.3 Vdc error, see also apexQamRfPortStat3dot3VdcSupply and apexQamRfPortStat3dot3VdcFault. freqPllNotLocked - Frequency PLL not locked, see also apexQamRfPortStatFreqPllLock. extClkNotPresent - External Reference Clock Not Present, see also apexQamRfPortStatRefClockPresent. extClkNotLocked - Not Locked to External Reference Clock, see also apexQamRfPortStatRefClockLock. dataClkNotPresent - Data Clock Not Present, see also apexQamRfPortStatDataClockPresent. dataSyncLost - Data Synchronization Lost, see also apexQamRfPortStatDataSyncFault. commLost - Communication Lost, see also apexQamRfPortStatCommError. unsupportedQrm - QRM Revision Not Supported, see also apexQamQrmRevisionTable and apexQamQrmRevisionStatusTable. configFailed - RF Port Configuration Failed. codeVersions - Incorrect Code Versions on QRM, see also apexQamRfPortStatCodeInitError, apexQamQrmRevisionTable, and apexQamQrmRevisionStatusTable. codeDownload - Code Download In Progress, see also apexQrmDownloadStatusTable. codeDownloadError - Code Download Error, see also apexQrmDownloadStatusTable. ")
apex_qam_rf_port_stat_fault_condition = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatFaultCondition.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatFaultCondition.setDescription('Current fault condition of the RF Port errors. Reflects apexAlarmQamRfPortFault for this RF Port. ')
apex_qam_rf_port_stat_chan_fault_summ = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatChanFaultSumm.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatChanFaultSumm.setDescription('Roll-up of Channel fault conditions for this RF Port.')
apex_qam_rf_port_stat_code_init_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 5, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('fpgaInitError', 2), ('calDataError', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortStatCodeInitError.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortStatCodeInitError.setDescription("Code initialization error of the 2x4/2x8 QAM Module's QRM board. Indicates a code, firmware, or FPGA startup issue. 'fpgaInitError' - FPGA not loaded. Caused by incompatible code images or corrupted FPGA image on the QRM. 'calDataError' - Working copy of calibration data was corrupted and needs to be restored by code download process. Caused by interruption of previous code download process. ")
apex_qam_channel_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6))
if mibBuilder.loadTexts:
apexQamChannelStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelStatusTable.setDescription('Table of QAM Channel Status. Refer to the descriptions of apexQamRfConfigTable and apexQamChannelConfigTable for information on QAM slot, RF Port mapping, and QAM Channel mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. ')
apex_qam_channel_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamChanStatChannelNum'))
if mibBuilder.loadTexts:
apexQamChannelStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelStatusEntry.setDescription('QAM Channel Status Table Entry.')
apex_qam_chan_stat_channel_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexQamChanStatChannelNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamChanStatChannelNum.setDescription('QAM Channel number.')
apex_qam_chan_stat_active = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 2), active_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamChanStatActive.setStatus('current')
if mibBuilder.loadTexts:
apexQamChanStatActive.setDescription("'active' indicates that mappings can be made to the channel. This means that either: 1) The channel is present (apexQamModuleStatInstalled 'qam2x4Channel' or 'qam2x8Channel') and enabled for use (apexQamRfConfigNumChannelsEnabled); 2) Or, the channel is on the backup RF port when QAM RF Redundancy is enabled (apexQamRfRedundConfigEnable). ")
apex_qam_chan_stat_rf_freq = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamChanStatRfFreq.setStatus('current')
if mibBuilder.loadTexts:
apexQamChanStatRfFreq.setDescription('The center frequency for the QAM Channel in Hz.')
apex_qam_chan_stat_eia_chan_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamChanStatEiaChanNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamChanStatEiaChanNum.setDescription('The EIA Channel number for the QAM Channel. Will be zero if there is no EIA Channel number corresponding to the frequency in use.')
apex_qam_chan_stat_data_present = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('data', 1), ('noData', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamChanStatDataPresent.setStatus('current')
if mibBuilder.loadTexts:
apexQamChanStatDataPresent.setDescription('Indication of MPEG data activity on the interface for this QAM channel. This includes MPEG null packets.')
apex_qam_chan_stat_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('noData', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamChanStatError.setStatus('current')
if mibBuilder.loadTexts:
apexQamChanStatError.setDescription('Summary of errors reported on a QAM channel. This is enumerated and the reported error will be the most severe. ')
apex_qam_chan_stat_fault_condition = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 6, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamChanStatFaultCondition.setStatus('current')
if mibBuilder.loadTexts:
apexQamChanStatFaultCondition.setDescription('Current fault condition of the QAM channel errors. Reflects apexAlarmQamChannelFault for this QAM Channel. ')
apex_qam_rf_redund_status_backup_port = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('disabled', 0), ('standby', 1), ('active', 2), ('failed', 3), ('removed', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfRedundStatusBackupPort.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundStatusBackupPort.setDescription("State of configured backup port. 'disabled' - QAM RF Redundancy is disabled. 'standby' - QAM RF Redundancy is enabled but backup is inactive. No failure has occurred. 'active' - Failover has occurred and backup is active. Refer to apexQamRfRedundStatusFailedPort for port being backed up. 'failed' - Backup port has failed. APEX cannot provide RF redundancy. 'removed' - QAM Module with Backup port has been removed. APEX cannot provide RF redundancy. ")
apex_qam_rf_redund_status_failed_port = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfRedundStatusFailedPort.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundStatusFailedPort.setDescription('Indicates which port (1 to 5) has failed over to the backup port. Zero indicates backup port is not active. ')
apex_qam_rf_redund_status_mismatch = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('notApplicable', 0), ('noMismatch', 1), ('backup2x4', 2), ('primary2x4', 3), ('any4x4', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfRedundStatusMismatch.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundStatusMismatch.setDescription("Indicates whether there is a potential for channels being lost when failing to the backup or when switching back to a primary due to a mixture of 2x4 and 2x8 QAM Modules. Indicates whether RF redundancy is unavailable due to a 4x4 QAM Module installed. A 2x4 QAM Module is capable of supporting a maximum of 4 channels per RF port. A 2x8 QAM Module is capable of supporting a maximum of 8 channels per RF port. The number of channels enabled (apexQamRfConfigNumChannelsEnabled) is not considered. 'notApplicable' - QAM RF Redundancy is disabled. 'noMismatch' - Indicates no channels would be lost because there is no mismatch. 'backup2x4' - Indicates a loss of channels could occur on failover to the backup because the backup RF Port is in a 2x4 module and at least one primary RF Port is in a 2x8 module. 'primary2x4' - Indicates a loss of channels could occur on switch- back from the backup to the primary because the backup RF Port is in a 2x8 module and the primary RF Port is in a 2x4 module. This would occur if the failed 2x8 primary is replaced with a 2x4. 'any4x4' - Indicates a 4x4 QAM Module is installed in any slot and RF Redundancy is not available. Failover and/or switchback are suspended until the 4x4 is replaced. ")
apex_qam_rf_redund_status_udp_port = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfRedundStatusUdpPort.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundStatusUdpPort.setDescription("UDP Port that is used for QAM RF Redundancy communication between the APEX and REM. When apexQamRfRedundConfigRemConnection is: 'direct' - APEX sends/receives broadcast on this UDP Port. 'common' - APEX sends/receives singlecast on this UDP Port. ")
apex_qam_rf_redund_status_rem_connection = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('notApplicable', 0), ('notConnected', 1), ('connected', 2), ('connectionLost', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfRedundStatusRemConnection.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundStatusRemConnection.setDescription("State of communication with REM. 'notApplicable' - QAM RF Redundancy is not enabled and/or the connection to the REM is not enabled. 'notConnected' - Initial condition. APEX has not sent a switch_port() message yet. 'connected' - received ack() message from REM for current switch_port() message. 'connectionLost' - REM has not replied to last 3 heartbeat switch_port() messages. ")
apex_qam_rf_redund_status_rem_error = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfRedundStatusRemError.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundStatusRemError.setDescription("Status of REM1000 taken from error_code field in REM1000 ack() response (defined in REM1000 Message Stream Protocol). Valid only when apexQamRfRedundConfigRemConnection is other than 'none'. Values as defined in REM1000 MSP: 0x00 - No Errors. No problems switching, parsing switch_port() message, or with HW. 0x01 - Invalid apex_id value in prior switch_port() message. 0x02 - Invalid msg_type value in prior switch_port() message. 0x03 - Invalid port value in prior switch_port() message. 0x04 - Error switching after receiving valid switch_port() message. 0x05 - Minor HW error. REM can still switch. 0x81 - Apex_id Conflict. Switch_port() messages with the same apex_id have been received from multiple APEXs. Switch reset to pass- through configuration. 0x85 - Major HW error. REM failure. Switch reset to pass-through configuration. ")
apex_qam_rf_redund_status_rem_switch = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfRedundStatusRemSwitch.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundStatusRemSwitch.setDescription("Status of the REM1000 switches indicated through ack() response from REM1000 (e.g. pass-through or switching port 'x'). Valid only when apexQamRfRedundConfigRemConnection is other than 'none'. Zero indicates REM is in passing inputs 1 to 5 straight through to outputs 1 to 5. Values of 1 to 5 indicate REM backup input port is switched to output port 1 to 5 and other ports are passed through. ")
apex_qam_rf_redund_status_invalid_apply_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 7, 1, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfRedundStatusInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfRedundStatusInvalidApplyText.setDescription("When apexQamRfRedundConfigApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a related entry that was invalid. ")
apex_qam_rf_port_mute_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 8))
if mibBuilder.loadTexts:
apexQamRfPortMuteStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortMuteStatusTable.setDescription('Table of QAM RF Port Mute Status. ')
apex_qam_rf_port_mute_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 8, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamRfPortMuteStatusRfPortNum'))
if mibBuilder.loadTexts:
apexQamRfPortMuteStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortMuteStatusEntry.setDescription('QAM RF Port Mute Status Table Entry.')
apex_qam_rf_port_mute_status_rf_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 8, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12)))
if mibBuilder.loadTexts:
apexQamRfPortMuteStatusRfPortNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortMuteStatusRfPortNum.setDescription('RF Port number.')
apex_qam_rf_port_mute_status = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 8, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('unmuted', 1), ('muted', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortMuteStatus.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortMuteStatus.setDescription('Indicates whether the QAM channels on the RF port are muted or unmuted. ')
apex_qam_qrm_revision_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9))
if mibBuilder.loadTexts:
apexQamQrmRevisionStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevisionStatusTable.setDescription('Table of status of QRM hardware and software revisions. Indications of whether they are supported, current, etc.. There are 2 QRM modules on each 2x4/2x8 QAM Module. QRMs in QAM Module slots are mapped to table rows as follows: Slot/QRM Table Row 1/1 1 1/2 2 2/1 3 2/2 4 3/1 5 3/2 6 4x4 QAM Modules do not use QRM boards. There is only one board. These will be found in the odd indexed rows of this table. The even indexed rows of the table are not used for 4x4 QAM Modules. 4x4 QAM Modules in QAM Module slots are mapped to table rows as follows: Slot Table Row 1 1 2 3 3 5 ')
apex_qam_qrm_revision_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamQrmRevStatQrmNum'))
if mibBuilder.loadTexts:
apexQamQrmRevisionStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevisionStatusEntry.setDescription('QRM Revision Status Table Entry')
apex_qam_qrm_rev_stat_qrm_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 6)))
if mibBuilder.loadTexts:
apexQamQrmRevStatQrmNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevStatQrmNum.setDescription('QRM Revision Status Table index.')
apex_qam_qrm_rev_stat_board_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('notSupported', 1), ('supported', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevStatBoardId.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevStatBoardId.setDescription("Status of the Model ID of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Refer to apexQamQrmRevisionTable for the revisions of each QRM. ")
apex_qam_qrm_rev_stat_app_fw = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('notApplicable', 0), ('notSupported', 1), ('belowRelease', 2), ('atRelease', 3), ('aboveRelease', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevStatAppFw.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevStatAppFw.setDescription("Status of Application firmware version of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Refer to apexQamQrmRevisionTable for the revisions of each 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Refer to apexQrmFileRevisionTable for the revisions of files in the APEX release resident on the device. ")
apex_qam_qrm_rev_stat_boot_loader_fw = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('notSupported', 1), ('supported', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevStatBootLoaderFw.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevStatBootLoaderFw.setDescription("Status of Boot loader firmware version of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Refer to apexQamQrmRevisionTable for the revisions of each 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. ")
apex_qam_qrm_rev_stat_fpga = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('notApplicable', 0), ('notSupported', 1), ('belowRelease', 2), ('atRelease', 3), ('aboveRelease', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevStatFpga.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevStatFpga.setDescription("Status of FPGA version of the 2x4/2x8 QAM Module's QRM board or FPGA1 version of the 4x4 QAM Module. Refer to apexQamQrmRevisionTable for the revisions of each 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Refer to apexQrmFileRevisionTable for the revisions of files in the APEX release resident on the device. ")
apex_qam_qrm_rev_stat_hw = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('notSupported', 1), ('supported', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevStatHw.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevStatHw.setDescription("Status of Hardware version of the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. Refer to apexQamQrmRevisionTable for the revisions of each 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board. ")
apex_qam_qrm_rev_stat_qrm_supported = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('notSupported', 1), ('supported', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevStatQrmSupported.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevStatQrmSupported.setDescription("Indicates if the 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board is supported. Summary of above status. If any 4x4 QAM Module or the 2x4/2x8 QAM Module's QRM board revision status is 'notSupported' this parameter will indicate 'notSupported' and apexQamRfPortStatError will report 'unsupportedQrm'. ")
apex_qam_qrm_rev_stat_fpga2 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 9, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('notApplicable', 0), ('notSupported', 1), ('belowRelease', 2), ('atRelease', 3), ('aboveRelease', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamQrmRevStatFpga2.setStatus('current')
if mibBuilder.loadTexts:
apexQamQrmRevStatFpga2.setDescription('Status of FPGA2 version of the 4x4 QAM Module. Refer to apexQamQrmRevisionTable for the revisions of each 4x4 QAM Module. Refer to apexQrmFileRevisionTable for the revisions of files in the APEX release resident on the device. ')
apex_qam_rf_port_channel_info_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 10))
if mibBuilder.loadTexts:
apexQamRfPortChannelInfoTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortChannelInfoTable.setDescription('Table of QAM Channel information for each QAM RF Port. Refer to the descriptions of apexQamRfConfigTable and apexQamChannelConfigTable for information on QAM slot, RF Port mapping, and QAM Channel mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. ')
apex_qam_rf_port_channel_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 10, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamRfPortChannelInfoRfPortNum'))
if mibBuilder.loadTexts:
apexQamRfPortChannelInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortChannelInfoEntry.setDescription('QAM RF Port Channel Information Table Entry.')
apex_qam_rf_port_channel_info_rf_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 10, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12)))
if mibBuilder.loadTexts:
apexQamRfPortChannelInfoRfPortNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortChannelInfoRfPortNum.setDescription('RF Port number.')
apex_qam_rf_port_channel_info_chan_a = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 10, 1, 2), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(1, 1), value_range_constraint(5, 5), value_range_constraint(9, 9), value_range_constraint(13, 13), value_range_constraint(17, 17), value_range_constraint(21, 21), value_range_constraint(25, 25), value_range_constraint(29, 29), value_range_constraint(33, 33), value_range_constraint(37, 37), value_range_constraint(41, 41), value_range_constraint(45, 45)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortChannelInfoChanA.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortChannelInfoChanA.setDescription("QAM Channel number (Output Transport number) of QAM Channel 'A' on this RF port. This may be used to access data in tables indexed by QAM Number or Output Transport Stream. Used in combination with apexQamRfPortChannelInfoChanCount, data for all QAM Channels on this RF Port may be accessed. '0' - Indicates RF Port is not present. ")
apex_qam_rf_port_channel_info_chan_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(4, 4), value_range_constraint(8, 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamRfPortChannelInfoChanCount.setStatus('current')
if mibBuilder.loadTexts:
apexQamRfPortChannelInfoChanCount.setDescription("The number of QAM Channels on the RF port. '0' - Indicates RF Port is not present. '4' - RF Port has 4 QAM Channels, 'A'-'D'. '8' - RF Port has 8 QAM Channels, 'A'-'H'. ")
apex_qam_channel_id_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11))
if mibBuilder.loadTexts:
apexQamChannelIdTable.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelIdTable.setDescription('Table of QAM Channel Identification data. Identifies the physical location of the QAM Channel (Output Transport Stream) in the APEX chassis. Refer to the descriptions of apexQamRfConfigTable and apexQamChannelConfigTable for information on QAM slot, RF Port mapping, and QAM Channel mapping. Tables apexQamRfPortChannelInfoTable and apexQamChannelIdTable can be used to assist in referencing between QAM slots, RF Ports, and QAM Channels (Output Transport Streams) for the installed modules. ')
apex_qam_channel_id_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1)).setIndexNames((0, 'APEX-MIB', 'apexQamChannelIdChannelNum'))
if mibBuilder.loadTexts:
apexQamChannelIdEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelIdEntry.setDescription('QAM Channel Identification Table Entry.')
apex_qam_channel_id_channel_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexQamChannelIdChannelNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelIdChannelNum.setDescription('QAM Channel number (Output Transport number).')
apex_qam_channel_id_slot_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamChannelIdSlotNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelIdSlotNum.setDescription('QAM Slot number of the channel. ')
apex_qam_channel_id_rf_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamChannelIdRfPortNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelIdRfPortNum.setDescription("RF Port number of the channel. This may be used to access data in tables indexed by RF Port Number. '0' - Indicates QAM Channel is not present. ")
apex_qam_channel_id_module_rf_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamChannelIdModuleRfPortNum.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelIdModuleRfPortNum.setDescription("Module RF Port number of the channel. Corresponds to RF Port numbering on the back of physical QAM Module. '0' - Indicates QAM Channel is not present. ")
apex_qam_channel_id_channel_letter = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamChannelIdChannelLetter.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelIdChannelLetter.setDescription("The letter symbol ('A'..'H') for the channel. String will be empty if QAM Channel not present. ")
apex_qam_channel_id_channel_description = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 2, 11, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 11))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQamChannelIdChannelDescription.setStatus('current')
if mibBuilder.loadTexts:
apexQamChannelIdChannelDescription.setDescription("Text description for the QAM Channel (Output Transport Stream). Format is as follows where brackets and bracketed descriptions are replaced by a number/letter as appropriate: [QAM Channel / TS Num]:Slot[QAM Slot Num]-[Module Rf Port Num][Channel Letter] Examples: TS 9, in QAM Slot 1, on RF Port 2: '09:Slot1-2A' TS 17, in QAM Slot 2, on RF Port 1: '17:Slot2-1A' TS 48, in QAM Slot 3, on RF Port 2: '48:Slot3-2H' TS 48, in QAM Slot 3, on RF Port 4: '48:Slot3-4D' This may be used for display purposes on a management system. String will be empty or contain '[QAM Channel / TS Num]:Inactive' if apexQamChanStatActive is not set to 'active', i.e. if QAM Channel is not present and/or not enabled. ")
apex_qrm_download_config_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 1, 2))
if mibBuilder.loadTexts:
apexQrmDownloadConfigTable.setStatus('current')
if mibBuilder.loadTexts:
apexQrmDownloadConfigTable.setDescription('Table of QAM Module Code Download Configuration. There are 2 QRM modules on each 2x4/2x8 QAM Module. QRMs in QAM Module slots are mapped to table rows as follows: Slot/QRM Table Row 1/1 1 1/2 2 2/1 3 2/2 4 3/1 5 3/2 6 4x4 QAM Modules do not use QRM boards. There is only one board. These will be found in the odd indexed rows of this table. The even indexed rows of the table are not used for 4x4 QAM Modules. 4x4 QAM Modules in QAM Module slots are mapped to table rows as follows: Slot Table Row 1 1 2 3 3 5 ')
apex_qrm_download_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexQrmDownloadConfigQrmNum'))
if mibBuilder.loadTexts:
apexQrmDownloadConfigEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQrmDownloadConfigEntry.setDescription('QAM Code Download Configuration Table Entry.')
apex_qrm_download_config_qrm_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 6)))
if mibBuilder.loadTexts:
apexQrmDownloadConfigQrmNum.setStatus('current')
if mibBuilder.loadTexts:
apexQrmDownloadConfigQrmNum.setDescription('QAM Code Download Configuration Table index.')
apex_qrm_download_config_request = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 1, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('requestNotInProgress', 0), ('requestDownload', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexQrmDownloadConfigRequest.setStatus('current')
if mibBuilder.loadTexts:
apexQrmDownloadConfigRequest.setDescription('User initiated manual 4x4 QAM Module or 2x4/2x8 QAM Module QRM board Code Download request. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ')
apex_qrm_download_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2))
if mibBuilder.loadTexts:
apexQrmDownloadStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexQrmDownloadStatusTable.setDescription('Table of QAM Module Code Download Status. Refer to apexQrmDownloadConfigTable description for table indexing information. ')
apex_qrm_download_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexQrmDownloadStatusRfPortNum'))
if mibBuilder.loadTexts:
apexQrmDownloadStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQrmDownloadStatusEntry.setDescription('QRM Code Download Status Table Entry.')
apex_qrm_download_status_rf_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 6)))
if mibBuilder.loadTexts:
apexQrmDownloadStatusRfPortNum.setStatus('current')
if mibBuilder.loadTexts:
apexQrmDownloadStatusRfPortNum.setDescription('QAM Code Download Status Table index.')
apex_qrm_download_status_description = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQrmDownloadStatusDescription.setStatus('current')
if mibBuilder.loadTexts:
apexQrmDownloadStatusDescription.setDescription('Text description of the current state of 4x4 QAM Module or 2x4/2x8 QAM Module QRM board Code Download. ')
apex_qrm_download_progress = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQrmDownloadProgress.setStatus('current')
if mibBuilder.loadTexts:
apexQrmDownloadProgress.setDescription("Completion percentage of Code Download. '-1' indicates failure.")
apex_qrm_download_supported = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('notSupported', 1), ('supported', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQrmDownloadSupported.setStatus('current')
if mibBuilder.loadTexts:
apexQrmDownloadSupported.setDescription("Indicates if the module HW and SW will support Code Download. 'notSupported' if the module is unsupported or the code download might downgrade the code resident on the module. Refer to apexQamQrmRevisionTable, apexQamQrmRevisionStatusTable, and apexQrmDownloadFileSet for additional status. The user cannot initiate a manual download (apexQrmDownloadConfigRequest) when download 'notSupported'. ")
apex_qrm_download_required = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('notRequired', 1), ('required', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQrmDownloadRequired.setStatus('current')
if mibBuilder.loadTexts:
apexQrmDownloadRequired.setDescription("Indicates if the module requires Code Download. Code download is needed if the versions are not up to date with the resident APEX FW Release. Refer to apexQamQrmRevisionTable, apexQamQrmRevisionStatusTable, and apexQrmDownloadFileSet for additional status. The user can initiate a manual download (apexQrmDownloadConfigRequest) when download 'notRequired'. ")
apex_qrm_download_file_set = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('notApplicable', 0), ('fileSet1', 1), ('fileSet2', 2), ('fileSet3', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQrmDownloadFileSet.setStatus('current')
if mibBuilder.loadTexts:
apexQrmDownloadFileSet.setDescription('Indicates which file set will be used for this module. ')
apex_qrm_file_revision_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3))
if mibBuilder.loadTexts:
apexQrmFileRevisionTable.setStatus('current')
if mibBuilder.loadTexts:
apexQrmFileRevisionTable.setDescription('Table of revisions of QAM Module files released with the resident APEX FW Release. Refer to identSoftwareVersion in BCS-IDENT-MIB for the release number. ')
apex_qrm_file_revision_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexQrmFileRevFileSetNum'))
if mibBuilder.loadTexts:
apexQrmFileRevisionEntry.setStatus('current')
if mibBuilder.loadTexts:
apexQrmFileRevisionEntry.setDescription('QRM File Revision Table Entry.')
apex_qrm_file_rev_file_set_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 3)))
if mibBuilder.loadTexts:
apexQrmFileRevFileSetNum.setStatus('current')
if mibBuilder.loadTexts:
apexQrmFileRevFileSetNum.setDescription('QAM file set number.')
apex_qrm_file_rev_firmware = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQrmFileRevFirmware.setStatus('current')
if mibBuilder.loadTexts:
apexQrmFileRevFirmware.setDescription("Revision of the Application firmware file of the 2x4/2x8 QAM Module's QRM board or revision of the Application firmware portion of the 4x4 QAM Module Code File. Hex XXYY where XX is major version and YY is minor version. ")
apex_qrm_file_rev_calibration = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQrmFileRevCalibration.setStatus('current')
if mibBuilder.loadTexts:
apexQrmFileRevCalibration.setDescription("Revision of the Calibration data file of the 2x4/2x8 QAM Module's QRM board. Used only for 2x4/2x8 QAM Module QRM board file sets. Hex XXYY where XX is major version and YY is minor version. ")
apex_qrm_file_rev_fpga = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQrmFileRevFpga.setStatus('current')
if mibBuilder.loadTexts:
apexQrmFileRevFpga.setDescription("Revision of FPGA firmware file of the 2x4/2x8 QAM Module's QRM board or revision of the FPGA1 firmware portion of the 4x4 QAM Module Code File. Hex XXYY where XX is major version and YY is minor version. ")
apex_qrm_file_rev_fpga2 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQrmFileRevFpga2.setStatus('current')
if mibBuilder.loadTexts:
apexQrmFileRevFpga2.setDescription('Revision of FPGA2 firmware portion of the 4x4 QAM Module Code File. Used only for 4x4 QAM Module file sets. Hex XXYY where XX is major version and YY is minor version. ')
apex_qrm_file_rev_date_time = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 8, 3, 2, 3, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexQrmFileRevDateTime.setStatus('current')
if mibBuilder.loadTexts:
apexQrmFileRevDateTime.setDescription("Date and time the 4x4 QAM Module code file was created. Used only for 4x4 QAM Module file sets. Format: 'MM/DD/YYYY HH:MM' Where HH is a 24 hour clock. ")
apex_ses_cont_conf_protocol = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('none', 0), ('rpc', 1), ('rtsp', 2), ('mha-ermi', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSesContConfProtocol.setStatus('current')
if mibBuilder.loadTexts:
apexSesContConfProtocol.setDescription("The communication protocol for output streams in Session Control operating mode. This determines the type of protocol the APEX will use to communicate with an Edge Resource Manager/Switch Digital Video Manager. This parameter cannot be changed when there are any active Session Control mappings. All Session Control mappings must be removed prior to changing this protocol. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_ses_cont_conf_table_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSesContConfTableApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexSesContConfTableApplyChange.setDescription("The Apply for the apexSesContConfTable. This parameter MUST be set to 'apply' in order for any of the data in the apexSesContConfTable to take effect. This parameter MUST be set LAST after all other data in the apexSesContConfTable has been configured. @Config(config=no, reboot=no) ")
apex_ses_cont_conf_rate_compare_type = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 3), rate_comparison_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSesContConfRateCompareType.setStatus('current')
if mibBuilder.loadTexts:
apexSesContConfRateCompareType.setDescription("This is the rate to use for comparing input streams. It is either Information rate or Stream rate. This applies to monitoring for Bit Rate alarming and monitoring of Redundant Pairs. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_ses_cont_conf_redund_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSesContConfRedundThreshold.setStatus('obsolete')
if mibBuilder.loadTexts:
apexSesContConfRedundThreshold.setDescription("This object is obsolete. Session Control Redundancy Threshold. This is the percent used to determine Fail Over from Primary to Secondary, and Switch Back from Secondary to Primary. If a value of zero is specified, Fail Over or Switch Back will not occur. Range is 0 to 100%. Primary Fail Over to Secondary: FailOver = (PrimaryRate) < (Threshold * SecondaryRate) The Primary must remain below the threshold for apexGbeConfInRedundMonitorPeriod. Secondary Switch Back to Primary: SwitchBack = (PrimaryRate) >= (Threshold * SecondaryRate) The Primary must remain at or above the threshold for apexGbeConfInRedundMonitorPeriod seconds. The APEX will delay Switch Back an additional apexGbeConfInRedundSwitchTime seconds. Switch Back will not occur when apexGbeConfInRedundAutoSwitchBack is 'disabled'. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_ses_cont_conf_input_pre_encrypt_check = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 5), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSesContConfInputPreEncryptCheck.setStatus('current')
if mibBuilder.loadTexts:
apexSesContConfInputPreEncryptCheck.setDescription("Session Control Pre-Encryption Checking. Indicates if the APEX is to check if the input service is pre-encrypted or clear. Pre-encrypted is determined by examining the input PMT for a CA ECM descriptor (any CA ECM descriptor). If pre-encrypted, setting this flag will cause the APEX to pass through ECM PID for this service. For input services that have a GI CA ECM descriptor, the APEX will also pass through the PIT message (extract and re-insert the PIT). The output PMT for pre-encrypted services will contain a CA ECM descriptor (referencing the ECM PID). When PID Remapping is enabled, pre-encryption for a service is only valid when the input ECM PID is on a different PID than the associated PMT PID. If this flag is set to pre-encryption and the input service is not pre-encrypted, then the setting of this flag has no affect on the output service. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_ses_cont_conf_redund_type = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('hotWarm', 1), ('hotHot', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSesContConfRedundType.setStatus('current')
if mibBuilder.loadTexts:
apexSesContConfRedundType.setDescription("The redundancy type for output streams in Session Control operating mode. - hotWarm indicates only 1 input stream, primary or secondary, is open at any one time. For multicast streams, primary will be joined initially. The secondary is joined after a failover (the primary will be dropped prior to joining the secondary). - hotHot indicates both the primary and secondary streams are opened at the same time. For multicast streams, both streams are joined immediately. Changes to the redundancy type cannot be made while there are active routes or sessions. All routes and sessions must be deleted prior to changing the redundancy type. Once written, a save must be performed via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_ses_cont_conf_follow_dtcp = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 1, 7), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSesContConfFollowDtcp.setStatus('current')
if mibBuilder.loadTexts:
apexSesContConfFollowDtcp.setDescription("Determines how the copy protection settings (CCI, APS, and CIT) within the PRK will be set. All outputs in Session Control (SDV) mode will use this setting for following input DTCP. Disabled - Use ERM Configuration settings if encryption blob provided. Use CTE settings when in CTE encryption mode and no ERM encryption blob provided. Enabled - Follow input DTCP Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_ses_cont_conf_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 2))
if mibBuilder.loadTexts:
apexSesContConfTable.setStatus('current')
if mibBuilder.loadTexts:
apexSesContConfTable.setDescription("This is a table of Session Control configuration parameters for each output transport stream. This table defines the primary and secondary Gigabit Ethernet interfaces for each output stream in Session Control operating mode. The primary and secondary interfaces cannot be changed for an output stream when there are active Session Control mappings. All Session Control mappings on an output stream must be removed prior to changing the primary or secondary interface settings. Once written, the change to this table will only take immediate effect after apexSesContConfTableApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexSesContConfTableApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_ses_cont_conf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexSesContConfOutputTsNum'))
if mibBuilder.loadTexts:
apexSesContConfEntry.setStatus('current')
if mibBuilder.loadTexts:
apexSesContConfEntry.setDescription('Session Control Configuration Table Entry.')
apex_ses_cont_conf_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexSesContConfOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexSesContConfOutputTsNum.setDescription('Output transport stream number (index).')
apex_ses_cont_conf_gbe_primary_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSesContConfGbePrimaryInterface.setStatus('current')
if mibBuilder.loadTexts:
apexSesContConfGbePrimaryInterface.setDescription('The primary Gbe interface for Session Control. Zero indicates not available. This parameter cannot be changed for any output stream if there is at least 1 active session control mapping. Not configurable for RTSP. ')
apex_ses_cont_conf_gbe_secondary_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 1, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSesContConfGbeSecondaryInterface.setStatus('current')
if mibBuilder.loadTexts:
apexSesContConfGbeSecondaryInterface.setDescription('The secondary Gbe interface for RPC SDV. Zero indicates not available. This parameter cannot be changed for any output stream if there is at least 1 active session control mapping. Secondary selection is restricted based on Primary as follows: - Primary 1 or 2: Secondary must be 1 or 2 - Primary 3 or 4: Secondary must be 3 or 4 Not configurable for RTSP. ')
apex_ses_cont_stat_protocol = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('none', 0), ('rpc', 1), ('rtsp', 2), ('mha-ermi', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexSesContStatProtocol.setStatus('current')
if mibBuilder.loadTexts:
apexSesContStatProtocol.setDescription('The communication protocol in use for output streams in Session Control operating mode. ')
apex_rpc_data_carousel_program = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRpcDataCarouselProgram.setStatus('current')
if mibBuilder.loadTexts:
apexRpcDataCarouselProgram.setDescription("Indicates which Input Program Number to use for the Data Carousel. The data carousel in SDV mode (RPC or RTSP) is on a fixed PMT PID along with a fixed component PID. In order to maintain these PID values, the APEX will check for a specific input service number defined by this parameter. This service mapping is assumed to be the Data Carousel mapping. The APEX will maintain the PMT PID value along with the component PID value. To facilitate this mapping, the Data Carousel input/output program number is configurable. - Data Carousel Service Number Default: 0xF38F (62351) The PMT PID and component PID will be determined by the APEX by analyzing the PAT and PMT based on the program number configured. A program number of zero (0) indicates that there is no data carousel. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rpc_report_all_sessions = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRpcReportAllSessions.setStatus('current')
if mibBuilder.loadTexts:
apexRpcReportAllSessions.setDescription("Session reporting mode. Indicates what sessions will be reported when the APEX is requested to report sessions to a manager. When 'enabled', the APEX will report all sessions. When 'disabled', the APEX will report only the sessions for the requesting manager. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rpc_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRpcDeviceName.setStatus('current')
if mibBuilder.loadTexts:
apexRpcDeviceName.setDescription("The device name of this APEX. This variable is only used to generate an XML configuration file via the EM. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rpc_device_type = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRpcDeviceType.setStatus('current')
if mibBuilder.loadTexts:
apexRpcDeviceType.setDescription("The device type string reported in XML configuration file. This variable is only used to generate an XML configuration file via the EM. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rpc_control_interface = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 5), ethernet_interface_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRpcControlInterface.setStatus('current')
if mibBuilder.loadTexts:
apexRpcControlInterface.setDescription("The Enet interface that will be used to set the IP address attribute in the generated XML file. This variable is only used to generate an XML configuration file via the EM. Once written, the change to this parameter will only take immediate effect after apexRpcApplyChange is changed to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRpcApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rpc_num_shell_sessions = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRpcNumShellSessions.setStatus('current')
if mibBuilder.loadTexts:
apexRpcNumShellSessions.setDescription("The number of shell sessions to be created on each channel marked for session control mode. This variable is only used to generate an XML configuration file via the EM. Once written, the change to this parameter will only take immediate effect after apexRpcApplyChange is changed to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRpcApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rpc_avg_bandwidth_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 7), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRpcAvgBandwidthEnable.setStatus('current')
if mibBuilder.loadTexts:
apexRpcAvgBandwidthEnable.setDescription("When enabled the APEX populates the sessionRate in the QuerySessionInfo Response message with groupRate divided by the number of sessionIds in the group. The value reported makes no distinction between bound and unbound sessions. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rpc_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 1, 8), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRpcApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexRpcApplyChange.setDescription('The Apply for RPC Settings. This applies to apexRpcControlInterface, apexRpcNumShellSessions, apexRpcRfPortServiceGroup. @Config(config=no, reboot=no) ')
apex_rpc_rf_port_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 2))
if mibBuilder.loadTexts:
apexRpcRfPortTable.setStatus('current')
if mibBuilder.loadTexts:
apexRpcRfPortTable.setDescription('Table of Configuration data for RPC Session RF Ports. This variable is only used to generate an XML configuration file via the EM. ')
apex_rpc_rf_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexRpcRfPortNum'))
if mibBuilder.loadTexts:
apexRpcRfPortEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRpcRfPortEntry.setDescription('RPC RF Port Configuration Table Entry.')
apex_rpc_rf_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12)))
if mibBuilder.loadTexts:
apexRpcRfPortNum.setStatus('current')
if mibBuilder.loadTexts:
apexRpcRfPortNum.setDescription('The RF Port number.')
apex_rpc_rf_port_name = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRpcRfPortName.setStatus('current')
if mibBuilder.loadTexts:
apexRpcRfPortName.setDescription("The RF Port name. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rpc_rf_port_service_group = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 2, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRpcRfPortServiceGroup.setStatus('current')
if mibBuilder.loadTexts:
apexRpcRfPortServiceGroup.setDescription("The RF Port service group. Once written, the change to this parameter will only take immediate effect after apexRpcApplyChange is changed to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRpcApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rpc_rf_channel_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 3))
if mibBuilder.loadTexts:
apexRpcRfChannelTable.setStatus('current')
if mibBuilder.loadTexts:
apexRpcRfChannelTable.setDescription("Table of Configuration data for RPC Session RF Channels. This variable is only used to generate an XML configuration file via the EM. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rpc_rf_channel_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexRpcRfChannelNum'))
if mibBuilder.loadTexts:
apexRpcRfChannelEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRpcRfChannelEntry.setDescription('RPC RF Channel Configuration Table Entry.')
apex_rpc_rf_channel_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexRpcRfChannelNum.setStatus('current')
if mibBuilder.loadTexts:
apexRpcRfChannelNum.setDescription('The RF Channel number.')
apex_rpc_rf_channel_name = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 1, 3, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRpcRfChannelName.setStatus('current')
if mibBuilder.loadTexts:
apexRpcRfChannelName.setDescription('The name of this RF Channel. ')
apex_rpc_session_stat_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2))
if mibBuilder.loadTexts:
apexRpcSessionStatTable.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatTable.setDescription('Table of RPC Switched Digital Video Session status. This table contains 1 row up to the maximum number of service mappings supported. ')
apex_rpc_session_stat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexRpcSessionStatIndex'))
if mibBuilder.loadTexts:
apexRpcSessionStatEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatEntry.setDescription('RPC Switched Digital Video Session Status Table Entry.')
apex_rpc_session_stat_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexRpcSessionStatIndex.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatIndex.setDescription('The RPC Switched Digital Video Session Status table index. ')
apex_rpc_session_stat_input_ts_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcSessionStatInputTsIndex.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatInputTsIndex.setDescription('The index into the apexInputTsStatTable.')
apex_rpc_session_stat_input_program_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcSessionStatInputProgramNum.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatInputProgramNum.setDescription('The Gigabit Ethernet Input Program Number. A value of zero (0) indicates that the input is an SPTS and the first program listed in the input PAT will be mapped by the APEX. ')
apex_rpc_session_stat_source_ip_addr3 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcSessionStatSourceIpAddr3.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatSourceIpAddr3.setDescription('The Gigabit Ethernet IGMP v3 Source IP Address 3. This IP address is currently unsupported by the APEX. ')
apex_rpc_session_stat_output_qam_channel = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcSessionStatOutputQamChannel.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatOutputQamChannel.setDescription('The Output QAM Channel. ')
apex_rpc_session_stat_output_program_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcSessionStatOutputProgramNum.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatOutputProgramNum.setDescription('The Output Program Number (1 - 65535). ')
apex_rpc_session_stat_program_bandwidth = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcSessionStatProgramBandwidth.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatProgramBandwidth.setDescription('The Expected Program Bandwidth (bps). This is the bandwidth of the program as defined in the service mapping. A value of 0 indicates that the program BW is unknown. ')
apex_rpc_session_stat_session_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('noSession', 0), ('sdv', 1), ('vodOrBroadcast', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcSessionStatSessionType.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatSessionType.setDescription('The Type of session (SDV binding or VOD/Broadcast session). 1 = Switched Digital Video (SDV) 2 = VOD or Broadcast ')
apex_rpc_session_stat_session_id_word1 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 9), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcSessionStatSessionIdWord1.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatSessionIdWord1.setDescription('The Session ID Word 1. Session IDs are 10 byte character arrays. Session IDs are be stored as 3 4-byte words (3 ulongs) in this MIB. First 2 Bytes are always 0, next 10 contain the session ID. Session ID is broken up as follows: Word 1: 00:01 = 0x0000 (unused) Word 1: 02:03 = 1st 2 bytes of session ID (1st 2 bytes of MAC address) Word 2: 00:03 = Next 4 bytes (these 4 plus 1st 2 are the MAC address of manager) Word 3: 00:03 = Last 4 bytes (unique number assigned by manager) ')
apex_rpc_session_stat_session_id_word2 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 10), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcSessionStatSessionIdWord2.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatSessionIdWord2.setDescription('The Session ID Word 2. Session IDs are 10 byte character arrays. Session IDs are be stored as 3 4-byte words (3 Unsigned32) in this MIB. First 2 Bytes are always 0, next 10 contain the session ID. Session ID is broken up as follows: Word 1: 00:01 = 0x0000 (unused) Word 1: 02:03 = 1st bytes of session ID (1st 2 bytes of MAC address) Word 2: 00:03 = Next 4 bytes (these 4 plus 1st 2 are the MAC address of manager) Word 3: 00:03 = Last 4 bytes (unique number assigned by manager) ')
apex_rpc_session_stat_session_id_word3 = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 11), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcSessionStatSessionIdWord3.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatSessionIdWord3.setDescription('The Session ID Word 3. Session IDs are 10 byte character arrays. Session IDs are be stored as 3 4-byte words (3 Unsigned32) in this MIB. First 2 Bytes are always 0, next 10 contain the session ID. Session ID is broken up as follows: Word 1: 00:01 = 0x0000 (unused) Word 1: 02:03 = 1st bytes of session ID (1st 2 bytes of MAC address) Word 2: 00:03 = Next 4 bytes (these 4 plus 1st 2 are the MAC address of manager) Word 3: 00:03 = Last 4 bytes (unique number assigned by manager) ')
apex_rpc_session_stat_manager_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 2, 1, 12), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcSessionStatManagerIpAddr.setStatus('current')
if mibBuilder.loadTexts:
apexRpcSessionStatManagerIpAddr.setDescription('The IP address of the RPC SDV, VOD, or Broadcast manager sending session commands. ')
apex_rpc_qam_stat_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 3))
if mibBuilder.loadTexts:
apexRpcQamStatTable.setStatus('current')
if mibBuilder.loadTexts:
apexRpcQamStatTable.setDescription('Table of RPC Switched Digital Video QAM status. This table is indexed by output stream number and 48 rows. ')
apex_rpc_qam_stat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexRpcQamStatQamChannelNum'))
if mibBuilder.loadTexts:
apexRpcQamStatEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRpcQamStatEntry.setDescription('RPC Switched Digital Video QAM Status Table Entry.')
apex_rpc_qam_stat_qam_channel_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexRpcQamStatQamChannelNum.setStatus('current')
if mibBuilder.loadTexts:
apexRpcQamStatQamChannelNum.setDescription('The RPC Switched Digital Video QAM Status table index. ')
apex_rpc_qam_stat_num_sdv_sessions = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 3, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcQamStatNumSdvSessions.setStatus('current')
if mibBuilder.loadTexts:
apexRpcQamStatNumSdvSessions.setDescription('The Number of reserved SDV sessions on this QAM Channel. This is the number of SDV sessions that have been reserved by the manager. Each SDV session requires that a manager reserve a QAM. This is the count of SDV sessions reserved (not the actual number of active SDV sessions). ')
apex_rpc_qam_stat_num_vod_bc_sessions = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcQamStatNumVodBcSessions.setStatus('current')
if mibBuilder.loadTexts:
apexRpcQamStatNumVodBcSessions.setDescription('The Number of VOD/Broadcast sessions on this QAM Channel. This is the number of VOD/Broadcast sessions active on a QAM Channel. Since VOD and Broadcast sessions are not required to be reserved for an output, this is the count of active VOD and Broadcast sessions on a specific QAM. ')
apex_rpc_qam_stat_sdv_group_bandwidth = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 3, 2, 3, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRpcQamStatSdvGroupBandwidth.setStatus('current')
if mibBuilder.loadTexts:
apexRpcQamStatSdvGroupBandwidth.setDescription('The Group BW for SDV sessions (not used for VOD/Broadcast sessions). This is the total amount of BW allocated for all SDV sessions on a channel. The total SDV BW for a channel is defined by the session manager. The manager reserves this BW for future SDV sessions. This is not the BW of current active SDV sessions, but the total BW reserved by the manager for SDV sessions. ')
apex_rtsp_report_gbe_interfaces = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('none', 0), ('reportGbe1and2', 1), ('reportGbe3and4', 2), ('pairedPortAssignment', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspReportGbeInterfaces.setStatus('current')
if mibBuilder.loadTexts:
apexRtspReportGbeInterfaces.setDescription("This selects which pair of GBE interfaces are to be reported to the RTSP controller (ERM) via VREP. The pairedPortAssignment selection allows for both pairs of GBE interfaces to be reported to the ERM. This allows for all 4 GBE interfaces to be used by the ERM for session mappings. This effectively splits the APEX into 2x24 QAM devices where the first GBE interface pair (1&2) are assigned to the first 24 output QAM streams (output TS 1 - 24) and the second GBE pair (3&4) are assigned to the second 24 output QAM streams (output TS 25-48). Selecting reportGbe1and2 or reportGbe3and4 limits the ERM to 2 GBE interfaces only. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rtsp_conf_controller_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 2))
if mibBuilder.loadTexts:
apexRtspConfControllerApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControllerApplyTable.setDescription('Table of Apply Change for the data for apexRtspConfControllerTable. A row of this table corresponds to a row in apexRtspConfControllerTable. ')
apex_rtsp_conf_controller_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspConfControllerApplyNum'))
if mibBuilder.loadTexts:
apexRtspConfControllerApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControllerApplyEntry.setDescription('RTSP Controller Configuration Apply Table Entry.')
apex_rtsp_conf_controller_apply_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)))
if mibBuilder.loadTexts:
apexRtspConfControllerApplyNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControllerApplyNum.setDescription('The RTSP Session Controller number.')
apex_rtsp_conf_controller_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 2, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfControllerApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControllerApplyChange.setDescription("The Apply for a row of data in apexRtspConfControllerTable and apexRtspConfControlNamesTable. A row in this table corresponds to the same row index in the apexRtspConfControllerTable and apexRtspConfControlNamesTable. This parameter MUST be set to 'apply' in order for any of the data in the rows to take effect in the APEX. This parameter MUST be set LAST after all other data in the configuration table rows has been configured. @Config(config=no, reboot=no) ")
apex_rtsp_conf_controller_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3))
if mibBuilder.loadTexts:
apexRtspConfControllerTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControllerTable.setDescription("Table of RTSP configuration items configurable on a Controller basis. Once written, the change to this table will only take immediate effect after apexRtspConfControllerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfControllerApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rtsp_conf_controller_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspConfControllerNum'))
if mibBuilder.loadTexts:
apexRtspConfControllerEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControllerEntry.setDescription('RTSP Controller Configuration Table Entry.')
apex_rtsp_conf_controller_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)))
if mibBuilder.loadTexts:
apexRtspConfControllerNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControllerNum.setDescription('The Controller Number. APEX currently supports only one controller. ')
apex_rtsp_conf_controller_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfControllerIp.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControllerIp.setDescription('The IP Address of the RTSP session controller. ')
apex_rtsp_conf_controller_port = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1024, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfControllerPort.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControllerPort.setDescription('Port for the RTSP session controller. ')
apex_rtsp_conf_controller_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(9, 300)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfControllerHoldTime.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControllerHoldTime.setDescription('The session hold time in seconds. If the APEX does not receive a keep session alive message from the controller in this time the APEX will close the session. The APEX will transmit keep session alive messages at one-third of this time. Zero indicates that the APEX should not send keep session alive messages. ')
apex_rtsp_conf_controller_bandwidth_delta = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(50, 100000)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfControllerBandwidthDelta.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControllerBandwidthDelta.setDescription("The Bandwidth Delta, in kilobits per second (kbps), for sending an Update Message. Whenever a QAM Channel's output utilization changes by more than the bandwidth delta, the APEX will send a update message providing the current BW being utilized. Zero indicates that the APEX should not send update messages based on bandwidth changes. ")
apex_rtsp_conf_control_names_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 4))
if mibBuilder.loadTexts:
apexRtspConfControlNamesTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControlNamesTable.setDescription("Table of RTSP configuration items configurable on a Controller basis. Contains the control names. This table is a row-for-row index match to the apexRtspConfControllerTable. Once written, the change to this table will only take immediate effect after apexRtspConfControllerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfControllerApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rtsp_conf_control_names_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspConfControlNamesNum'))
if mibBuilder.loadTexts:
apexRtspConfControlNamesEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControlNamesEntry.setDescription('RTSP Controller Names Configuration Table Entry.')
apex_rtsp_conf_control_names_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)))
if mibBuilder.loadTexts:
apexRtspConfControlNamesNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControlNamesNum.setDescription('The Controller Number. APEX currently supports only one controller. ')
apex_rtsp_conf_control_names_streaming_zone = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 4, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfControlNamesStreamingZone.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControlNamesStreamingZone.setDescription('The streaming zone that the APEX is a member of. ')
apex_rtsp_conf_control_names_device_name = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 4, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfControlNamesDeviceName.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfControlNamesDeviceName.setDescription('The device name of this APEX. ')
apex_rtsp_conf_qam_channel_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 5))
if mibBuilder.loadTexts:
apexRtspConfQamChannelApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfQamChannelApplyTable.setDescription('Table of Apply Change for the data for apexRtspConfQamChannelTable. A row of this table corresponds to a row in apexRtspConfQamChannelTable. ')
apex_rtsp_conf_qam_channel_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 5, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspConfQamChannelApplyNum'))
if mibBuilder.loadTexts:
apexRtspConfQamChannelApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfQamChannelApplyEntry.setDescription('RTSP QAM Configuration Apply Table Entry.')
apex_rtsp_conf_qam_channel_apply_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexRtspConfQamChannelApplyNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfQamChannelApplyNum.setDescription('The QAM Channel number.')
apex_rtsp_conf_qam_channel_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 5, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfQamChannelApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfQamChannelApplyChange.setDescription("The Apply for a row of data in apexRtspConfQamChannelTable. A row in this table corresponds to the same row index in the apexRtspConfQamChannelTable. This parameter MUST be set to 'apply' in order for any of the data in the rows to take effect in the APEX. This parameter MUST be set LAST after all other data in the configuration table rows has been configured. @Config(config=no, reboot=no) ")
apex_rtsp_conf_qam_channel_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 6))
if mibBuilder.loadTexts:
apexRtspConfQamChannelTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfQamChannelTable.setDescription("Table of Configuration data for RTSP Session QAM Channels. Once written, the change to this table will only take immediate effect after apexRtspConfQamChannelApplyChange to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfQamChannelApplyChange , value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rtsp_conf_qam_channel_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 6, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspConfQamChannelNum'))
if mibBuilder.loadTexts:
apexRtspConfQamChannelEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfQamChannelEntry.setDescription('RTSP QAM Configuration Table Entry.')
apex_rtsp_conf_qam_channel_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 6, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexRtspConfQamChannelNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfQamChannelNum.setDescription('The QAM Channel number.')
apex_rtsp_conf_qam_channel_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 6, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfQamChannelGroupName.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfQamChannelGroupName.setDescription('The QAM Group Name that this QAM Channel is a member of. ')
apex_rtsp_conf_gbe_edge_group_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 7))
if mibBuilder.loadTexts:
apexRtspConfGbeEdgeGroupTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfGbeEdgeGroupTable.setDescription("Table of Configuration data for RTSP Session GigE Interfaces. Once written, the change to this table will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rtsp_conf_gbe_edge_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 7, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspConfGbeEdgeGroupNum'))
if mibBuilder.loadTexts:
apexRtspConfGbeEdgeGroupEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfGbeEdgeGroupEntry.setDescription('RTSP GigE Edge Group Configuration Table Entry.')
apex_rtsp_conf_gbe_edge_group_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 7, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)))
if mibBuilder.loadTexts:
apexRtspConfGbeEdgeGroupNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfGbeEdgeGroupNum.setDescription('The GigE Edge Group Interface number.')
apex_rtsp_conf_gbe_edge_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 7, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfGbeEdgeGroupName.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfGbeEdgeGroupName.setDescription('The Name of this GigE Interface. ')
apex_rtsp_conf_mha_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 8))
if mibBuilder.loadTexts:
apexRtspConfMhaTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfMhaTable.setDescription("Table of MHA RTSP configuration items configurable on a Controller basis. Once written, the change to this table will only take immediate effect after apexRtspConfControllerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfControllerApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rtsp_conf_mha_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 8, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspConfMhaNum'))
if mibBuilder.loadTexts:
apexRtspConfMhaEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfMhaEntry.setDescription('MHA RTSP Configuration Table Entry.')
apex_rtsp_conf_mha_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 8, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)))
if mibBuilder.loadTexts:
apexRtspConfMhaNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfMhaNum.setDescription('The MHA Controller Number. APEX currently supports only one controller. ')
apex_rtsp_conf_mha_address_domain = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 8, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfMhaAddressDomain.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfMhaAddressDomain.setDescription('Address Domain of the sender used in ERRP. Address Domain of the ERM and APEX must match in order to establish an ERRP connection. Zero is used as the global address domain, which is interpreted to mean that any advertised address can be reached from any address domain. ')
apex_rtsp_conf_mha_port = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 8, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1024, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfMhaPort.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfMhaPort.setDescription('Port for the MHA session controller. ')
apex_rtsp_conf_mha_udp_map_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 9, 1), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfMhaUdpMapEnable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfMhaUdpMapEnable.setDescription("Indicates if the UDP Map is populated in the Update message sent by the APEX to the ERM when in MHA mode. When 'enabled', the APEX will report UDP ports available. When 'disabled', the APEX will include the UDP Map field but will not populate it with data. Once written, the change to this table will only take immediate effect after apexRtspConfControllerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfControllerApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rtsp_conf_mha_sbe_encryption_mode = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 10, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('full', 1), ('fwk', 2), ('fpk', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfMhaSbeEncryptionMode.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfMhaSbeEncryptionMode.setDescription("This parameter is used to set the Session based Encryption Mode. It applies to all session based encryption sessions. - 'full' - The APEX will use Full encryption. - 'fwk' - The APEX will use Fixed Working Key (FWK) encryption. - 'fpk' - The APEX will use Fixed Program Key (FPK) encryption. The APEX will not attempt to get EMMs. Once written, the change to this parameter will only take immediate effect after apexRtspConfMhaSbeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfMhaSbeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rtsp_conf_mha_sbe_cci_level = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 10, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('notDefined', 1), ('copyFreely', 2), ('copyOnce', 3), ('copyNever', 4), ('noMoreCopies', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfMhaSbeCciLevel.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfMhaSbeCciLevel.setDescription("Copy Control Information (CCI) Level setting for session based PRK messages if CCI is not defined in the XML encryption blob. - notDefined - CCI is not defined, settop box applications can configure CCI - copyFreely - program can be copied - copyOnce - program can be copied once - copyNever - program can never be copied - noMoreCopies - Once written, the change to this parameter will only take immediate effect after apexRtspConfMhaSbeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfMhaSbeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rtsp_conf_mha_sbe_aps_level = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 10, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('notDefined', 1), ('off', 2), ('splitBurstOff', 3), ('splitBurst2Line', 4), ('splitBurst4Line', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfMhaSbeApsLevel.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfMhaSbeApsLevel.setDescription("Analog Protection System (APS) Level setting for session based PRK messages if APS is not defined in the XML encryption blob. Defines what copy protection encoding will be applied to the analog composite output by the settop box. - notDefined - analog protection is not defined, settop box applications can configure APS - off - no analog protection - splitBurstOff - AGC on, split burst off - splitBurst2Line - AGC on, 2 line split burst on - splitBurst4Line - AGC on, 4 line split burst on Once written, the change to this parameter will only take immediate effect after apexRtspConfMhaSbeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfMhaSbeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rtsp_conf_mha_sbe_cit_setting = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 10, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfMhaSbeCitSetting.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfMhaSbeCitSetting.setDescription("Copy protection Constraint Image Trigger setting. This is only applicable when the session is being encrypted and the CIT setting was not contained in the XML encryption blob. Once written, the change to this parameter will only take immediate effect after apexRtspConfMhaSbeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexRtspConfMhaSbeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(sdv.ini, type='ini') ")
apex_rtsp_conf_mha_sbe_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 1, 10, 5), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRtspConfMhaSbeApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexRtspConfMhaSbeApplyChange.setDescription("The Apply for the MHA session based encryption settings. This parameter MUST be set to 'apply' in order for any of the data in MHA SBE to take effect in the APEX. This parameter MUST be set LAST after all other data in the MHA SBE has been configured. @Config(config=no, reboot=no) ")
apex_rtsp_session_stat_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2))
if mibBuilder.loadTexts:
apexRtspSessionStatTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionStatTable.setDescription('Table of RTSP Session status. This table contains 768 rows. ')
apex_rtsp_session_stat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspSessionStatIndex'))
if mibBuilder.loadTexts:
apexRtspSessionStatEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionStatEntry.setDescription('RTSP Session Status Table Entry.')
apex_rtsp_session_stat_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexRtspSessionStatIndex.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionStatIndex.setDescription('The RTSP Session Status table index. ')
apex_rtsp_session_stat_input_ts_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspSessionStatInputTsIndex.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionStatInputTsIndex.setDescription('The index into the apexInputTsStatTable.')
apex_rtsp_session_stat_input_program_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspSessionStatInputProgramNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionStatInputProgramNum.setDescription('The Gigabit Ethernet Input Program Number. A value of zero (0) indicates that the input is an SPTS and the first program listed in the input PAT will be mapped by the APEX. ')
apex_rtsp_session_stat_output_qam_channel = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspSessionStatOutputQamChannel.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionStatOutputQamChannel.setDescription('The Output QAM Channel. ')
apex_rtsp_session_stat_output_program_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspSessionStatOutputProgramNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionStatOutputProgramNum.setDescription('The Output Program Number. ')
apex_rtsp_session_stat_program_bandwidth = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspSessionStatProgramBandwidth.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionStatProgramBandwidth.setDescription('The Expected Program Bandwidth (bps). This is the bandwidth of the program as defined in the service mapping. A value of 0 indicates that the program BW is unknown. ')
apex_rtsp_session_stat_manager_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 2, 1, 7), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspSessionStatManagerIpAddr.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionStatManagerIpAddr.setDescription('The IP address of the manager sending session commands. ')
apex_rtsp_session_id_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 3))
if mibBuilder.loadTexts:
apexRtspSessionIdTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionIdTable.setDescription('Table of RTSP Session Ids. This table contains 768 rows and is a row-for-row index match to apexRtspSessionStatTable. ')
apex_rtsp_session_id_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspSessionIdIndex'))
if mibBuilder.loadTexts:
apexRtspSessionIdEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionIdEntry.setDescription('RTSP Session ID Table Entry.')
apex_rtsp_session_id_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexRtspSessionIdIndex.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionIdIndex.setDescription('The RTSP Session ID table index. This is a row-for-row match to the RTSP Session Status table index. ')
apex_rtsp_session_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 3, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspSessionId.setStatus('current')
if mibBuilder.loadTexts:
apexRtspSessionId.setDescription('The Session ID. ')
apex_rtsp_qam_stat_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 4))
if mibBuilder.loadTexts:
apexRtspQamStatTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspQamStatTable.setDescription('Table of RTSP Session QAM status. This table is indexed by QAM channel number and contains 48 rows. ')
apex_rtsp_qam_stat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspQamStatQamChannelNum'))
if mibBuilder.loadTexts:
apexRtspQamStatEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspQamStatEntry.setDescription('RTSP Session QAM status Table Entry.')
apex_rtsp_qam_stat_qam_channel_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexRtspQamStatQamChannelNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspQamStatQamChannelNum.setDescription('The RTSP Session Control Video QAM Status table index. ')
apex_rtsp_qam_stat_num_sessions = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 4, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspQamStatNumSessions.setStatus('current')
if mibBuilder.loadTexts:
apexRtspQamStatNumSessions.setDescription('The Number of active sessions on this QAM Channel. ')
apex_rtsp_qam_stat_allocated_bandwidth = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 4, 1, 3), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspQamStatAllocatedBandwidth.setStatus('current')
if mibBuilder.loadTexts:
apexRtspQamStatAllocatedBandwidth.setDescription('This is the total amount of BW allocated for all sessions on a channel. ')
apex_rtsp_stat_controller_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 5))
if mibBuilder.loadTexts:
apexRtspStatControllerTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatControllerTable.setDescription('Table of RTSP status items configurable on a Controller basis. ')
apex_rtsp_stat_controller_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 5, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspStatControllerNum'))
if mibBuilder.loadTexts:
apexRtspStatControllerEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatControllerEntry.setDescription('RTSP Controller Status Table Entry.')
apex_rtsp_stat_controller_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)))
if mibBuilder.loadTexts:
apexRtspStatControllerNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatControllerNum.setDescription('The Controller Number. APEX currently supports only one controller. ')
apex_rtsp_stat_controller_discovery = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('notApplicable', 0), ('notDiscovered', 1), ('discovered', 2), ('discoveredConnectionLost', 3), ('discoveredAnotB', 4), ('discoveredBnotA', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspStatControllerDiscovery.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatControllerDiscovery.setDescription('Status of Controller to APEX discovery. ')
apex_rtsp_stat_controller_connection = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 5, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('notApplicable', 0), ('notConnected', 1), ('connected', 2), ('connectedPort554', 3), ('connectedPort2048', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspStatControllerConnection.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatControllerConnection.setDescription("Status of the connection between the APEX and the Controller. 'notConnected' causes apexAlarmRtspControllerCommFault. ")
apex_rtsp_stat_controller_comm_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 5, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspStatControllerCommFault.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatControllerCommFault.setDescription('Current fault condition of apexRtspStatControllerConnection. This is the apexAlarmRtspControllerCommFault level for this controller. ')
apex_rtsp_stat_qam_channel_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 6))
if mibBuilder.loadTexts:
apexRtspStatQamChannelTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatQamChannelTable.setDescription('Table of Status data for RTSP Session QAM Channels. ')
apex_rtsp_stat_qam_channel_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 6, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspStatQamChannelNum'))
if mibBuilder.loadTexts:
apexRtspStatQamChannelEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatQamChannelEntry.setDescription('RTSP QAM Configuration Table Entry.')
apex_rtsp_stat_qam_channel_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 6, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexRtspStatQamChannelNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatQamChannelNum.setDescription('The QAM Channel number.')
apex_rtsp_stat_qam_channel_name = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 6, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspStatQamChannelName.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatQamChannelName.setDescription('The Name of this QAM Channel. ')
apex_rtsp_stat_qam_mpts_mode_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 7))
if mibBuilder.loadTexts:
apexRtspStatQamMptsModeTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatQamMptsModeTable.setDescription('Table of MPTS Mode Status data for RTSP Session QAM Channels. ')
apex_rtsp_stat_qam_mpts_mode_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 7, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspStatQamMptsModeQamChannelNum'))
if mibBuilder.loadTexts:
apexRtspStatQamMptsModeEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatQamMptsModeEntry.setDescription('RTSP QAM MPTS Mode Configuration Table Entry.')
apex_rtsp_stat_qam_mpts_mode_qam_channel_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 7, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexRtspStatQamMptsModeQamChannelNum.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatQamMptsModeQamChannelNum.setDescription('The QAM Channel number.')
apex_rtsp_stat_qam_mpts_mode_qam_channel_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 9, 4, 2, 7, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('passthrough', 1), ('multiplexing', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspStatQamMptsModeQamChannelMode.setStatus('current')
if mibBuilder.loadTexts:
apexRtspStatQamMptsModeQamChannelMode.setDescription('The MPTS mode of this QAM Channel. The first session established on the QAM channel defines the MPTS mode. Each new session must have the same mode as long as one session is still active. ')
apex_manual_route_rmd_clear = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 1, 1), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteRmdClear.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteRmdClear.setDescription(' Clear all RMD information from DRAM and flash. Note that apexManualRouteEnable must be set to disabled for all rows before RMD information will be cleared by this parameter. If RMD information was cleared, the APEX will set this parameter to applyNotInProgressValidData. If RMD information was not cleared, the APEX will set this parameter to applyNotInProgressInvalidData. Once written, the change to this parameter will take effect immediately. @Config(config=no, reboot=no) ')
apex_manual_route_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 2))
if mibBuilder.loadTexts:
apexManualRouteApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteApplyTable.setDescription('Table of Apply Change for the data for Manual Route Table. A row in this table corresponds to the same row index in the Manual Route table. ')
apex_manual_route_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexManualRouteApplyIndex'))
if mibBuilder.loadTexts:
apexManualRouteApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteApplyEntry.setDescription('Manual Route Apply Table Entry.')
apex_manual_route_apply_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexManualRouteApplyIndex.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteApplyIndex.setDescription('The index of the Manual Route Apply Table.')
apex_manual_route_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 2, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteApplyChange.setDescription("The Apply for the row of data in the Manual Route Table. A row in this table corresponds to the same row index in the Manual Route table. This parameter MUST be set to 'apply' in order for any of the data in the Manual Route Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the Manual Route Table row has been configured. @Config(config=no, reboot=no) ")
apex_manual_route_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3))
if mibBuilder.loadTexts:
apexManualRouteTable.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteTable.setDescription("Table of data for Manual Routes. Once written, the change to a row this table will only take immediate effect after the appropriate apexManualRouteApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexManualRouteApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apex_manual_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexManualRouteIndex'))
if mibBuilder.loadTexts:
apexManualRouteEntry.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteEntry.setDescription('Manual Route Table Entry.')
apex_manual_route_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexManualRouteIndex.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteIndex.setDescription('The index of the Manual Route Table.')
apex_manual_route_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteEnable.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteEnable.setDescription('Indicates that this Manual Route is enabled or disabled. ')
apex_manual_route_input_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('gbe', 1), ('fastEnet', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteInputType.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteInputType.setDescription('Input Type of input from which to obtain data. ')
apex_manual_route_input_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteInputInterface.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteInputInterface.setDescription("Number of the input interface, of type configured by Input Type, from which to obtain data. Range: '0' = Not Applicable GBE = 1-4 FastEnet = 1-2 ")
apex_manual_route_input_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteInputUdp.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteInputUdp.setDescription('Input UDP Port from which to obtain data. Range: GBE = 0-65535 FastEnet = 1024-65535 ')
apex_manual_route_input_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteInputMulticastIp.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteInputMulticastIp.setDescription('Input Multicast IP address from which to obtain data. An IP address of 0.0.0.0 indicates table entry not in use. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apex_manual_route_input_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 7), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteInputSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteInputSourceIp.setDescription('Input IGMP v3 Source IP from which to obtain data. If the router supports IGMP v3 the GBE will only receive data from this source IP. If Source IP is not specified or the router does not support IGMP v3 the GBE will receive data from any source device. Source IP address must be a valid singlecast address. ')
apex_manual_route_input_prog_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteInputProgNum.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteInputProgNum.setDescription('Input MPEG Program Number to multiplex. A value of 0 can be used as a wild card. This will cause the APEX to map the first program listed in the input PAT to the specified output (regardless of input program number). Input program number zero should only be used when mapping Single Program Transport Streams (SPTS). ')
apex_manual_route_input_pre_encrypt_check = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 9), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteInputPreEncryptCheck.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteInputPreEncryptCheck.setDescription('Manual Routing Pre-Encryption Checking. Indicates if the APEX is to check if the input service is pre-encrypted or clear. Pre-encrypted is determined by examining the input PMT for a CA ECM descriptor (any CA ECM descriptor). If pre-encrypted, setting this flag will cause the APEX to pass through ECM PID for this service. For input services that have a GI CA ECM descriptor, the APEX will also pass through the PIT message (extract and re-insert the PIT). The output PMT for pre-encrypted services will contain a CA ECM descriptor (referencing the ECM PID). When PID Remapping is enabled, pre-encryption for a service is only valid when the input ECM PID is on a different PID than the associated PMT PID. If this flag is set to pre-encryption and the input service is not pre-encrypted, then the setting of this flag has no affect on the output service. ')
apex_manual_route_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 48))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteOutputTsNum.setDescription('Output Transport Stream Number of the output on which to place data. Zero = NotApplicable and is only valid if the apexManualRouteTable entry is not being used. ')
apex_manual_route_output_prog_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteOutputProgNum.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteOutputProgNum.setDescription('Output Program number to use for the program. Zero = NotApplicable and is only valid if the apexManualRouteTable entry is not being used. ')
apex_manual_route_output_encrypt_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteOutputEncryptMode.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteOutputEncryptMode.setDescription('Encryption Mode. Not supported. ')
apex_manual_route_output_copy_protect_source = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('followInputDtcp', 1), ('configuredSource', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteOutputCopyProtectSource.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteOutputCopyProtectSource.setDescription('Copy Protection Source. Not supported. ')
apex_manual_route_source_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteSourceId.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteSourceId.setDescription("Broadcast Encryption Source ID. Only applies to programs if the input type is Gbe and the output encryption mode is Broadcast Encryption. (apexOutputTsConfEncryptionType set to 'broadcastEncryption') ")
apex_manual_route_provider_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 3, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManualRouteProviderId.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteProviderId.setDescription("Broadcast Encryption Provider ID. Only applies to programs if the input type is Gbe and the output encryption mode is Broadcast Encryption. (apexOutputTsConfEncryptionType set to 'broadcastEncryption') ")
apex_man_rte_pass_through_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 4))
if mibBuilder.loadTexts:
apexManRtePassThroughApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughApplyTable.setDescription('Table of Apply Change for the data for Manual Route Pass Through Table. A row in this table corresponds to the same row index in the Manual Route Pass Through table. ')
apex_man_rte_pass_through_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexManRtePassThroughApplyOutputTsNum'))
if mibBuilder.loadTexts:
apexManRtePassThroughApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughApplyEntry.setDescription('Manual Route Apply Table Entry.')
apex_man_rte_pass_through_apply_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexManRtePassThroughApplyOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughApplyOutputTsNum.setDescription('The index of the Manual Route Pass Through Apply Table.')
apex_man_rte_pass_through_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 4, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRtePassThroughApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughApplyChange.setDescription("The Apply for the row of data in the Manual Route Pass Through Table. A row in this table corresponds to the same row index in the Manual Route Pass Through table. This parameter MUST be set to 'apply' in order for any of the data in the Manual Route Pass Through Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the Manual Route Pass Through Table row has been configured. @Config(config=no, reboot=no) ")
apex_man_rte_pass_through_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5))
if mibBuilder.loadTexts:
apexManRtePassThroughTable.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughTable.setDescription("Table of data for Manual Route Pass Through. This table is used to pass through an entire input stream to an output stream. Once written, the change to a row this table will only take immediate effect after the appropriate apexManRtePassThroughApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexManRtePassThroughApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apex_man_rte_pass_through_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1)).setIndexNames((0, 'APEX-MIB', 'apexManRtePassThroughOutputTsNum'))
if mibBuilder.loadTexts:
apexManRtePassThroughEntry.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughEntry.setDescription('Manual Route Pass Through Table Entry.')
apex_man_rte_pass_through_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexManRtePassThroughOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughOutputTsNum.setDescription('The index of the Manual Route Pass Through Table.')
apex_man_rte_pass_through_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRtePassThroughEnable.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughEnable.setDescription('Indicates that this Manual Route Pass Through is enabled or disabled. An input stream can only be passed through to an output stream when there are no active service or PID mappings to the output stream. ')
apex_man_rte_pass_through_input_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('gbe', 1), ('fastEnet', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRtePassThroughInputType.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughInputType.setDescription('Input Type of input from which to obtain data. ')
apex_man_rte_pass_through_input_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRtePassThroughInputInterface.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughInputInterface.setDescription("Number of the input interface, of type configured by Input Type, from which to obtain data. Range: '0' = Not Applicable GBE = 1-4 FastEnet = 1-2 ")
apex_man_rte_pass_through_input_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRtePassThroughInputUdp.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughInputUdp.setDescription('Input UDP Port from which to obtain data. Range: GBE = 0-65535 FastEnet = 1024-65535 ')
apex_man_rte_pass_through_input_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRtePassThroughInputMulticastIp.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughInputMulticastIp.setDescription('Input Multicast IP address from which to obtain data. An IP address of 0.0.0.0 indicates table entry not in use. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apex_man_rte_pass_through_input_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 5, 1, 7), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRtePassThroughInputSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughInputSourceIp.setDescription('Input IGMP v3 Source IP address from which to obtain data. If the router supports IGMP v3 the GBE will only receive data from this source IP. If Source IP is not specified or the router does not support IGMP v3 the GBE will receive data from any source device. Source IP address must be a valid singlecast address. ')
apex_man_rte_gbe_in_red_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 2))
if mibBuilder.loadTexts:
apexManRteGbeInRedApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedApplyTable.setDescription('Table of Apply Change for the data for Manual Route Table. A row in this table corresponds to the same row index in the Manual Route table. ')
apex_man_rte_gbe_in_red_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexManRteGbeInRedApplyIndex'))
if mibBuilder.loadTexts:
apexManRteGbeInRedApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedApplyEntry.setDescription('Manual Routing Gbe Input Ts Configuration Apply Table Entry.')
apex_man_rte_gbe_in_red_apply_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexManRteGbeInRedApplyIndex.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedApplyIndex.setDescription('The index of the Manual Routing Gbe Input Ts Configuration Apply Table.')
apex_man_rte_gbe_in_red_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 2, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedApplyChange.setDescription("The Apply for the row of data in the Manual Routing Gbe Input Ts Configuration Table. A row in this table corresponds to the same row index in the Manual Routing Gbe Input Ts Configuration table. This parameter MUST be set to 'apply' in order for any of the data in the Manual Routing Gbe Input Ts Configuration Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the Manual Routing Gbe Input Ts Configuration Table row has been configured. @Config(config=no, reboot=no) ")
apex_man_rte_gbe_in_red_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3))
if mibBuilder.loadTexts:
apexManRteGbeInRedTable.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedTable.setDescription("This table is the Manual Routing Gigabit Ethernet Input Transport Stream Configuration Table. This table contains 768 rows. For Force Switching a Redundancy pair for an Input TS configured in this table, refer to the same row index in apexManRteGbeInRedForceSwitchTable. Once written, the change to this table will only take immediate effect after apexManRteGbeInRedApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexManRteGbeInRedApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(gige_red.ini, type='ini') ")
apex_man_rte_gbe_in_red_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexManRteGbeInRedIndex'))
if mibBuilder.loadTexts:
apexManRteGbeInRedEntry.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedEntry.setDescription('Manual Routing Gigabit Ethernet Input Transport Stream Configuration Table Entry.')
apex_man_rte_gbe_in_red_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexManRteGbeInRedIndex.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedIndex.setDescription('The Manual Routing Gbe Input Ts Configuration table index. ')
apex_man_rte_gbe_in_red_pri_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedPriInterface.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedPriInterface.setDescription('The primary Gigabit Ethernet Interface. Zero indicates this row of the table is not in use. ')
apex_man_rte_gbe_in_red_pri_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedPriUdp.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedPriUdp.setDescription('The primary Gigabit Ethernet Input UDP Port. ')
apex_man_rte_gbe_in_red_pri_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedPriMulticastIp.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedPriMulticastIp.setDescription('The primary Multicast receive IP address. An IP address of 0.0.0.0 indicates table entry not in use. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apex_man_rte_gbe_in_red_pri_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedPriSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedPriSourceIp.setDescription('This is the IP address of the source device for the primary interface. If the router supports IGMP v3 the GBE will only receive data from this source IP. If Source IP is not specified or the router does not support IGMP v3 the GBE will receive data from any source device. Source IP address must be a valid singlecast address. ')
apex_man_rte_gbe_in_red_pri_low_alarm_bit_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedPriLowAlarmBitRate.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedPriLowAlarmBitRate.setDescription('This is the bit rate, in bits per second, below which the APEX will issue the apexAlarmGbeInputStreamLowBitRate alarm for the primary interface. The APEX will compare either the current Information rate or Stream rate as configured in apexManRteGbeInRedRateCompareType. Setting to zero disables the bit rate alarming. The APEX updates the bit rate statistics every five seconds. ')
apex_man_rte_gbe_in_red_pri_high_alarm_bit_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedPriHighAlarmBitRate.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedPriHighAlarmBitRate.setDescription('This is the bit rate, in bits per second, above which the APEX will issue the apexAlarmGbeInputStreamHighBitRate alarm for the primary interface. The APEX will compare either the current Information rate or Stream rate as configured in apexManRteGbeInRedRateCompareType. Setting to zero disables the bit rate alarming. The APEX updates the bit rate statistics every five seconds. Not supported. ')
apex_man_rte_gbe_in_red_rate_compare_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 8), rate_comparison_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedRateCompareType.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedRateCompareType.setDescription('This is the rate to use for comparing input streams. It is either Information rate or Stream rate. This applies to monitoring for Bit Rate alarming and monitoring of Redundant Pairs. ')
apex_man_rte_gbe_in_red_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 9), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedEnable.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedEnable.setDescription('This entry is used to enable Redundancy. ')
apex_man_rte_gbe_in_red_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedThreshold.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedThreshold.setDescription("Manual Routing Gigabit Ethernet Redundancy Threshold. This is the percent used to determine Fail Over from Primary to Secondary, and Switch Back from Secondary to Primary. If a value of zero is specified, Fail Over or Switch Back will not occur. Range is 0 to 100%. Primary Fail Over to Secondary: FailOver = (PrimaryRate) < (Threshold * SecondaryRate) The Primary must remain below the threshold for apexGbeConfInRedundMonitorPeriod. Fail Over will not occur when apexManRteGbeInRedSuspend is set to 'suspended'. Secondary Switch Back to Primary: SwitchBack = (PrimaryRate) >= (Threshold * SecondaryRate) The Primary must remain at or above the threshold for apexGbeConfInRedundMonitorPeriod seconds. The APEX will delay Switch Back an additional apexGbeConfInRedundSwitchTime seconds. Switch Back will not occur when apexManRteGbeInRedSuspend is set to 'suspended' or apexGbeConfInRedundAutoSwitchBack is 'disabled'. ")
apex_man_rte_gbe_in_red_suspend = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('notSuspended', 1), ('suspended', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedSuspend.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedSuspend.setDescription("This suspends Redundant Pair switching when set to 'suspended'. This has no effect when redundancy is disabled. Forced switching of Redundant Pairs is not prevented when this is set to 'suspended'. ")
apex_man_rte_gbe_in_red_sec_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecInterface.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecInterface.setDescription('The secondary Gigabit Ethernet Interface for redundancy. Zero is invalid when redundancy is enabled. ')
apex_man_rte_gbe_in_red_sec_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecUdp.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecUdp.setDescription('The secondary Gigabit Ethernet Input UDP Port for redundancy. ')
apex_man_rte_gbe_in_red_sec_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 14), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecMulticastIp.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecMulticastIp.setDescription('The secondary Multicast receive IP address for redundancy. An IP address of 0.0.0.0 indicates singlecast only. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apex_man_rte_gbe_in_red_sec_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 15), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecSourceIp.setDescription('This is the IP address of the source device for the secondary interface. If the router supports IGMP v3 the GBE will only receive data from this source IP. If Source IP is not specified or the router does not support IGMP v3 the GBE will receive data from any source device. Source IP address must be a valid singlecast address. ')
apex_man_rte_gbe_in_red_sec_low_alarm_bit_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecLowAlarmBitRate.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecLowAlarmBitRate.setDescription('This is the bit rate, in bits per second, below which the APEX will issue the apexAlarmGbeInputStreamLowBitRate alarm for the secondary interface. The APEX will compare either the current Information rate or Stream rate as configured in apexManRteGbeInRedRateCompareType. Setting to zero disables the bit rate alarming. The APEX updates the bit rate statistics every five seconds. ')
apex_man_rte_gbe_in_red_sec_high_alarm_bit_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 17), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecHighAlarmBitRate.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecHighAlarmBitRate.setDescription('This is the bit rate, in bits per second, above which the APEX will issue the apexAlarmGbeInputStreamHighBitRate alarm for the secondary interface. The APEX will compare either the current Information rate or Stream rate as configured in apexManRteGbeInRedRateCompareType. Setting to zero disables the bit rate alarming. The APEX updates the bit rate statistics every five seconds. Not supported. ')
apex_man_rte_gbe_in_red_sec_redund_mc_join = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 3, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('noJoinOnOpen', 1), ('joinOnOpen', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecRedundMcJoin.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedSecRedundMcJoin.setDescription('This is not currently supported and is reserved for future use. ')
apex_man_rte_gbe_in_red_force_switch_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 4))
if mibBuilder.loadTexts:
apexManRteGbeInRedForceSwitchTable.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedForceSwitchTable.setDescription('This table is the Manual Routing Gigabit Ethernet Input Transport Stream Redundancy Configuration Table. This table contains 768 rows. A row in this table corresponds to the same index in the apexManRteGbeInRedTable. ')
apex_man_rte_gbe_in_red_force_switch_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexManRteGbeInRedForceSwitchIndex'))
if mibBuilder.loadTexts:
apexManRteGbeInRedForceSwitchEntry.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedForceSwitchEntry.setDescription('Gigabit Ethernet Input Stream Redundancy Configuration Table Entry.')
apex_man_rte_gbe_in_red_force_switch_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexManRteGbeInRedForceSwitchIndex.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedForceSwitchIndex.setDescription('The Manual Routing Gbe Input Ts Redundancy Configuration table index. A row in this table corresponds to the same index in the apexManRteGbeInRedTable.')
apex_man_rte_gbe_in_red_force_switch = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 1, 6, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('switchNotInProgress', 1), ('forceSwitch', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexManRteGbeInRedForceSwitch.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedForceSwitch.setDescription("The Gigabit Ethernet Redundant Pair force switch. This will have no effect if the corresponding row setting of apexManRteGbeInRedEnable is 'disabled'. The corresponding row setting apexManRteGbeInRedSuspend is ignored when 'forceSwitch' is set. The switch will occur even if apexManRteGbeInRedSuspend is 'suspended'. When forced to the Secondary of the pair, the APEX will stay on the Secondary until the user forces back to the Primary. The APEX will not automatically switch back to the Primary when the Primary is restored above the failover threshold. The APEX will not allow a force to the Primary unless the Primary is above the failover threshold. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apex_manual_route_invalid_apply_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexManualRouteInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexManualRouteInvalidApplyText.setDescription('When apexManualRouteApplyChange is set to applyNotInProgressInvalidData this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a table entry that was invalid.')
apex_man_rte_pass_through_invalid_apply_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexManRtePassThroughInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexManRtePassThroughInvalidApplyText.setDescription('When apexManRtePassThroughApplyChange is set to applyNotInProgressInvalidData this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a table entry that was invalid.')
apex_man_rte_gbe_in_red_invalid_apply_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexManRteGbeInRedInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedInvalidApplyText.setDescription('When apexManRteGbeInRedTableApplyChange is set to applyNotInProgressInvalidData this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a table entry that was invalid.')
apex_man_rte_gbe_in_red_status_map_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 2, 2))
if mibBuilder.loadTexts:
apexManRteGbeInRedStatusMapTable.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedStatusMapTable.setDescription('This table provides the mapping between the indexes in Manual Routing Gigabit Ethernet Input Transport Stream Redundancy Configuration and Input TS Status. This table contains 768 rows. The index in this table corresponds to the same index in the apexManRteGbeInRedTable. ')
apex_man_rte_gbe_in_red_status_map_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexManRteGbeInRedStatusMapIndex'))
if mibBuilder.loadTexts:
apexManRteGbeInRedStatusMapEntry.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedStatusMapEntry.setDescription('Gigabit Ethernet Input Stream Redundancy Configuration and Status Mapping Table Entry.')
apex_man_rte_gbe_in_red_status_map_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexManRteGbeInRedStatusMapIndex.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedStatusMapIndex.setDescription('The Manual Routing Gbe Input Ts Redundancy Configuration and status mapping table index. A index in this table corresponds to the same index in the apexManRteGbeInRedTable.')
apex_man_rte_gbe_in_red_status_map_input_ts_stat_row = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 10, 2, 2, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 784))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexManRteGbeInRedStatusMapInputTsStatRow.setStatus('current')
if mibBuilder.loadTexts:
apexManRteGbeInRedStatusMapInputTsStatRow.setDescription('The Manual Routing Gbe Input TS Status index. This provides the mapping between the entries in apexManRteGbeInRedTable and apexInputTsStatTable. The range of the index is 0 - 784, where 0 indicates no direct association between configuration and status and the 1-784 is the actual Input Stream status row (relative 1). @Config(config=no, reboot=no) ')
apex_pid_map_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 2))
if mibBuilder.loadTexts:
apexPidMapApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapApplyTable.setDescription('Table of Apply Change for the data for PID Map Table. A row in this table corresponds to the same row index in the PID Map table. ')
apex_pid_map_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexPidMapApplyIndex'))
if mibBuilder.loadTexts:
apexPidMapApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapApplyEntry.setDescription('PID Map Apply Table Entry.')
apex_pid_map_apply_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 480)))
if mibBuilder.loadTexts:
apexPidMapApplyIndex.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapApplyIndex.setDescription('The index of the PID Map Apply Table.')
apex_pid_map_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 2, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPidMapApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapApplyChange.setDescription("The Apply for the row of data in the PID Map Table. A row in this table corresponds to the same row index in the PID Map table. This parameter MUST be set to 'apply' in order for any of the data in the PID Map Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the PID Map Table row has been configured. @Config(config=no, reboot=no) ")
apex_pid_map_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1))
if mibBuilder.loadTexts:
apexPidMapTable.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapTable.setDescription("Table of data for Ancillary Pid Mapping. There are 480 rows in this table (APEX supports up to 480 ancillary PID mappings). Once written, the change to this table will only take immediate effect after apexPidMapApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexPidMapApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apex_pid_map_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1)).setIndexNames((0, 'APEX-MIB', 'apexPidMapIndex'))
if mibBuilder.loadTexts:
apexPidMapEntry.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapEntry.setDescription('Pid Mapping Table Entry.')
apex_pid_map_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 480)))
if mibBuilder.loadTexts:
apexPidMapIndex.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapIndex.setDescription('Index of Pid Mapping Table.')
apex_pid_map_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPidMapEnable.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapEnable.setDescription('Indicates whether this PID Mapping is enabled or disabled. ')
apex_pid_map_input_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('gbe', 1), ('fastEnet', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPidMapInputType.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapInputType.setDescription('Input Type of input from which to obtain data. ')
apex_pid_map_input_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPidMapInputInterface.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapInputInterface.setDescription("Number of the input, of type configured by Input Type, from which to obtain data. Range: '0' = Not Applicable GBE = 1-4 FastEnet = 1-2 ")
apex_pid_map_input_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPidMapInputUdp.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapInputUdp.setDescription('Input UDP Port from which to obtain data. Range: GBE = 0-65535 FastEnet = 1024-65535 ')
apex_pid_map_input_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPidMapInputMulticastIp.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapInputMulticastIp.setDescription('The Multicast receive IP address on which to receive data. An IP address of 0.0.0.0 indicates singlecast only. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apex_pid_map_input_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 7), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPidMapInputSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapInputSourceIp.setDescription('This is the IP address of the source device. If the router supports IGMP v3 the GBE will only receive data from this source IP. If Source IP is not specified or the router does not support IGMP v3 the GBE will receive data from any source device. Source IP address must be a valid singlecast address. ')
apex_pid_map_input_pid = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 8191))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPidMapInputPid.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapInputPid.setDescription('Input MPEG PID to multiplex. When PID Remapping for an output is enabled, the input PID value and output PID value can be different. When PID Remapping for an output is disabled, the input and output PIDs must be the same. Input PID 0 (PAT PID) cannot be mapped by the user. ')
apex_pid_map_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 48))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPidMapOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapOutputTsNum.setDescription('Output Transport Stream Number of the output on which to place data. Zero is only valid if the apexPidMapTable entry is not being used. ')
apex_pid_map_output_pid = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 1, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 8191))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPidMapOutputPid.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapOutputPid.setDescription('Output PID to use for the data. This output PID value must match the input PID value when PID Remapping for the output stream is disabled. Zero is only valid if the apexPidMapTable entry is not being used. ')
apex_pid_map_max_pid_mappings = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPidMapMaxPidMappings.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapMaxPidMappings.setDescription('Maximum number of Ancillary PID mappings supported.')
apex_pid_map_invalid_apply_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 11, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPidMapInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexPidMapInvalidApplyText.setDescription('When apexPidMapApplyChange is set to applyNotInProgressInvalidData this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a table entry that was invalid.')
apex_insertion_mode = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('efficient', 1), ('singleSection', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexInsertionMode.setStatus('current')
if mibBuilder.loadTexts:
apexInsertionMode.setDescription("This parameter is used to set the insertion mode for the APEX. The APEX may be configured to insert messages as efficiently as possible (efficient) or restrict insertion to a single section starting per packet (singleSection). Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_insert_packet_statistics_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2, 2))
if mibBuilder.loadTexts:
apexInsertPacketStatisticsTable.setStatus('current')
if mibBuilder.loadTexts:
apexInsertPacketStatisticsTable.setDescription('Table of Output Transport Stream Insert Packet Statistics. Indexed by Output Transport Stream number.')
apex_insert_packet_statistics_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexInsertPacketStatOutputTsNum'))
if mibBuilder.loadTexts:
apexInsertPacketStatisticsEntry.setStatus('current')
if mibBuilder.loadTexts:
apexInsertPacketStatisticsEntry.setDescription('A row in the Output Transport Stream Insert Packet Statistics table.')
apex_insert_packet_stat_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexInsertPacketStatOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexInsertPacketStatOutputTsNum.setDescription('Output Transport Stream Number.')
apex_insert_packet_stat_tot_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInsertPacketStatTotPkts.setStatus('current')
if mibBuilder.loadTexts:
apexInsertPacketStatTotPkts.setDescription('Total number of packets inserted.')
apex_insert_packet_stat_num_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 12, 2, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInsertPacketStatNumPkts.setStatus('current')
if mibBuilder.loadTexts:
apexInsertPacketStatNumPkts.setDescription('Number of packets inserted during the last monitoring period (currently 5 seconds).')
apex_input_ts_stat_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2))
if mibBuilder.loadTexts:
apexInputTsStatTable.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatTable.setDescription('Table of Input Transport Stream Status data. For each input stream in use, an entry in this row will be utilized. This table will indicate the input stream in use by type, interface, UDP, multicast IP, and Source IP address. This table will also indicate if the input stream is a Primary or Secondary input stream. Table of 768 GigE entries plus 16 Host entries (784 total input entries). List of GigE and Host Ethernet input streams currently in use. Each row contains an entry for Primary and Secondary information along with the 1 currently in use. ')
apex_input_ts_stat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexInputTsStatIndex'))
if mibBuilder.loadTexts:
apexInputTsStatEntry.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatEntry.setDescription('Input Transport Stream Status Table Entry.')
apex_input_ts_stat_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 784)))
if mibBuilder.loadTexts:
apexInputTsStatIndex.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatIndex.setDescription('Index of Input Transport Stream Status Table.')
apex_input_ts_stat_stream_in_use = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('primary', 1), ('secondary', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatStreamInUse.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatStreamInUse.setDescription('Indicates whether the primary or secondary is in use. Zero indicates this row is not in use. ')
apex_input_ts_stat_input_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('gbe', 1), ('fastEnet', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatInputType.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatInputType.setDescription('Input Type of both primary and secondary inputs. ')
apex_input_ts_stat_routing_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('notApplicable', 0), ('session', 1), ('manual', 2), ('udpMapping', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatRoutingType.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatRoutingType.setDescription("Routing Type of both primary and secondary inputs. 'session' - applies to SDV session routes (RPC, RTSP). 'manual' - applies to all manual routes (Manual Routing, PID Mapping, and stream pass through). 'udpMapping - applies to UDP Port Mapping routes. ")
apex_input_ts_stat_pri_state = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 5), input_ts_state_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatPriState.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatPriState.setDescription("The current state of the primary Gigabit Ethernet Input TS configured in apexManRteGbeInRedTable. States are: closed (0) - Input TS is closed or table row is not in use. openedInUse (1) - Input TS is opened and in use. openedBackup (2) - Input TS is opened as backup only. openedTransToBackup (3) - Input TS is opened, transitioning to backup state. openedTransToInUse (4) - Input TS is opened, transitioning to in use state. The states of 'openedBackup', 'openedTransToBackup', and 'openedTransToBackup' apply only to Redundant Pairs. The state of 'openedBackup' applies to the Input TS of the pair that is not currently in use. The state of 'openedTransToBackup' applies to the Input TS of the pair that is currently in use but is transitioning to be the backup, as when a Fail Over or Switch Back is occurring. The state of 'openedTransToInUse' applies to the Input TS of the pair that is currently the backup use but is transitioning to be the in use, as when a Fail Over or Switch Back is occurring. ")
apex_input_ts_stat_pri_input_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatPriInputInterface.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatPriInputInterface.setDescription('Number of the primary input interface of type Input Type. ')
apex_input_ts_stat_pri_input_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatPriInputUdp.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatPriInputUdp.setDescription('Input UDP Port for primary input. ')
apex_input_ts_stat_pri_input_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 8), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatPriInputMulticastIp.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatPriInputMulticastIp.setDescription('The Multicast receive IP address for primary input. ')
apex_input_ts_stat_pri_input_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 9), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatPriInputSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatPriInputSourceIp.setDescription('This is the IGMP v3 Source IP address of the source device for the primary input. ')
apex_input_ts_stat_sec_state = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 10), input_ts_state_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatSecState.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatSecState.setDescription("The current state of the secondary Gigabit Ethernet Input TS configured in apexManRteGbeInRedTable. States are: closed (0) - Input TS is closed or table row is not in use. openedInUse (1) - Input TS is opened and in use. openedBackup (2) - Input TS is opened as backup only. openedTransToBackup (3) - Input TS is opened, transitioning to backup state. openedTransToInUse (4) - Input TS is opened, transitioning to in use state. The states of 'openedBackup', 'openedTransToBackup', and 'openedTransToBackup' apply only to Redundant Pairs. The state of 'openedBackup' applies to the Input TS of the pair that is not currently in use. The state of 'openedTransToBackup' applies to the Input TS of the pair that is currently in use but is transitioning to be the backup, as when a Fail Over or Switch Back is occurring. The state of 'openedTransToInUse' applies to the Input TS of the pair that is currently the backup use but is transitioning to be the in use, as when a Fail Over or Switch Back is occurring. ")
apex_input_ts_stat_sec_input_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatSecInputInterface.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatSecInputInterface.setDescription('Number of the secondary input interface of type Input Type. ')
apex_input_ts_stat_sec_input_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatSecInputUdp.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatSecInputUdp.setDescription('Input UDP Port for secondary input. ')
apex_input_ts_stat_sec_input_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 13), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatSecInputMulticastIp.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatSecInputMulticastIp.setDescription('The Multicast receive IP address for secondary input. ')
apex_input_ts_stat_sec_input_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 14), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatSecInputSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatSecInputSourceIp.setDescription('This is the IGMP v3 Source IP address of the source device for the secondary input. ')
apex_input_ts_stat_rate_compare_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 13, 2, 2, 1, 15), rate_comparison_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInputTsStatRateCompareType.setStatus('current')
if mibBuilder.loadTexts:
apexInputTsStatRateCompareType.setDescription('This is the rate in use for comparing input streams. It is either Information rate or Stream rate. This applies to monitoring for Bit Rate alarming and monitoring of Redundant Pairs. ')
apex_output_ts_util_mon_alarm_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOutputTsUtilMonAlarmThreshold.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilMonAlarmThreshold.setDescription("The threshold, in percent, used to produce the apexAlarmOutputUtilizationFault alarm 'minor' while monitoring Output Transport Stream Bandwidth Utilization. An alarm of 'minor' will occur when this threshold is met or exceeded for apexOutputTsUtilMonSetAlarmDelay. The alarm will clear after remaining below this threshold for apexOutputTsUtilMonClearAlarmDelay. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_output_ts_util_mon_set_alarm_delay = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 900))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOutputTsUtilMonSetAlarmDelay.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilMonSetAlarmDelay.setDescription("This is the time in seconds that the Output Transport Stream must be at or exceeding apexOutputTsUtilMonAlarmThreshold before setting the apexAlarmOutputUtilizationFault alarm. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_output_ts_util_mon_clear_alarm_delay = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 900))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOutputTsUtilMonClearAlarmDelay.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilMonClearAlarmDelay.setDescription("This is the time in seconds that the Output Transport Stream must be below apexOutputTsUtilMonAlarmThreshold before clearing the apexAlarmOutputUtilizationFault alarm. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_output_ts_utilization_monitor_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 2))
if mibBuilder.loadTexts:
apexOutputTsUtilizationMonitorTable.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizationMonitorTable.setDescription('This is a table of configuration parameters for Rate Monitoring of the Output Transport Stream Bandwidth Utilization. Utilization information is accessed via apexOutputTsUtilizationTable.')
apex_output_ts_utilization_monitor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexOutputTsUtilMonOutputTsNum'))
if mibBuilder.loadTexts:
apexOutputTsUtilizationMonitorEntry.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizationMonitorEntry.setDescription('Output Transport Rate Monitoring Configuration Table Entry.')
apex_output_ts_util_mon_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexOutputTsUtilMonOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilMonOutputTsNum.setDescription('Output Transport Stream Number.')
apex_output_ts_util_mon_reset_tot_drop_packet = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 4, 2, 1, 2), reset_statistics_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOutputTsUtilMonResetTotDropPacket.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilMonResetTotDropPacket.setDescription("Output Ts Reset total dropped packets. Setting to 'reset' resets same apexOutputTsUtilizTotalDropPackets index row in apexOutputTsUtilizationTable. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apex_output_ts_conf_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 5))
if mibBuilder.loadTexts:
apexOutputTsConfApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfApplyTable.setDescription('Table of Apply Change for Output Ts Config Table. This apply is only used for apexOutputTsConfOperatingMode, apexOutputTsConfEncryptionType, and apexOutputTsConfSimulcryptMode.')
apex_output_ts_conf_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 5, 1)).setIndexNames((0, 'APEX-MIB', 'apexOutputTsConfApplyIndex'))
if mibBuilder.loadTexts:
apexOutputTsConfApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfApplyEntry.setDescription('Output Transport Stream Apply Table Entry.')
apex_output_ts_conf_apply_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexOutputTsConfApplyIndex.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfApplyIndex.setDescription('Index of Output Transport Stream Apply Table.')
apex_output_ts_conf_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 5, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOutputTsConfApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfApplyChange.setDescription("The apply for Output Ts Config Table. This apply is only used for apexOutputTsConfOperatingMode, apexOutputTsConfEncryptionType, and apexOutputTsConfSimulcryptMode. A row in this table corresponds to the same row index in the Output Ts Config table. This parameter MUST be set to 'apply' in order for the items listed above to take effect in the APEX. This parameter MUST be set LAST after the relevant data in the Output Ts Config row has been configured. @Config(config=no, reboot=no) ")
apex_output_ts_config_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6))
if mibBuilder.loadTexts:
apexOutputTsConfigTable.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfigTable.setDescription("This is a table of configuration parameters for Output Transport Streams. Once written, a change to apexOutputTsConfEncryptionType, apexOutputTsConfOperatingMode, or apexOutputTsConfSimulcryptMode will only take immediate effect after the appropriate apexOutputTsConfApplyChange is set to 'apply'. All other changes to this table will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_output_ts_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1)).setIndexNames((0, 'APEX-MIB', 'apexOutputTsConfOutputTsNum'))
if mibBuilder.loadTexts:
apexOutputTsConfigEntry.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfigEntry.setDescription('Output Transport Stream Configuration Table Entry.')
apex_output_ts_conf_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexOutputTsConfOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfOutputTsNum.setDescription('Output Transport Stream Number.')
apex_output_ts_conf_pid_remapping_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('disabled', 1), ('remapWithoutReuse', 2), ('remapProgramBased', 3), ('remapProgramBased2', 4), ('unrestricted', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOutputTsConfPidRemappingMode.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfPidRemappingMode.setDescription("The PID Remapping mode setting. When 'disabled', the output PIDs for all services and ancillary PIDs are the same as the input PID values. This scheme can only be used when either mapping an entire MPTS to a QAM output or when SPTS are mapped and the user has already ensured that all of the PIDs across all inputs mapped to the same output stream are unique. When 'remapWithoutReuse', the APEX will determine the output PIDs from a predetermined range of PIDs for services and ancillary PIDs. The APEX will use a scheme to limit the reuse of service PIDs for each service mapping. This scheme MUST be used for outputs in Session Control mode and in normally in UDP Port Mapping mode (exception noted below). When receiving SPTS inputs, in order to ensure there are no PID conflicts, this scheme should be selected. When 'remapProgramBased', the APEX will determine the output PIDs from a predetermined range of PIDs for services and ancillary PIDs. The APEX uses a scheme to select the PMT PID based on the program number. The PMT PID is calculated as follows: (Program Number + 1) * 16. The component PIDs are sequential after the PMT PID. This scheme only allows for a total of 15 component PIDs per program. Output program numbers are also limited (1-256). This scheme is intended to be used when in UDP Port Mapping mode at specific sites. When 'unrestricted', the APEX will allocate output PIDs as long as they are needed using the whole available PIDs range, unlike other pid-remapping modes where PID values are internally pre-allocated for different uses (PMT, components, ECM, ...). This scheme is only recommended for cases when the user need a special pre-assigned EMM pid that can't be configured in the other pid-remapping modes. PID Remapping mode changes can only occur when the output is not in use (no service, PID, or stream mapping active to the output). ")
apex_output_ts_conf_operating_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('notInUse', 0), ('sessionControl', 1), ('manualRouting', 2), ('udpMapping', 3), ('depi', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOutputTsConfOperatingMode.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfOperatingMode.setDescription('This parameter is used to set the operating mode of the output. Operating mode changes can only occur when the output is not in use (no service, PID, or stream mapping active to the output). Session Control - User must select either RTSP or RPC to communicate with external resource manager. All service mappings on output are controlled by the external manager. - Only valid when Encryption Type is set to CTE or None - Only valid when Simulcrypt Mode is set to None - PID Remapping mode should be Enabled (Without Reuse) Manual Routing - User manually maps each service - Encryption Type can be any valid setting (none, CTE, or Broadcast) - Simulcrypt Mode must be None or External EIS UDP Port Mapping - Standard UDP Port Mapping for use with VOD servers. Uses specific algorithm based on UDP Port to determine output program mappings. - Encryption Type must be None or CTE (broadcast not supported) - Simulcrypt Mode must be None or External EIS Operating mode changes can only occur when the output is not in use (no service, PID, or stream mapping active to the output). @Commit(param=apexOutputTsConfApplyChange, value=2) ')
apex_output_ts_conf_out_pat_ts_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOutputTsConfOutPatTsId.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfOutPatTsId.setDescription('Output Transport Stream ID to use for the output PAT in this Output Transport Stream. Changes to the output PAT TS ID can be made at any time and will cause the output PAT to automatically be updated to reflect the new TS ID setting. ')
apex_output_ts_conf_psip_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 5), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOutputTsConfPsipEnable.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfPsipEnable.setDescription('This parameter indicates that PSIP is enabled for the Output Transport Stream. ')
apex_output_ts_conf_encryption_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('noEncryption', 0), ('cte', 1), ('broadcastEncryption', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOutputTsConfEncryptionType.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfEncryptionType.setDescription("This parameter is used to set the encryption type of the output. 'noEncryption' - All services are output in the clear 'cte' - Services on output use Common Tier Encryption. CTE parameters determine encryption mode, copy protection, and tiers. All services in CTE mode use the exact same configuration settings. - Valid for all operating modes - Simulcrypt Mode must be set to None 'broadcastEncryption' - Services on output use Broadcast Encryption. Requires connection to RDS (DAC) to get EMMs and Rights Meta Data (tiers, encryption mode, and copy protection settings) for each individual service. - Only valid when Operating Mode is Manual Routing. - Simulcrypt Mode must be set to None @Commit(param=apexOutputTsConfApplyChange, value=2) ")
apex_output_ts_conf_simulcrypt_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('externalEIS', 1), ('internalEIS', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOutputTsConfSimulcryptMode.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfSimulcryptMode.setDescription("This parameter is used to set the Simulcrypt mode of the output. The actual behavior is disable/enable (none/externalEIS). It can be set to externalEIS if the Encryption Algorithm is set to 'dvb-csa-simulcrypt and the Operating Mode is set to 'ManualRouting' or 'udpMapping'. It only can be none if there are no SCGs provisioned on that output TS. 'none' - Used for normal Mediacypher only encryption (CTE or Broadcast Encryption). 'externalEIS' - Used to indicate an external EIS can control the encryption of all services on the output. - Only valid when: - Operating Mode is set to 'ManualRouting' or 'udpMapping' - Encryption Algorithm is set to 'dvb-csa-simulcrypt' 'internalEIS' - Not supported at this time and is invalid to select. @Commit(param=apexOutputTsConfApplyChange, value=2) ")
apex_output_ts_conf_pcr_less = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 1, 6, 1, 8), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexOutputTsConfPcrLess.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsConfPcrLess.setDescription('This parameter indicates that PCR-less is enabled for the Output Transport Stream. ')
apex_output_ts_status_invalid_apply_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsStatusInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusInvalidApplyText.setDescription("When apexOutputTsConfApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a related entry that was invalid. ")
apex_output_ts_utilization_sample_period = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizationSamplePeriod.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizationSamplePeriod.setDescription('Sample Period for Output Transport Stream Bandwidth Utilization Rate Monitoring. This parameter indicates the length of time in milliseconds the stream is monitored during a single sample. This can be used with apexOutputTsUtilizNumSamples to determine the amount of time or percent of time the stream was monitored during a fifteen minute sampling interval.')
apex_output_ts_utilization_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2))
if mibBuilder.loadTexts:
apexOutputTsUtilizationTable.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizationTable.setDescription('This is a table of status parameters containing bandwidth utilization for Output Transport Streams. The sampling interval is up to fifteen minutes. There is a rolling average as well as last sample, peak, and minimum information. There is overflow information and dropped packet counts. This table is indexed by Output Transport Stream Number.')
apex_output_ts_utilization_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexOutputTsUtilizOutpuTsNum'))
if mibBuilder.loadTexts:
apexOutputTsUtilizationEntry.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizationEntry.setDescription('Output Transport Stream Bandwidth Utilization Table Entry.')
apex_output_ts_utiliz_outpu_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexOutputTsUtilizOutpuTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizOutpuTsNum.setDescription('Output Transport Stream Number.')
apex_output_ts_utiliz_data_flag = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('samplingComplete', 1), ('samplingIncomplete', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizDataFlag.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizDataFlag.setDescription("Flag to indicate whether the Output Transport Stream was monitored a full fifteen minute sampling interval and a complete set of samples was obtained. 'samplingComplete' - indicates sampling complete with good samples. 'samplingIncomplete' - indicates incomplete sampling due to APEX startup or OTS rate changed during the period.")
apex_output_ts_utiliz_num_samples = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 3), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizNumSamples.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizNumSamples.setDescription('Number of samples included in the data. This can be used with apexOutputTsUtilizationSamplePeriod to determine the amount of time or percent of time the stream was monitored during the sampling interval.')
apex_output_ts_utiliz_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('noError', 1), ('alarmThresholdReached', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizThreshold.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizThreshold.setDescription('Indicates whether there is a utilization error has occurred. The error occurs when Output Utilization Alarm Threshold has been reached for Output Utilization Set Alarm Delay seconds and will clear after the output is below the Output Utilization Alarm Threshold for Output Utilization Clear Alarm Delay. This field is also cleared when the QAM output is disabled.')
apex_output_ts_utiliz_time = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizTime.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizTime.setDescription('Time in GPS seconds (apexSystemTime) that this table row was saved. When GPS time is not available to the apex (apexSystemTime=0) a clock maintained inside the APEX will be used. This clock starts at GPS time zero when the apex is booted. The APEX will use real GPS time if and when GPS time becomes available to the APEX.')
apex_output_ts_utiliz_cur_percent = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizCurPercent.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizCurPercent.setDescription('Percent utilization of most recently taken sample.')
apex_output_ts_utiliz_avg_percent = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizAvgPercent.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizAvgPercent.setDescription('Average percent utilization over the rolling sampling interval.')
apex_output_ts_utiliz_min_percent = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizMinPercent.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizMinPercent.setDescription('Minimum percent utilization for a sample during the rolling sampling interval.')
apex_output_ts_utiliz_peak_percent = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizPeakPercent.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizPeakPercent.setDescription('Peak percent utilization for a sample during the rolling sampling interval.')
apex_output_ts_utiliz_cur_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 10), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizCurRate.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizCurRate.setDescription('Utilization of most recently taken sample in bits per second (bps).')
apex_output_ts_utiliz_avg_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 11), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizAvgRate.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizAvgRate.setDescription('Average utilization for the rolling sampling interval in bits per second (bps).')
apex_output_ts_utiliz_min_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 12), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizMinRate.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizMinRate.setDescription('Minimum utilization for a sample during this sampling interval in bits per second (bps).')
apex_output_ts_utiliz_peak_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 13), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizPeakRate.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizPeakRate.setDescription('Peak utilization for a sample during the rolling sampling interval in bits per second (bps).')
apex_output_ts_utiliz_overflow = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('noError', 1), ('overflow', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizOverflow.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizOverflow.setDescription('Indicates whether an overflow error has occurred. This field will clear if the output has no overflows. This field is also cleared when the QAM output is disabled.')
apex_output_ts_utiliz_cur_drop_packets = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 15), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizCurDropPackets.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizCurDropPackets.setDescription('MPEG packets dropped during the most recently taken sample.')
apex_output_ts_utiliz_peak_drop_packets = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 16), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizPeakDropPackets.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizPeakDropPackets.setDescription('Peak MPEG packets dropped for a sample during the rolling sampling interval.')
apex_output_ts_utiliz_rolling_drop_packets = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 17), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizRollingDropPackets.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizRollingDropPackets.setDescription('Total MPEG packets dropped during the rolling sampling interval.')
apex_output_ts_utiliz_total_drop_packets = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 18), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizTotalDropPackets.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizTotalDropPackets.setDescription('Total MPEG packets dropped on the QAM Output. Can be reset using apexOutputTsUtilMonResetTotDropPacket.')
apex_output_ts_utiliz_threshold_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizThresholdAlarm.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizThresholdAlarm.setDescription('Current fault condition of apexOutputTsUtilizThreshold. This is the apexAlarmOutputUtilizationFault level for this output.')
apex_output_ts_utiliz_overflow_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 2, 2, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsUtilizOverflowAlarm.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsUtilizOverflowAlarm.setDescription('Current fault condition of apexOutputTsUtilizOverflow. This is the apexAlarmOutputOverflow level for this output.')
apex_output_ts_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5))
if mibBuilder.loadTexts:
apexOutputTsStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusTable.setDescription('Table of Output Transport Status. Indexed by Output Transport Stream number.')
apex_output_ts_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1)).setIndexNames((0, 'APEX-MIB', 'apexOutputTsStatusOutputTsNum'))
if mibBuilder.loadTexts:
apexOutputTsStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusEntry.setDescription('A row in the Output Transport Stream Status table.')
apex_output_ts_status_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexOutputTsStatusOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusOutputTsNum.setDescription('Output Transport Stream Number.')
apex_output_ts_status_programs_per_ts = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsStatusProgramsPerTs.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusProgramsPerTs.setDescription('Number of Output Programs supported on this Output Transport Stream. ')
apex_output_ts_status_services_mapped = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsStatusServicesMapped.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusServicesMapped.setDescription('Number of services currently mapped to the output.')
apex_output_ts_status_ancillary_pids_mapped = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsStatusAncillaryPidsMapped.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusAncillaryPidsMapped.setDescription('Number of ancillary PIDs currently mapped to the output.')
apex_output_ts_status_input_streams_mapped = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsStatusInputStreamsMapped.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusInputStreamsMapped.setDescription('Number of input streams currently mapped to the output.')
apex_output_ts_status_fault = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsStatusFault.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusFault.setDescription('Highest current fault condition associated with this Output Transport Stream. The following Alarms are included: - apexAlarmOutputOverflow - apexAlarmOutputUtilizationFault - apexAlarmQamModuleFault - apexAlarmQamRfPortFault - apexAlarmQamChannelFault ')
apex_output_ts_status_services_in_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsStatusServicesInError.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusServicesInError.setDescription('Number of services in error mapped to the output stream.')
apex_output_ts_status_depi_sessions_mapped = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsStatusDepiSessionsMapped.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusDepiSessionsMapped.setDescription('Number of DEPI sessions currently mapped to the output.')
apex_output_ts_status_message_generation_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsStatusMessageGenerationNum.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusMessageGenerationNum.setDescription('Number of messages generated (DVB tables) currently in the output.')
apex_output_ts_status_scgs_provisioned = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsStatusScgsProvisioned.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusScgsProvisioned.setDescription('Number of SCGs provisioned currently in the output.')
apex_output_ts_status_services_muxed = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 14, 2, 5, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsStatusServicesMuxed.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsStatusServicesMuxed.setDescription('Number of services successfully multiplexed.')
apex_psi_detection_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 1), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsiDetectionEnabled.setStatus('current')
if mibBuilder.loadTexts:
apexPsiDetectionEnabled.setDescription("The loss of input PSI detection enabled or disabled setting. When enabled, the APEX will check for missing input PSI (PATs and PMTs) based on the PSI detection timeout value. When an input PSI message is determined to be missing, the APEX will assume the input service or services are no longer being streamed and unmap the service(s). This checking only occurs after an initial PSI message has been extracted. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psi_detection_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 21600))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsiDetectionTimeout.setStatus('current')
if mibBuilder.loadTexts:
apexPsiDetectionTimeout.setDescription("The loss of input PSI detection timeout value. When PSI detection is enabled, this is the number of seconds the APEX will use to determine if an input PSI message is missing. Each PSI message previously extracted will be checked to determine that it is still being received based on this setting. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psi_range_start = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsiRangeStart.setStatus('current')
if mibBuilder.loadTexts:
apexPsiRangeStart.setDescription("Minimum PSI version number. Used to limit the APEX to use a specific range of PSI numbers. Set this to 0 to allow the APEX to use the full range of PSI version numbers (requires apexPsiRangeStop to be set to 31). Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psi_range_stop = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsiRangeStop.setStatus('current')
if mibBuilder.loadTexts:
apexPsiRangeStop.setDescription("Maximum PSI version number. Used to limit the APEX to use a specific range of PSI numbers. Set this to 31 to allow the APEX to use the full range of PSI version numbers (requires apexPsiRangeStart to be set to 0). Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_pat_version_increment = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPatVersionIncrement.setStatus('current')
if mibBuilder.loadTexts:
apexPatVersionIncrement.setDescription("Increment of PAT version upon reboot. Used to force the APEX to use a different PAT version number upon rebooting. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_pmt_version_increment = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPmtVersionIncrement.setStatus('current')
if mibBuilder.loadTexts:
apexPmtVersionIncrement.setDescription("Increment of PMT version upon reboot. Used to force the APEX to use a different PMT version number upon rebooting. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_ecm_emm_first_pid = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(2, 8191))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEcmEmmFirstPid.setStatus('current')
if mibBuilder.loadTexts:
apexEcmEmmFirstPid.setDescription("First ECM-EMM PID when PID Remapping is disabled on an output stream. This PID along with the apexEcmEmmNumberPids defines a range of PIDs that the APEX will use for all ECMs and EMMs. These configuration settings allow a user to select a range that other service and ancillary PIDs will not use. This allows the APEX to use PIDs for ECMs and EMMs without having PID collisions. PID collisions will cause the APEX to select another ECM or EMM PID causing momentary glitches of the output video and audio. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_ecm_emm_number_pids = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEcmEmmNumberPids.setStatus('current')
if mibBuilder.loadTexts:
apexEcmEmmNumberPids.setDescription("Number of ECM-EMM PIDs to use when PID Remapping is disabled on an output stream. Refer to the apexEcmEmmFirstPid parameter for a complete description. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_program_based_pmt_offset = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 1), value_range_constraint(2, 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexProgramBasedPmtOffset.setStatus('current')
if mibBuilder.loadTexts:
apexProgramBasedPmtOffset.setDescription("Program Based PID Remapping PMT PID offset. Determines the first PMT PID to use when Program Based algorithm selected. PMT PID is calculated as: (Program Number + Offset) * 16 Program Numbers can range from 1 - 255, allowing for PMTs to start at 0x0020 or 0x0030 up to 0x1000 and 0x1010. Changes to offset will NOT require a reboot, but if there are any service mappings already in use on an output in Program Based mode, then the change will NOT take effect and the user will have to remove all mappings on outputs in Program Based mode. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psi_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2))
if mibBuilder.loadTexts:
apexPsiStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexPsiStatusTable.setDescription('The following table contains a list of messages that are either being extracted from the input side or being inserted to the output side of the apex. On the input side all extracted messages that are being used by the APEX are displayed. On the output side, only PATs, PMTs, and CATs are displayed. These messages were either given to the apex when it is in external mode or created by the apex when it is in internal mode.')
apex_psi_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexPsiStatusTableType'), (0, 'APEX-MIB', 'apexPsiStatusIndex'), (0, 'APEX-MIB', 'apexPsiStatusPid'), (0, 'APEX-MIB', 'apexPsiStatusMessageType'), (0, 'APEX-MIB', 'apexPsiStatusProgramNumber'), (0, 'APEX-MIB', 'apexPsiStatusSegment'), (0, 'APEX-MIB', 'apexPsiStatusPart'))
if mibBuilder.loadTexts:
apexPsiStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexPsiStatusEntry.setDescription('PSI Table Entry.')
apex_psi_status_table_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('inputPsiTable', 1), ('outputPsiTable', 2))))
if mibBuilder.loadTexts:
apexPsiStatusTableType.setStatus('current')
if mibBuilder.loadTexts:
apexPsiStatusTableType.setDescription('Indicates whether this message is extracted from an input or being inserted on an output.')
apex_psi_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 784)))
if mibBuilder.loadTexts:
apexPsiStatusIndex.setStatus('current')
if mibBuilder.loadTexts:
apexPsiStatusIndex.setDescription('Indicates the input index or output number for which this message applies. For input, this is the index into the apexInputTsStatTable (1..784). For output, this is the Output Transport Stream number (1..48). ')
apex_psi_status_pid = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 8191)))
if mibBuilder.loadTexts:
apexPsiStatusPid.setStatus('current')
if mibBuilder.loadTexts:
apexPsiStatusPid.setDescription('Indicates the PID that this message is contained in.')
apex_psi_status_message_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)))
if mibBuilder.loadTexts:
apexPsiStatusMessageType.setStatus('current')
if mibBuilder.loadTexts:
apexPsiStatusMessageType.setDescription('Indicates the MPEG message type of this message.')
apex_psi_status_program_number = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)))
if mibBuilder.loadTexts:
apexPsiStatusProgramNumber.setStatus('current')
if mibBuilder.loadTexts:
apexPsiStatusProgramNumber.setDescription('Indicates the Program Number which this message is part of. When a message is not specifically related to a program, this value is 0.')
apex_psi_status_segment = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 256)))
if mibBuilder.loadTexts:
apexPsiStatusSegment.setStatus('current')
if mibBuilder.loadTexts:
apexPsiStatusSegment.setDescription('Indicates the segment number of this message. Useful for PAT messages. Otherwise this is 0.')
apex_psi_status_part = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)))
if mibBuilder.loadTexts:
apexPsiStatusPart.setStatus('current')
if mibBuilder.loadTexts:
apexPsiStatusPart.setDescription('Since a message can be 1024 bytes long the message may divided into parts. Each part of the message is indexed using this index.')
apex_psi_status_body = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsiStatusBody.setStatus('current')
if mibBuilder.loadTexts:
apexPsiStatusBody.setDescription('Raw ASCII hex of the PSI message.')
apex_psi_status_gps_time = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 15, 2, 2, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsiStatusGpsTime.setStatus('current')
if mibBuilder.loadTexts:
apexPsiStatusGpsTime.setDescription('The GPS time when the PSI was added to the table.')
apex_output_program_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2))
if mibBuilder.loadTexts:
apexOutputProgramTable.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramTable.setDescription('This table shows the input program to output program mapping status.')
apex_output_program_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexOutputProgramIndex'))
if mibBuilder.loadTexts:
apexOutputProgramEntry.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramEntry.setDescription('Output Program Table Entry.')
apex_output_program_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexOutputProgramIndex.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramIndex.setDescription('Output Program Table Index. ')
apex_output_program_input_ts_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramInputTsIndex.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramInputTsIndex.setDescription('The index into the apexInputTsStatTable.')
apex_output_program_input_prog_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramInputProgNum.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramInputProgNum.setDescription('Input MPEG Program Number.')
apex_output_program_output_prog_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramOutputProgNum.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramOutputProgNum.setDescription('Output MPEG Program Number.')
apex_output_program_routing_status = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramRoutingStatus.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramRoutingStatus.setDescription('Current Program Routing Status.')
apex_output_program_input_pre_encrypted = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('clear', 1), ('preEncrypted', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramInputPreEncrypted.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramInputPreEncrypted.setDescription('Indicates whether the program was pre-encrypted. Pre-encryption status is determined by the presence or absence of a CA ECM descriptor within the input PMT.')
apex_output_program_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 48))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramOutputTsNum.setDescription('Output Transport Stream Number.')
apex_output_program_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramError.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramError.setDescription('Indicates if the program is in error.')
apex_output_program_encryption_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('none', 0), ('full', 1), ('fwk', 2), ('fpk', 3), ('clear', 4), ('unencrypted', 5), ('preEncrypted', 6), ('unencryptedWithCci', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramEncryptionMode.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramEncryptionMode.setDescription('Currently configured encryption mode for the program. none - indicates the program is not being encrypted for CTE or Broadcast encryption. unencrypted - Applies to Broadcast services only. Unencrypted services are treated the same as clear services (no encryption). preEncrypted - Applies to Broadcast services only. Input program pre-encryption checking is applied. Output program is not encrypted by the APEX, regardless if input encrypted or not. unencryptedWithCci - True unencrypted mode where packets are not scrambled, but ECMs are inserted and ECM CA reference is added to output PMT (PRK contains Copy Protection information).')
apex_output_program_encryption_status = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramEncryptionStatus.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramEncryptionStatus.setDescription('Current Program Encryption Status.')
apex_output_program_ecm_service_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramEcmServiceId.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramEcmServiceId.setDescription('The ECM service ID used when this program is encrypted. This is the service ID used in all ECM messages for this program.')
apex_output_program_cci_level = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('notApplicable', 0), ('notDefined', 1), ('copyFreely', 2), ('copyOnce', 3), ('copyNever', 4), ('noMoreCopies', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramCciLevel.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramCciLevel.setDescription('Copy protection CCI Level. This is only applicable when the program is being encrypted.')
apex_output_program_aps_level = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('notApplicable', 0), ('notDefined', 1), ('off', 2), ('splitBurstOff', 3), ('splitBurst2Line', 4), ('splitBurst4Line', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramApsLevel.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramApsLevel.setDescription('Copy protection Analog Protection Services Level. This is only applicable when the program is being encrypted.')
apex_output_program_cit_setting = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('disabled', 1), ('enabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramCitSetting.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramCitSetting.setDescription('Copy protection Constraint Image Trigger setting. This is only applicable when the program is being encrypted.')
apex_output_program_number_tiers = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramNumberTiers.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramNumberTiers.setDescription('The number of program tiers. This is only applicable when the program is being encrypted.')
apex_output_program_tier_data = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 16), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramTierData.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramTierData.setDescription('Current Program Tier Data. Tier information is in hexadecimal format. Up to 7 tiers of information are provided for each program. Tier information for each program consists of 8 bytes of information. First 4 bytes are the program tier value in hexadecimal. Next 4 bytes are the tier type in hexadecimal format. This is only applicable when the program is being encrypted.')
apex_output_program_source_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramSourceId.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramSourceId.setDescription("Broadcast Encryption Source ID. Only applies to programs when the input type is Gbe and the output encryption mode is Broadcast Encryption. (apexOutputTsConfEncryptionType set to 'broadcastEncryption') ")
apex_output_program_provider_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramProviderId.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramProviderId.setDescription("Broadcast Encryption Provider ID. Only applies to programs when the input type is Gbe and the output encryption mode is Broadcast Encryption. (apexOutputTsConfEncryptionType set to 'broadcastEncryption') ")
apex_output_program_program_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('programsDerived', 1), ('programInfoProvided', 2), ('programEcmProvided', 3), ('programInfoAndEcmProvided', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramProgramType.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramProgramType.setDescription("Indicates how programs are to be built by the encryptor. 1 - programsDerived (default) - programs are derived where the encryptor builds the programs internally for the specified service. The program related ECM messages and program name/info messages are derived from the service RMD data and internal schedules. This program type is typically used for subscription services. 2 - programInfoProvided - the encryptor should build the programs based on the program information provided by the controller via the <programInfo> element of the ServiceProgramReply payload. The service RMD data is still used to generate the program related ECM messages. 3 - programEcmProvided - the encryptor should use pre-built ECM program messages as provided by the controller via the <programEcm> element of the ServiceProgramReply payload. For this program type, the controller provides the schedules; however, the encryptor must default much of the program info message since not detailed program information is provided. DTA content protection encryption makes use of the 'programEcmProvided' program type since the ECM messages cannot be derived by the encryptor. 4 - programInfoAndEcmProvided - the encryptor should build the programs based on both the program information and pre-built ECM messages provided by the controller via the <programInfo> and <programEcm> elements of the ServiceProgramReply payload. ")
apex_output_program_dta_encryption_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 16, 2, 2, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('dtaWithCcm', 1), ('dtaWithoutCcm', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputProgramDtaEncryptionMode.setStatus('current')
if mibBuilder.loadTexts:
apexOutputProgramDtaEncryptionMode.setDescription("This parameter identifies whether a service in Full Encryption is in Modified Privacy Mode (DTA) and whether the DTA service has CCM messages. This parameter is applicable only when apexOutputProgramEncryptionMode is 'full'. In other encryption modes this value is ignored. notApplicable - Non DTA Service and/or No DTA CA descriptor found dtaWithCcm - DTA, Full Encryption, Modified Privacy Mode, CCM present dtaWithoutCcm - DTA, Full Encryption, Modified Privacy Mode, CCM absent. ")
apex_acp_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2))
if mibBuilder.loadTexts:
apexAcpStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexAcpStatusTable.setDescription('This table shows the status of the Control Word Generating ACPs.')
apex_acp_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexAcpStatusIndex'))
if mibBuilder.loadTexts:
apexAcpStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexAcpStatusEntry.setDescription('Output Program Table Entry.')
apex_acp_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 6)))
if mibBuilder.loadTexts:
apexAcpStatusIndex.setStatus('current')
if mibBuilder.loadTexts:
apexAcpStatusIndex.setDescription('Acp Status Index. Index for one of six control word generating ACPs.')
apex_acp_unit_address = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 11))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAcpUnitAddress.setStatus('current')
if mibBuilder.loadTexts:
apexAcpUnitAddress.setDescription('The unit address of the ACP in ASCII Hex. The Unit address is a 5 byte value.')
apex_acp_health_byte = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAcpHealthByte.setStatus('current')
if mibBuilder.loadTexts:
apexAcpHealthByte.setDescription('The health byte of the ACP. Indicates whether the ACP has intact fuses. The health should read 255 (hex 0xFF) for all APEX ACPs. Otherwise, the ACP will not properly function.')
apex_acp_even_csn = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAcpEvenCsn.setStatus('current')
if mibBuilder.loadTexts:
apexAcpEvenCsn.setDescription('The Even Category Sequence Number of the ACP. Should match the even CSN assigned by DAC, if not may indicate a communications problem.')
apex_acp_odd_csn = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAcpOddCsn.setStatus('current')
if mibBuilder.loadTexts:
apexAcpOddCsn.setDescription('The Odd Category Sequence Number of the ACP. Should match the odd CSN assigned by DAC, if not may indicate a communications problem.')
apex_acp_unit_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 17, 2, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAcpUnitAttribute.setStatus('current')
if mibBuilder.loadTexts:
apexAcpUnitAttribute.setDescription('Unit attribute byte is made available to verify that the MC2.1 was properly unit created during factory production.')
apex_udp_map_pre_encrypt_check = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 1, 1), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapPreEncryptCheck.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapPreEncryptCheck.setDescription("UDP Mapping pre-encryption checking. Indicates if the APEX is to check if input services are pre-encrypted or clear. Pre-encrypted is determined by examining the input PMT for a CA ECM descriptor (any CA ECM descriptor). If pre-encrypted, setting this flag will cause the APEX to pass through ECM PID for the service. For input services that have a GI CA ECM descriptor, the APEX will also pass through the PIT message (extract and re-insert the PIT). The output PMT for pre-encrypted services will contain a CA ECM descriptor (referencing the ECM PID). When PID Remapping is enabled, pre-encryption for a service is only valid when the input ECM PID is on a different PID than the associated PMT PID. If this flag is set to pre-encryption and the input service is not pre-encrypted, then the setting of this flag has no affect on the output service. Once written, the change to this parameter will take immediate effect and all mappings will be removed. Mappings will not be re-added until apexUdpMapApplyChange is set to 'apply' for all transport streams. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apex_udp_map_mode_bits = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapModeBits.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapModeBits.setDescription("Value that will be placed in the two MSBs of each the calculated UDP port number (bits 14 and 15). Once written, the change to this parameter will take immediate effect and all mappings will be removed. Mappings will not be re-added until apexUdpMapApplyChange is set to 'apply' for all transport streams. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apex_udp_map_ts_offset = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 1))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapTsOffset.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapTsOffset.setDescription("Used as part of the Standardized UDP Port calculation. Transport Stream index can be relative 0 or relative 1. Once written, the change to this parameter will take immediate effect and all mappings will be removed. Mappings will not be re-added until apexUdpMapApplyChange is set to 'apply' for all transport streams. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apex_udp_map_follow_dtcp = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 1, 4), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapFollowDtcp.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapFollowDtcp.setDescription("Determines how the copy protection settings (CCI, APS, and CIT) within the PRK will be set. All outputs in UDP Port Mapping mode will use this setting for following input DTCP. Disabled - Use CTE configured settings if output in CTE encryption mode Enabled - Follow input DTCP Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apex_udp_map_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 2))
if mibBuilder.loadTexts:
apexUdpMapApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapApplyTable.setDescription('Table of Apply Change for the data for UDP Map Table. A row in this table corresponds to the same row index in the UDP Map table. ')
apex_udp_map_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexUdpMapApplyOutputTsNum'))
if mibBuilder.loadTexts:
apexUdpMapApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapApplyEntry.setDescription('UDP Map Apply Table Entry.')
apex_udp_map_apply_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexUdpMapApplyOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapApplyOutputTsNum.setDescription('The index of the Udp Map Apply Table.')
apex_udp_map_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 2, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapApplyChange.setDescription("The Apply for the row of data in the Udp Map Table. A row in this table corresponds to the same row index in the Udp Map table. This parameter MUST be set to 'apply' in order for any of the data in the Udp Map Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the Udp Map Table row has been configured. @Config(config=no, reboot=no) ")
apex_udp_map_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 3))
if mibBuilder.loadTexts:
apexUdpMapTable.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapTable.setDescription("Table of data for Udp Mapping. There are 48 rows in this table. Each row corresponds to one QAM channel. Once written, the change to this table will only take immediate effect after apexUdpMapApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexUdpMapApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apex_udp_map_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexUdpMapOutputTsNum'))
if mibBuilder.loadTexts:
apexUdpMapEntry.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapEntry.setDescription('Udp Mapping Table Entry.')
apex_udp_map_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexUdpMapOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapOutputTsNum.setDescription('Index of Udp Mapping Table. ')
apex_udp_map_input_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapInputInterface.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapInputInterface.setDescription("Input GBE port. Range: '1 - 4' = GBE port number ")
apex_udp_map_start_prog_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapStartProgNum.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapStartProgNum.setDescription('Indicates the first program number in a sequential range of programs that are to be routed to the same output transport stream. ')
apex_udp_map_number_progs = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 200))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapNumberProgs.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapNumberProgs.setDescription('Indicates the number of programs that are to be mapped to the output transport stream. One UDP port is opened for each program mapped to the output transport stream. ')
apex_udp_map_multicast_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4))
if mibBuilder.loadTexts:
apexUdpMapMulticastTable.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastTable.setDescription("Table of data for UDP Map Multicast. Each entry in this table identifies a Gigabit Ethernet input stream that is used for multicast UDP Port Mapping. Once written, the change to this table will only take immediate effect after apexUdpMapMulticastApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexUdpMapMulticastApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(bcmr.ini, type='ini') ")
apex_udp_map_multicast_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexUdpMapMulticastIndex'))
if mibBuilder.loadTexts:
apexUdpMapMulticastEntry.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastEntry.setDescription('UDP Map Multicast Table Entry.')
apex_udp_map_multicast_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 256)))
if mibBuilder.loadTexts:
apexUdpMapMulticastIndex.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastIndex.setDescription('Index of UDP Map Multicast Stream Table.')
apex_udp_map_multicast_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapMulticastEnable.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastEnable.setDescription('Indicates whether this UDP Map Multicast entry is enabled or disabled. ')
apex_udp_map_multicast_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapMulticastInterface.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastInterface.setDescription("Number of the input interface (Port number). Range: '0' = Not Applicable GBE = 1-4 ")
apex_udp_map_multicast_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapMulticastUdp.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastUdp.setDescription('GBE Input UDP Port. Range: 0-65535 ')
apex_udp_map_multicast_mcast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapMulticastMcastIp.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastMcastIp.setDescription('The Multicast receive IP address. An IP address of 0.0.0.0 indicates singlecast only. Multicast IP addresses 224.0.0.0 to 224.0.0.255 are reserved. ')
apex_udp_map_multicast_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 4, 1, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapMulticastSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastSourceIp.setDescription('This is the IP address of the source device. This field is only used when a multicast IP address is also specified. ')
apex_udp_map_multicast_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 5))
if mibBuilder.loadTexts:
apexUdpMapMulticastApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastApplyTable.setDescription('Table of Apply Change for the UDP Map Multicast Table. A row in this table corresponds to the same row index in the UDP Map Multicast Table (apexUdpMapMulticastTable). ')
apex_udp_map_multicast_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 5, 1)).setIndexNames((0, 'APEX-MIB', 'apexUdpMapMulticastApplyIndex'))
if mibBuilder.loadTexts:
apexUdpMapMulticastApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastApplyEntry.setDescription('UDP Map Multicast Apply Table Entry.')
apex_udp_map_multicast_apply_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 256)))
if mibBuilder.loadTexts:
apexUdpMapMulticastApplyIndex.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastApplyIndex.setDescription('The index of the UDP Map Multicast Table.')
apex_udp_map_multicast_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 1, 5, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexUdpMapMulticastApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastApplyChange.setDescription("The Apply for the row of data in the UDP Map Multicast Table. A row in this table corresponds to the same row index in the UDP Map Multicast Table. This parameter MUST be set to 'apply' in order for any of the data in the UDP Map Multicast Table row to take effect in the APEX. This parameter MUST be set LAST after all other data in the UDP Map Multicast Table row has been configured. @Config(config=no, reboot=no) ")
apex_udp_map_multicast_invalid_apply_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexUdpMapMulticastInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapMulticastInvalidApplyText.setDescription("When apexUdpMapMulticastApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a related entry that was invalid. ")
apex_udp_map_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2, 2))
if mibBuilder.loadTexts:
apexUdpMapStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapStatusTable.setDescription('Table of status data for Udp Mapping. There are 48 rows in this table. Each row corresponds to one QAM channel. ')
apex_udp_map_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexUdpMapStatusOutputTsNum'))
if mibBuilder.loadTexts:
apexUdpMapStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapStatusEntry.setDescription('Udp Mapping Status Table Entry.')
apex_udp_map_status_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexUdpMapStatusOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapStatusOutputTsNum.setDescription('Index of Udp Mapping Status Table.')
apex_udp_map_invalid_apply_text = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 18, 2, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexUdpMapInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexUdpMapInvalidApplyText.setDescription('When apexUdpMapApplyChange is set to applyNotInProgressInvalidData, this entry may contain a text description of what was wrong with the data. ')
apex_rds_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsIpAddr.setStatus('current')
if mibBuilder.loadTexts:
apexRdsIpAddr.setDescription("Rights Data Server IP address. Class A, B, or C IP address of the RDS. Changing this parameter will cause the APEX to perform an EMM rollover sequence. This parameter is not changed by apexRdsSetDefault. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_rds_tcp_port = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsTcpPort.setStatus('current')
if mibBuilder.loadTexts:
apexRdsTcpPort.setDescription("Rights Data Server TCP port. Changing this parameter will cause the APEX to perform an EMM rollover sequence. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_rds_program_epoch_duration = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(60, 1440))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsProgramEpochDuration.setStatus('current')
if mibBuilder.loadTexts:
apexRdsProgramEpochDuration.setDescription("The Program Epoch Duration in minutes. Changes are not applied until the end of the current epoch. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_rds_cet_poll_interval = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(15, 1440))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsCetPollInterval.setStatus('current')
if mibBuilder.loadTexts:
apexRdsCetPollInterval.setDescription("Interval that the APEX will use to poll for CSN/State information. After receiving the CSN/State information, the APEX will determine if it needs to retrieve new EMMs. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_rds_cet_refresh = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('refreshNotInProgress', 1), ('refresh', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsCetRefresh.setStatus('current')
if mibBuilder.loadTexts:
apexRdsCetRefresh.setDescription("Setting to 'refresh' forces the APEX to retrieve new EMMs (APEX performs an EMM rollover sequence). Once written, the change to this parameter will take effect immediately. @Config(config=no, reboot=no) ")
apex_rds_rmd_poll_interval = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(15, 1440))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsRmdPollInterval.setStatus('current')
if mibBuilder.loadTexts:
apexRdsRmdPollInterval.setDescription("Interval that the APEX will use to poll for RMD information. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_rds_rmd_refresh = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('refreshNotInProgress', 1), ('refresh', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsRmdRefresh.setStatus('current')
if mibBuilder.loadTexts:
apexRdsRmdRefresh.setDescription("Setting to 'refresh' forces the APEX to retrieve new RMD data from RDS server. Once written, the change to this parameter will take effect immediately. @Config(config=no, reboot=no) ")
apex_rds_poll_randomization = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsPollRandomization.setStatus('current')
if mibBuilder.loadTexts:
apexRdsPollRandomization.setDescription("RDS Polling Randomization Time. Maximum time in minutes to delay polling at startup in order to avoid having many APEXs polling the RDS simultaneously. The actual delay time will be randomly calculated by the APEX and will be no greater than this value. A value of zero means no delay and the APEX will poll immediately at startup. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_rds_set_default = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('notSettingToDefault', 1), ('setToDefault', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsSetDefault.setStatus('current')
if mibBuilder.loadTexts:
apexRdsSetDefault.setDescription("This parameter sets apexRdsCetPollInterval, apexRdsPollRandomization, apexRdsTcpPort, apexRdsRmdPollInterval, apexRdsProgramEpochDuration and apexRdsInitialEcmRetryInterval to default values. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'.. @Config(config=no, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) ")
apex_rds_error_count_reset = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 10), reset_statistics_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsErrorCountReset.setStatus('current')
if mibBuilder.loadTexts:
apexRdsErrorCountReset.setDescription('Resets RDS Communication error counts. Once written, the change to this parameter will take effect immediately. @Config(config=no, reboot=no) ')
apex_rds_config_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 11), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexRdsConfigApplyChange.setDescription("The Apply for RDS configuration items. This parameter MUST be set to 'apply' in order for any of the following to take effect: apexRdsIpAddr apexRdsTcpPort apexRdsPollRandomization apexRdsCetPollInterval apexRdsRmdPollInterval apexRdsProgramEpochDuration apexRdsConfigRds2Enable apexRdsConfigServerUrl This parameter MUST be set LAST after all associated parameters has been configured. @Config(config=no, reboot=no) ")
apex_rds_config_rds2_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 12), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsConfigRds2Enable.setStatus('current')
if mibBuilder.loadTexts:
apexRdsConfigRds2Enable.setDescription("Indicates whether RDS-2 Interface is enabled or disabled. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_rds_config_server_url = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 13), display_string().subtype(subtypeSpec=value_size_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsConfigServerUrl.setStatus('current')
if mibBuilder.loadTexts:
apexRdsConfigServerUrl.setDescription("Rights Data Server Uniform Resource Locator (RDS-2 Server URL). This is introduced to support RDS 2 Interface since APEX 2.5 release. The syntax of this parameter shall be: [http://]<RDS-2 Server IP>[:<TCP Port>]/<Server Root Directory Path> Note: 1. The 'http://' protocol part is default and optional, 2. 'RDS-2 Server IP' is Class A, B, or C IP address, 3. 'TCP Port' is optional, if not present, default to 80, 4. 'Server Root Directory Path' is not optional e.g. http://192.168.30.107:1020/rds/controller 192.168.30.107:1020/rds/controller 192.168.30.107/rds/controller (default port is 80) The apex host will validate this parameter upon applying change, and set the following three status parameter accordingly: - apexRdsStatusServerIp - apexRdsStatusServerPort - apexRdsStatusServerRootDirPath - apexRdsStatusValidation This parameter is not changed by apexRdsSetDefault. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_rds_initial_ecm_retry_interval = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 1, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(5, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexRdsInitialEcmRetryInterval.setStatus('current')
if mibBuilder.loadTexts:
apexRdsInitialEcmRetryInterval.setDescription("This parameter is used to configure RDS2 server ECM retry time. This value defines when the next retry will be performed by the host. Units are seconds. Once written, the change to this parameter will only take immediate effect after apexRdsConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexRdsConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_rds_connection_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('notConnectedInHoldoff', 1), ('notConnectedNoRdsIpAddress', 2), ('csnAquisitionSuccessful', 3), ('emmAquisitionSuccessful', 4), ('serviceListAquisitionSuccessful', 5), ('rmdAquisitionSuccessful', 6), ('csnAquisitionFailed', 7), ('emmAquisitionFailed', 8), ('serviceListAquisitionFailed', 9), ('rmdAquisitionFailed', 10)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsConnectionStatus.setStatus('current')
if mibBuilder.loadTexts:
apexRdsConnectionStatus.setDescription('Rights Data Server connection status.')
apex_rds_current_csn = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsCurrentCsn.setStatus('current')
if mibBuilder.loadTexts:
apexRdsCurrentCsn.setDescription('This is the current CSN that the APEX is using for encrypting all programs. ')
apex_rds_cet_next_poll_time = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsCetNextPollTime.setStatus('current')
if mibBuilder.loadTexts:
apexRdsCetNextPollTime.setDescription('Time in seconds until the next CET polling period.')
apex_rds_rmd_next_poll_time = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsRmdNextPollTime.setStatus('current')
if mibBuilder.loadTexts:
apexRdsRmdNextPollTime.setDescription('Time in seconds until the next RMD polling period.')
apex_rds_emm_status_table_size = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEmmStatusTableSize.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEmmStatusTableSize.setDescription('EMM Status Table Size. This is the maximum number of rows in the EMM Status Table and is the limit on apexRdsEmmStatusIndex. ')
apex_rds_program_messages_received = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsProgramMessagesReceived.setStatus('current')
if mibBuilder.loadTexts:
apexRdsProgramMessagesReceived.setDescription('Number of successful ServiceEncrypt messages received in the last 15 minutes.')
apex_rds_program_messages_failed = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsProgramMessagesFailed.setStatus('current')
if mibBuilder.loadTexts:
apexRdsProgramMessagesFailed.setDescription('Number of failed ServiceEncrypt messages received in the last 15 minutes.')
apex_rds_comm_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsCommErrorCount.setStatus('current')
if mibBuilder.loadTexts:
apexRdsCommErrorCount.setDescription('Count of total server communication errors. This parameter is set to 0 when the APEX boots up.')
apex_rds_comm_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('ok', 1), ('error', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsCommStatus.setStatus('current')
if mibBuilder.loadTexts:
apexRdsCommStatus.setDescription('Status of communication with RDS.')
apex_rds_flash_write_count = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsFlashWriteCount.setStatus('current')
if mibBuilder.loadTexts:
apexRdsFlashWriteCount.setDescription('Running count of the number of flash memory erasures/writes.')
apex_rds_mcast16 = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 11), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsMcast16.setStatus('current')
if mibBuilder.loadTexts:
apexRdsMcast16.setDescription('Multicast-16 bit address used for build PRK messages. The multicast-16 bit address is from the EMMs received.')
apex_rds_status_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 12), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsStatusServerIp.setStatus('current')
if mibBuilder.loadTexts:
apexRdsStatusServerIp.setDescription('Effective Rights Data Server IP address. Derived from RDS Server URL. This is set to 0.0.0.0 when validation on RDS Server URL fails. See apexRdsConfigServerUrl. ')
apex_rds_status_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsStatusServerPort.setStatus('current')
if mibBuilder.loadTexts:
apexRdsStatusServerPort.setDescription('Effective Rights Data Server TCP port. Derived from RDS Server URL. This is set to 0 when validation on RDS Server URL fails. See apexRdsConfigServerUrl. ')
apex_rds_status_server_root_dir_path = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 14), display_string().subtype(subtypeSpec=value_size_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsStatusServerRootDirPath.setStatus('current')
if mibBuilder.loadTexts:
apexRdsStatusServerRootDirPath.setDescription('Effective Rights Data Server Root Directory Path. Derived from RDS Server URL. This is set to Null String when validation on RDS Server URL fails. See apexRdsConfigServerUrl. ')
apex_rds_status_validation = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('notApplicable', 0), ('urlValid', 1), ('missingIpOrPath', 2), ('emptyRootPath', 3), ('invalidTcpPort', 4), ('invalidIpClass', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsStatusValidation.setStatus('current')
if mibBuilder.loadTexts:
apexRdsStatusValidation.setDescription('Indicates whether the current RDS Server URL parameter is valid. urlValid (1) - RDS-2 URL is valid, missingIpOrPath (2) - RDS-2 IP or Root Path is missing, emptyRootPath (3) - RDS-2 Root Path cannot be empty, invalidTcpPort (4) - RDS-2 TCP Port ranges from 1~65535, default to 80, invalidIpClass (5) - RDS-2 IP shall be class A/B/C. See apexRdsConfigServerUrl. ')
apex_rds_emm_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2))
if mibBuilder.loadTexts:
apexRdsEmmStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEmmStatusTable.setDescription(' Table of the most recent RDS responses.')
apex_rds_emm_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexRdsEmmStatusIndex'))
if mibBuilder.loadTexts:
apexRdsEmmStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEmmStatusEntry.setDescription('RDS EMM Status Table Entry.')
apex_rds_emm_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1, 1), integer32())
if mibBuilder.loadTexts:
apexRdsEmmStatusIndex.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEmmStatusIndex.setDescription('Index of EMM Status Table. Size of table can be found in apexRdsEmmStatusTableSize.')
apex_rds_emm_status_csn = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEmmStatusCsn.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEmmStatusCsn.setDescription('Category Sequence Number (CSN). ')
apex_rds_emm_status_state = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('transitionComplete', 1), ('transitionStart', 2), ('startOfNewEpoch', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEmmStatusState.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEmmStatusState.setDescription('Category Epoch Transition (CET) State.')
apex_rds_emm_status_gps_time = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEmmStatusGpsTime.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEmmStatusGpsTime.setDescription('This is the time in GPS seconds that this row was written.')
apex_rds_emm_status_server_error = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEmmStatusServerError.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEmmStatusServerError.setDescription('This is the error code reported to the APEX by the RDS. Zero indicates no error.')
apex_rds_emm_status_unit_address = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 2, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(20, 20)).setFixedLength(20)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEmmStatusUnitAddress.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEmmStatusUnitAddress.setDescription('This is the ACP address of the ACP associated with the error reported in apexRdsEmmStatusServerError. If no address is contained in this entry, the error applies to all ACPs or to the entire APEX. The address is made up of decimal digits formatted as ###-#####-#####-###. ')
apex_rds_source_lookup_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 3))
if mibBuilder.loadTexts:
apexRdsSourceLookupTable.setStatus('current')
if mibBuilder.loadTexts:
apexRdsSourceLookupTable.setDescription('This table provides a list of Source IDs and Provider IDs along with an associated string. This table of information is provided by the RDS to make it easier for a user to figure out the Source ID and Provider ID for a particular service. ')
apex_rds_source_lookup_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexRdsSourceLookupIndex'))
if mibBuilder.loadTexts:
apexRdsSourceLookupEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRdsSourceLookupEntry.setDescription('Source Lookup Table Entry.')
apex_rds_source_lookup_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 3, 1, 1), integer32())
if mibBuilder.loadTexts:
apexRdsSourceLookupIndex.setStatus('current')
if mibBuilder.loadTexts:
apexRdsSourceLookupIndex.setDescription('Source Lookup Table Index.')
apex_rds_source_lookup_description = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 3, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsSourceLookupDescription.setStatus('current')
if mibBuilder.loadTexts:
apexRdsSourceLookupDescription.setDescription('Text Description of the service provided by the Rights Data Server.')
apex_rds_source_lookup_source_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsSourceLookupSourceId.setStatus('current')
if mibBuilder.loadTexts:
apexRdsSourceLookupSourceId.setDescription('Source Id of the service.')
apex_rds_source_lookup_provider_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 3, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsSourceLookupProviderId.setStatus('current')
if mibBuilder.loadTexts:
apexRdsSourceLookupProviderId.setDescription('Provider Id of the service.')
apex_rds_event_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4))
if mibBuilder.loadTexts:
apexRdsEventTable.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventTable.setDescription('Table of Rds2 Events. The first index (apexRdsEventProgramIndex) matches to the same row index in the apexManualRouteTable. ')
apex_rds_event_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexRdsEventProgramIndex'), (0, 'APEX-MIB', 'apexRdsEventEventIndex'))
if mibBuilder.loadTexts:
apexRdsEventEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventEntry.setDescription('Rds2 Events Table Entry.')
apex_rds_event_program_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexRdsEventProgramIndex.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventProgramIndex.setDescription('apexRdsEventProgramIndex is the last 10 bits of apexOutputProgramEcmServiceId from apexOutputProgramTable.')
apex_rds_event_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexRdsEventEventIndex.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventEventIndex.setDescription('Rds Event Index.')
apex_rds_event_epoch_number = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventEpochNumber.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventEpochNumber.setDescription('Uniquely identifies a program epoch for the specified service.')
apex_rds_event_epoch_start = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventEpochStart.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventEpochStart.setDescription('Start time in GPS seconds of the returned program epoch for the specified service. ')
apex_rds_event_epoch_end = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventEpochEnd.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventEpochEnd.setDescription('End time in GPS seconds of the returned program epoch.')
apex_rds_event_interstitial_duration = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventInterstitialDuration.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventInterstitialDuration.setDescription('The interstitial duration provides the time duration in seconds between the start of the program epoch and the start of the actual program or event. ')
apex_rds_event_preview_duration = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventPreviewDuration.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventPreviewDuration.setDescription('The preview window provides the time duration in seconds between the start of the program epoch and the start of the pay portion of the program. ')
apex_rds_event_purchase_duration = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventPurchaseDuration.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventPurchaseDuration.setDescription('The purchase window provides the time duration in seconds between the start of the program epoch that IPPV purchases are allowed. ')
apex_rds_event_number_tiers = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventNumberTiers.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventNumberTiers.setDescription('A program can be associated with at most 7 tiers.')
apex_rds_event_tier_data = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 10), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventTierData.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventTierData.setDescription('Program Tier Data in Hexadecimal format (28 bytes). Up to 7 tiers of information are provided for each program. Tier information for each program consists of 4 bytes. First 3 bytes are the Tier Value, next 1 bytes are the Tier Type. ')
apex_rds_event_program_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventProgramCost.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventProgramCost.setDescription('Represents the cost, in program units, of the program epoch.')
apex_rds_event_rating_region = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventRatingRegion.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventRatingRegion.setDescription('Identifies the Program Rating Region. The US region attribute is 0.')
apex_rds_event_rating_data = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 13), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventRatingData.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventRatingData.setDescription('Program Rating Data in Hexadecimal format (3 bytes). Contains 6 rating dimensions where each rating dimension is a 4-bit integer that represents a different rating control for the region. A US region defines 4 rating dimensions: MPAA rating, violence content rating, language content rating and sexual content rating. ')
apex_rds_event_rating_text = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 14), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventRatingText.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventRatingText.setDescription('Program Rating optionally contains a Rating Text.')
apex_rds_event_control_byte = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 15), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventControlByte.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventControlByte.setDescription('The program control byte used in the PRKM (1 Hexadecimal byte).')
apex_rds_event_prkm_wkem_available = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('available', 1), ('notAvailable', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventPrkmWkemAvailable.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventPrkmWkemAvailable.setDescription('The flag indicates that PRKM, WKEM (odd and even) is available for the associated epoch.')
apex_rds_event_ccm_available = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 19, 2, 4, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('available', 1), ('notAvailable', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRdsEventCcmAvailable.setStatus('current')
if mibBuilder.loadTexts:
apexRdsEventCcmAvailable.setDescription('The flag indicates that CCM (odd and even) is available for the associated epoch.')
apex_encryption_conf_algorithm = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('des-dcii', 1), ('des-scte-52', 2), ('dvb-csa', 3), ('dvb-csa-simulcrypt', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEncryptionConfAlgorithm.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionConfAlgorithm.setDescription("Configured encryption algorithm. This value determines which MUX FPGA image will be loaded. dvb-csa-simulcrypt must be selected to allow for configuration of Simulcrypt. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=yes) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_simulcrypt_external_eis_setting = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('clear', 0), ('encrypt', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSimulcryptExternalEisSetting.setStatus('current')
if mibBuilder.loadTexts:
apexSimulcryptExternalEisSetting.setDescription("Default simulcrypt External EIS encryption setting. This determines if services are sent out in the clear or are encrypted when Simulcrypt mode is set to External EIS and the services have not yet been provisioned. This allows a user to have services scrambled but unviewable prior to services being provisioned (to prevent services from being viewable). This parameter is only applicable for output streams that are in Simulcrypt External EIS mode. When this setting is changed, it only affects new service mappings. Services that are already mapped will not be modified. Once written, a save must be performed via the apexSaveConfig parameter and the APEX must be rebooted for the change to take effect. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_simulcrypt_em_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 1, 3), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSimulcryptEmEnable.setStatus('current')
if mibBuilder.loadTexts:
apexSimulcryptEmEnable.setDescription("Simulcrypt EM Enable. If set to 'enabled' the EM will display the Simulcrypt specific screens. User will be allowed to view Simulcrypt status and perform configuration changes via the EM. This parameter only enables and disables the ability to use the EM Simulcrypt screens. It does not enable or disable Simulcrypt as there is a specific Simulcrypt mode per output stream. Once written, the change to this parameter will only take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_cte_encryption_mode = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('full', 1), ('fwk', 2), ('fpk', 3), ('clear', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexCteEncryptionMode.setStatus('current')
if mibBuilder.loadTexts:
apexCteEncryptionMode.setDescription("This parameter is used to set the Encryption Mode. It applies to all services on all QAMs in CTE mode. - 'full' - The APEX will use Full encryption. The APEX will only be able to encrypt programs in Full encryption mode if the APEX is able to communicate with an RDS. - 'fwk' - The APEX will use Fixed Working Key (FWK) encryption. - 'fpk' - The APEX will use Fixed Program Key (FPK) encryption. The APEX will not attempt to get EMMs. - 'clear' - The APEX performs no encryption of output programs. If the APEX is unable to encrypt programs in the configured mode, then those programs will not be mapped. Once written, the change to this parameter will only take immediate effect after apexCteApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexCteApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_cte_cci_level = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('notDefined', 1), ('copyFreely', 2), ('copyOnce', 3), ('copyNever', 4), ('noMoreCopies', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexCteCciLevel.setStatus('current')
if mibBuilder.loadTexts:
apexCteCciLevel.setDescription("Copy Control Information (CCI) Level setting for PRK messages. - notDefined - CCI is not defined, settop box applications can configure CCI - copyFreely - program can be copied - copyOnce - program can be copied once - copyNever - program can never be copied - noMoreCopies - Once written, the change to this parameter will only take immediate effect after apexCteApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexCteApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_cte_aps_level = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('notDefined', 1), ('off', 2), ('splitBurstOff', 3), ('splitBurst2Line', 4), ('splitBurst4Line', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexCteApsLevel.setStatus('current')
if mibBuilder.loadTexts:
apexCteApsLevel.setDescription("Analog Protection System (APS) Level setting for PRK messages. Defines what copy protection encoding will be applied to the analog composite output by the settop box. - notDefined - analog protection is not defined, settop box applications can configure APS - off - no analog protection - splitBurstOff - AGC on, split burst off - splitBurst2Line - AGC on, 2 line split burst on - splitBurst4Line - AGC on, 4 line split burst on The APEX will set Tier Type based on apexCteApsLevel. The APEX will set tier type to subscription with right to tape when apexCteApsLevel is 'off' or 'notDefined'. The APEX will set tier type to subscription without right to tape when apexCteApsLevel is 'splitBurstOff', 'splitBurst2Line', or 'splitBurst4Line'. Once written, the change to this parameter will only take immediate effect after apexCteApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexCteApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_cte_cit_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2, 4), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexCteCitEnable.setStatus('current')
if mibBuilder.loadTexts:
apexCteCitEnable.setDescription("Constrained Image Trigger (CIT) setting. If set to 'enabled' the settop box is notified not to allow a high quality digital output unless the receiving device also adheres to CIT processing. If the apexCteApsLevel is set to 'notDefined', the setting of the CIT value has no affect (CIT and APS are only used when APS is set to a defined value). Once written, the change to this parameter will only take immediate effect after apexCteApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexCteApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_cte_common_tier = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexCteCommonTier.setStatus('current')
if mibBuilder.loadTexts:
apexCteCommonTier.setDescription("EncryptionCommon Tier. Identifies the tier number for which access is granted. Range is 0 to 16777215. 65535 is reserved and cannot be used. The APEX will set Tier Type based on apexCteApsLevel setting. Refer to the apexCteApsLevel description for more details. Once written, the change to this parameter will only take immediate effect after apexCteApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexCteApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_cte_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 1, 2, 6), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexCteApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexCteApplyChange.setDescription("The Apply for CTE configuration items. This parameter MUST be set to 'apply' in order for any of the following to take effect: apexCteEncryptionMode apexCteCciLevel apexCteApsLevel apexCteCitEnable apexCteCommonTier This parameter MUST be set LAST after all associated parameters has been configured. @Config(config=no, reboot=no) ")
apex_encryption_stat_algorithm = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('des-dcii', 1), ('des-scte-52', 2), ('dvb-csa', 3), ('dvb-csa-simulcrypt', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionStatAlgorithm.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionStatAlgorithm.setDescription('Current encryption algorithm. This value determines which MUX FPGA image will be loaded. ')
apex_encryption_cwg_per_second = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionCwgPerSecond.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionCwgPerSecond.setDescription('Average control words per second generated integrated over the last minute.')
apex_encryption_mux1_collision_count = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionMux1CollisionCount.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionMux1CollisionCount.setDescription('Triton collision counter for MUX FPGA #1.')
apex_encryption_mux2_collision_count = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionMux2CollisionCount.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionMux2CollisionCount.setDescription('Triton collision counter for MUX FPGA #2.')
apex_encryption_mux1_rollover_count = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionMux1RolloverCount.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionMux1RolloverCount.setDescription('Counts rollovers of triton message circular buffer for MUX FPGA #1.')
apex_encryption_mux2_rollover_count = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionMux2RolloverCount.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionMux2RolloverCount.setDescription('Counts rollovers of triton message circular buffer for MUX FPGA #2.')
apex_encryption_emm_requests_sent = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionEmmRequestsSent.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionEmmRequestsSent.setDescription('Counts number of triton EMM reports sent to 6 MC2.1 devices.')
apex_encryption_emm_good_replies_recvd = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionEmmGoodRepliesRecvd.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionEmmGoodRepliesRecvd.setDescription('Counts number of triton EMM replies marked good received from mc2.1 devices.')
apex_encryption_emm_bad_replies_recvd = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionEmmBadRepliesRecvd.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionEmmBadRepliesRecvd.setDescription('Counts number of triton EMM replies marked bad received from mc2.1 devices.')
apex_encryption_emm_good_delivery_time_ms = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionEmmGoodDeliveryTimeMs.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionEmmGoodDeliveryTimeMs.setDescription('Amount of time expressed in milliseconds taken to deliver entire set of EMMs for most recent successful attempt. Note it takes MC2.1 a significant amount of time to process an EMM. They are delivered in batches of 6 (1 per MC2.1) the firmware then waits for all 6 EMM replies before continuing with the next batch.')
apex_encryption_emm_max_delivery_time_ms = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionEmmMaxDeliveryTimeMs.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionEmmMaxDeliveryTimeMs.setDescription('Maximum amount of time expressed in milliseconds taken to deliver an entire set of EMMs since the Apex unit was last rebooted.')
apex_encryption_emm_min_delivery_time_ms = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionEmmMinDeliveryTimeMs.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionEmmMinDeliveryTimeMs.setDescription('Minimum amount of time expressed in milliseconds taken to deliver an entire set of EMMs since the Apex unit was last rebooted.')
apex_encryption_mc_diag_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 12))
if mibBuilder.loadTexts:
apexEncryptionMcDiagTable.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionMcDiagTable.setDescription('Diagnostic table that breaks out individual mc21 performance parameters. Indexed 1-6 for the 6 MC2.1 devices in an APEX ACP Module.')
apex_encryption_mc_diag_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 12, 1)).setIndexNames((0, 'APEX-MIB', 'apexEncryptionMcDiagDeviceIndex'))
if mibBuilder.loadTexts:
apexEncryptionMcDiagEntry.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionMcDiagEntry.setDescription('A row in the mc2.1 diagnostic table.')
apex_encryption_mc_diag_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 12, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 6)))
if mibBuilder.loadTexts:
apexEncryptionMcDiagDeviceIndex.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionMcDiagDeviceIndex.setDescription('Index represents 1 of 6 MC2.1 devices installed on ACP Module.')
apex_encryption_cw_counts_per_second = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 20, 2, 1, 2, 12, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEncryptionCwCountsPerSecond.setStatus('current')
if mibBuilder.loadTexts:
apexEncryptionCwCountsPerSecond.setDescription('Number of CW successfully generated on this MC2.1 per second, integrated over the last minute.')
apex_eas_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1, 1), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasApplyChange.setStatus('obsolete')
if mibBuilder.loadTexts:
apexEasApplyChange.setDescription("This object is obsolete. The Apply for any entries in the apexEasConfigGeneral group. This parameter MUST be set to 'apply' in order for any of the data in the apexEasConfigGeneral group to take effect. This parameter MUST be set LAST after all other data in the group has been configured. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apex_eas_phys_in_type = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('gbe', 1), ('fastEnet', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasPhysInType.setStatus('obsolete')
if mibBuilder.loadTexts:
apexEasPhysInType.setDescription("This object is obsolete. Input Type of input from which to extract EAS messages. When set to 0, no EAS is received (disables EAS extraction). Once written, the change to this parameter will only take immediate effect after apexEasApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexEasApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_eas_phys_in_port = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasPhysInPort.setStatus('obsolete')
if mibBuilder.loadTexts:
apexEasPhysInPort.setDescription("This object is obsolete. Number of the input, of type configured by apexEasPhysInType, from which to extract EAS messages. Once written, the change to this parameter will only take immediate effect after apexEasApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Range(min=0) @Config(config=yes, reboot=no) @Commit(param=apexEasApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_eas_rcv_udp_port = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasRcvUdpPort.setStatus('obsolete')
if mibBuilder.loadTexts:
apexEasRcvUdpPort.setDescription("This object is obsolete. This parameter indicates the UDP port on which to receive EAS messages. Range is 1024 to 65535 when apexEasPhysInType is 'fastEnet'. Range is 0 to 65535 when apexEasPhysInType is 'gbe'. Once written, the change to this parameter will only take immediate effect after apexEasApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexEasApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_eas_multicast_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasMulticastIpAddress.setStatus('obsolete')
if mibBuilder.loadTexts:
apexEasMulticastIpAddress.setDescription("This object is obsolete. This parameter indicates the Multicast IP Receive address on which to receive EAS messages. If 0.0.0.0, then EAS messages will be received via singlecast only. Once written, the change to this parameter will only take immediate effect after apexEasApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexEasApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_eas_source_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 1, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasSourceIpAddress.setStatus('obsolete')
if mibBuilder.loadTexts:
apexEasSourceIpAddress.setDescription("This object is obsolete. This parameter indicates the Source IP Receive address on which to receive EAS messages. This is only for IGMP v3 networks. If 0.0.0.0, then source IP is not used. Once written, the change to this parameter will only take immediate effect after apexEasApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexEasApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_eas_output_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 2))
if mibBuilder.loadTexts:
apexEasOutputTable.setStatus('current')
if mibBuilder.loadTexts:
apexEasOutputTable.setDescription("Table of parameters for configuring EAS Output. Table is indexed by Output Transport Stream Number. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_eas_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexEasOutputStreamNum'))
if mibBuilder.loadTexts:
apexEasOutputEntry.setStatus('current')
if mibBuilder.loadTexts:
apexEasOutputEntry.setDescription('A row in the EAS output table.')
apex_eas_output_stream_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexEasOutputStreamNum.setStatus('current')
if mibBuilder.loadTexts:
apexEasOutputStreamNum.setDescription('The output transport stream number.')
apex_eas_output_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 2, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasOutputEnable.setStatus('current')
if mibBuilder.loadTexts:
apexEasOutputEnable.setDescription('The enable setting for EAS output on this Output Transport Stream. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ')
apex_eas_server_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 3))
if mibBuilder.loadTexts:
apexEasServerApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexEasServerApplyTable.setDescription('Apply table for the apexEasServerTable. Table is indexed by RF Port number. ')
apex_eas_server_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexEasServerApplyNum'))
if mibBuilder.loadTexts:
apexEasServerApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexEasServerApplyEntry.setDescription('EAS Server Configuration Apply Table Entry.')
apex_eas_server_apply_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12)))
if mibBuilder.loadTexts:
apexEasServerApplyNum.setStatus('current')
if mibBuilder.loadTexts:
apexEasServerApplyNum.setDescription('The EAS Server number.')
apex_eas_server_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 3, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasServerApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexEasServerApplyChange.setDescription("The Apply for a row in the apexEasServerTable. This parameter MUST be set to 'apply' in order for any of the data in the apexEasServerTable table to take effect. This parameter MUST be set LAST after all other data in the table has been configured. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apex_eas_server_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4))
if mibBuilder.loadTexts:
apexEasServerTable.setStatus('current')
if mibBuilder.loadTexts:
apexEasServerTable.setDescription("Table of parameters for configuring EAS Servers. Table is indexed by RF Port number. @Config(config=yes, reboot=no) @Commit(param=apexEasServerApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_eas_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexEasServerNum'))
if mibBuilder.loadTexts:
apexEasServerEntry.setStatus('current')
if mibBuilder.loadTexts:
apexEasServerEntry.setDescription('A row in the EAS server table.')
apex_eas_server_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12)))
if mibBuilder.loadTexts:
apexEasServerNum.setStatus('current')
if mibBuilder.loadTexts:
apexEasServerNum.setDescription('The EAS Server number.')
apex_eas_server_phys_in_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('gbe', 1), ('fastEnet', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasServerPhysInType.setStatus('current')
if mibBuilder.loadTexts:
apexEasServerPhysInType.setDescription("Input Type of input from which to extract EAS messages. When set to 0, no EAS is received (disables EAS extraction). Once written, the change to this parameter will only take immediate effect after apexEasServerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apex_eas_server_phys_in_port = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasServerPhysInPort.setStatus('current')
if mibBuilder.loadTexts:
apexEasServerPhysInPort.setDescription("Number of the input, of type configured by apexEasServerPhysInType, from which to extract EAS messages. Once written, the change to this parameter will only take immediate effect after apexEasServerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Range(min=0) ")
apex_eas_server_rcv_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasServerRcvUdpPort.setStatus('current')
if mibBuilder.loadTexts:
apexEasServerRcvUdpPort.setDescription("This parameter indicates the UDP port on which to receive EAS messages. Range is 1024 to 65535 when apexEasServerPhysInType is 'fastEnet'. Range is 0 to 65535 when apexEasServerPhysInType is 'gbe'. Once written, the change to this parameter will only take immediate effect after apexEasServerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apex_eas_server_multicast_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasServerMulticastIpAddress.setStatus('current')
if mibBuilder.loadTexts:
apexEasServerMulticastIpAddress.setDescription("This parameter indicates the Multicast IP Receive address on which to receive EAS messages. If 0.0.0.0, then EAS messages will be received via singlecast only. Once written, the change to this parameter will only take immediate effect after apexEasServerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apex_eas_server_source_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 1, 4, 1, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEasServerSourceIpAddress.setStatus('current')
if mibBuilder.loadTexts:
apexEasServerSourceIpAddress.setDescription("This parameter indicates the Source IP Receive address on which to receive EAS messages. This is only for IGMP v3 networks. If 0.0.0.0, then source IP is not used. Once written, the change to this parameter will only take immediate effect after apexEasServerApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ")
apex_eas_num_rcv_msgs = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 2, 1, 1), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEasNumRcvMsgs.setStatus('current')
if mibBuilder.loadTexts:
apexEasNumRcvMsgs.setDescription('Total number of EAS messages received.')
apex_eas_num_inval_rcv_msgs = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 21, 2, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEasNumInvalRcvMsgs.setStatus('current')
if mibBuilder.loadTexts:
apexEasNumInvalRcvMsgs.setDescription('Total number of Invalid EAS messages received (invalid CRC). These messages are discarded.')
apex_chassis_redundancy_config_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 1), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyConfigEnable.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyConfigEnable.setDescription("This is to enable/disable APEX chassis redundancy. When set to disabled(1), APEX is not allowed to failover. When set to enabled(2), APEX can failover on its redundant APEX. Once written, the change to this parameter will only take immediate effect after apexChassisRedundancyConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_mode = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('primary', 1), ('secondary', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyMode.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyMode.setDescription("Configures the desired role of APEX. Primary has active output ports, secondary is inactive with output ports muted. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_multicast_redundancy_mode = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('hot', 1), ('warm', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyMulticastRedundancyMode.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyMulticastRedundancyMode.setDescription("This is used to process route mappings by the standby APEX. When set to hot(0) on standby APEX, all the routes processed by the active APEX will also be processed by standby APEX. When set to warm(1) on standby APEX, all the routes processed by the active APEX will be muted by standby APEX. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_udp_port = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1024, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyUdpPort.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyUdpPort.setDescription("This UDP port number value is used as: (1) The port number on which to receive heartbeat messages from the redundant APEX (2) The port number to which heartbeat messages are sent to the redundant APEX. Valid range of UDP port numbers are 1024 to 65535. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_redundant_apex_ip = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyRedundantApexIp.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyRedundantApexIp.setDescription("Unicast IP address of redundant APEX. This IP address is used to send heartbeat messages to the redundant IP. This IP address should match with the ENET1 or ENET2 IP address of the redundant APEX. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_suspend = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 6), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancySuspend.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancySuspend.setDescription("When set to enabled(2), this results in APEX unit failover and become active if it is in standby or suspend state. If the condition above is not met, setting the value to enabled(2) has no effect. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_force_fail_over = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('failoverNotInProgress', 1), ('failover', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyForceFailOver.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyForceFailOver.setDescription('When set to failover(2), this results in the APEX unit failing over if it is in active state and the redundant APEX is in standby state. If the condition above is not met, setting the value to failvoer(2) has no effect. @Config(config=no, reboot=no) ')
apex_chassis_redundancy_fail_over_gig_e12_link_loss = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 8), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverGigE12LinkLoss.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverGigE12LinkLoss.setDescription("Configures if both GigE 1&2 link loss is cause for a failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_fail_over_gig_e34_link_loss = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 9), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverGigE34LinkLoss.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverGigE34LinkLoss.setDescription("Configures if both GigE 3&4 experience link loss is cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_fail_over_enet1_link_loss = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 10), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverEnet1LinkLoss.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverEnet1LinkLoss.setDescription("Configures if ENET1 link loss is cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_fail_over_enet2_link_loss = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 11), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverEnet2LinkLoss.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverEnet2LinkLoss.setDescription("Configures if ENET2 link loss is cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_fail_over_temperature_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 12), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverTemperatureFault.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverTemperatureFault.setDescription("Configures if the temperature fault is a cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_fail_over_qam_module_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 13), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverQamModuleFault.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverQamModuleFault.setDescription("Configures if a QAM module fault is a cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_fail_over_qam_rf_port_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 14), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverQamRfPortFault.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverQamRfPortFault.setDescription("Configures if a QAM RF port fault is a cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_fail_over_qam_channel_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 15), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverQamChannelFault.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyFailOverQamChannelFault.setDescription("Configures if a QAM channel fault is a cause for failover. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_config_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 16), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyConfigApplyChange.setDescription("The Apply for Chassis Redundancy Configuration parameters. This parameter MUST be set to 'apply' in order for the data to take effect. This parameter MUST be set LAST after all Chassis Redundancy parameters affected by this parameter have been configured. @Config(config=no, reboot=no) ")
apex_chassis_redundancy_primary_standby_override = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 17), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyPrimaryStandbyOverride.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyPrimaryStandbyOverride.setDescription('This parameter is set to ENABLED while configuring the apex as primary apex. If this parameter is set, the apex will goto ACTIVE state irrespective of secondary status. @Config(config=no, reboot=no) ')
apex_chassis_redundancy_redundant_apex_sec_ip = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 18), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyRedundantApexSecIp.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyRedundantApexSecIp.setDescription("Unicast IP address of redundant APEX heartbeat backup interface. This IP address is used to send backup heartbeat messages to the redundant IP. This IP address should match with the ENET1 or ENET2 IP address of the redundant APEX. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_redundant_hb_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 1, 1, 19), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexChassisRedundancyRedundantHBEnable.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyRedundantHBEnable.setDescription("This parameter is set to ENABLED to configure backup heartbeat interface IP. Heartbeat message in the Backup heartbeat interface is used if the Primary heartbeat inteface fails. @Config(config=yes, reboot=no) @Commit(param=apexChassisRedundancyConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_chassis_redundancy_primary_apex_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 0), ('active', 1), ('standby', 2), ('fault', 3), ('suspend', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyPrimaryApexStatus.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyPrimaryApexStatus.setDescription('This parameter is applicable for an APEX where chassis redundancy is enabled. The APEX configured as primary will report the following values: active(1): Primary RF outputs are active. standby(2): Primary RF outputs are muted. Waiting to become active. fault(3): Primary has experienced a fault. suspend(4): Primary is suspended. The APEX configured as secondary will report the following values. These are based on its knowledge about the primary APEX from heartbeat messages. unknown(0): State of primary is not known (heartbeat not received). active(1): Primary RF outputs are active. standby(2): Primary RF outputs are muted. Waiting to become active. fault(3): Primary has experienced a fault. suspend(4): Primary is suspended. ')
apex_chassis_redundancy_secondary_apex_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 0), ('active', 1), ('standby', 2), ('fault', 3), ('suspend', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancySecondaryApexStatus.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancySecondaryApexStatus.setDescription('This parameter is applicable for an APEX where chassis redundancy is enabled. The APEX configured as primary will report the following values: These are based on its knowledge about the secondary APEX from heartbeat messages. unknown(0): State of secondary is not known (heartbeat not received). active(1): Secondary RF outputs are active. standby(2): Secondary RF outputs are muted. Waiting to become active. fault(3): Secondary has experienced a fault. suspend(4): Secondary is suspended. The APEX configured as secondary will report the following values: active(1): Secondary RF outputs are active. standby(2): Secondary RF outputs are muted. Waiting to become active. fault(3): Secondary has experienced a fault. suspend(4): Secondary is suspended. ')
apex_chassis_redundancy_state = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 0), ('available', 1), ('protected', 2), ('unavailable', 3), ('synchronizing', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyState.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyState.setDescription("This parameter is applicable for an APEX where chassis redundancy is enabled. This parameter will report the chassis redundancy availability status. These are based on its knowledge about the secondary APEX from heartbeat messages. The APEX configured as primary will report the following values: unknown(0): State of redundancy is not known (heartbeat not received). available(1): Primary is active and secondary is in standby, configurations are synchronized and no critical faults on either of the APEX. protected(2): Primary is fault and secondary is in active. unavailable(3): Configuration not synchronized or primary has not received heartbeat message from secondary. synchronizing(4): Synchronizing configuration between active and standby APEX's. The APEX configured as secondary will report the following values: unknown(0): State of redundancy is not known (heartbeat not received). available(1): Secondary is active and primary is in standby, configurations are synchronized and no critical faults on either of the APEX. protected(2): Secondary is in active and primary is fault state. unavailable(3): Configuration not synchronized or secondary is in fault state or secondary has not received heartbeat message from primary. synchronizing(4): Synchronizing configuration between active and standby APEX's. ")
apex_chassis_redundancy_communication_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disconnected', 0), ('connected', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyCommunicationStatus.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyCommunicationStatus.setDescription('This parameter is applicable for an APEX where chassis redundancy is enabled. This parameter will report the chassis redundancy communication status. These are based on its knowledge about the secondary APEX from heartbeat messages. The APEX configured as primary will report the following values: disconnected(0): No heartbeat messages are received from secondary or communication timed out. connected(1): Heartbeat messages are received from secondary and communication has not timed out. The APEX configured as secondary will report the following values: disconnected(0): No heartbeat messages are received from primary or communication timed out. connected(1): Heartbeat messages are received from primary and communication has not timed out. ')
apex_chassis_redundancy_configuration_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('unknown', 0), ('synchronized', 1), ('outofsync', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyConfigurationStatus.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyConfigurationStatus.setDescription('This parameter is applicable for an APEX where chassis redundancy is enabled. This parameter will report the chassis redundancy configuration status. These are based on its knowledge about the secondary APEX from heartbeat messages. The APEX configured as primary will report the following values: unknown(0): Secondary configuration is not known or secondary is not connected. synchronized(1): Secondary has same configuration as primary (except for QAM outputs). outofsync(2): Secondary configuration is not in sync with primary. The APEX configured as secondary will report the following values: unknown(0): Primary configuration is not known or primary is not connected. synchronized(1): Primary has same configuration as secondary (except for QAM outputs). outofsync(2): Primary configuration is not in sync with secondary. ')
apex_chassis_redundancy_status_invalid_apply_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyStatusInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyStatusInvalidApplyText.setDescription("When apexChassisRedundancyConfigApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. ")
apex_chassis_redundancy_general_config_sync_status_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyGeneralConfigSyncStatusText.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyGeneralConfigSyncStatusText.setDescription('GigE Config Sync Error info ')
apex_chassis_redundancy_gig_e_mismatch_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('unknown', 0), ('match', 1), ('mismatch', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyGigEMismatchStatus.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyGigEMismatchStatus.setDescription('This parameter indicates whether the GigE configuration of the apexes in Chassis Redundancy pair match. Both the APEXs will report the following values: These are based on its knowledge about the secondary APEX GigE configuration from heartbeat messages. unknown (0): GigE configuration of pair APEX is not known (heartbeat not received). match (1): GigE configuration of APEXs in redundancy pair match. mismatch (2): GigE configuration of APEXs in redundancy pair do not match. ')
apex_chassis_redundancy_qam_mismatch_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('unknown', 0), ('match', 1), ('mismatch', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyQamMismatchStatus.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyQamMismatchStatus.setDescription('This parameter indicates whether the QAM configuration of the apexes in Chassis Redundancy pair match. Both the APEXs will report the following values: These are based on its knowledge about the secondary APEX QAM configuration from heartbeat messages. unknown (0): QAM configuration of pair APEX is not known (heartbeat not received). match (1): QAM configuration of APEXs in redundancy pair match. mismatch (2): QAM configuration of APEXs in redundancy pair do not match. ')
apex_chassis_redundancy_firmware_mismatch_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('unknown', 0), ('match', 1), ('mismatch', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyFirmwareMismatchStatus.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyFirmwareMismatchStatus.setDescription('This parameter indicates whether the Firmware version of the apexes in Chassis Redundancy pair match. Both the APEXs will report the following values: These are based on its knowledge about the secondary APEX Firmware version from heartbeat messages. unknown (0): Firmware version of pair APEX is not known (heartbeat not received). match (1): Firmware version of APEXs in redundancy pair match. mismatch (2): Firmware version of APEXs in redundancy pair do not match. ')
apex_chassis_redundancy_gig_e12_link_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyGigE12LinkStatus.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyGigE12LinkStatus.setDescription('This parameter indicates the combined alarm status of the GigE 1 and GigE 2. Indicates the lower of the gigE input interface alarm conditions. ok (1): No alarm on either of GigE1 and GigE2. warning (3): Warning alarm on both GigE1 or GigE2 minor (4): minor alarm on both GigE1 or GigE2 major (5): Major alarm on both GigE1 or GigE2 critical (6): critical alarm on both GigE1 and GigE2. ')
apex_chassis_redundancy_gig_e34_link_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyGigE34LinkStatus.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyGigE34LinkStatus.setDescription('This parameter indicates the combined alarm status of the GigE3 and GigE4. Indicates the lower of the gigE input interface alarm conditions. ok (1): No alarm on either of GigE3 and GigE4. warning (3): Warning alarm on both GigE3 or GigE4 minor (4): minor alarm on both GigE3 or GigE4 major (5): Major alarm on both GigE3 or GigE4 critical (6): critical alarm on both GigE3 and GigE4. ')
apex_chassis_redundancy_curr_hb_intf_ip_status = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 22, 2, 1, 13), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyCurrHBIntfIPStatus.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyCurrHBIntfIPStatus.setDescription('This parameter indicates the heartbeat interface used for receiving heartbeat from the redundant APEX. ')
apex_dta_general_config_cat_source_type = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('internal', 1), ('external', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaGeneralConfigCatSourceType.setStatus('current')
if mibBuilder.loadTexts:
apexDtaGeneralConfigCatSourceType.setDescription("When set to internal(0), APEX generates CAT and inserts EMM pid received from DAC. When set to external(1), APEX will not generate CAT, it will receive both CAT and EMM pids from DAC and inserts EMM pid into CAT. @Config(config=yes, reboot=no) @Commit(param=apexDtaGeneralConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_dta_general_config_cat_emm_pid_multicast_ip = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaGeneralConfigCatEmmPidMulticastIP.setStatus('current')
if mibBuilder.loadTexts:
apexDtaGeneralConfigCatEmmPidMulticastIP.setDescription("Multicast IPv4 address on which CAT/EMM PID stream is available. An IP Address of 0.0.0.0 indicates unicast stream. @Config(config=yes, reboot=no) @Commit(param=apexDtaGeneralConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_dta_general_config_cat_emm_pid_source_ip = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaGeneralConfigCatEmmPidSourceIP.setStatus('current')
if mibBuilder.loadTexts:
apexDtaGeneralConfigCatEmmPidSourceIP.setDescription("Source IP address to receive CAT/EMM PID stream. This is used only if apexQamRfConfigDtaNetworkPidMulticastIP is set to a multicast address. @Config(config=yes, reboot=no) @Commit(param=apexDtaGeneralConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_dta_general_config_cat_emm_pid_udp_port = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1024, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaGeneralConfigCatEmmPidUdpPort.setStatus('current')
if mibBuilder.loadTexts:
apexDtaGeneralConfigCatEmmPidUdpPort.setDescription("UDP port to receive CAT/EMM PID stream. The range of valid UDP port numbers are 1024 to 65535. @Config(config=yes, reboot=no) @Commit(param=apexDtaGeneralConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_dta_general_config_cat_emm_pid_interface = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 5), ethernet_interface_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaGeneralConfigCatEmmPidInterface.setStatus('current')
if mibBuilder.loadTexts:
apexDtaGeneralConfigCatEmmPidInterface.setDescription("Fast Ethernet Interface to receive CAT/EMM PID stream. One of ENET1 and ENET2 interfaces are used to receive CAT/EMM PID streams. @Config(config=yes, reboot=no) @Commit(param=apexDtaGeneralConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_dta_general_config_emm_pid_num = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(7168, 8190))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaGeneralConfigEmmPidNum.setStatus('current')
if mibBuilder.loadTexts:
apexDtaGeneralConfigEmmPidNum.setDescription("EMM PID to insert on DTA enabled OTS. The range of valid PID numbers are 0x1C00 to 0x1FFE. @Config(config=yes, reboot=no) @Commit(param=apexDtaGeneralConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_dta_general_config_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 7), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaGeneralConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexDtaGeneralConfigApplyChange.setDescription("The Apply for DTA Configuration parameters. This parameter MUST be set to 'apply' in order for the DTA Cat Config data to take effect. This parameter MUST be set LAST after all DTA Config parameters affected by this parameter have been configured. @Config(config=no, reboot=no) ")
apex_dta_general_config_invalid_apply_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDtaGeneralConfigInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexDtaGeneralConfigInvalidApplyText.setDescription("When apexDtaGeneralConfigApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with DTA CAT/EMM PID Config data or NET PID Config data. ")
apex_dta_config_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 2))
if mibBuilder.loadTexts:
apexDtaConfigApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexDtaConfigApplyTable.setDescription('Apply table for the configuration tables apexDtaRfPortConfigTable and apexDtaOtsConfigTable. ')
apex_dta_config_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexDtaConfigApplyIndex'))
if mibBuilder.loadTexts:
apexDtaConfigApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexDtaConfigApplyEntry.setDescription('DTA RF Port Configuration Apply Table Entry.')
apex_dta_config_apply_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12)))
if mibBuilder.loadTexts:
apexDtaConfigApplyIndex.setStatus('current')
if mibBuilder.loadTexts:
apexDtaConfigApplyIndex.setDescription('Defines the size of apexDtaRfPortConfigTable. DTA NET PID can be configured for each RF port. This shall be the number of maximum number of QAM RF port.')
apex_dta_config_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 2, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexDtaConfigApplyChange.setDescription("The Apply for a row of data in apexDtaRfPortConfigTable. The Apply for eight rows of data in apexDtaOtsConfigTable. A row in this table corresponds to the same row index in the apexDtaRfPortConfigTable. A row in this table corresponds to eight rows in the apexDtaOtsConfigTable when QAM module is type of either 2x4 or 2x8 as follows: Apply Table DTA OTS/QAM Config Table ----------- ----------------- 1 1-8 2 9-16 3 17-24 4 25-32 5 33-40 6 41-48 A row in this table corresponds to four rows in the apexDtaOtsConfigTable when QAM module is type of 4x4 as follows: Apply Table DTA OTS/QAM Config Table ----------- ----------------- 1 1-4 2 5-8 3 17-20 4 21-24 5 33-36 6 37-40 7 9-12 8 13-16 9 25-28 10 29-32 11 41-44 12 45-48 This parameter MUST be set to 'apply' in order for any of the data in the rows to take effect in the APEX. This parameter MUST be set LAST after all other data in the configuration table rows has been configured. @Config(config=no, reboot=no) ")
apex_dta_rf_port_config_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3))
if mibBuilder.loadTexts:
apexDtaRfPortConfigTable.setStatus('current')
if mibBuilder.loadTexts:
apexDtaRfPortConfigTable.setDescription("Table of DTA configuration items configurable on a RF Port basis. Once written, the change to this table will only take immediate effect after apexDtaConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexDtaConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_dta_rf_port_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexDtaRfPortConfigIndex'))
if mibBuilder.loadTexts:
apexDtaRfPortConfigEntry.setStatus('current')
if mibBuilder.loadTexts:
apexDtaRfPortConfigEntry.setDescription('DTA RF port configuration Table Entry.')
apex_dta_rf_port_config_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12)))
if mibBuilder.loadTexts:
apexDtaRfPortConfigIndex.setStatus('current')
if mibBuilder.loadTexts:
apexDtaRfPortConfigIndex.setDescription('The QAM RF Port number.')
apex_dta_rf_port_config_net_pid_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaRfPortConfigNetPidMulticastIP.setStatus('current')
if mibBuilder.loadTexts:
apexDtaRfPortConfigNetPidMulticastIP.setDescription('Multicast IPv4 address on which Network PID stream is available. An IP Address of 0.0.0.0 indicates unicast stream. ')
apex_dta_rf_port_config_net_pid_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaRfPortConfigNetPidSourceIP.setStatus('current')
if mibBuilder.loadTexts:
apexDtaRfPortConfigNetPidSourceIP.setDescription('Source IP address to receive Network PID stream. This is used only if apexDtaRfPortConfigNetPidMulticastIP is set to a multicast address. ')
apex_dta_rf_port_config_net_pid_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1024, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaRfPortConfigNetPidUdpPort.setStatus('current')
if mibBuilder.loadTexts:
apexDtaRfPortConfigNetPidUdpPort.setDescription('UDP port number to receive Network PID stream. The range of valid port numbers are 1024 to 65535. ')
apex_dta_rf_port_config_net_pid_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1, 5), ethernet_interface_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaRfPortConfigNetPidInterface.setStatus('current')
if mibBuilder.loadTexts:
apexDtaRfPortConfigNetPidInterface.setDescription('Fast Ethernet Interface to receive Network PID stream. Network PID stream can be received either ENET1 or ENET2. ')
apex_dta_rf_port_config_net_pid_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(7168, 8190))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaRfPortConfigNetPidNum.setStatus('current')
if mibBuilder.loadTexts:
apexDtaRfPortConfigNetPidNum.setDescription('Network PID to insert on DTA enabled OTS. The range of valid PID numbers are 0x1C00 to 0x1FFE. ')
apex_dta_ots_config_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 4))
if mibBuilder.loadTexts:
apexDtaOtsConfigTable.setStatus('current')
if mibBuilder.loadTexts:
apexDtaOtsConfigTable.setDescription("Table of DTA configuration items for output transport streams (OTS). Once written, the change to this table will only take immediate effect after apexDtaConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexDtaConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_dta_ots_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexDtaOtsConfigIndex'))
if mibBuilder.loadTexts:
apexDtaOtsConfigEntry.setStatus('current')
if mibBuilder.loadTexts:
apexDtaOtsConfigEntry.setDescription('DTA OTS enable configuration Table Entry.')
apex_dta_ots_config_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexDtaOtsConfigIndex.setStatus('current')
if mibBuilder.loadTexts:
apexDtaOtsConfigIndex.setDescription('The Output Transport Stream(OTS) number.')
apex_dta_ots_config_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 23, 1, 4, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDtaOtsConfigEnable.setStatus('current')
if mibBuilder.loadTexts:
apexDtaOtsConfigEnable.setDescription('This is to enable/disable of inserting DTA messages on OTS. When set to disabled(1), DTA messages are not allowed to insert on OTS. When set to enabled(2), DTA messages are allowed to insert on OTS. ')
apex_depi_config_hostname = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiConfigHostname.setStatus('current')
if mibBuilder.loadTexts:
apexDepiConfigHostname.setDescription("Host name defined as the FQDM of the APEX-EQAM device. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2, default=yes) @File(config.ini, type='ini') ")
apex_depi_status_general_dti_port1_link_active = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 1), active_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiPort1LinkActive.setStatus('current')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiPort1LinkActive.setDescription('This indicates if the DTI Ethernet link is active.')
apex_depi_status_general_dti_port2_link_active = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 2), active_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiPort2LinkActive.setStatus('current')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiPort2LinkActive.setDescription('This indicates if the second DTI Ethernet link is active.')
apex_depi_status_general_dti_client_status_mode = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('warmup', 1), ('free-run', 2), ('fast', 3), ('normal', 4), ('bridging', 5), ('holdover', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiClientStatusMode.setStatus('current')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiClientStatusMode.setDescription('The DTI Client MUST support and report these operational modes.')
apex_depi_status_general_dti_client_phase_error = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiClientPhaseError.setStatus('current')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiClientPhaseError.setDescription("24-bit Phase Error in units of 149.8 MHz sample clock cycles. The lower eight bits of the 24-bit field MUST be padded with zeros and MUST NOT be used by the DTI server. The value MUST be a signed 2's complement number. If the DTI client supports more bits of resolution, the DTI client MUST round the reported value to the nearest integer sample clock cycle. ")
apex_depi_status_general_dti_current_timestamp = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiCurrentTimestamp.setStatus('current')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiCurrentTimestamp.setDescription('DOCSIS 32-bit timestamp (DTS). ')
apex_depi_status_general_dti_port1_cable_advance_value = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiPort1CableAdvanceValue.setStatus('current')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiPort1CableAdvanceValue.setDescription('24-bit Cable Advance value is derived by dividing the cable delay by 2.')
apex_depi_status_general_dti_port2_cable_advance_value = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 2, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiPort2CableAdvanceValue.setStatus('current')
if mibBuilder.loadTexts:
apexDepiStatusGeneralDtiPort2CableAdvanceValue.setDescription('24-bit Cable Advance value is derived by dividing the cable delay by 2.')
apex_depi_control_config_general_keepalive_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(10, 600))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiControlConfigGeneralKeepaliveTimeout.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigGeneralKeepaliveTimeout.setDescription("Timeout in seconds to wait while no control or data messages are received within the connection before sending a DEPI:HELLO message. Default is 60 seconds. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_depi_control_config_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 2))
if mibBuilder.loadTexts:
apexDepiControlConfigApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigApplyTable.setDescription('Table of Apply Change for the data for apexDepiControlConfigTable. Entries in the apexDepiControlConfigTable cannot be modified while DEPI Control Connections and DEPI Sessions currently exist. ')
apex_depi_control_config_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexDepiControlConfigApplyIndex'))
if mibBuilder.loadTexts:
apexDepiControlConfigApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigApplyEntry.setDescription('DEPI Control Configuration Apply Table Entry. ')
apex_depi_control_config_apply_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 10)))
if mibBuilder.loadTexts:
apexDepiControlConfigApplyIndex.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigApplyIndex.setDescription('The index of the Depi Control Config Apply Table.')
apex_depi_control_config_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 2, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiControlConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigApplyChange.setDescription("The Apply for any entries in the apexDepiControlConfigTable. Entries in the apexDepiControlConfigTable cannot be modified while DEPI Control Connections and DEPI Sessions currently exist. This parameter MUST be set to 'apply' in order for any of the data in the apexDepiControlConfigTable to take effect. This parameter MUST be set LAST after all other data in the group has been configured. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apex_depi_control_config_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3))
if mibBuilder.loadTexts:
apexDepiControlConfigTable.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigTable.setDescription("This table provides a list of DEPI Control Connections initiated by M-CMTS Cores. A maximum of 10 connections is accepted. Entries in the apexDepiControlConfigTable cannot be modified while DEPI Control Connections and DEPI Sessions currently exist. @Config(config=yes, reboot=no) @Commit(param=apexDepiControlConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_depi_control_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexDepiControlConfigIndex'))
if mibBuilder.loadTexts:
apexDepiControlConfigEntry.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigEntry.setDescription('DEPI Control Configuration Table Entry. ')
apex_depi_control_config_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 10)))
if mibBuilder.loadTexts:
apexDepiControlConfigIndex.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigIndex.setDescription('The index of the Depi Control Config Table.')
apex_depi_control_config_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiControlConfigEnable.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigEnable.setDescription('The enable setting for DEPI Control Connection. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ')
apex_depi_control_config_interface_number = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiControlConfigInterfaceNumber.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigInterfaceNumber.setDescription("Represents the Gigabit Ethernet interface number. Range: '0' = Not Applicable GBE = 1-4 ")
apex_depi_control_config_src_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiControlConfigSrcIpAddr.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigSrcIpAddr.setDescription('This parameter indicates the M-CMTS Core IP address. ')
apex_depi_control_config_over_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('over-IP', 1), ('over-UDP', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiControlConfigOverUdp.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigOverUdp.setDescription('This parameter indicates whether the DEPI Control Connection and Sessions will be accepted over the UDP protocol. ')
apex_depi_control_config_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 1, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('static', 1), ('dynamic', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiControlConfigType.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlConfigType.setDescription('This parameter indicates whether DEPI Sessions are established dynamically using the DEPI control protocol or statically. Not supported. ')
apex_depi_control_status_general_total_connections = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusGeneralTotalConnections.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusGeneralTotalConnections.setDescription('The number of DEPI Control Connections established since reboot.')
apex_depi_control_status_general_current_connections = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusGeneralCurrentConnections.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusGeneralCurrentConnections.setDescription('The current number of DEPI Control Connections currently connected.')
apex_depi_control_status_general_rejected_connections = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusGeneralRejectedConnections.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusGeneralRejectedConnections.setDescription('The number of control connection requests rejected for any reason.')
apex_depi_control_status_general_unknown_connection_messages = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusGeneralUnknownConnectionMessages.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusGeneralUnknownConnectionMessages.setDescription('The number of DEPI control messages ignored not related to any existing control connection i.e. unrecognized connection identifier.')
apex_depi_control_status_general_unknown_session_messages = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusGeneralUnknownSessionMessages.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusGeneralUnknownSessionMessages.setDescription('The number of DEPI messages ignored not related to any existing session i.e. unrecognized session identifier.')
apex_depi_control_status_general_invalid_apply_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusGeneralInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusGeneralInvalidApplyText.setDescription("When apexDepiControlConfigApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a related entry that was invalid. ")
apex_depi_control_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2))
if mibBuilder.loadTexts:
apexDepiControlStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusTable.setDescription('Table of read-only status information pertaining to the DEPI Control Connections.')
apex_depi_control_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexDepiControlStatusIndex'))
if mibBuilder.loadTexts:
apexDepiControlStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusEntry.setDescription('DEPI Control Status Table Entry.')
apex_depi_control_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 10)))
if mibBuilder.loadTexts:
apexDepiControlStatusIndex.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusIndex.setDescription('DEPI Session ID')
apex_depi_control_status_local_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusLocalUdp.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusLocalUdp.setDescription('The EQAM UDP port used in DEPI session messages from M-CMTS core. Only valid for DEPI connections using L2TPv3/UDP/IP. ')
apex_depi_control_status_remote_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusRemoteUdp.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusRemoteUdp.setDescription('The M-CMTS UDP port used in DEPI session messages from M-CMTS core. Only valid for DEPI connections using L2TPv3/UDP/IP. ')
apex_depi_control_status_connection_status = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('terminated', 1), ('failed', 2), ('waiting', 3), ('established', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusConnectionStatus.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusConnectionStatus.setDescription('M-CMTS core to the EQAM control connection status')
apex_depi_control_status_unknown_ctl = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusUnknownCtl.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusUnknownCtl.setDescription('Number of unrecognized DEPI messages not marked as mandatory received on this control connection. ')
apex_depi_control_status_malformed_ctl = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 6), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusMalformedCtl.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusMalformedCtl.setDescription('Number of malformed DEPI messages received on this control connection. ')
apex_depi_control_status_unknown_avp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 7), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusUnknownAvp.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusUnknownAvp.setDescription('Number of messages received on this control connection with an unsupported AVP. ')
apex_depi_control_status_malformed_avp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 8), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusMalformedAvp.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusMalformedAvp.setDescription('Number of messages received on this control connection with malformed AVP. ')
apex_depi_control_status_invalid_vendor_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 9), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusInvalidVendorId.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusInvalidVendorId.setDescription('Number of messages with an unsupported Vendor ID received on this control connection. The supported vendor IDs are 0 or 4491. ')
apex_depi_control_status_hbit_set = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 10), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusHbitSet.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusHbitSet.setDescription('Number of messages received on this control connection with H-bit set to 1. ')
apex_depi_control_status_total_sessions = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 11), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusTotalSessions.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusTotalSessions.setDescription('Total number of sessions established on this control connection since EQAM reboot. Only valid for dynamically established connections. ')
apex_depi_control_status_current_sessions = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 12), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusCurrentSessions.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusCurrentSessions.setDescription('Number of session currently established on this control connection. Only valid for dynamically established connections. ')
apex_depi_control_status_rejected_sessions = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 3, 2, 2, 1, 13), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiControlStatusRejectedSessions.setStatus('current')
if mibBuilder.loadTexts:
apexDepiControlStatusRejectedSessions.setDescription('Number of session setup related (ICQR/ICCN) messages rejected on this control connection. ')
apex_depi_session_config_apply_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 1))
if mibBuilder.loadTexts:
apexDepiSessionConfigApplyTable.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionConfigApplyTable.setDescription('Table of Apply Change for the data for apexDepiSessionConfigTable. ')
apex_depi_session_config_apply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 1, 1)).setIndexNames((0, 'APEX-MIB', 'apexDepiSessionConfigApplyOutputTsNum'))
if mibBuilder.loadTexts:
apexDepiSessionConfigApplyEntry.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionConfigApplyEntry.setDescription('DEPI Session Status Table Entry.')
apex_depi_session_config_apply_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexDepiSessionConfigApplyOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionConfigApplyOutputTsNum.setDescription('The index of the Depi Session Config Apply Table.')
apex_depi_session_config_apply_change = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 1, 1, 2), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiSessionConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionConfigApplyChange.setDescription("The Apply for any entries in the apexDepiSessionConfigTable. This parameter MUST be set to 'apply' in order for any of the data in the apexDepiSessionConfigTable to take effect. This parameter MUST be set LAST after all other data in the table entry has been configured. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apex_depi_session_config_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2))
if mibBuilder.loadTexts:
apexDepiSessionConfigTable.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionConfigTable.setDescription("Table of data for DEPI Session Mapping. There are 48 rows in this table mapping QAM output TS to DEPI Session. Once written, the change to this table will only take immediate effect after apexDepiSessionConfigApplyChange is set to 'apply'. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via apexSaveConfig. @Config(config=yes, reboot=no) @Commit(param=apexDepiSessionConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_depi_session_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexDepiSessionConfigOutputTsNum'))
if mibBuilder.loadTexts:
apexDepiSessionConfigEntry.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionConfigEntry.setDescription('DEPI Session Config Table Entry.')
apex_depi_session_config_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexDepiSessionConfigOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionConfigOutputTsNum.setDescription('The QAM output transport stream number which to associate the DEPI Session. ')
apex_depi_session_config_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1, 2), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiSessionConfigEnable.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionConfigEnable.setDescription('The enable setting for DEPI Session. Once written, the change to this parameter will take immediate effect. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. ')
apex_depi_session_config_control_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiSessionConfigControlId.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionConfigControlId.setDescription('DOCSIS Control ID assignment. Value of 0 indicates transport stream to be used for Video only. ')
apex_depi_session_config_docsis_tsid = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiSessionConfigDocsisTsid.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionConfigDocsisTsid.setDescription('The system wide unique M-CMTS TSID mapped to the QAM. This TSID is specified by the remote ID from the ICRQ message. ')
apex_depi_session_config_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiSessionConfigUdpPort.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionConfigUdpPort.setDescription('UDP port number defining the DEPI Session (if UDP is enabled.) The range of valid port numbers is 1 to 65535. ')
apex_depi_session_config_sync_correction = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 1, 2, 1, 6), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexDepiSessionConfigSyncCorrection.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionConfigSyncCorrection.setDescription('Enable or disable updating the timestamp in the SYNC messages. This is only valid for static connections. (For dynamically established sessions, M-CMTS core enables or disables the SYNC correction during session establishment) ')
apex_depi_session_status_general_invalid_apply_text = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusGeneralInvalidApplyText.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusGeneralInvalidApplyText.setDescription("When apexDepiSessionConfigApplyChange is set to 'applyNotInProgressInvalidData' this entry may contain a text description of what was wrong with the data. This entry contains the description for the most recent apply of a related entry that was invalid. ")
apex_depi_session_status_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2))
if mibBuilder.loadTexts:
apexDepiSessionStatusTable.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusTable.setDescription('Table of read-only status information pertaining to the DEPI Sessions.')
apex_depi_session_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexDepiSessionStatusIndex'))
if mibBuilder.loadTexts:
apexDepiSessionStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusEntry.setDescription('DEPI Session Status Table Entry.')
apex_depi_session_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexDepiSessionStatusIndex.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusIndex.setDescription('DEPI Session ID.')
apex_depi_session_status_control_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusControlId.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusControlId.setDescription('The DEPI Control ID this session belongs to.')
apex_depi_session_status_output_qam_channel = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusOutputQAMChannel.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusOutputQAMChannel.setDescription('The QAM Channel number this session is mapped to.')
apex_depi_session_status_local_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusLocalUdp.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusLocalUdp.setDescription('The local UDP port used by the APEX to communicate the DEPI Session messages to the M-CMTS Core')
apex_depi_session_status_remote_udp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusRemoteUdp.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusRemoteUdp.setDescription('The remote UDP port used by the M-CMTS Core to communicate the DEPI Session messages to the Apex.')
apex_depi_session_status_status = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('terminated', 1), ('failed', 2), ('waiting', 3), ('established', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusStatus.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusStatus.setDescription('M-CMTS core to the EQAM control connection status')
apex_depi_session_status_per_hop_behavior = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusPerHopBehavior.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusPerHopBehavior.setDescription('Per Hop Behavior value for this session.')
apex_depi_session_status_unknown_ctl = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 8), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusUnknownCtl.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusUnknownCtl.setDescription('Number of unrecognized DEPI messages not marked as mandatory received on this session.')
apex_depi_session_status_malformed_ctl = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 9), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusMalformedCtl.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusMalformedCtl.setDescription('Number of malformed DEPI messages received on this session.')
apex_depi_session_status_unknown_avp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 10), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusUnknownAvp.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusUnknownAvp.setDescription('Number of messages received on this session with an unsupported AVP.')
apex_depi_session_status_malformed_avp = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 11), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusMalformedAvp.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusMalformedAvp.setDescription('Number of messages received on this session with malformed AVP.')
apex_depi_session_status_invalid_vendor_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 12), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusInvalidVendorId.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusInvalidVendorId.setDescription('Number of messages with an unsupported Vendor ID received on this session. The supported vendor IDs are 0 or 4491.')
apex_depi_session_status_hbit_set = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 13), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusHbitSet.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusHbitSet.setDescription('Number of messages received on this session with H-bit set to 1.')
apex_depi_session_status_in_sli_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 14), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusInSLIMsgs.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusInSLIMsgs.setDescription('Number of SLI messages received on this session.')
apex_depi_session_status_out_sli_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 15), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusOutSLIMsgs.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusOutSLIMsgs.setDescription('Number of SLI messages sent on this session.')
apex_depi_session_status_ingress_dlm_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 16), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusIngressDlmMsgs.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusIngressDlmMsgs.setDescription('Number of DLM messages received on this session.')
apex_depi_session_status_egress_dlm_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 17), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusEgressDlmMsgs.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusEgressDlmMsgs.setDescription('Number of DLM messages sent on this session.')
apex_depi_session_status_latency_start = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 18), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusLatencyStart.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusLatencyStart.setDescription('Last latency related timestamp start value received.')
apex_depi_session_status_latency_end = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 19), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusLatencyEnd.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusLatencyEnd.setDescription('Last latency related timestamp end value received.')
apex_depi_session_status_in_data_packets = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 20), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusInDataPackets.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusInDataPackets.setDescription('Number of data packets received on this session.')
apex_depi_session_status_in_sequence_discards = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 21), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusInSequenceDiscards.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusInSequenceDiscards.setDescription('Number of data packets received on this session that are discarded due to sequencing error.')
apex_depi_session_status_in_data_packet_discards = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 22), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusInDataPacketDiscards.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusInDataPacketDiscards.setDescription('Number of data packets received on this session that are discarded for reasons other than sequencing errors.')
apex_depi_session_status_session_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 24, 4, 2, 2, 1, 23), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexDepiSessionStatusSessionID.setStatus('current')
if mibBuilder.loadTexts:
apexDepiSessionStatusSessionID.setDescription('Remote DEPI Session ID, used by the Remote End to identify the DEPI Session and locally to bind the Session to a QAM Channel.')
apex_psip_config_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 1), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigApplyChange.setDescription("The Apply for parameters in apexPsipConfigGeneral. This parameter MUST be set to 'apply' in order for other apexPsipConfigGeneral parameters to take effect. This parameter MUST be set LAST after other apexPsipConfigGeneral parameters have been configured. @Config(config=no, reboot=no) ")
apex_psip_config_mgt_msg_insertion_period = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(150, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigMgtMsgInsertionPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigMgtMsgInsertionPeriod.setDescription("Specify insertion rate (ms) for MGT PSIP table. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_stt_msg_insertion_period = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(1000, 5000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigSttMsgInsertionPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigSttMsgInsertionPeriod.setDescription("Specify insertion rate (ms) for STT PSIP table. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_cvct_msg_insertion_period = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(400, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigCvctMsgInsertionPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigCvctMsgInsertionPeriod.setDescription("Specify insertion rate (ms) for CVCT PSIP table. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_rrt_msg_insertion_period = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(30000, 60000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigRrtMsgInsertionPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigRrtMsgInsertionPeriod.setDescription("Specify insertion rate (ms) for RRT PSIP table. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_eit0_insertion_period = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(500, 60000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigEit0InsertionPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigEit0InsertionPeriod.setDescription("EIT insertion rate (ms) of EIT-0. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_eit1_insertion_period = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(500, 60000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigEit1InsertionPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigEit1InsertionPeriod.setDescription("EIT insertion rate (ms) of EIT-1. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_eit2_insertion_period = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(500, 60000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigEit2InsertionPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigEit2InsertionPeriod.setDescription("EIT insertion rate (ms) of EIT-2. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_eit3_insertion_period = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 1, 9), unsigned32().subtype(subtypeSpec=value_range_constraint(500, 60000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigEit3InsertionPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigEit3InsertionPeriod.setDescription("EIT insertion rate (ms) of EIT-3. Once written, the change to this parameter will only take immediate effect after apexPsipConfigApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_time_apply_change = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 1), apply_data_to_device_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigTimeApplyChange.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigTimeApplyChange.setDescription("The Apply for parameters in apexPsipConfigTime group. This parameter MUST be set to 'apply' in order for other apexPsipConfigTime parameters to take effect. This parameter MUST be set LAST after other apexPsipConfigTime parameters have been configured. @Config(config=no, reboot=no) ")
apex_psip_config_time_ds_month_in = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigTimeDsMonthIn.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigTimeDsMonthIn.setDescription("Configurable month for entering DST. Once written, the change to this parameter will only take immediate effect after apexPsipConfigTimeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigTimeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_time_ds_day_in = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigTimeDsDayIn.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigTimeDsDayIn.setDescription("Configurable day for entering DST. Once written, the change to this parameter will only take immediate effect after apexPsipConfigTimeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigTimeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_time_ds_hour_in = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 18))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigTimeDsHourIn.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigTimeDsHourIn.setDescription("Configurable hour for entering DST. Once written, the change to this parameter will only take immediate effect after apexPsipConfigTimeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigTimeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_time_ds_month_out = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigTimeDsMonthOut.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigTimeDsMonthOut.setDescription("Configurable month for exiting DST. Once written, the change to this parameter will only take immediate effect after apexPsipConfigTimeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigTimeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_time_ds_day_out = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigTimeDsDayOut.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigTimeDsDayOut.setDescription("Configurable day for exiting DST. Once written, the change to this parameter will only take immediate effect after apexPsipConfigTimeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigTimeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_config_time_ds_hour_out = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 1, 2, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 18))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexPsipConfigTimeDsHourOut.setStatus('current')
if mibBuilder.loadTexts:
apexPsipConfigTimeDsHourOut.setDescription("Configurable hour for exiting DST. Once written, the change to this parameter will only take immediate effect after apexPsipConfigTimeApplyChange is set to 'apply'. In order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Commit(param=apexPsipConfigTimeApplyChange, value=2) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_psip_status_input_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2))
if mibBuilder.loadTexts:
apexPsipStatusInputTable.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusInputTable.setDescription('The following table contains a list of messages that are being extracted from the input side. ')
apex_psip_status_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexPsipStatusInputIndex'), (0, 'APEX-MIB', 'apexPsipStatusInputPid'), (0, 'APEX-MIB', 'apexPsipStatusInputMessageType'), (0, 'APEX-MIB', 'apexPsipStatusInputSourceId'), (0, 'APEX-MIB', 'apexPsipStatusInputSegment'), (0, 'APEX-MIB', 'apexPsipStatusInputPart'))
if mibBuilder.loadTexts:
apexPsipStatusInputEntry.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusInputEntry.setDescription('PSIP Table Entry.')
apex_psip_status_input_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 784)))
if mibBuilder.loadTexts:
apexPsipStatusInputIndex.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusInputIndex.setDescription('Indicates the input index for which this message applies.')
apex_psip_status_input_pid = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 8191)))
if mibBuilder.loadTexts:
apexPsipStatusInputPid.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusInputPid.setDescription('Indicates the PID that this message is contained in.')
apex_psip_status_input_message_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)))
if mibBuilder.loadTexts:
apexPsipStatusInputMessageType.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusInputMessageType.setDescription('Indicates the PSIP message type. 199 - MGT 200 - TVCT 201 - CVCT 203 - EIT 202 - RRT 205 - STT ')
apex_psip_status_input_source_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)))
if mibBuilder.loadTexts:
apexPsipStatusInputSourceId.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusInputSourceId.setDescription('Indicates the Source Id of EIT tables. When a message is not specifically related to a program, this value is 0.')
apex_psip_status_input_segment = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 256)))
if mibBuilder.loadTexts:
apexPsipStatusInputSegment.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusInputSegment.setDescription('Indicates the segment number of this message. Otherwise this is 0.')
apex_psip_status_input_part = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)))
if mibBuilder.loadTexts:
apexPsipStatusInputPart.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusInputPart.setDescription('Since a message can be 4096 bytes long the message may divided into parts. Each part of the message is indexed using this index.')
apex_psip_status_input_body = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsipStatusInputBody.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusInputBody.setDescription('Raw ASCII hex of the PSIP message.')
apex_psip_status_input_gps_time = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsipStatusInputGpsTime.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusInputGpsTime.setDescription('The GPS time when the PSIP message was added to the table.')
apex_psip_status_input_info = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 2, 1, 9), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsipStatusInputInfo.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusInputInfo.setDescription('Comma-separated string showing Input Interface, UDP port, Multicast IP, and Source IP for this PSIP message.')
apex_psip_status_output_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3))
if mibBuilder.loadTexts:
apexPsipStatusOutputTable.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusOutputTable.setDescription('The following table contains a list of messages that are being inserted to the output side of the apex. ')
apex_psip_status_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexPsipStatusOutputIndex'), (0, 'APEX-MIB', 'apexPsipStatusOutputPid'), (0, 'APEX-MIB', 'apexPsipStatusOutputMessageType'), (0, 'APEX-MIB', 'apexPsipStatusOutputSourceId'), (0, 'APEX-MIB', 'apexPsipStatusOutputSegment'), (0, 'APEX-MIB', 'apexPsipStatusOutputPart'))
if mibBuilder.loadTexts:
apexPsipStatusOutputEntry.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusOutputEntry.setDescription('PSIP Table Entry.')
apex_psip_status_output_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 48)))
if mibBuilder.loadTexts:
apexPsipStatusOutputIndex.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusOutputIndex.setDescription('Indicates the Output index for which this message applies. This is the Output Transport Stream number (1..48). ')
apex_psip_status_output_pid = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 8191)))
if mibBuilder.loadTexts:
apexPsipStatusOutputPid.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusOutputPid.setDescription('Indicates the PID that this message is contained in.')
apex_psip_status_output_message_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)))
if mibBuilder.loadTexts:
apexPsipStatusOutputMessageType.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusOutputMessageType.setDescription('Indicates the PSIP message type. 199 - MGT 200 - TVCT 201 - CVCT 203 - EIT 202 - RRT 205 - STT')
apex_psip_status_output_source_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)))
if mibBuilder.loadTexts:
apexPsipStatusOutputSourceId.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusOutputSourceId.setDescription('Indicates the Source Id of EIT tables. When a message is not specifically related to a program, this value is 0.')
apex_psip_status_output_segment = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 256)))
if mibBuilder.loadTexts:
apexPsipStatusOutputSegment.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusOutputSegment.setDescription('Indicates the segment number of this message. Otherwise this is 0.')
apex_psip_status_output_part = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)))
if mibBuilder.loadTexts:
apexPsipStatusOutputPart.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusOutputPart.setDescription('Since a message can be 4096 bytes long the message may divided into parts. Each part of the message is indexed using this index.')
apex_psip_status_output_body = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsipStatusOutputBody.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusOutputBody.setDescription('Raw ASCII hex of the PSIP message.')
apex_psip_status_output_gps_time = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 3, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsipStatusOutputGpsTime.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusOutputGpsTime.setDescription('The GPS time when the PSIP message was added to the table.')
apex_psip_status_service_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4))
if mibBuilder.loadTexts:
apexPsipStatusServiceTable.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusServiceTable.setDescription('The following table shows the PSIP status per service. For each service, the service number, the Output Transport Stream number, its PSIP state and its source id are shown in the current entry. This table is indexed the same as apexOutputProgramTable. ')
apex_psip_status_service_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexPsipStatusServiceIndex'))
if mibBuilder.loadTexts:
apexPsipStatusServiceEntry.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusServiceEntry.setDescription('PSIP Status Table Entry per service.')
apex_psip_status_service_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 768)))
if mibBuilder.loadTexts:
apexPsipStatusServiceIndex.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusServiceIndex.setDescription('Output Program Table Index.')
apex_psip_status_service_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsipStatusServiceNum.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusServiceNum.setDescription('Current Output Service Number.')
apex_psip_status_service_output_ts = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 48))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsipStatusServiceOutputTs.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusServiceOutputTs.setDescription('Current Output Transport Stream of this service.')
apex_psip_status_service_state = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsipStatusServiceState.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusServiceState.setDescription('Current program PSIP state.')
apex_psip_status_service_source_id = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 25, 2, 4, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexPsipStatusServiceSourceId.setStatus('current')
if mibBuilder.loadTexts:
apexPsipStatusServiceSourceId.setDescription('Current PSIP Program Source Id.')
apex_support_preencrypted_simulcrypt = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 26, 1, 1, 1), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexSupportPreencryptedSimulcrypt.setStatus('current')
if mibBuilder.loadTexts:
apexSupportPreencryptedSimulcrypt.setDescription("Allows to configure the APEX to support services pre-encrypted with Simulcrypt. All the CA descriptors present in the input PMT will be copied to the output PMT, modifying the ECM PID references if needed. Default value is enabled. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_alarm_hardware_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8000), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmHardwareFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmHardwareFault.setDescription("Indicates that a Hardware related error occurred. Examples include missing or uncommunicative HW, failures in initialization of HW, and failures to configure HW. These can occur at startup or when the system is operational. Types of HW Faults include: Application File(s) Download failure; SPI Interface Initialization failure; PCI Interface Initialization failure; GigE Configuration failure; MUX Configuration failure; QAM Module Communication failure; Unsupported/Incorrect HW/FW Version (QAM, etc.); Fatal Host Firmware Exception. 'critical' indicates a fatal error occurred that prevents the APEX from performing operational requirements. 'warning' indicates an error that does not prevent the APEX from performing operational requirements. ")
apex_alarm_invalid_init_data = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8001), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmInvalidInitData.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmInvalidInitData.setDescription('Set when invalid Initialization data (ini files) is encountered. ')
apex_alarm_temperature_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8002), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmTemperatureFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmTemperatureFault.setDescription("'critical' indicates one or more temperature sensors is reporting a high temperature condition. ")
apex_alarm_fan_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8003), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmFanFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmFanFault.setDescription("'major' indicates one or more fans has reduced RPM readings. ")
apex_alarm_power_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8004), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmPowerFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmPowerFault.setDescription("Power Supply Fault Alarm. 'warning' indicates power supply not compatible (apexPsStatusInstalled). 'major' indicates power supply or fan only module) removed (apexPsStatusInstalled). 'major' indicates power supply input power fault (apexPsStatusInputPowerStatus), output power fault (apexPsStatusOutputPowerStatus), or comm fault (apexPsStatusCommError). 'critical' indicates power supply over temperature fault (apexPsStatusTemperatureStatus). ")
apex_alarm_gbe_loss_of_physical_input = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8020), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmGbeLossOfPhysicalInput.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmGbeLossOfPhysicalInput.setDescription("Loss of Physical Gigabit Ethernet Input Alarm. 'critical' indicates that one or more physical interfaces that are configured as enabled to receive input have a failure (apexGbeStatusLossOfPhysicalInput). Physical input interfaces can be disabled to prevent this alarm when no input is connected. ")
apex_alarm_gbe_buffer_fullness = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8021), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmGbeBufferFullness.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmGbeBufferFullness.setDescription("Gigabit Ethernet Frame Buffer Fullness Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet Frame buffers are about to or have overflowed. The overflow level is based on the actual input data rate. 'major' when the frame buffer crosses a user specified threshold (apexGbeConfigFrameBufferAlarmThreshold). Cleared when the buffer level drops below the threshold. 'critical' when the frame buffer is completely full and frames are being dropped. Cleared when the overflow condition stops. A Major alarm, depending on the threshold setting, indicates that the APEX is getting close to overflowing it's internal Gigabit Ethernet frame buffers. A Critical alarm indicates that the frame buffer levels have overflowed. This will cause loss of packets and may result in tiling and other output anomalies. ")
apex_alarm_gbe_input_stream_low_bit_rate = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8022), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmGbeInputStreamLowBitRate.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmGbeInputStreamLowBitRate.setDescription("Gigabit Ethernet Input Stream Low Bit Rate Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet Input Streams as configured in apexManRteGbeInRedTable have a low bit rate condition. For alarm status of each stream refer to entries apexGbeStatInTsPriLowBitRateAlarm and apexGbeStatInTsSecLowBitRateAlarm. 'major' when one or more stream bit rates are below their apexManRteGbeInRedPriLowAlarmBitRate or apexManRteGbeInRedSecLowAlarmBitRate. Clears when all streams have been restored to at or above their configured apexManRteGbeInRedPriLowAlarmBitRate or apexManRteGbeInRedSecLowAlarmBitRate. ")
apex_alarm_gbe_input_stream_high_bit_rate = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8023), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmGbeInputStreamHighBitRate.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmGbeInputStreamHighBitRate.setDescription("Gigabit Ethernet Input Stream High Bit Rate Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet Input Streams as configured in apexManRteGbeInRedTable or via a Session Controller have a high bit rate condition. For alarm status of each stream refer to entry apexGbeStatInTsPriHighBitRateAlarm and apexGbeStatInTsSecHighBitRateAlarm. 'major' when one or more stream bit rates are above their apexManRteGbeInRedPriHighAlarmBitRate or apexManRteGbeInRedSecHighAlarmBitRate. Clears when all streams have been restored to at or below their configured apexManRteGbeInRedPriHighAlarmBitRate or apexManRteGbeInRedSecHighAlarmBitRate. ")
apex_alarm_gbe_mpts_redund_primary_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8024), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmGbeMptsRedundPrimaryThreshold.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmGbeMptsRedundPrimaryThreshold.setDescription("Gigabit Ethernet Input MPTS Redundant Primary Stream Below Threshold Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet Input Streams configured in apexManRteGbeInRedTable as being the Primary stream of a Redundant Pair are below the configured threshold. For alarm status of each stream refer to entry apexGbeStatInTsMptsRedundPriAlarm. 'major' when one or more stream bit rates are below their threshold as specified in apexManRteGbeInRedThreshold. Clears when all streams have been restored to at or above their configured apexManRteGbeInRedThreshold. ")
apex_alarm_gbe_mpts_redund_fail_over = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8025), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmGbeMptsRedundFailOver.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmGbeMptsRedundFailOver.setDescription("Gigabit Ethernet Input MPTS Redundant Fail Over Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet Input Streams configured in apexManRteGbeInRedTable as being the Primary stream of a Redundant Pair have Failed Over to the Secondary stream. For alarm status of each stream refer to entry apexGbeStatInTsMptsRedundFailAlarm. 'major' when one or more Redundant Primary streams have failed over to the Secondary. Clears when all Primary streams have been restored and the APEX has switched back to the Primary from the Secondary. ")
apex_alarm_service_in_error = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8026), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmServiceInError.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmServiceInError.setDescription("Alarm Service In Error. 'major' indicates that one or more services is in error (unable to fully continue processing). However, this is only for very specific errors where the error could be caused by either the input stream being invalid or another command along with the input stream is causing the error. For example, if mapping an input service to an output and that PMT is not referenced in the PAT, or the number of PIDs in the PMT is greater than the number of PIDs supported, then the command is in error. This error condition would be cleared if a new PAT is received referencing the PMT or in the other case, if a new PMT is received referencing a valid number of PIDs. Refer to apexOutputProgramRoutingStatus for more information. This alarm occurs on the first error. It is not issued for additional errors. It is cleared when all errors are cleared. ")
apex_alarm_gbe_loss_of_input_stream = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8027), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmGbeLossOfInputStream.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmGbeLossOfInputStream.setDescription('Loss of Gbe Input Stream Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet Input Streams is missing. A missing input stream is determined based on user configured data or stream rate and detection timeout value. This alarm is only applicable when the input streams are configured to be monitored for loss of input stream. This alarm occurs on the first error. It is not issued for additional errors. It is cleared when all errors are cleared. ')
apex_alarm_gige_to_host_comm_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8028), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmGigeToHostCommFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmGigeToHostCommFault.setDescription('Loss of Communications from Gige to Host Alarm. This alarm is used to inform the user when the Host processor is no longer receiving periodic status messages from the Gige processor. This alarm occurs on the first error. It is not issued for additional errors. It is cleared when the condition is resolved. ')
apex_alarm_gbe_interface_redund_fail_over = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8029), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmGbeInterfaceRedundFailOver.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmGbeInterfaceRedundFailOver.setDescription("Gigabit Ethernet Interface Redundant Fail Over Alarm. This alarm is used to inform the user when one or more Gigabit Ethernet interfaces have Failed Over to the Secondary interface. The APEX determines an interface as failed when link has been lost. 'major' when one or more Primary interfaces have failed over to the Secondary. Clears when all Primary interfaces have been restored and the APEX has switched back to the Primary from the Secondary. ")
apex_alarm_output_utilization_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8040), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmOutputUtilizationFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmOutputUtilizationFault.setDescription("Output Transport Stream Utilization Threshold Alarm. 'minor' when apexOutputTsUtilMonAlarmThreshold is met or exceeded for apexOutputTsUtilMonSetAlarmDelay for an OTS. The alarm will clear after the OTS remains below apexOutputTsUtilMonAlarmThreshold for apexOutputTsUtilMonClearAlarmDelay. ")
apex_alarm_output_overflow = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8041), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmOutputOverflow.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmOutputOverflow.setDescription("Output Transport Stream Overflow Alarm. 'critical' when apexOutputTsUtilizOverflow occurs for an OTS. The alarm will clear when OTS no longer in overflow. ")
apex_alarm_qam_module_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8042), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmQamModuleFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmQamModuleFault.setDescription("QAM Port Fault Alarm. 'major' when apexQamModuleStatError occurs when all QAM channels on the QAM Module have apexQamChanStatActive of not 'active'. 'critical' when apexQamModuleStatError occurs when all QAM channels on the QAM Module have apexQamChanStatActive of 'active'. The alarm will clear after all faults clear on the QAM Module. The current alarm status on a QAM Module basis can be found in apexQamModuleStatFaultCondition. ")
apex_alarm_qam_rf_port_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8043), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmQamRfPortFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmQamRfPortFault.setDescription("QAM RF Port Fault Alarm. 'major' when power voltage or output RF level error occurs on the RF Port. 'critical' when clock, PLL, or data sync error occurs on the RF Port. The alarm will clear after all faults clear for the RF Port. The current alarm status on an RF port basis can be found in apexQamRfPortStatFaultCondition. ")
apex_alarm_qam_channel_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8044), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmQamChannelFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmQamChannelFault.setDescription("QAM Channel Fault Alarm. 'critical' when any or all of the QAM Channel errors enumerated in apexQamChanStatError occur on a QAM channel. The alarm will clear after all faults clear on the QAM channel. The current alarm status on a QAM channel basis can be found in apexQamChanStatFaultCondition. ")
apex_alarm_qam_rf_redund_fail_over = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8045), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmQamRfRedundFailOver.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmQamRfRedundFailOver.setDescription("QAM RF Redundancy Fail Over Alarm. 'major' when the backup QAM RF Port status is 'active' (apexQamRfRedundStatusBackupPort). This occurs when a primary QAM RF Port has failed over to the backup RF Port or the user has forced a primary to the backup. The alarm will clear when the backup QAM RF Port status returns to 'standby'. The alarm is relevant only when apexQamRfRedundConfigEnable is 'enabled'. The current QAM RF Port that is active on the backup port can be found in apexQamRfRedundStatusFailedPort. ")
apex_alarm_qam_rf_redund_mismatch = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8046), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmQamRfRedundMismatch.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmQamRfRedundMismatch.setDescription("QAM RF Redundancy Mismatch Alarm. 'warning' when channels could be lost on QAM RF Fail Over to backup or on Switch Back to primary. Refer to apexQamRfRedundStatusMismatch for more information. The alarm will clear when mismatch condition clears. The alarm is relevant only when apexQamRfRedundConfigEnable is 'enabled'. ")
apex_alarm_rtsp_controller_comm_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8050), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmRtspControllerCommFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmRtspControllerCommFault.setDescription("RTSP Controller Communication Fault. 'major' when the RTSP Controller is experiencing a communication fault. The alarm will clear when connection is restored the RTSP controller. ")
apex_alarm_rds_comm_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8060), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmRdsCommFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmRdsCommFault.setDescription("RDS Communication Fault. 'major' when experiencing an RDS communication fault. The alarm will clear when RDS connection is restored. ")
apex_alarm_rem_comm_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8070), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmRemCommFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmRemCommFault.setDescription("REM Communication Fault. 'major' when experiencing an REM communication fault. The alarm will clear when REM connection is restored. Refer to apexQamRfRedundStatusRemConnection for more information. The alarm is relevant only when apexQamRfRedundConfigEnable is 'enabled' and apexQamRfRedundConfigRemConnection is not 'none'. ")
apex_alarm_rem_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8071), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmRemFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmRemFault.setDescription("REM Fault. 'warning' when REM is reporting a 0x05 error code. 'major' when error received from REM (other than 0x05) or REM is reporting incorrect switch configuration. The alarm will clear when REM errors clear. Refer to apexQamRfRedundStatusRemError and apexQamRfRedundStatusRemSwitch for more information. The alarm is relevant only when apexQamRfRedundConfigEnable is 'enabled' and apexQamRfRedundConfigRemConnection is not 'none'. ")
apex_alarm_depi_control_connection_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8080), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmDepiControlConnectionFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmDepiControlConnectionFault.setDescription('DEPI Control connection setup Fault. ')
apex_alarm_depi_session_setup_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8081), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmDepiSessionSetupFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmDepiSessionSetupFault.setDescription('DEPI Session Setup Fault. ')
apex_alarm_dti_sync_loss_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8082), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmDtiSyncLossFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmDtiSyncLossFault.setDescription('EQAM lost SYNC with the DTI Server. ')
apex_alarm_chassis_redundancy_primary_failover = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8090), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmChassisRedundancyPrimaryFailover.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmChassisRedundancyPrimaryFailover.setDescription('Generated when the primary active APEX fails over to the secondary standby unit. Trap tells if failover is operator induced, or automatic because of a fault. Major if automatic due to some fault Warning if force-failover. Cleared when redundancy is disabled or when the primary becomes active and the secondary is standby. ')
apex_alarm_chassis_redundancy_secondary_failover = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8091), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmChassisRedundancySecondaryFailover.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmChassisRedundancySecondaryFailover.setDescription('Generated when the secondary active APEX fails over to the primary standby unit. Trap tells if failover is operator induced, or automatic because of a fault. Major if automatic due to some fault Warning if force-failover. Cleared when redundancy is disabled or when the secondary becomes active and the primary is standby. ')
apex_alarm_chassis_redundancy_availability_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8092), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmChassisRedundancyAvailabilityFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmChassisRedundancyAvailabilityFault.setDescription('Generated when redundancy status is unavailable (except for link loss) configuration not synchronized secondary in fault state Cleared when redundancy status is available or redundancy disabled. ')
apex_alarm_chassis_redundancy_link_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8093), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmChassisRedundancyLinkFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmChassisRedundancyLinkFault.setDescription('Generated when ENET2 link is lost Cleared when ENET 2 link is present or redundancy disabled.')
apex_alarm_chassis_redundancy_configuration_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 100, 8094), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexAlarmChassisRedundancyConfigurationFault.setStatus('current')
if mibBuilder.loadTexts:
apexAlarmChassisRedundancyConfigurationFault.setDescription('Generated when primary APEX receives heartbeat from another primary. Critical if APEX was in active state (sourcing broadcast content) Major if APEX was in standby state (broadcast ports muted). Cleared when primary APEX receives heartbeat from a secondary, configuration is changed to secondary, or redundancy is disabled.')
apex_event_em_user_login_failed = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101, 8100), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEventEmUserLoginFailed.setStatus('current')
if mibBuilder.loadTexts:
apexEventEmUserLoginFailed.setDescription('Event to indicate APEX EM User login failed 5 times.')
apex_event_qam_module_upgraded = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101, 8101), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEventQamModuleUpgraded.setStatus('current')
if mibBuilder.loadTexts:
apexEventQamModuleUpgraded.setDescription('Event to indicate a QAM Module has been upgraded from 2x4 to 2x8 channel capability.')
apex_event_chassis_redun_primary_force_failover = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101, 8110), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEventChassisRedunPrimaryForceFailover.setStatus('obsolete')
if mibBuilder.loadTexts:
apexEventChassisRedunPrimaryForceFailover.setDescription('Generated when the operator forces a failover from the primary, back to the secondary APEX.')
apex_event_chassis_redun_secondary_force_failover = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101, 8111), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEventChassisRedunSecondaryForceFailover.setStatus('obsolete')
if mibBuilder.loadTexts:
apexEventChassisRedunSecondaryForceFailover.setDescription('Generated when the operator forces a failover from the secondary, back to the primary APEX.')
apex_event_chassis_redun_firmware_version_mismatch = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101, 8112), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEventChassisRedunFirmwareVersionMismatch.setStatus('current')
if mibBuilder.loadTexts:
apexEventChassisRedunFirmwareVersionMismatch.setDescription('Generated when the primary and secondary APEX firmware versions are mismatched.')
apex_event_chassis_redun_qam_version_mismatch = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 101, 8113), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexEventChassisRedunQAMVersionMismatch.setStatus('current')
if mibBuilder.loadTexts:
apexEventChassisRedunQAMVersionMismatch.setDescription('Generated when the primary and secondary APEX QAM versions are mismatched.')
apex_enable_invalid_init_data = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8001), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableInvalidInitData.setStatus('current')
if mibBuilder.loadTexts:
apexEnableInvalidInitData.setDescription("This setting enables or disables apexAlarmInvalidInitData. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_gbe_loss_of_physical_input = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8020), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableGbeLossOfPhysicalInput.setStatus('current')
if mibBuilder.loadTexts:
apexEnableGbeLossOfPhysicalInput.setDescription("This setting enables or disables apexAlarmGbeLossOfPhysicalInput. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_gbe_buffer_fullness = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8021), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableGbeBufferFullness.setStatus('current')
if mibBuilder.loadTexts:
apexEnableGbeBufferFullness.setDescription("This setting enables or disables apexAlarmGbeBufferFullness. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_gbe_input_stream_low_bit_rate = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8022), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableGbeInputStreamLowBitRate.setStatus('current')
if mibBuilder.loadTexts:
apexEnableGbeInputStreamLowBitRate.setDescription("This setting enables or disables apexAlarmGbeInputStreamLowBitRate. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_gbe_input_stream_high_bit_rate = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8023), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableGbeInputStreamHighBitRate.setStatus('current')
if mibBuilder.loadTexts:
apexEnableGbeInputStreamHighBitRate.setDescription("This setting enables or disables apexAlarmGbeInputStreamHighBitRate. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_gbe_mpts_redund_primary_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8024), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableGbeMptsRedundPrimaryThreshold.setStatus('current')
if mibBuilder.loadTexts:
apexEnableGbeMptsRedundPrimaryThreshold.setDescription("This setting enables or disables apexAlarmGbeMptsRedundPrimaryThreshold. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_gbe_mpts_redund_fail_over = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8025), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableGbeMptsRedundFailOver.setStatus('current')
if mibBuilder.loadTexts:
apexEnableGbeMptsRedundFailOver.setDescription("This setting enables or disables apexAlarmGbeMptsRedundFailOver. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_service_in_error = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8026), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableServiceInError.setStatus('current')
if mibBuilder.loadTexts:
apexEnableServiceInError.setDescription("This setting enables or disables apexAlarmServiceInError. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_gbe_loss_of_input_ts_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8027), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableGbeLossOfInputTsFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableGbeLossOfInputTsFault.setDescription("This setting enables or disables apexAlarmGbeLossOfInputStream. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_gbe_interface_redund_fail_over = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8029), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableGbeInterfaceRedundFailOver.setStatus('current')
if mibBuilder.loadTexts:
apexEnableGbeInterfaceRedundFailOver.setDescription("This setting enables or disables apexAlarmGbeInterfaceRedundFailOver. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_output_utilization_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8040), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableOutputUtilizationFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableOutputUtilizationFault.setDescription("This setting enables or disables apexAlarmOutputUtilizationFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_output_overflow = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8041), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableOutputOverflow.setStatus('current')
if mibBuilder.loadTexts:
apexEnableOutputOverflow.setDescription("This setting enables or disables apexAlarmOutputOverflow. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_qam_module_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8042), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableQamModuleFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableQamModuleFault.setDescription("This setting enables or disables apexAlarmQamModuleFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_qam_rf_port_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8043), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableQamRfPortFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableQamRfPortFault.setDescription("This setting enables or disables apexAlarmQamRfPortFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_qam_channel_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8044), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableQamChannelFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableQamChannelFault.setDescription("This setting enables or disables apexAlarmQamChannelFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_qam_rf_redund_fail_over = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8045), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableQamRfRedundFailOver.setStatus('current')
if mibBuilder.loadTexts:
apexEnableQamRfRedundFailOver.setDescription("This setting enables or disables apexAlarmQamRfRedundFailOver. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_qam_rf_redund_mismatch = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8046), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableQamRfRedundMismatch.setStatus('current')
if mibBuilder.loadTexts:
apexEnableQamRfRedundMismatch.setDescription("This setting enables or disables apexAlarmQamRfRedundMismatch. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_rtsp_controller_comm_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8050), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableRtspControllerCommFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableRtspControllerCommFault.setDescription("This setting enables or disables apexAlarmRtspControllerCommFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_rds_comm_alarm_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8060), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableRdsCommAlarmFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableRdsCommAlarmFault.setDescription("This setting enables or disables apexAlarmRdsCommFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_rem_comm_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8070), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableRemCommFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableRemCommFault.setDescription("This setting enables or disables apexAlarmRemCommFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_rem_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8071), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableRemFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableRemFault.setDescription("This setting enables or disables apexAlarmRemFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_depi_control_connection_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8080), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableDepiControlConnectionFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableDepiControlConnectionFault.setDescription("This setting enables or disables apexAlarmDepiControlConnectionFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_depi_session_setup_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8081), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableDepiSessionSetupFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableDepiSessionSetupFault.setDescription("This setting enables or disables apexAlarmDepiSessionSetupFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_dti_sync_loss_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8082), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableDtiSyncLossFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableDtiSyncLossFault.setDescription("This setting enables or disables apexAlarmDtiSyncLossFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_chassis_redundancy_primary_failover = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8090), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableChassisRedundancyPrimaryFailover.setStatus('current')
if mibBuilder.loadTexts:
apexEnableChassisRedundancyPrimaryFailover.setDescription("This setting enables or disables apexEnableChassisRedundancyPrimaryFailover. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_chassis_redundancy_secondary_failover = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8091), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableChassisRedundancySecondaryFailover.setStatus('current')
if mibBuilder.loadTexts:
apexEnableChassisRedundancySecondaryFailover.setDescription("This setting enables or disables apexEnableChassisRedundancySecondaryFailover. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_chassis_redundancy_availability_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8092), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableChassisRedundancyAvailabilityFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableChassisRedundancyAvailabilityFault.setDescription("This setting enables or disables apexEnableChassisRedundancyAvailabilityFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_chassis_redundancy_link_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8093), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableChassisRedundancyLinkFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableChassisRedundancyLinkFault.setDescription("This setting enables or disables apexEnableChassisRedundancyLinkFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_enable_chassis_redundancy_configuration_fault = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 1, 8094), enable_disable_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexEnableChassisRedundancyConfigurationFault.setStatus('current')
if mibBuilder.loadTexts:
apexEnableChassisRedundancyConfigurationFault.setDescription("This setting enables or disables apexEnableChassisRedundancyConfigurationFault. When set to 'enabled' the alarm will operate as described. When set to 'disabled' the alarm will not be reported or wrapped into unitAlarmStatus and the alarm condition will remain 'ok'. If the alarm condition is not 'ok' when it is 'disabled', the alarm will be cleared. Once written, the change to this parameter will take immediate effect. However, in order for the change to persist through subsequent reboots or power cycles, the change must be saved via the apexSaveConfig parameter. @Config(config=yes, reboot=no) @Save(apexSaveConfig, value=2) @File(config.ini, type='ini') ")
apex_clear_invalid_init_data = mib_scalar((1, 3, 6, 1, 4, 1, 1166, 1, 31, 102, 2, 8001), clear_alarm_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
apexClearInvalidInitData.setStatus('current')
if mibBuilder.loadTexts:
apexClearInvalidInitData.setDescription("Setting to 'clearAlarm' clears the apexAlarmInvalidInitData. The APEX will set this parameter back to 'clearAlarmNotInProgress' after clearing the alarm. Once written, the change to this parameter will take immediate effect. @Config(config=no, reboot=no) ")
apex_hw_event_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1))
if mibBuilder.loadTexts:
apexHwEventTable.setStatus('current')
if mibBuilder.loadTexts:
apexHwEventTable.setDescription('Table of Hardware Events that have occurred. Maximum of 100 events will be recorded. ')
apex_hw_event_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1)).setIndexNames((0, 'APEX-MIB', 'apexHwEventIndex'))
if mibBuilder.loadTexts:
apexHwEventEntry.setStatus('current')
if mibBuilder.loadTexts:
apexHwEventEntry.setDescription('Hardware Event Table Entry.')
apex_hw_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647)))
if mibBuilder.loadTexts:
apexHwEventIndex.setStatus('current')
if mibBuilder.loadTexts:
apexHwEventIndex.setDescription('Index to HW Event table entry.')
apex_hw_event_time_logged = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexHwEventTimeLogged.setStatus('current')
if mibBuilder.loadTexts:
apexHwEventTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this event was logged. ')
apex_hw_event_alarm_code = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexHwEventAlarmCode.setStatus('current')
if mibBuilder.loadTexts:
apexHwEventAlarmCode.setDescription('Last number of alarm OID. Can be one of the following: 0 Indicates event is informational and may or may not cause an alarm. 8000 apexAlarmHardwareFault 8002 apexAlarmTemperatureFault 8003 apexAlarmFanFault 8004 apexAlarmPowerFault 8042 apexAlarmQamModuleFault 8043 apexAlarmQamRfPortFault 8044 apexAlarmQamChannelFault 8045 apexAlarmQamRfRedundFailOver 8046 apexAlarmQamRfRedundMismatch 8070 apexAlarmRemCommFault 8071 apexAlarmRemFault More details about the error can be found in apexHwEventDescription. ')
apex_hw_event_alarm_severity = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexHwEventAlarmSeverity.setStatus('current')
if mibBuilder.loadTexts:
apexHwEventAlarmSeverity.setDescription('Alarm severity level of this event. ')
apex_hw_event_data = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexHwEventData.setStatus('current')
if mibBuilder.loadTexts:
apexHwEventData.setDescription('Additional integer data. When apexHwEventAlarmCode is non-zero, this will be the same as Additional Data 1 as in the trap for the alarm. When apexHwEventAlarmCode is zero, this may contain additional data helpful in debug. ')
apex_hw_event_description = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 1, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexHwEventDescription.setStatus('current')
if mibBuilder.loadTexts:
apexHwEventDescription.setDescription('Text description of the event.')
apex_invalid_init_data_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 2))
if mibBuilder.loadTexts:
apexInvalidInitDataTable.setStatus('current')
if mibBuilder.loadTexts:
apexInvalidInitDataTable.setDescription('Table of Invalid Initialization Data Errors. Maximum of 100 errors will be recorded. ')
apex_invalid_init_data_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 2, 1)).setIndexNames((0, 'APEX-MIB', 'apexInvalidInitDataIndex'))
if mibBuilder.loadTexts:
apexInvalidInitDataEntry.setStatus('current')
if mibBuilder.loadTexts:
apexInvalidInitDataEntry.setDescription('Invalid Initialization Data Table Entry.')
apex_invalid_init_data_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647)))
if mibBuilder.loadTexts:
apexInvalidInitDataIndex.setStatus('current')
if mibBuilder.loadTexts:
apexInvalidInitDataIndex.setDescription('Index to Invalid Initialization Data table entry.')
apex_invalid_init_data_time_logged = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInvalidInitDataTimeLogged.setStatus('current')
if mibBuilder.loadTexts:
apexInvalidInitDataTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this event was logged. ')
apex_invalid_init_data_description = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 2, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexInvalidInitDataDescription.setStatus('current')
if mibBuilder.loadTexts:
apexInvalidInitDataDescription.setDescription('Text string describing the data error.')
apex_output_ts_event_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3))
if mibBuilder.loadTexts:
apexOutputTsEventTable.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventTable.setDescription('Table of Output Stream events that have occurred. Maximum of 200 events will be recorded. ')
apex_output_ts_event_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1)).setIndexNames((0, 'APEX-MIB', 'apexOutputTsEventIndex'))
if mibBuilder.loadTexts:
apexOutputTsEventEntry.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventEntry.setDescription('Output Stream Error Table Entry.')
apex_output_ts_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647)))
if mibBuilder.loadTexts:
apexOutputTsEventIndex.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventIndex.setDescription('Index to Output Stream Error table. ')
apex_output_ts_event_time_logged = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventTimeLogged.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this event was logged. ')
apex_output_ts_event_alarm_code = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventAlarmCode.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventAlarmCode.setDescription('Last number of alarm OID. Can be one of the following: 0 Indicates event is informational and may or may not cause an alarm. 8040 apexAlarmOutputUtilizationFault 8041 apexAlarmOutputOverflow More details about the error can be found in apexOutputTsEventDescription. ')
apex_output_ts_event_alarm_severity = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventAlarmSeverity.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventAlarmSeverity.setDescription('Alarm severity level of this event. ')
apex_output_ts_event_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 48))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventOutputTsNum.setDescription('The number of the output transport stream for this event. ')
apex_output_ts_event_cur_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventCurRate.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventCurRate.setDescription('Value of apexOutputTsUtilizCurRate when event occurred. ')
apex_output_ts_event_avg_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventAvgRate.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventAvgRate.setDescription('Value of apexOutputTsUtilizAvgRate when event occurred. ')
apex_output_ts_event_min_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventMinRate.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventMinRate.setDescription('Value of apexOutputTsUtilizMinRate when event occurred. ')
apex_output_ts_event_peak_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventPeakRate.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventPeakRate.setDescription('Value of apexOutputTsUtilizPeakRate when event occurred. ')
apex_output_ts_event_cur_drop_packets = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventCurDropPackets.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventCurDropPackets.setDescription('Value of apexOutputTsUtilizCurDropPackets when event occurred. ')
apex_output_ts_event_peak_drop_packets = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventPeakDropPackets.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventPeakDropPackets.setDescription('Value of apexOutputTsUtilizPeakDropPackets when event occurred. ')
apex_output_ts_event_rolling_drop_packets = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventRollingDropPackets.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventRollingDropPackets.setDescription('Value of apexOutputTsUtilizRollingDropPackets when event occurred. ')
apex_output_ts_event_total_drop_packets = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventTotalDropPackets.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventTotalDropPackets.setDescription('Value of apexOutputTsUtilizTotalDropPackets when event occurred. ')
apex_output_ts_event_description = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 3, 1, 14), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexOutputTsEventDescription.setStatus('current')
if mibBuilder.loadTexts:
apexOutputTsEventDescription.setDescription('Text description of the event. Maximum length is 128 characters. ')
apex_gbe_input_ts_event_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4))
if mibBuilder.loadTexts:
apexGbeInputTsEventTable.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventTable.setDescription('Table of Gigabit Ethernet Input Transport Stream Events that have occurred. Maximum of 100 events will be recorded. ')
apex_gbe_input_ts_event_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1)).setIndexNames((0, 'APEX-MIB', 'apexGbeInputTsEventIndex'))
if mibBuilder.loadTexts:
apexGbeInputTsEventEntry.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventEntry.setDescription('Gigabit Ethernet Input Transport Stream Event Table Entry.')
apex_gbe_input_ts_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647)))
if mibBuilder.loadTexts:
apexGbeInputTsEventIndex.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventIndex.setDescription('Index to Gigabit Ethernet Input Transport Stream Event table. ')
apex_gbe_input_ts_event_time_logged = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventTimeLogged.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this event was logged. ')
apex_gbe_input_ts_event_alarm_code = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventAlarmCode.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventAlarmCode.setDescription('Last number of alarm OID. Can be one of the following: 0 Indicates event is informational and may or may not cause an alarm. 8022 apexAlarmGbeInputStreamLowBitRate 8023 apexAlarmGbeInputStreamHighBitRate 8024 apexAlarmGbeMptsRedundPrimaryThreshold 8025 apexAlarmGbeMptsRedundFailOver More details about the error may be found in apexGbeInputTsEventDescription. ')
apex_gbe_input_ts_event_alarm_severity = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ok', 1), ('indeterminate', 2), ('warning', 3), ('minor', 4), ('major', 5), ('critical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventAlarmSeverity.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventAlarmSeverity.setDescription('Alarm severity level of this event. ')
apex_gbe_input_ts_event_redundant_config = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('primary', 1), ('secondary', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventRedundantConfig.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventRedundantConfig.setDescription('Indicates whether this input transport stream was configured as a primary or secondary at the time of the event. ')
apex_gbe_input_ts_event_gbe_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventGbeInterface.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventGbeInterface.setDescription('Value of apexInputTsStatPriInputInterface or apexInputTsStatSecInputInterface at the time of the event. ')
apex_gbe_input_ts_event_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventUdpPort.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventUdpPort.setDescription('Value of apexInputTsStatPriInputUdp or apexInputTsStatSecInputUdp at the time of the event. ')
apex_gbe_input_ts_event_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 8), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventMulticastIp.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventMulticastIp.setDescription('Value of apexInputTsStatPriInputMulticastIp or apexInputTsStatSecInputMulticastIp at the time of the event. ')
apex_gbe_input_ts_event_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 9), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventSourceIp.setDescription('Value of apexInputTsStatPriInputSourceIp or apexInputTsStatSecInputSourceIp at the time of the event. ')
apex_gbe_input_ts_event_input_ts_state = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 10), input_ts_state_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventInputTsState.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventInputTsState.setDescription('Value of apexInputTsStatPriState or apexInputTsStatSecState at the time of the event. For threshold or fail over events, the state reported is always the Primary input stream state. ')
apex_gbe_input_ts_event_rate_compare_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 11), rate_comparison_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventRateCompareType.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventRateCompareType.setDescription('Comparison type at time of event (stream or data). ')
apex_gbe_input_ts_event_sampling_period = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventSamplingPeriod.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventSamplingPeriod.setDescription('Sample period in seconds of the stream and data counts reported. Using the sample period and the stream or data counts, the actual input rate at the time of the event can be computed. ')
apex_gbe_input_ts_event_pri_cur_stream_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventPriCurStreamCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventPriCurStreamCount.setDescription('Current Primary input stream Packet Count at the time of the event. This is the number of packets received, including Nulls, during the sample period defined in apexGbeInputTsEventSamplingPeriod. ')
apex_gbe_input_ts_event_pri_cur_data_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventPriCurDataCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventPriCurDataCount.setDescription('Current Primary input data Packet Count at the time of the event. This is the number of data packets received (non-Nulls), during the sample period defined in apexGbeInputTsEventSamplingPeriod. ')
apex_gbe_input_ts_event_sec_cur_stream_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventSecCurStreamCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventSecCurStreamCount.setDescription('Current Secondary input stream Packet Count at the time of the event. This is the number of packets received, including Nulls, during the sample period defined in apexGbeInputTsEventSamplingPeriod. ')
apex_gbe_input_ts_event_sec_cur_data_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventSecCurDataCount.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventSecCurDataCount.setDescription('Current Secondary input data Packet Count at the time of the event. This is the number of data packets received (non-Nulls), during the sample period defined in apexGbeInputTsEventSamplingPeriod. ')
apex_gbe_input_ts_event_description = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 4, 1, 17), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexGbeInputTsEventDescription.setStatus('current')
if mibBuilder.loadTexts:
apexGbeInputTsEventDescription.setDescription('Text description of the event. Maximum length is 128 characters. ')
apex_rtsp_event_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5))
if mibBuilder.loadTexts:
apexRtspEventTable.setStatus('current')
if mibBuilder.loadTexts:
apexRtspEventTable.setDescription('Table of RTSP Events that have occurred. Maximum of 100 events will be recorded. ')
apex_rtsp_event_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1)).setIndexNames((0, 'APEX-MIB', 'apexRtspEventIndex'))
if mibBuilder.loadTexts:
apexRtspEventEntry.setStatus('current')
if mibBuilder.loadTexts:
apexRtspEventEntry.setDescription('RTSP Event Table Entry.')
apex_rtsp_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647)))
if mibBuilder.loadTexts:
apexRtspEventIndex.setStatus('current')
if mibBuilder.loadTexts:
apexRtspEventIndex.setDescription('Index to RTSP Event table entry.')
apex_rtsp_event_time_logged = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspEventTimeLogged.setStatus('current')
if mibBuilder.loadTexts:
apexRtspEventTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this event was logged. ')
apex_rtsp_event_controller_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspEventControllerIp.setStatus('current')
if mibBuilder.loadTexts:
apexRtspEventControllerIp.setDescription('IP address of the RTSP Controller associated with this event. Value will be zero if the event is not associated with a specific controller. Refer to apexRtspEventSourceDescription for the source of the event. ')
apex_rtsp_event_session_count = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspEventSessionCount.setStatus('current')
if mibBuilder.loadTexts:
apexRtspEventSessionCount.setDescription('Number of active sessions for the RTSP Controller associated with this event. Value will be total count of all sessions for all controllers if the event is not associated with a specific controller. Refer to apexRtspEventSourceDescription for the source of the event. ')
apex_rtsp_event_source_description = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspEventSourceDescription.setStatus('current')
if mibBuilder.loadTexts:
apexRtspEventSourceDescription.setDescription('Text description of the source of the event. May indicate a controller identifier or an APEX application process. ')
apex_rtsp_event_description = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 5, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexRtspEventDescription.setStatus('current')
if mibBuilder.loadTexts:
apexRtspEventDescription.setDescription('Text description of the event.')
apex_mapping_error_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6))
if mibBuilder.loadTexts:
apexMappingErrorTable.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorTable.setDescription('Table of program, ancillary PID, and stream pass through mapping errors that have occurred. Maximum of 100 error events will be recorded. ')
apex_mapping_error_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1)).setIndexNames((0, 'APEX-MIB', 'apexMappingErrorIndex'))
if mibBuilder.loadTexts:
apexMappingErrorEntry.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorEntry.setDescription('Program, PID, Stream Pass Through Error Table Entry.')
apex_mapping_error_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647)))
if mibBuilder.loadTexts:
apexMappingErrorIndex.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorIndex.setDescription('Index to Program, PID, Stream Pass Through, DEPI Control, DEPI Session Error table. ')
apex_mapping_error_time_logged = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorTimeLogged.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this error was logged. ')
apex_mapping_error_code = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorCode.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorCode.setDescription('Error code for this mapping error. 0 indicates no error. ')
apex_mapping_error_mapping_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('notApplicable', 0), ('program', 1), ('ancillaryPid', 2), ('streamPassthru', 3), ('depiControl', 4), ('depiSession', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorMappingType.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorMappingType.setDescription('Type of mapping (program, ancillary PID, or stream pass through). ')
apex_mapping_error_input_type = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('gbe', 1), ('fastEnet', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorInputType.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorInputType.setDescription('Input Type. Indicates if mapping is from Gigabit Ethernet or Fast Ethernet. ')
apex_mapping_error_input_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorInputInterface.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorInputInterface.setDescription('Interface port number of the primary input interface. ')
apex_mapping_error_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorUdpPort.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorUdpPort.setDescription('Input UDP Port for primary input. ')
apex_mapping_error_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 8), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorMulticastIp.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorMulticastIp.setDescription('The Multicast receive IP address for primary input. ')
apex_mapping_error_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 9), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorSourceIp.setDescription('This is the IGMP v3 Source IP address of the source device for the primary input. ')
apex_mapping_error_input_program_pid = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorInputProgramPid.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorInputProgramPid.setDescription('For program mappings, this is the input program number of the program being mapped. For ancillary PID mappings, this is the input PID number being mapped. For stream pass through mappings, this field is not used and is set to 0. ')
apex_mapping_error_output_program_pid = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorOutputProgramPid.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorOutputProgramPid.setDescription('For program mappings, this is the output program number of the program being mapped. For ancillary PID mappings, this is the output PID number being mapped. For stream pass through mappings, this field is not used and is set to 0. ')
apex_mapping_error_output_op_mode = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notInUse', 0), ('sessionControl', 1), ('manualRouting', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorOutputOpMode.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorOutputOpMode.setDescription('Operating mode of the output transport stream for this mapping. ')
apex_mapping_error_output_ts_num = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 48))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorOutputTsNum.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorOutputTsNum.setDescription('The number of the output transport stream for this mapping error. ')
apex_mapping_error_sec_input_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorSecInputInterface.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorSecInputInterface.setDescription('Interface port number of the secondary input interface. An interface number of 0 indicates no secondary input. ')
apex_mapping_error_sec_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorSecUdpPort.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorSecUdpPort.setDescription('Input UDP Port for secondary input. ')
apex_mapping_error_sec_multicast_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 16), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorSecMulticastIp.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorSecMulticastIp.setDescription('The Multicast receive IP address for secondary input. ')
apex_mapping_error_sec_source_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 6, 1, 17), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexMappingErrorSecSourceIp.setStatus('current')
if mibBuilder.loadTexts:
apexMappingErrorSecSourceIp.setDescription('This is the IGMP v3 Source IP address of the source device for the secondary input. ')
apex_chassis_redundancy_event_table = mib_table((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 7))
if mibBuilder.loadTexts:
apexChassisRedundancyEventTable.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyEventTable.setDescription('Table of Chassis Redundancy Events. Maximum of 300 events will be recorded. ')
apex_chassis_redundancy_event_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 7, 1)).setIndexNames((0, 'APEX-MIB', 'apexChassisRedundancyEventIndex'))
if mibBuilder.loadTexts:
apexChassisRedundancyEventEntry.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyEventEntry.setDescription('Chassis Redundancy Event Table Entry.')
apex_chassis_redundancy_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 7, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647)))
if mibBuilder.loadTexts:
apexChassisRedundancyEventIndex.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyEventIndex.setDescription('Index for Chassis Redundancy Event table.')
apex_chassis_redundancy_event_time_logged = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 7, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyEventTimeLogged.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyEventTimeLogged.setDescription('Time in GPS seconds (apexSystemTime) that this event was logged. ')
apex_chassis_redundancy_event_description = mib_table_column((1, 3, 6, 1, 4, 1, 1166, 1, 31, 200, 7, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apexChassisRedundancyEventDescription.setStatus('current')
if mibBuilder.loadTexts:
apexChassisRedundancyEventDescription.setDescription('Text string describing the event.')
trap_configuration_change_integer = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 3)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'))
if mibBuilder.loadTexts:
trapConfigurationChangeInteger.setStatus('current')
if mibBuilder.loadTexts:
trapConfigurationChangeInteger.setDescription("This trap is issued if configuration of a single variable with integer type was changed (via ANY interface). TrapChangedValueInteger variable may contain current reading of that variable. trapPerceivedSeverity - 'indeterminate'")
trap_configuration_change_display_string = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 4)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueDisplayString'))
if mibBuilder.loadTexts:
trapConfigurationChangeDisplayString.setStatus('current')
if mibBuilder.loadTexts:
trapConfigurationChangeDisplayString.setDescription("This trap is issued if configuration of a single variable with DisplayString type was changed (via ANY interface). TrapChangedValueDisplayString variable may contain current reading of that variable. trapPerceivedSeverity - 'indeterminate'")
trap_configuration_change_oid = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 5)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueOID'))
if mibBuilder.loadTexts:
trapConfigurationChangeOID.setStatus('current')
if mibBuilder.loadTexts:
trapConfigurationChangeOID.setDescription("This trap is issued if configuration of a single variable with OID type was changed (via ANY interface). TrapChangedValueOID variable may contain current reading of that variable. trapPerceivedSeverity - 'indeterminate'")
trap_configuration_change_ip_address = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 6)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueIpAddress'))
if mibBuilder.loadTexts:
trapConfigurationChangeIpAddress.setStatus('current')
if mibBuilder.loadTexts:
trapConfigurationChangeIpAddress.setDescription("This trap is issued if configuration of a single variable with IpAddress type was changed (via ANY interface). TrapChangedValueIpAddress variable may contain current reading of that variable. trapPerceivedSeverity - 'indeterminate'")
trap_condition_not_in_list = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 20)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapConditionNotInList.setStatus('current')
if mibBuilder.loadTexts:
trapConditionNotInList.setDescription('This trap is issued if a condition is being cleared and it is not in the condition list. trapAdditionalInfoInteger1 : Task and Function ID (task and function generates the error condition) trapAdditionalInfoInteger2 : Condition number trapAdditionalInfoInteger3 : Condition severity')
trap_condition_already_in_list = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 21)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapConditionAlreadyInList.setStatus('current')
if mibBuilder.loadTexts:
trapConditionAlreadyInList.setDescription('This trap is issued if a condition is being set and it is already in the condition list. trapAdditionalInfoInteger1 : Task and Function ID (task and function generates the error condition) trapAdditionalInfoInteger2 : Condition number trapAdditionalInfoInteger3 : Condition severity')
trap_condition_list_full = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 22)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapConditionListFull.setStatus('current')
if mibBuilder.loadTexts:
trapConditionListFull.setDescription('This trap is issued if a condition is being set and the condition list is full. trapAdditionalInfoInteger1 : Task and Function ID (task and function generates the error condition) trapAdditionalInfoInteger2 : Condition number trapAdditionalInfoInteger3 : Condition severity')
trap_invalid_case_in_switch = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 23)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapInvalidCaseInSwitch.setStatus('current')
if mibBuilder.loadTexts:
trapInvalidCaseInSwitch.setDescription('This trap is issued when in a switch statement the default case is reached. The trapAdditionalInfoInteger1 will contain the task and Function ID. The trapAdditionalInfoInteger2 will contain value of the switch. The trapAdditionalInfoInteger3 is not used.')
trap_cannot_create_semaphore = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 24)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapCannotCreateSemaphore.setStatus('current')
if mibBuilder.loadTexts:
trapCannotCreateSemaphore.setDescription('This trap is issued when a semaphore cannot be created. The trapAdditionalInfoInteger1 will contain the task and Function ID, the trapAdditionalInfoInteger2 and trapAdditionalInfoInteger3 will not be used.')
trap_cannot_open_socket = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 25)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapCannotOpenSocket.setStatus('current')
if mibBuilder.loadTexts:
trapCannotOpenSocket.setDescription('This trap is issued when a socket cannot be opened. The trapAdditionalInfoInteger1 will contain the task and Function ID. The trapAdditionalInfoInteger2 will contain the errno returned by the call to socket(). The trapAdditionalInfoInteger3 is not used.')
trap_unknown_message_received = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 26)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapUnknownMessageReceived.setStatus('current')
if mibBuilder.loadTexts:
trapUnknownMessageReceived.setDescription('This trap is issued when an unknown message is received. The trapAdditionalInfoInteger1 will contain the task and Function ID. The trapAdditionalInfoInteger2 will contain the message ID and the trapAdditionalInfoInteger3 is not used.')
trap_invalid_message_received = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 27)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapInvalidMessageReceived.setStatus('current')
if mibBuilder.loadTexts:
trapInvalidMessageReceived.setDescription('This trap is issued when an invalid message is received. The trapAdditionalInfoInteger1 will contain the task and Function ID. The trapAdditionalInfoInteger2 will contain the message ID and the trapAdditionalInfoInteger3 is not used.')
trap_hardware_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8000)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapHardwareFault.setStatus('current')
if mibBuilder.loadTexts:
trapHardwareFault.setDescription('See corresponding alarm apexAlarmHardwareFault. Additional Info 1 carries HW Error Code (refer to HW Event Log for details). Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_invalid_init_data = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8001)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapInvalidInitData.setStatus('current')
if mibBuilder.loadTexts:
trapInvalidInitData.setDescription('See corresponding alarm apexAlarmInvalidInitData. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_temperature_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8002)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapTemperatureFault.setStatus('current')
if mibBuilder.loadTexts:
trapTemperatureFault.setDescription('See corresponding alarm apexAlarmTemperatureFault. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_fan_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8003)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapFanFault.setStatus('current')
if mibBuilder.loadTexts:
trapFanFault.setDescription('See corresponding alarm apexAlarmFanFault. This trap is sent on summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_power_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8004)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapPowerFault.setStatus('current')
if mibBuilder.loadTexts:
trapPowerFault.setDescription('See corresponding alarm apexAlarmPowerFault. Additional Info 1 carries the apexPsStatusTable index (1 to 2). Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_gbe_loss_of_physical_input = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8020)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapGbeLossOfPhysicalInput.setStatus('current')
if mibBuilder.loadTexts:
trapGbeLossOfPhysicalInput.setDescription('See corresponding alarm apexAlarmGbeLossOfPhysicalInput. Additional Info 1 carries the Gigabit Ethernet Interface Number (1 to 4). Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_gbe_buffer_fullness = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8021)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapGbeBufferFullness.setStatus('current')
if mibBuilder.loadTexts:
trapGbeBufferFullness.setDescription('See corresponding alarm apexAlarmGbeBufferFullness. Additional Info 1 carries the Gigabit Ethernet Processor Number (1 to 2). Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_gbe_input_stream_low_bit_rate = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8022)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapGbeInputStreamLowBitRate.setStatus('current')
if mibBuilder.loadTexts:
trapGbeInputStreamLowBitRate.setDescription('See corresponding alarm apexAlarmGbeInputStreamLowBitRate. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_gbe_input_stream_high_bit_rate = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8023)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapGbeInputStreamHighBitRate.setStatus('current')
if mibBuilder.loadTexts:
trapGbeInputStreamHighBitRate.setDescription('See corresponding alarm apexAlarmGbeInputStreamHighBitRate. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_gbe_mpts_redund_primary_threshold = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8024)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapGbeMptsRedundPrimaryThreshold.setStatus('current')
if mibBuilder.loadTexts:
trapGbeMptsRedundPrimaryThreshold.setDescription('See corresponding alarm apexAlarmGbeMptsRedundPrimaryThreshold. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_gbe_mpts_redund_fail_over = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8025)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapGbeMptsRedundFailOver.setStatus('current')
if mibBuilder.loadTexts:
trapGbeMptsRedundFailOver.setDescription('See corresponding alarm apexAlarmGbeMptsRedundFailOver. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_service_in_error = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8026)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapServiceInError.setStatus('current')
if mibBuilder.loadTexts:
trapServiceInError.setDescription('See corresponding alarm apexAlarmServiceInError. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_gbe_loss_of_input_stream = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8027)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapGbeLossOfInputStream.setStatus('current')
if mibBuilder.loadTexts:
trapGbeLossOfInputStream.setDescription('See corresponding alarm apexAlarmGbeLossOfInputStream. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_gige_to_host_comm_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8028)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapGigeToHostCommFault.setStatus('current')
if mibBuilder.loadTexts:
trapGigeToHostCommFault.setDescription('See corresponding alarm apexAlarmGigeToHostCommFault. This trap is sent on a summary basis. Additional Info 1 is not used. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_gbe_interface_redund_fail_over = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8029)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapGbeInterfaceRedundFailOver.setStatus('current')
if mibBuilder.loadTexts:
trapGbeInterfaceRedundFailOver.setDescription('See corresponding alarm apexAlarmGbeInterfaceRedundFailOver. This trap is sent on a GbE Redundant Pair basis. Additional Info 1 contains the GbE interface number that lost link. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_output_utilization_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8040)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapOutputUtilizationFault.setStatus('current')
if mibBuilder.loadTexts:
trapOutputUtilizationFault.setDescription('See corresponding alarm apexAlarmOutputUtilizationFault. This trap is sent on an Output Transport Stream basis. Additional Info 1 carries the Output Transport Stream number (1 to 48). Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_output_overflow = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8041)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapOutputOverflow.setStatus('current')
if mibBuilder.loadTexts:
trapOutputOverflow.setDescription('See corresponding alarm apexAlarmOutputOverflow. This trap is sent on an Output Transport Stream basis. Additional Info 1 carries the Output Transport Stream number (1 to 48). Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_qam_module_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8042)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapQamModuleFault.setStatus('current')
if mibBuilder.loadTexts:
trapQamModuleFault.setDescription('See corresponding alarm apexAlarmQamModuleFault. This trap is sent on a QAM Module basis. Additional Info 1 carries the QAM Module number (1 to 3). Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_qam_rf_port_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8043)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapQamRfPortFault.setStatus('current')
if mibBuilder.loadTexts:
trapQamRfPortFault.setDescription('See corresponding alarm apexAlarmQamRfPortFault. This trap is sent on a QAM RF Port basis. Additional Info 1 carries the QAM RF Port number: RF Port 1 = QAM Module 1, RF 1 RF Port 2 = QAM Module 1, RF 2 RF Port 3 = QAM Module 2, RF 1 RF Port 4 = QAM Module 2, RF 2 RF Port 5 = QAM Module 3, RF 1 RF Port 6 = QAM Module 3, RF 2 Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_qam_channel_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8044)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapQamChannelFault.setStatus('current')
if mibBuilder.loadTexts:
trapQamChannelFault.setDescription('See corresponding alarm apexAlarmQamChannelFault. This trap is sent on a QAM Channel basis. Additional Info 1 carries the QAM Channel number. 1 to 8 = QAM Module 1, RF 1, QAM Channel A to H 9 to 16 = QAM Module 1, RF 2, QAM Channel A to H 17 to 24 = QAM Module 2, RF 1, QAM Channel A to H 25 to 32 = QAM Module 2, RF 2, QAM Channel A to H 33 to 40 = QAM Module 3, RF 1, QAM Channel A to H 41 to 48 = QAM Module 3, RF 2, QAM Channel A to H Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_qam_rf_redund_fail_over = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8045)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapQamRfRedundFailOver.setStatus('current')
if mibBuilder.loadTexts:
trapQamRfRedundFailOver.setDescription('See corresponding alarm apexAlarmQamRfRedundFailOver. This trap is sent on a Primary QAM RF Port basis. Additional Info 1 carries the Primary QAM RF Port number. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_qam_rf_redund_mismatch = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8046)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapQamRfRedundMismatch.setStatus('current')
if mibBuilder.loadTexts:
trapQamRfRedundMismatch.setDescription('See corresponding alarm apexAlarmQamRfRedundMismatch. This trap is sent on a summary basis. Additional Info is not used. ')
trap_rtsp_controller_comm_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8050)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapRtspControllerCommFault.setStatus('current')
if mibBuilder.loadTexts:
trapRtspControllerCommFault.setDescription('See corresponding alarm apexAlarmRtspControllerCommFault. This trap is sent on a controller basis. Additional Info 1 carries the controller number. Additional Info 2 is not used. Additional Info 3 is not used. ')
trap_rds_comm_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8060)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapRdsCommFault.setStatus('current')
if mibBuilder.loadTexts:
trapRdsCommFault.setDescription('See corresponding alarm apexAlarmRdsCommFault. Additional Info is not used. ')
trap_rem_comm_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8070)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapRemCommFault.setStatus('current')
if mibBuilder.loadTexts:
trapRemCommFault.setDescription('See corresponding alarm apexAlarmRemCommFault. This trap is sent on a summary basis. Additional Info is not used. ')
trap_rem_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8071)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapRemFault.setStatus('current')
if mibBuilder.loadTexts:
trapRemFault.setDescription('See corresponding alarm apexAlarmRemFault. This trap is sent on a summary basis. Additional Info is not used. ')
trap_depi_control_connection_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8080)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapDepiControlConnectionFault.setStatus('current')
if mibBuilder.loadTexts:
trapDepiControlConnectionFault.setDescription('See corresponding alarm apexAlarmDepiControlConnectionFault. This trap is sent on a summary basis. Additional Info is not used. ')
trap_depi_session_setup_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8081)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapDepiSessionSetupFault.setStatus('current')
if mibBuilder.loadTexts:
trapDepiSessionSetupFault.setDescription('See corresponding alarm apexAlarmDepiSessionSetupFault. This trap is sent on a summary basis. Additional Info is not used. ')
trap_dti_sync_loss_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8082)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapDtiSyncLossFault.setStatus('current')
if mibBuilder.loadTexts:
trapDtiSyncLossFault.setDescription('See corresponding alarm apexAlarmDtiSyncLossFault. This trap is sent on a summary basis. Additional Info is not used. ')
trap_chassis_redundancy_primary_failover = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8090)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapChassisRedundancyPrimaryFailover.setStatus('current')
if mibBuilder.loadTexts:
trapChassisRedundancyPrimaryFailover.setDescription('See corresponding alarm apexAlarmChassisRedundancyPrimaryFailover. This trap is sent on a summary basis. Additional Info is not used. ')
trap_chassis_redundancy_secondary_failover = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8091)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapChassisRedundancySecondaryFailover.setStatus('current')
if mibBuilder.loadTexts:
trapChassisRedundancySecondaryFailover.setDescription('See corresponding alarm apexAlarmChassisRedundancySecondaryFailover. This trap is sent on a summary basis. Additional Info is not used. ')
trap_chassis_redundancy_availability_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8092)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapChassisRedundancyAvailabilityFault.setStatus('current')
if mibBuilder.loadTexts:
trapChassisRedundancyAvailabilityFault.setDescription('See corresponding alarm apexAlarmChassisRedundancyAvailabilityFault. This trap is sent on a summary basis. Additional Info is not used. ')
trap_chassis_redundancy_link_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8093)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapChassisRedundancyLinkFault.setStatus('current')
if mibBuilder.loadTexts:
trapChassisRedundancyLinkFault.setDescription('See corresponding alarm apexAlarmChassisRedundancyLinkFault. This trap is sent on a summary basis. Additional Info is not used. ')
trap_chassis_redundancy_configuration_fault = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8094)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapChassisRedundancyConfigurationFault.setStatus('current')
if mibBuilder.loadTexts:
trapChassisRedundancyConfigurationFault.setDescription('See corresponding alarm apexAlarmChassisRedundancyConfigurationFault. This trap is sent on a summary basis. Additional Info is not used. ')
trap_em_user_login_failed = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8100)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapEmUserLoginFailed.setStatus('current')
if mibBuilder.loadTexts:
trapEmUserLoginFailed.setDescription('See corresponding event apexEventEmUserLoginFailed. Additional Info is not used.')
trap_qam_module_upgraded = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8101)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapQamModuleUpgraded.setStatus('current')
if mibBuilder.loadTexts:
trapQamModuleUpgraded.setDescription('See corresponding event apexEventQamModuleUpgraded. Additional Info is not used.')
trap_chassis_redundancy_primary_force_failover = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8110)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapChassisRedundancyPrimaryForceFailover.setStatus('current')
if mibBuilder.loadTexts:
trapChassisRedundancyPrimaryForceFailover.setDescription('See corresponding event apexEventChassisRedunPrimaryForceFailover. Additional Info is not used.')
trap_chassis_redundancy_secondary_force_failover = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8111)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapChassisRedundancySecondaryForceFailover.setStatus('current')
if mibBuilder.loadTexts:
trapChassisRedundancySecondaryForceFailover.setDescription('See corresponding event apexEventChassisRedunSecondaryForceFailover. Additional Info is not used.')
trap_chassis_redundancy_firmware_version_mismatch = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8112)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapChassisRedundancyFirmwareVersionMismatch.setStatus('current')
if mibBuilder.loadTexts:
trapChassisRedundancyFirmwareVersionMismatch.setDescription('See corresponding event apexEventChassisRedunFirmwareVersionMismatch. Additional Info is not used.')
trap_chassis_redundancy_qam_version_mismatch = notification_type((1, 3, 6, 1, 4, 1, 1166, 1, 31, 0, 8113)).setObjects(('BCS-TRAPS-MIB', 'trapIdentifier'), ('BCS-TRAPS-MIB', 'trapSequenceId'), ('BCS-TRAPS-MIB', 'trapNetworkElemModelNumber'), ('BCS-TRAPS-MIB', 'trapNetworkElemSerialNum'), ('BCS-TRAPS-MIB', 'trapPerceivedSeverity'), ('BCS-TRAPS-MIB', 'trapNetworkElemOperState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAlarmStatus'), ('BCS-TRAPS-MIB', 'trapNetworkElemAdminState'), ('BCS-TRAPS-MIB', 'trapNetworkElemAvailStatus'), ('BCS-TRAPS-MIB', 'trapText'), ('BCS-TRAPS-MIB', 'trapNETrapLastTrapTimeStamp'), ('BCS-TRAPS-MIB', 'trapChangedObjectId'), ('BCS-TRAPS-MIB', 'trapChangedValueInteger'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger1'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger2'), ('BCS-TRAPS-MIB', 'trapAdditionalInfoInteger3'))
if mibBuilder.loadTexts:
trapChassisRedundancyQAMVersionMismatch.setStatus('current')
if mibBuilder.loadTexts:
trapChassisRedundancyQAMVersionMismatch.setDescription('See corresponding event apexEventChassisRedunQAMVersionMismatch. Additional Info is not used.')
mibBuilder.exportSymbols('APEX-MIB', apexRpcQamStatSdvGroupBandwidth=apexRpcQamStatSdvGroupBandwidth, apexGbeStatusTable=apexGbeStatusTable, apexDepiSessionStatusInvalidVendorId=apexDepiSessionStatusInvalidVendorId, apexDtaGeneralConfigInvalidApplyText=apexDtaGeneralConfigInvalidApplyText, apexPsiStatusPid=apexPsiStatusPid, apexRdsEventEpochEnd=apexRdsEventEpochEnd, apexDta=apexDta, apexOutputTsStatusEntry=apexOutputTsStatusEntry, apexRpcNumShellSessions=apexRpcNumShellSessions, apexRdsEmmStatusTableSize=apexRdsEmmStatusTableSize, apexDepiSession=apexDepiSession, apexQamRfPortMuteStatusTable=apexQamRfPortMuteStatusTable, apexFastEnetStatusPacketsEntry=apexFastEnetStatusPacketsEntry, apexQrmDownloadStatusDescription=apexQrmDownloadStatusDescription, apexMappingErrorOutputProgramPid=apexMappingErrorOutputProgramPid, apexManRteGbeInRedSecMulticastIp=apexManRteGbeInRedSecMulticastIp, apexEasApplyChange=apexEasApplyChange, trapQamRfRedundMismatch=trapQamRfRedundMismatch, apexFastEnetRoutingTable=apexFastEnetRoutingTable, apexManRteGbeInRedStatusMapIndex=apexManRteGbeInRedStatusMapIndex, apexRdsConnectionStatus=apexRdsConnectionStatus, apexOampDuplexMode=apexOampDuplexMode, apexEnableGbeInterfaceRedundFailOver=apexEnableGbeInterfaceRedundFailOver, apexOutputTsUtilizThresholdAlarm=apexOutputTsUtilizThresholdAlarm, apexDepiControlStatusMalformedCtl=apexDepiControlStatusMalformedCtl, apexUserSuppliedTime=apexUserSuppliedTime, apexSysConfigGeneral=apexSysConfigGeneral, apexQamChannelConfigEntry=apexQamChannelConfigEntry, apexOutputTsStatus=apexOutputTsStatus, apexDtiFpgaVersion=apexDtiFpgaVersion, apexInputTransport=apexInputTransport, apexDepiSessionStatusUnknownCtl=apexDepiSessionStatusUnknownCtl, apexEncryptionConfig=apexEncryptionConfig, apexPsipConfigEit1InsertionPeriod=apexPsipConfigEit1InsertionPeriod, apexOutputTsUtilMonOutputTsNum=apexOutputTsUtilMonOutputTsNum, apexOampMacAddr=apexOampMacAddr, apexGbeConfigInputDataTsUdp=apexGbeConfigInputDataTsUdp, apexDepiControlConfigApplyChange=apexDepiControlConfigApplyChange, apexQamModuleStatBoardTemperatureFault=apexQamModuleStatBoardTemperatureFault, apexRtspConfMhaSbeApplyChange=apexRtspConfMhaSbeApplyChange, apexRdsEventNumberTiers=apexRdsEventNumberTiers, apexFastEnetStatusGeneral=apexFastEnetStatusGeneral, apexMappingErrorSecUdpPort=apexMappingErrorSecUdpPort, apexSesContConfGbePrimaryInterface=apexSesContConfGbePrimaryInterface, apexOutputTsEventPeakDropPackets=apexOutputTsEventPeakDropPackets, apexPsiStatusTableType=apexPsiStatusTableType, apexQamChannelIdChannelNum=apexQamChannelIdChannelNum, apexRpcRfChannelTable=apexRpcRfChannelTable, apexUdpMapFollowDtcp=apexUdpMapFollowDtcp, apexPsipStatusOutputGpsTime=apexPsipStatusOutputGpsTime, apexQamRfPortStat3dot3VdcSupply=apexQamRfPortStat3dot3VdcSupply, apexManRtePassThroughInputUdp=apexManRtePassThroughInputUdp, apexGbeFrameBufferHourlyResets=apexGbeFrameBufferHourlyResets, apexRpcDeviceName=apexRpcDeviceName, apexOampInputTsAssignedCount=apexOampInputTsAssignedCount, apexManualRoutingConfig=apexManualRoutingConfig, apexDepiStatusGeneral=apexDepiStatusGeneral, apexQamRfConfigMute=apexQamRfConfigMute, apexOampStatus=apexOampStatus, apexPreencryption=apexPreencryption, apexQamRfPortStatusEntry=apexQamRfPortStatusEntry, trapCannotCreateSemaphore=trapCannotCreateSemaphore, apexOutputTsStatusFault=apexOutputTsStatusFault, apexManRteGbeInRedPriSourceIp=apexManRteGbeInRedPriSourceIp, apexFastEnetConfigGeneral=apexFastEnetConfigGeneral, apexTemperatureStatusGeneral=apexTemperatureStatusGeneral, apexDtaGeneralConfigEmmPidNum=apexDtaGeneralConfigEmmPidNum, apexGbeConfInputUnicastTimeout=apexGbeConfInputUnicastTimeout, apexRtspSessionStatOutputProgramNum=apexRtspSessionStatOutputProgramNum, apexGbeSfp=apexGbeSfp, apexDtaGeneralConfigCatEmmPidUdpPort=apexDtaGeneralConfigCatEmmPidUdpPort, apexPidMapInputMulticastIp=apexPidMapInputMulticastIp, apexQamRfRedundStatusInvalidApplyText=apexQamRfRedundStatusInvalidApplyText, apexQrmDownloadRequired=apexQrmDownloadRequired, apexOutputTsUtilizCurDropPackets=apexOutputTsUtilizCurDropPackets, apexManualRouteInputProgNum=apexManualRouteInputProgNum, apexInsertPacketStatisticsEntry=apexInsertPacketStatisticsEntry, trapHardwareFault=trapHardwareFault, apexQamModuleSerialNumEntry=apexQamModuleSerialNumEntry, apexGbeSfpStatusGbeIfNum=apexGbeSfpStatusGbeIfNum, apexQrmDownloadSupported=apexQrmDownloadSupported, apexUdpMapModeBits=apexUdpMapModeBits, apexMaxServiceMappings=apexMaxServiceMappings, apexChassisRedundancyEventDescription=apexChassisRedundancyEventDescription, apexDepiStatus=apexDepiStatus, apexRdsEmmStatusServerError=apexRdsEmmStatusServerError, apexChassisRedundancyFailOverGigE34LinkLoss=apexChassisRedundancyFailOverGigE34LinkLoss, apexOutputTsUtilizTotalDropPackets=apexOutputTsUtilizTotalDropPackets, apexEnableRdsCommAlarmFault=apexEnableRdsCommAlarmFault, apexRtspSessionStatManagerIpAddr=apexRtspSessionStatManagerIpAddr, apexProductType=apexProductType, apexRdsMcast16=apexRdsMcast16, apexManualRouteEntry=apexManualRouteEntry, apexMcEmmInsertionMode=apexMcEmmInsertionMode, apexRtspConfMhaAddressDomain=apexRtspConfMhaAddressDomain, trapChassisRedundancyLinkFault=trapChassisRedundancyLinkFault, apexAcpConfigGeneral=apexAcpConfigGeneral, apexEasServerPhysInPort=apexEasServerPhysInPort, apexInvalidInitDataDescription=apexInvalidInitDataDescription, apexOutputTsEventDescription=apexOutputTsEventDescription, apexGbeStatInTsInputTsNum=apexGbeStatInTsInputTsNum, apexQamQrmRevStatBootLoaderFw=apexQamQrmRevStatBootLoaderFw, apexSesContConfFollowDtcp=apexSesContConfFollowDtcp, apexGbeStatusFrameCounterGeneral=apexGbeStatusFrameCounterGeneral, apexGbeSfpConfig=apexGbeSfpConfig, apexGbeConfigGeneral=apexGbeConfigGeneral, apexInsertPacketStatTotPkts=apexInsertPacketStatTotPkts, apexQamRfRedundConfigRemDirectIpOctet1=apexQamRfRedundConfigRemDirectIpOctet1, apexAlarmDepiControlConnectionFault=apexAlarmDepiControlConnectionFault, apexRtspSessionIdTable=apexRtspSessionIdTable, apexManualRouteInputType=apexManualRouteInputType, apexDepiStatusGeneralDtiClientPhaseError=apexDepiStatusGeneralDtiClientPhaseError, apexMappingErrorSecMulticastIp=apexMappingErrorSecMulticastIp, apexGbeTotalRxErrorFrames=apexGbeTotalRxErrorFrames, apexRpcConfig=apexRpcConfig, apexRdsStatus=apexRdsStatus, trapGbeBufferFullness=trapGbeBufferFullness, apexManualRouteIndex=apexManualRouteIndex, apexPsStatusOutputCurrent=apexPsStatusOutputCurrent, apexQamModuleStatCommError=apexQamModuleStatCommError, apexEnableQamRfPortFault=apexEnableQamRfPortFault, trapGbeLossOfInputStream=trapGbeLossOfInputStream, apexQrmDownload=apexQrmDownload, apexQamRfPortStatFreqPllLock=apexQamRfPortStatFreqPllLock, apexAcpStatusIndex=apexAcpStatusIndex, apexRtspEventTimeLogged=apexRtspEventTimeLogged, apexUdpMapOutputTsNum=apexUdpMapOutputTsNum, apexRdsCetPollInterval=apexRdsCetPollInterval, apexHwEventAlarmCode=apexHwEventAlarmCode, apexDepiSessionStatusUnknownAvp=apexDepiSessionStatusUnknownAvp, apexDepiControlStatusUnknownCtl=apexDepiControlStatusUnknownCtl, apexPsipStatusInputPart=apexPsipStatusInputPart, apexUdpMapConfigGeneral=apexUdpMapConfigGeneral, apexEasPhysInType=apexEasPhysInType, apexOutputTsConfPsipEnable=apexOutputTsConfPsipEnable, apexGbeConfigFrameBufferEntry=apexGbeConfigFrameBufferEntry, apexQrmDownloadStatusRfPortNum=apexQrmDownloadStatusRfPortNum, apexGbeTotalRxFrames=apexGbeTotalRxFrames, apexQamRfPortStatRfPortNum=apexQamRfPortStatRfPortNum, apexUdpMapApplyEntry=apexUdpMapApplyEntry, apexOutputTsEventCurRate=apexOutputTsEventCurRate, apexGbeOpenInputUdpPortCount=apexGbeOpenInputUdpPortCount, apexSupportPreencryptedSimulcrypt=apexSupportPreencryptedSimulcrypt, trapGbeMptsRedundFailOver=trapGbeMptsRedundFailOver, apexQamRfConfigRfPortNum=apexQamRfConfigRfPortNum, apexDepiControlConfigOverUdp=apexDepiControlConfigOverUdp, apexGbeStatusFrameCounter=apexGbeStatusFrameCounter, apexMappingErrorMulticastIp=apexMappingErrorMulticastIp, apexHostProcessorBootCodeVersion=apexHostProcessorBootCodeVersion, apexPsipStatusInputEntry=apexPsipStatusInputEntry, apexQamRfPortStat5VdcSupply=apexQamRfPortStat5VdcSupply, apexConfAlarmEnable=apexConfAlarmEnable, apexOutputProgramTable=apexOutputProgramTable, apexGbeInputTsEventSourceIp=apexGbeInputTsEventSourceIp, apexDataIpInputTsAssignedCount=apexDataIpInputTsAssignedCount, apexQamQrmRevSerialNumber=apexQamQrmRevSerialNumber, apexInsertionConfig=apexInsertionConfig, apexPidMapEnable=apexPidMapEnable, apexChassisRedundancyEventIndex=apexChassisRedundancyEventIndex, apexFastEnetPacketsNumPkts=apexFastEnetPacketsNumPkts, apexDepiStatusGeneralDtiCurrentTimestamp=apexDepiStatusGeneralDtiCurrentTimestamp, apexGbeStatInTsPriCurDataCount=apexGbeStatInTsPriCurDataCount, apexManRtePassThroughApplyChange=apexManRtePassThroughApplyChange, apexInputTsStatPriInputMulticastIp=apexInputTsStatPriInputMulticastIp, apexGbeSfpConfigGeneral=apexGbeSfpConfigGeneral, apexDtaRfPortConfigNetPidNum=apexDtaRfPortConfigNetPidNum, apexRtspConfGbeEdgeGroupName=apexRtspConfGbeEdgeGroupName, apexEnableRtspControllerCommFault=apexEnableRtspControllerCommFault, apexRtspSessionIdIndex=apexRtspSessionIdIndex, apexDepiControlStatusTotalSessions=apexDepiControlStatusTotalSessions, apexMcEmmInsertionPid2Enable=apexMcEmmInsertionPid2Enable, apexGbeInputTsEventRateCompareType=apexGbeInputTsEventRateCompareType, apexEasSourceIpAddress=apexEasSourceIpAddress, apexQamRfPortStatTemperature=apexQamRfPortStatTemperature, apexPsiStatusGpsTime=apexPsiStatusGpsTime, apexEasServerApplyEntry=apexEasServerApplyEntry, apexRdsEventRatingText=apexRdsEventRatingText, apexDepiSessionStatusEgressDlmMsgs=apexDepiSessionStatusEgressDlmMsgs, apexManualRouteOutputProgNum=apexManualRouteOutputProgNum, apexInvalidInitDataEntry=apexInvalidInitDataEntry, apexTimeStatus=apexTimeStatus, apexOutputTsStatusInvalidApplyText=apexOutputTsStatusInvalidApplyText, apexAlarmQamModuleFault=apexAlarmQamModuleFault, apexRtspConfControllerEntry=apexRtspConfControllerEntry, apexRdsEventPrkmWkemAvailable=apexRdsEventPrkmWkemAvailable, apexInputTsStatSecState=apexInputTsStatSecState, apexOutputTsStatusProgramsPerTs=apexOutputTsStatusProgramsPerTs, apexQrmFileRevFileSetNum=apexQrmFileRevFileSetNum, apexChassisRedundancyConfigGeneral=apexChassisRedundancyConfigGeneral, apexFastEnetInsertRateOutputTsNum=apexFastEnetInsertRateOutputTsNum, apexMappingErrorInputProgramPid=apexMappingErrorInputProgramPid, apexPsiConfig=apexPsiConfig, apexEventEmUserLoginFailed=apexEventEmUserLoginFailed, apexRtspSessionStatTable=apexRtspSessionStatTable, apexGbeFrameBufferHourlyInUdp=apexGbeFrameBufferHourlyInUdp, apexDtaGeneralConfigCatEmmPidSourceIP=apexDtaGeneralConfigCatEmmPidSourceIP, apexGbeStatusInterfaceRedund=apexGbeStatusInterfaceRedund, apexQamRfRedundStatusUdpPort=apexQamRfRedundStatusUdpPort, apexPidMapInputUdp=apexPidMapInputUdp, apexGbeInputTsEventPriCurDataCount=apexGbeInputTsEventPriCurDataCount, apexEnableGbeInputStreamHighBitRate=apexEnableGbeInputStreamHighBitRate, apexGbeConfigInputDataTsApplyChange=apexGbeConfigInputDataTsApplyChange, apexQamRfPortStatDataSyncFault=apexQamRfPortStatDataSyncFault, apexInputTsStatus=apexInputTsStatus, apexGbeConfigInputDataTsApplyTable=apexGbeConfigInputDataTsApplyTable, apexEnableGbeBufferFullness=apexEnableGbeBufferFullness, apexRpcDeviceType=apexRpcDeviceType, apexSysConfig=apexSysConfig, apexInputTsStatIndex=apexInputTsStatIndex, apexAlarmHardwareFault=apexAlarmHardwareFault, apexEncryptionConfigGeneral=apexEncryptionConfigGeneral, apexEncryptionEmmGoodDeliveryTimeMs=apexEncryptionEmmGoodDeliveryTimeMs, apexChassisRedundancyGigE12LinkStatus=apexChassisRedundancyGigE12LinkStatus, apexCteEncryptionMode=apexCteEncryptionMode, apexQamRfPortStatDataClockPresent=apexQamRfPortStatDataClockPresent, trapConfigurationChangeIpAddress=trapConfigurationChangeIpAddress, apexQamModuleStat3dot3VdcFault=apexQamModuleStat3dot3VdcFault, apexFastEnetPacketsTotPkts=apexFastEnetPacketsTotPkts, apexDtaRfPortConfigEntry=apexDtaRfPortConfigEntry, apexDepiSessionConfigUdpPort=apexDepiSessionConfigUdpPort, apexQamChannelIdEntry=apexQamChannelIdEntry, apexQamChanStatEiaChanNum=apexQamChanStatEiaChanNum, apexDtaRfPortConfigNetPidInterface=apexDtaRfPortConfigNetPidInterface, apexOutputTsEventAlarmSeverity=apexOutputTsEventAlarmSeverity, apexQrmFileRevisionEntry=apexQrmFileRevisionEntry, apexInputTsStatStreamInUse=apexInputTsStatStreamInUse, apexChassisRedundancyForceFailOver=apexChassisRedundancyForceFailOver, apexOampStatusGeneral=apexOampStatusGeneral, apexQamRfPortStatusTable=apexQamRfPortStatusTable, apexAcpHealthByte=apexAcpHealthByte, apexPidMapMaxPidMappings=apexPidMapMaxPidMappings, apexQamModuleStatusEntry=apexQamModuleStatusEntry, apexQamChannelStatusEntry=apexQamChannelStatusEntry, apexQamRfPortChannelInfoChanCount=apexQamRfPortChannelInfoChanCount, apexGbeTotalRxMulticastFrames=apexGbeTotalRxMulticastFrames, apexOutputProgramApsLevel=apexOutputProgramApsLevel, apexGbeStatInTsSecPeakDataCount=apexGbeStatInTsSecPeakDataCount, apexQamConfigTransmissionMode=apexQamConfigTransmissionMode, apexUdpMapConfig=apexUdpMapConfig, apexGbeInputTsEventSecCurStreamCount=apexGbeInputTsEventSecCurStreamCount, apexPsipStatusServiceState=apexPsipStatusServiceState, apexAlarmRdsCommFault=apexAlarmRdsCommFault, apexGbeConfIfRedundApplyIndex=apexGbeConfIfRedundApplyIndex, apexSessionControlConfig=apexSessionControlConfig, apexPsiStatus=apexPsiStatus, apexRtspConfControllerBandwidthDelta=apexRtspConfControllerBandwidthDelta, apexEncryptionEmmMaxDeliveryTimeMs=apexEncryptionEmmMaxDeliveryTimeMs, apexGbeConfigInterfaceRedundancyGeneral=apexGbeConfigInterfaceRedundancyGeneral, apexPidMapInputInterface=apexPidMapInputInterface, apexEnableDepiControlConnectionFault=apexEnableDepiControlConnectionFault, apexChassisRedundancySuspend=apexChassisRedundancySuspend, apexQrmDownloadProgress=apexQrmDownloadProgress, apexEventChassisRedunSecondaryForceFailover=apexEventChassisRedunSecondaryForceFailover, apexPsipConfigEit2InsertionPeriod=apexPsipConfigEit2InsertionPeriod)
mibBuilder.exportSymbols('APEX-MIB', trapQamModuleUpgraded=trapQamModuleUpgraded, apexPsiDetectionEnabled=apexPsiDetectionEnabled, apexDepiControlConfigIndex=apexDepiControlConfigIndex, apexEnableGbeLossOfPhysicalInput=apexEnableGbeLossOfPhysicalInput, apexUdpMapMulticastInvalidApplyText=apexUdpMapMulticastInvalidApplyText, apexLogs=apexLogs, apexGbeInputTsAssignedTable=apexGbeInputTsAssignedTable, apexGbeStatInTsPriCurStreamCount=apexGbeStatInTsPriCurStreamCount, apexAsiMonitorPortOutputTsNum=apexAsiMonitorPortOutputTsNum, apexBootMethod=apexBootMethod, apexPsStatusInstalled=apexPsStatusInstalled, apexGlueCpldVersion=apexGlueCpldVersion, apexQamChannelIdChannelLetter=apexQamChannelIdChannelLetter, apexQamChannelsActiveCount=apexQamChannelsActiveCount, apexDepiConfig=apexDepiConfig, apexEnableServiceInError=apexEnableServiceInError, apexEasOutputEntry=apexEasOutputEntry, apexRtspConfMhaSbeEncryptionMode=apexRtspConfMhaSbeEncryptionMode, apexOutputProgramError=apexOutputProgramError, apexEnableOutputUtilizationFault=apexEnableOutputUtilizationFault, apexEncryptionEmmMinDeliveryTimeMs=apexEncryptionEmmMinDeliveryTimeMs, apexHwEventIndex=apexHwEventIndex, apexEncryptionMux1RolloverCount=apexEncryptionMux1RolloverCount, apexMainBoardTempAcpModule=apexMainBoardTempAcpModule, apexRdsEventRatingRegion=apexRdsEventRatingRegion, apexRtspStatControllerNum=apexRtspStatControllerNum, apexManualRouteInputSourceIp=apexManualRouteInputSourceIp, apexGbeStatusInterfaceRedundTable=apexGbeStatusInterfaceRedundTable, apexQamChanStatChannelNum=apexQamChanStatChannelNum, apexDtaGeneralConfigCatEmmPidInterface=apexDtaGeneralConfigCatEmmPidInterface, apexRpcSessionStatSessionIdWord2=apexRpcSessionStatSessionIdWord2, apexSesContConfGbeSecondaryInterface=apexSesContConfGbeSecondaryInterface, apexPreencryptionConfig=apexPreencryptionConfig, apexQamModuleStatFaultSumm=apexQamModuleStatFaultSumm, trapFanFault=trapFanFault, apexMappingErrorInputInterface=apexMappingErrorInputInterface, apexMcEmmInsertionPid1Enable=apexMcEmmInsertionPid1Enable, apexManRteGbeInRedSuspend=apexManRteGbeInRedSuspend, apexInputTsStatPriInputInterface=apexInputTsStatPriInputInterface, apexRtspStatQamMptsModeEntry=apexRtspStatQamMptsModeEntry, apexPsipConfigTimeDsMonthOut=apexPsipConfigTimeDsMonthOut, apexEncryptionEmmGoodRepliesRecvd=apexEncryptionEmmGoodRepliesRecvd, apexDepiSessionStatusRemoteUdp=apexDepiSessionStatusRemoteUdp, apexGbeFrameBufferCurrMsLevel=apexGbeFrameBufferCurrMsLevel, apexUdpMapStatusGeneral=apexUdpMapStatusGeneral, apexMainBoardTempHostProcessorFault=apexMainBoardTempHostProcessorFault, apexGbeStatInTsSecAvgStreamCount=apexGbeStatInTsSecAvgStreamCount, apexPsStatusFaultCondition=apexPsStatusFaultCondition, apexTimeConfigGeneral=apexTimeConfigGeneral, apexAsiConfig=apexAsiConfig, apexGbeTotalTxErrorFrames=apexGbeTotalTxErrorFrames, apexOutputProgramOutputTsNum=apexOutputProgramOutputTsNum, apexPsStatusCommError=apexPsStatusCommError, apexTemperatureConfigGeneral=apexTemperatureConfigGeneral, apexQamModuleUpgrade=apexQamModuleUpgrade, apexQamConfigApplyRfPortNum=apexQamConfigApplyRfPortNum, apexTraps=apexTraps, apexPsipStatusOutputEntry=apexPsipStatusOutputEntry, apexPsipStatusServiceEntry=apexPsipStatusServiceEntry, apexQamQrmRevisionEntry=apexQamQrmRevisionEntry, apexQamConfigApplyChange=apexQamConfigApplyChange, apexChassisRedundancyRedundantHBEnable=apexChassisRedundancyRedundantHBEnable, apexDepiSessionConfigApplyTable=apexDepiSessionConfigApplyTable, apexQamChanStatFaultCondition=apexQamChanStatFaultCondition, apexUdpMapStatusTable=apexUdpMapStatusTable, apexRdsSourceLookupTable=apexRdsSourceLookupTable, apexOutputTsConfOutputTsNum=apexOutputTsConfOutputTsNum, trapGbeInputStreamHighBitRate=trapGbeInputStreamHighBitRate, apexQamModuleStatusTable=apexQamModuleStatusTable, apexRpcDataCarouselProgram=apexRpcDataCarouselProgram, apexManualRouteRmdClear=apexManualRouteRmdClear, apexRpcSessionStatOutputQamChannel=apexRpcSessionStatOutputQamChannel, apexGbeNominalBufferLevel=apexGbeNominalBufferLevel, apexGbeConfigIpSubnetMask=apexGbeConfigIpSubnetMask, apexMcEmmInsertionPid2=apexMcEmmInsertionPid2, apexDepiConfigHostname=apexDepiConfigHostname, apex=apex, apexDataIpAddrInUse=apexDataIpAddrInUse, apexRtspConfMhaEntry=apexRtspConfMhaEntry, apexChassisRedundancyConfig=apexChassisRedundancyConfig, apexRdsStatusServerRootDirPath=apexRdsStatusServerRootDirPath, apexInsertionConfigGeneral=apexInsertionConfigGeneral, apexManRteGbeInRedPriHighAlarmBitRate=apexManRteGbeInRedPriHighAlarmBitRate, apexInputTsStatusGeneral=apexInputTsStatusGeneral, apexGbeRxMulticastFrames=apexGbeRxMulticastFrames, apexFastEnetRoutingGatewayIp=apexFastEnetRoutingGatewayIp, apexGbeSfpStatusEntry=apexGbeSfpStatusEntry, apexRpcSessionStatSourceIpAddr3=apexRpcSessionStatSourceIpAddr3, apexGbeStatInTsPriAvgStreamCount=apexGbeStatInTsPriAvgStreamCount, apexManRteGbeInRedInvalidApplyText=apexManRteGbeInRedInvalidApplyText, apexMappingErrorCode=apexMappingErrorCode, apexGbeConfInRedundForceToSecondary=apexGbeConfInRedundForceToSecondary, apexAutoRebootEnable=apexAutoRebootEnable, apexOutputTsEventAlarmCode=apexOutputTsEventAlarmCode, apexDepiControlStatusEntry=apexDepiControlStatusEntry, apexPsipStatusOutputMessageType=apexPsipStatusOutputMessageType, apexGbeStatusInputTsGeneral=apexGbeStatusInputTsGeneral, apexPsipStatusServiceTable=apexPsipStatusServiceTable, apexManualRouteApplyTable=apexManualRouteApplyTable, apexAlarmDtiSyncLossFault=apexAlarmDtiSyncLossFault, apexFastEnetInsPacketsNumDiscarded=apexFastEnetInsPacketsNumDiscarded, apexQamChanStatDataPresent=apexQamChanStatDataPresent, apexOutputProgramInputTsIndex=apexOutputProgramInputTsIndex, apexRtspConfControllerApplyEntry=apexRtspConfControllerApplyEntry, apexDepiSessionStatusEntry=apexDepiSessionStatusEntry, apexInvalidInitDataTimeLogged=apexInvalidInitDataTimeLogged, apexOutputProgramEncryptionMode=apexOutputProgramEncryptionMode, apexOutputTsUtilizAvgRate=apexOutputTsUtilizAvgRate, apexGbeStatusGeneral=apexGbeStatusGeneral, apexGbeInputTsEventSecCurDataCount=apexGbeInputTsEventSecCurDataCount, apexGbeDefaultGateway1=apexGbeDefaultGateway1, apexDtaGeneralConfigCatEmmPidMulticastIP=apexDtaGeneralConfigCatEmmPidMulticastIP, apexPsStatusVersionsSerialNumber=apexPsStatusVersionsSerialNumber, apexEasConfigGeneral=apexEasConfigGeneral, apexGbeStatInTsSecLossInputError=apexGbeStatInTsSecLossInputError, apexOutputTsUtilizPeakDropPackets=apexOutputTsUtilizPeakDropPackets, apexEventChassisRedunFirmwareVersionMismatch=apexEventChassisRedunFirmwareVersionMismatch, apexEncryptionEmmBadRepliesRecvd=apexEncryptionEmmBadRepliesRecvd, apexGbeIpFragmentedPkts=apexGbeIpFragmentedPkts, apexUdpMapStartProgNum=apexUdpMapStartProgNum, apexQamChannelIdRfPortNum=apexQamChannelIdRfPortNum, apexDtaRfPortConfigNetPidUdpPort=apexDtaRfPortConfigNetPidUdpPort, apexOutputTsUtilizMinRate=apexOutputTsUtilizMinRate, apexGbeInputTsEventTable=apexGbeInputTsEventTable, trapTemperatureFault=trapTemperatureFault, apexDepiSessionStatusControlId=apexDepiSessionStatusControlId, apexRtspStatus=apexRtspStatus, apexAlarmGbeInputStreamLowBitRate=apexAlarmGbeInputStreamLowBitRate, apexQamQrmRevStatFpga=apexQamQrmRevStatFpga, apexOutputTsUtilizOverflow=apexOutputTsUtilizOverflow, apexManRteGbeInRedSecRedundMcJoin=apexManRteGbeInRedSecRedundMcJoin, apexDepiControlStatusRejectedSessions=apexDepiControlStatusRejectedSessions, apexQamConfigGeneral=apexQamConfigGeneral, apexAcpConfig=apexAcpConfig, apexPidMapOutputPid=apexPidMapOutputPid, apexRtspQamStatAllocatedBandwidth=apexRtspQamStatAllocatedBandwidth, apexGbeConfIfRedundForceFailover=apexGbeConfIfRedundForceFailover, apexPsipStatusServiceNum=apexPsipStatusServiceNum, apexGbeStatInTsPriPeakStreamCount=apexGbeStatInTsPriPeakStreamCount, apexOampAutoNegotiate=apexOampAutoNegotiate, apexRdsProgramMessagesReceived=apexRdsProgramMessagesReceived, apexRpcRfPortTable=apexRpcRfPortTable, apexOutputTsUtilizationEntry=apexOutputTsUtilizationEntry, apexQrmDownloadStatus=apexQrmDownloadStatus, apexOutputTsUtilizationMonitorGeneral=apexOutputTsUtilizationMonitorGeneral, apexOutputTsUtilMonClearAlarmDelay=apexOutputTsUtilMonClearAlarmDelay, apexManRteGbeInRedEntry=apexManRteGbeInRedEntry, apexRtspEventDescription=apexRtspEventDescription, trapDtiSyncLossFault=trapDtiSyncLossFault, apexGbeStatInTsPriLowBitRateError=apexGbeStatInTsPriLowBitRateError, apexMainBoardTempFrontIntakeFault=apexMainBoardTempFrontIntakeFault, apexRdsSourceLookupEntry=apexRdsSourceLookupEntry, apexQamRfRedundConfigAutoSwitchBack=apexQamRfRedundConfigAutoSwitchBack, apexRdsProgramMessagesFailed=apexRdsProgramMessagesFailed, apexManualRouteSourceId=apexManualRouteSourceId, apexRpcControlInterface=apexRpcControlInterface, apexDepiSessionConfigEnable=apexDepiSessionConfigEnable, ResetStatisticsTYPE=ResetStatisticsTYPE, apexGbeFrameBufferStatsGeneral=apexGbeFrameBufferStatsGeneral, apexCteCommonTier=apexCteCommonTier, apexPmtVersionIncrement=apexPmtVersionIncrement, trapConditionNotInList=trapConditionNotInList, apexGlueFpgaVersion=apexGlueFpgaVersion, apexOampIpAddr=apexOampIpAddr, apexDpmVersion=apexDpmVersion, apexDtaRfPortConfigNetPidSourceIP=apexDtaRfPortConfigNetPidSourceIP, apexSaveConfig=apexSaveConfig, apexEnableChassisRedundancyLinkFault=apexEnableChassisRedundancyLinkFault, apexGbeInputTsEventEntry=apexGbeInputTsEventEntry, apexRtspEventControllerIp=apexRtspEventControllerIp, apexQamRfRedundConfigApplyChange=apexQamRfRedundConfigApplyChange, apexSesContConfRedundThreshold=apexSesContConfRedundThreshold, apexMainBoardTemperature=apexMainBoardTemperature, apexManualRoutingStatusGeneral=apexManualRoutingStatusGeneral, apexPsipConfigEit0InsertionPeriod=apexPsipConfigEit0InsertionPeriod, apexRdsFlashWriteCount=apexRdsFlashWriteCount, apexOampSpeed=apexOampSpeed, apexPsStatusOutputPowerStatus=apexPsStatusOutputPowerStatus, apexRdsEmmStatusUnitAddress=apexRdsEmmStatusUnitAddress, apexOutputTsConfApplyChange=apexOutputTsConfApplyChange, apexPsStatusTable=apexPsStatusTable, apexDtaRfPortConfigIndex=apexDtaRfPortConfigIndex, apexCteApplyChange=apexCteApplyChange, apexChassisRedundancyFailOverTemperatureFault=apexChassisRedundancyFailOverTemperatureFault, apexDtaRfPortConfigTable=apexDtaRfPortConfigTable, apexManualRouteGbeInputRedundConfig=apexManualRouteGbeInputRedundConfig, apexMainBoardTempHostProcessor=apexMainBoardTempHostProcessor, apexPowerSupply=apexPowerSupply, trapInvalidInitData=trapInvalidInitData, apexDepiSessionStatusTable=apexDepiSessionStatusTable, apexQamRfRedundConfigForceSwitch=apexQamRfRedundConfigForceSwitch, apexRtspSessionId=apexRtspSessionId, apexGbeConfInRedundSwitchTime=apexGbeConfInRedundSwitchTime, apexRdsSetDefault=apexRdsSetDefault, apexDtaOtsConfigTable=apexDtaOtsConfigTable, apexGbeSfpUpdateStatus=apexGbeSfpUpdateStatus, apexRpcSessionStatTable=apexRpcSessionStatTable, apexRdsEventRatingData=apexRdsEventRatingData, apexRpcRfChannelEntry=apexRpcRfChannelEntry, apexSesContConfTableApplyChange=apexSesContConfTableApplyChange, apexManRteGbeInRedForceSwitchIndex=apexManRteGbeInRedForceSwitchIndex, apexUdpMapNumberProgs=apexUdpMapNumberProgs, apexGbeStatusFrameCounterTable=apexGbeStatusFrameCounterTable, apexRdsStatusValidation=apexRdsStatusValidation, apexAlarmOutputOverflow=apexAlarmOutputOverflow, apexQamRfPortStatRefClockPresent=apexQamRfPortStatRefClockPresent, apexQam=apexQam, apexRpcRfPortNum=apexRpcRfPortNum, apexRtspConfGbeEdgeGroupEntry=apexRtspConfGbeEdgeGroupEntry, apexPidMapApplyChange=apexPidMapApplyChange, apexQrmDownloadFileSet=apexQrmDownloadFileSet, apexEncryptionMux2RolloverCount=apexEncryptionMux2RolloverCount, apexRtspConfQamChannelApplyTable=apexRtspConfQamChannelApplyTable, apexOutputTsUtilizNumSamples=apexOutputTsUtilizNumSamples, apexGbeConfigEnable=apexGbeConfigEnable, apexGbeStatusFrameCounterEntry=apexGbeStatusFrameCounterEntry, apexDepi=apexDepi, apexInsertionStatus=apexInsertionStatus, apexGbeStatusInterfaceRedundIndex=apexGbeStatusInterfaceRedundIndex, apexGbeConfigInputDataTsInterface=apexGbeConfigInputDataTsInterface, apexOutputProgramProgramType=apexOutputProgramProgramType, apexPsiStatusEntry=apexPsiStatusEntry, apexInputTsStatEntry=apexInputTsStatEntry, apexQamChannelConfigApplyEntry=apexQamChannelConfigApplyEntry, apexRpcQamStatQamChannelNum=apexRpcQamStatQamChannelNum, apexDepiControlConfigTable=apexDepiControlConfigTable, apexOutputTsUtilizPeakRate=apexOutputTsUtilizPeakRate, apexRdsEventTable=apexRdsEventTable, apexFastEnetPacketsTotDiscarded=apexFastEnetPacketsTotDiscarded, apexRtspConfMhaNum=apexRtspConfMhaNum, apexCteConfig=apexCteConfig, apexQamRfRedundancyConfigGeneral=apexQamRfRedundancyConfigGeneral, trapConditionListFull=trapConditionListFull, apexQamChanConfigInterleaverSelect=apexQamChanConfigInterleaverSelect, apexRtspEventSourceDescription=apexRtspEventSourceDescription, apexFastEnetPacketsNumDiscarded=apexFastEnetPacketsNumDiscarded, trapUnknownMessageReceived=trapUnknownMessageReceived, apexGbeStatInTsPriAvgDataCount=apexGbeStatInTsPriAvgDataCount, apexOutputTsConfSimulcryptMode=apexOutputTsConfSimulcryptMode, apexGbeTotalTxGoodFrames=apexGbeTotalTxGoodFrames, apexGbeConfigInterfaceRedundancy=apexGbeConfigInterfaceRedundancy, apexSessionControlStatus=apexSessionControlStatus, apexGbeSfpStatusTable=apexGbeSfpStatusTable, apexEasMulticastIpAddress=apexEasMulticastIpAddress, apexRtspConfMhaTable=apexRtspConfMhaTable, apexEasStatusGeneral=apexEasStatusGeneral, apexPidMapConfig=apexPidMapConfig, apexSysStatus=apexSysStatus, apexDepiControlStatusRemoteUdp=apexDepiControlStatusRemoteUdp, apexEncryption=apexEncryption, apexFastEnetDefaultGateway=apexFastEnetDefaultGateway, apexDataIpMacAddr=apexDataIpMacAddr, apexSntpServerIpAddr=apexSntpServerIpAddr, apexOutputTsEventMinRate=apexOutputTsEventMinRate)
mibBuilder.exportSymbols('APEX-MIB', apexFastEnetInsPacketsTotDiscarded=apexFastEnetInsPacketsTotDiscarded, apexPsStatusOutputVoltage=apexPsStatusOutputVoltage, apexGbeTotalRxDocsisFrames=apexGbeTotalRxDocsisFrames, apexPidMapEntry=apexPidMapEntry, apexFanModuleInstalledCount=apexFanModuleInstalledCount, apexRpcSessionStatManagerIpAddr=apexRpcSessionStatManagerIpAddr, apexGbeStatusTotRoutedPackets=apexGbeStatusTotRoutedPackets, apexQamRfRedundConfigSuspendFailover=apexQamRfRedundConfigSuspendFailover, apexRtspStatControllerDiscovery=apexRtspStatControllerDiscovery, apexPsiStatusIndex=apexPsiStatusIndex, apexDtaGeneralConfig=apexDtaGeneralConfig, trapChassisRedundancyConfigurationFault=trapChassisRedundancyConfigurationFault, apexGbeFrameBufferHourlyIndex=apexGbeFrameBufferHourlyIndex, apexChassisRedundancy=apexChassisRedundancy, apexGbeStatusGbeInterfaceNum=apexGbeStatusGbeInterfaceNum, PYSNMP_MODULE_ID=apex, apexGbeConfigInputDataTsIndex=apexGbeConfigInputDataTsIndex, apexQamQrmRevisionTable=apexQamQrmRevisionTable, apexDepiControlStatusIndex=apexDepiControlStatusIndex, apexRdsCetNextPollTime=apexRdsCetNextPollTime, apexEncryptionEmmRequestsSent=apexEncryptionEmmRequestsSent, apexFastEnetStatusPacketsTable=apexFastEnetStatusPacketsTable, apexDepiSessionStatusInSequenceDiscards=apexDepiSessionStatusInSequenceDiscards, apexTemperatureStatus=apexTemperatureStatus, apexManRteGbeInRedForceSwitch=apexManRteGbeInRedForceSwitch, apexPsipConfigTimeDsHourOut=apexPsipConfigTimeDsHourOut, apexAlarmGbeBufferFullness=apexAlarmGbeBufferFullness, apexGbeStatus=apexGbeStatus, apexGbeRxSinglecastFrames=apexGbeRxSinglecastFrames, apexGbeStatInTsSecErrorSummary=apexGbeStatInTsSecErrorSummary, apexDepiControlConfigEntry=apexDepiControlConfigEntry, apexAlarmQamRfPortFault=apexAlarmQamRfPortFault, apexHwEventTable=apexHwEventTable, apexRtspSessionStatOutputQamChannel=apexRtspSessionStatOutputQamChannel, apexDepiControlConfigApplyEntry=apexDepiControlConfigApplyEntry, apexOutputTsStatusDepiSessionsMapped=apexOutputTsStatusDepiSessionsMapped, apexDataIpInUseReason=apexDataIpInUseReason, apexEnableRemCommFault=apexEnableRemCommFault, apexRpcApplyChange=apexRpcApplyChange, apexInputTsStatSecInputMulticastIp=apexInputTsStatSecInputMulticastIp, apexQrmFileRevDateTime=apexQrmFileRevDateTime, apexGbeInputTsEventPriCurStreamCount=apexGbeInputTsEventPriCurStreamCount, apexDepiControlStatusTable=apexDepiControlStatusTable, apexPsStatusDiagnosticData1=apexPsStatusDiagnosticData1, apexRdsConfigRds2Enable=apexRdsConfigRds2Enable, apexRdsEmmStatusIndex=apexRdsEmmStatusIndex, apexPsipStatusInputTable=apexPsipStatusInputTable, apexQamRfPortStatChanFaultSumm=apexQamRfPortStatChanFaultSumm, apexEasPhysInPort=apexEasPhysInPort, apexGbeConfIfRedundAutoSwitchBackPeriod=apexGbeConfIfRedundAutoSwitchBackPeriod, apexDtaGeneralConfigApplyChange=apexDtaGeneralConfigApplyChange, apexManualRouteOutputCopyProtectSource=apexManualRouteOutputCopyProtectSource, apexMainBoardType=apexMainBoardType, apexManRteGbeInRedStatusMapTable=apexManRteGbeInRedStatusMapTable, apexPidMapOutputTsNum=apexPidMapOutputTsNum, apexChassisRedundancyConfigApplyChange=apexChassisRedundancyConfigApplyChange, apexOutputTsUtilizDataFlag=apexOutputTsUtilizDataFlag, apexGbeStatInTsMptsRedundPriError=apexGbeStatInTsMptsRedundPriError, apexRtspStatControllerConnection=apexRtspStatControllerConnection, apexDepiSessionStatus=apexDepiSessionStatus, apexRdsProgramEpochDuration=apexRdsProgramEpochDuration, apexAsiMonitorPortConfig=apexAsiMonitorPortConfig, apexRtspStatQamChannelTable=apexRtspStatQamChannelTable, apexMpc2FpgaVersion=apexMpc2FpgaVersion, apexGbeConfigInputDataTsMulticastIp=apexGbeConfigInputDataTsMulticastIp, apexPsipConfigApplyChange=apexPsipConfigApplyChange, apexQamRfRedundStatusRemSwitch=apexQamRfRedundStatusRemSwitch, apexQamRfRedundStatusRemConnection=apexQamRfRedundStatusRemConnection, apexPreencryptionConfigGeneral=apexPreencryptionConfigGeneral, apexOutputProgramEcmServiceId=apexOutputProgramEcmServiceId, apexRtspEventTable=apexRtspEventTable, apexGbeFrameCounterReset=apexGbeFrameCounterReset, apexQamRfConfigRfCenterFreqChannelA=apexQamRfConfigRfCenterFreqChannelA, apexDataIpStatusGeneral=apexDataIpStatusGeneral, apexHwEventTimeLogged=apexHwEventTimeLogged, apexHwEventData=apexHwEventData, apexGbeStatInTsSecHighBitRateError=apexGbeStatInTsSecHighBitRateError, apexUdpMapStatusEntry=apexUdpMapStatusEntry, apexEnableQamChannelFault=apexEnableQamChannelFault, apexGbeStatInTsPriMinStreamCount=apexGbeStatInTsPriMinStreamCount, apexQamChanConfigTestMode=apexQamChanConfigTestMode, apexDepiStatusGeneralDtiPort1LinkActive=apexDepiStatusGeneralDtiPort1LinkActive, apexPsipConfig=apexPsipConfig, apexGbeFrameBufferStatsTable=apexGbeFrameBufferStatsTable, apexRtspConfQamChannelApplyNum=apexRtspConfQamChannelApplyNum, apexEncryptionMux1CollisionCount=apexEncryptionMux1CollisionCount, EthernetInterfaceTYPE=EthernetInterfaceTYPE, apexQamQrmRevFpga=apexQamQrmRevFpga, apexEventChassisRedunQAMVersionMismatch=apexEventChassisRedunQAMVersionMismatch, apexUdpMapApplyChange=apexUdpMapApplyChange, apexRtspConfControllerIp=apexRtspConfControllerIp, apexManualRouteGbeInputRedundStatus=apexManualRouteGbeInputRedundStatus, apexGbeFrameBufferResetLevelLimit=apexGbeFrameBufferResetLevelLimit, apexChassisRedundancyGigEMismatchStatus=apexChassisRedundancyGigEMismatchStatus, apexEasOutputStreamNum=apexEasOutputStreamNum, apexDepiSessionConfigApplyOutputTsNum=apexDepiSessionConfigApplyOutputTsNum, apexMappingErrorIndex=apexMappingErrorIndex, apexUdpMapMulticastEnable=apexUdpMapMulticastEnable, apexDepiStatusGeneralDtiPort2CableAdvanceValue=apexDepiStatusGeneralDtiPort2CableAdvanceValue, apexGbeStatusInterfaceRedundActiveIf=apexGbeStatusInterfaceRedundActiveIf, apexUdpMapTsOffset=apexUdpMapTsOffset, apexFastEnetInsertRate=apexFastEnetInsertRate, apexPsipStatusInputBody=apexPsipStatusInputBody, apexRdsEmmStatusState=apexRdsEmmStatusState, apexQamRfConfigSpectrumInvert=apexQamRfConfigSpectrumInvert, trapConfigurationChangeDisplayString=trapConfigurationChangeDisplayString, apexManRteGbeInRedPriInterface=apexManRteGbeInRedPriInterface, apexAcp=apexAcp, apexOutputTsUtilizOutpuTsNum=apexOutputTsUtilizOutpuTsNum, apexDepiSessionConfigDocsisTsid=apexDepiSessionConfigDocsisTsid, apexSimulcryptEmEnable=apexSimulcryptEmEnable, apexQamQrmRevStatQrmSupported=apexQamQrmRevStatQrmSupported, apexFastEnetInsertPacketsEntry=apexFastEnetInsertPacketsEntry, apexFastEnetConfig=apexFastEnetConfig, apexQamQrmRevBoardId=apexQamQrmRevBoardId, apexMappingErrorEntry=apexMappingErrorEntry, apexDataIpSubnetMaskInUse=apexDataIpSubnetMaskInUse, apexGbeRxErrorFrames=apexGbeRxErrorFrames, apexRtspStatQamChannelName=apexRtspStatQamChannelName, apexPidMapStatus=apexPidMapStatus, apexInputTsStatTable=apexInputTsStatTable, apexEasServerMulticastIpAddress=apexEasServerMulticastIpAddress, apexManRteGbeInRedThreshold=apexManRteGbeInRedThreshold, apexAlarmQamChannelFault=apexAlarmQamChannelFault, apexChassisRedundancyStatusGeneral=apexChassisRedundancyStatusGeneral, apexAlarmPowerFault=apexAlarmPowerFault, apexOutputProgramInputProgNum=apexOutputProgramInputProgNum, apexPsipConfigMgtMsgInsertionPeriod=apexPsipConfigMgtMsgInsertionPeriod, apexPsipStatusOutputSegment=apexPsipStatusOutputSegment, apexRdsConfigGeneral=apexRdsConfigGeneral, apexRtspSessionStatInputProgramNum=apexRtspSessionStatInputProgramNum, apexManRteGbeInRedSecSourceIp=apexManRteGbeInRedSecSourceIp, apexQamRfPortStatRefClockLock=apexQamRfPortStatRefClockLock, apexEasServerApplyNum=apexEasServerApplyNum, apexDepiControlStatusUnknownAvp=apexDepiControlStatusUnknownAvp, apexGbeTxErrorFrames=apexGbeTxErrorFrames, apexRtspSessionStatProgramBandwidth=apexRtspSessionStatProgramBandwidth, apexPsipStatusOutputIndex=apexPsipStatusOutputIndex, apexGbeTotalRxBroadcastFrames=apexGbeTotalRxBroadcastFrames, apexRdsEventControlByte=apexRdsEventControlByte, apexRtspConfQamChannelApplyChange=apexRtspConfQamChannelApplyChange, apexRtspEventIndex=apexRtspEventIndex, apexBootReason=apexBootReason, apexProductName=apexProductName, apexInputTsStatSecInputInterface=apexInputTsStatSecInputInterface, apexQamRfConfigInterleaverDepth1=apexQamRfConfigInterleaverDepth1, apexEasServerNum=apexEasServerNum, apexEnableQamModuleFault=apexEnableQamModuleFault, apexPsipStatusOutputPart=apexPsipStatusOutputPart, apexQamConfig=apexQamConfig, apexQamRfPortChannelInfoTable=apexQamRfPortChannelInfoTable, apexDataIpDuplexMode=apexDataIpDuplexMode, apexQamRfRedundConfigEnable=apexQamRfRedundConfigEnable, trapGigeToHostCommFault=trapGigeToHostCommFault, apexGbeConfigInputDataTsEnable=apexGbeConfigInputDataTsEnable, apexGbeStatusLossOfPhysicalInput=apexGbeStatusLossOfPhysicalInput, apexPsipStatusInputGpsTime=apexPsipStatusInputGpsTime, apexOutputTsUtilization=apexOutputTsUtilization, apexEncryptionCwgStatus=apexEncryptionCwgStatus, apexPidMapApplyTable=apexPidMapApplyTable, apexDepiControlStatusHbitSet=apexDepiControlStatusHbitSet, apexQrmDownloadStatusEntry=apexQrmDownloadStatusEntry, apexQamRfPortMuteStatus=apexQamRfPortMuteStatus, apexQamModuleStatError=apexQamModuleStatError, apexRtspConfQamChannelTable=apexRtspConfQamChannelTable, apexClearInvalidInitData=apexClearInvalidInitData, apexRpcRfPortName=apexRpcRfPortName, apexRtspConfControllerNum=apexRtspConfControllerNum, apexRpcAvgBandwidthEnable=apexRpcAvgBandwidthEnable, apexQamModuleUpgradeSlot=apexQamModuleUpgradeSlot, apexManRteGbeInRedStatusGeneral=apexManRteGbeInRedStatusGeneral, apexDataIpSpeed=apexDataIpSpeed, apexSessionControlStatusGeneral=apexSessionControlStatusGeneral, apexGbeJitterAbsorption=apexGbeJitterAbsorption, apexDepiControlStatusCurrentSessions=apexDepiControlStatusCurrentSessions, apexGbeFrameBufferHourlyInMulticastIp=apexGbeFrameBufferHourlyInMulticastIp, apexOutputProgramInputPreEncrypted=apexOutputProgramInputPreEncrypted, apexGbeConfInRedundManualRouteRedundType=apexGbeConfInRedundManualRouteRedundType, apexQrmDownloadConfig=apexQrmDownloadConfig, apexQamChannelIdModuleRfPortNum=apexQamChannelIdModuleRfPortNum, trapConfigurationChangeInteger=trapConfigurationChangeInteger, apexRdsStatusServerPort=apexRdsStatusServerPort, apexGbeConfig=apexGbeConfig, apexUdpMapMulticastTable=apexUdpMapMulticastTable, apexCteApsLevel=apexCteApsLevel, apexDepiSessionStatusGeneral=apexDepiSessionStatusGeneral, apexPsiConfigGeneral=apexPsiConfigGeneral, apexQamQrmRevisionStatusTable=apexQamQrmRevisionStatusTable, apexRpcConfigGeneral=apexRpcConfigGeneral, apexOutputTsConfPcrLess=apexOutputTsConfPcrLess, apexOutputProgramOutputProgNum=apexOutputProgramOutputProgNum, apexCteCitEnable=apexCteCitEnable, apexRtspSessionIdEntry=apexRtspSessionIdEntry, apexRtspConfControllerHoldTime=apexRtspConfControllerHoldTime, apexQrmDownloadConfigTable=apexQrmDownloadConfigTable, apexEasOutputEnable=apexEasOutputEnable, apexPsiStatusTable=apexPsiStatusTable, apexOutputTsStatusAncillaryPidsMapped=apexOutputTsStatusAncillaryPidsMapped, apexPsiStatusMessageType=apexPsiStatusMessageType, apexAcpStatusEntry=apexAcpStatusEntry, apexDepiSessionStatusLatencyEnd=apexDepiSessionStatusLatencyEnd, apexPsiRangeStop=apexPsiRangeStop, apexManRteGbeInRedPriUdp=apexManRteGbeInRedPriUdp, apexInputTsStatPriState=apexInputTsStatPriState, apexChassisRedundancyEventTable=apexChassisRedundancyEventTable, apexHwEventEntry=apexHwEventEntry, apexOutputTsConfEncryptionType=apexOutputTsConfEncryptionType, apexSysStatusGeneral=apexSysStatusGeneral, apexManRtePassThroughApplyOutputTsNum=apexManRtePassThroughApplyOutputTsNum, apexEnableChassisRedundancyConfigurationFault=apexEnableChassisRedundancyConfigurationFault, apexPsipStatusGeneral=apexPsipStatusGeneral, apexInputTsStatRateCompareType=apexInputTsStatRateCompareType, apexChassisRedundancyFailOverQamModuleFault=apexChassisRedundancyFailOverQamModuleFault, apexManualRouteApplyIndex=apexManualRouteApplyIndex, apexQamModuleUpgradeApplyChange=apexQamModuleUpgradeApplyChange, apexOutputTsUtilizRollingDropPackets=apexOutputTsUtilizRollingDropPackets, apexRtspQamStatEntry=apexRtspQamStatEntry, apexChassisRedundancyRedundantApexSecIp=apexChassisRedundancyRedundantApexSecIp, apexChassisRedundancyConfigurationStatus=apexChassisRedundancyConfigurationStatus, trapChassisRedundancyQAMVersionMismatch=trapChassisRedundancyQAMVersionMismatch, apexDepiSessionConfigOutputTsNum=apexDepiSessionConfigOutputTsNum, apexQamStatusTransmissionMode=apexQamStatusTransmissionMode, apexGbeTxGoodFrames=apexGbeTxGoodFrames, apexGbeStatInTsErrorInputTsNum=apexGbeStatInTsErrorInputTsNum, apexGbeFrameBufferHourlyGpsTime=apexGbeFrameBufferHourlyGpsTime, apexGbeConfigInputDataTsEntry=apexGbeConfigInputDataTsEntry, apexInsertionMode=apexInsertionMode, apexEncryptionMcDiagTable=apexEncryptionMcDiagTable, apexRtspConfig=apexRtspConfig, apexManRteGbeInRedTable=apexManRteGbeInRedTable, apexGbeStatInTsPriLossInputError=apexGbeStatInTsPriLossInputError, apexEasServerApplyTable=apexEasServerApplyTable, apexManRteGbeInRedSecHighAlarmBitRate=apexManRteGbeInRedSecHighAlarmBitRate, apexManualRouteEnable=apexManualRouteEnable, apexPsipConfigTimeDsDayIn=apexPsipConfigTimeDsDayIn, apexRpcStatusGeneral=apexRpcStatusGeneral, trapChassisRedundancySecondaryForceFailover=trapChassisRedundancySecondaryForceFailover, apexQamModuleStatBoardTemperature=apexQamModuleStatBoardTemperature, apexDepiControlStatusGeneralTotalConnections=apexDepiControlStatusGeneralTotalConnections, apexDepiControlStatusMalformedAvp=apexDepiControlStatusMalformedAvp, apexDepiSessionStatusGeneralInvalidApplyText=apexDepiSessionStatusGeneralInvalidApplyText, apexQamRfPortStatOutputLevelFault=apexQamRfPortStatOutputLevelFault, apexEnableQamRfRedundFailOver=apexEnableQamRfRedundFailOver, apexPsipStatusInputInfo=apexPsipStatusInputInfo, apexSesContConfEntry=apexSesContConfEntry, apexQamRfPortStatCommError=apexQamRfPortStatCommError, apexQamQrmRevFpga2=apexQamQrmRevFpga2, apexRdsTcpPort=apexRdsTcpPort, apexRpcQamStatNumVodBcSessions=apexRpcQamStatNumVodBcSessions, apexPsStatus=apexPsStatus, apexGbeRxMpegDocsisFrames=apexGbeRxMpegDocsisFrames, apexQrmDownloadConfigQrmNum=apexQrmDownloadConfigQrmNum, apexEasServerRcvUdpPort=apexEasServerRcvUdpPort, apexSesContStatProtocol=apexSesContStatProtocol)
mibBuilder.exportSymbols('APEX-MIB', apexManualRouteProviderId=apexManualRouteProviderId, apexQamRfPortStatNumChannelsActive=apexQamRfPortStatNumChannelsActive, apexEncryptionMcDiagDeviceIndex=apexEncryptionMcDiagDeviceIndex, apexMappingErrorInputType=apexMappingErrorInputType, apexPsipStatusInputSegment=apexPsipStatusInputSegment, apexQamModuleStatTemperatureFault=apexQamModuleStatTemperatureFault, apexQamStatusGeneral=apexQamStatusGeneral, apexPsStatusVersionsModel=apexPsStatusVersionsModel, apexDepiControlStatusGeneralCurrentConnections=apexDepiControlStatusGeneralCurrentConnections, apexOutputTsConfig=apexOutputTsConfig, apexOutputTsStatusMessageGenerationNum=apexOutputTsStatusMessageGenerationNum, apexAlarmRemFault=apexAlarmRemFault, apexRtspConfigGeneral=apexRtspConfigGeneral, trapChassisRedundancySecondaryFailover=trapChassisRedundancySecondaryFailover, apexSntpUtcOffset=apexSntpUtcOffset, apexMappingErrorUdpPort=apexMappingErrorUdpPort, trapQamRfPortFault=trapQamRfPortFault, apexRtspStatQamChannelNum=apexRtspStatQamChannelNum, apexRdsStatusServerIp=apexRdsStatusServerIp, trapRemCommFault=trapRemCommFault, apexRtspConfMhaPort=apexRtspConfMhaPort, apexRtspSessionStatEntry=apexRtspSessionStatEntry, apexQamRfPortStatError=apexQamRfPortStatError, apexQrmFileRevCalibration=apexQrmFileRevCalibration, apexManRtePassThroughEntry=apexManRtePassThroughEntry, apexQamQrmRevAppFw=apexQamQrmRevAppFw, apexGbeConfigFrameBufferProcessorNum=apexGbeConfigFrameBufferProcessorNum, trapOutputUtilizationFault=trapOutputUtilizationFault, apexRtspConfControlNamesNum=apexRtspConfControlNamesNum, apexGbeStatusLinkActive=apexGbeStatusLinkActive, apexRtspConfMhaSbeCitSetting=apexRtspConfMhaSbeCitSetting, apexPidMapInvalidApplyText=apexPidMapInvalidApplyText, apexRdsInitialEcmRetryInterval=apexRdsInitialEcmRetryInterval, apexDepiSessionConfigApplyChange=apexDepiSessionConfigApplyChange, apexManualRouteOutputEncryptMode=apexManualRouteOutputEncryptMode, apexManualRoutingConfigGeneral=apexManualRoutingConfigGeneral, apexEncryptionStatus=apexEncryptionStatus, apexManRteGbeInRedStatusMapEntry=apexManRteGbeInRedStatusMapEntry, apexOutputTsUtilizationMonitorTable=apexOutputTsUtilizationMonitorTable, trapDepiSessionSetupFault=trapDepiSessionSetupFault, apexRpcSessionStatSessionIdWord1=apexRpcSessionStatSessionIdWord1, apexRtspQamStatTable=apexRtspQamStatTable, apexQamRfConfigRfLevelAttenuation=apexQamRfConfigRfLevelAttenuation, apexDtaOtsConfigEnable=apexDtaOtsConfigEnable, apexEncryptionCwgPerSecond=apexEncryptionCwgPerSecond, apexMcEmmInsertionApplyChange=apexMcEmmInsertionApplyChange, apexUdpMapMulticastMcastIp=apexUdpMapMulticastMcastIp, apexOampConfig=apexOampConfig, apexPsipStatusServiceOutputTs=apexPsipStatusServiceOutputTs, apexGbeFrameBufferHourlyTable=apexGbeFrameBufferHourlyTable, apexQamChannelIdSlotNum=apexQamChannelIdSlotNum, trapServiceInError=trapServiceInError, apexQamRfConfigRfChanSpacing=apexQamRfConfigRfChanSpacing, apexQamModuleStat5VdcFault=apexQamModuleStat5VdcFault, apexSimulcryptExternalEisSetting=apexSimulcryptExternalEisSetting, apexManualRouteInputUdp=apexManualRouteInputUdp, apexManRtePassThroughEnable=apexManRtePassThroughEnable, apexQamRfPortChannelInfoEntry=apexQamRfPortChannelInfoEntry, apexOutputTsUtilizationTable=apexOutputTsUtilizationTable, apexSesContConfRateCompareType=apexSesContConfRateCompareType, apexGbeStatInTsPriErrorSummary=apexGbeStatInTsPriErrorSummary, apexManRteGbeInRedApplyChange=apexManRteGbeInRedApplyChange, apexGbeStatInTsSamplingPeriod=apexGbeStatInTsSamplingPeriod, apexAlarmChassisRedundancyConfigurationFault=apexAlarmChassisRedundancyConfigurationFault, apexManRteGbeInRedSecInterface=apexManRteGbeInRedSecInterface, apexQamQrmRevStatBoardId=apexQamQrmRevStatBoardId, apexPsipConfigRrtMsgInsertionPeriod=apexPsipConfigRrtMsgInsertionPeriod, apexRpcRfChannelName=apexRpcRfChannelName, apexDepiSessionStatusIngressDlmMsgs=apexDepiSessionStatusIngressDlmMsgs, apexDataIpConfigGeneral=apexDataIpConfigGeneral, apexGbeInputTsEventIndex=apexGbeInputTsEventIndex, apexAlarms=apexAlarms, trapRdsCommFault=trapRdsCommFault, apexUdpMapApplyOutputTsNum=apexUdpMapApplyOutputTsNum, apexTemperature=apexTemperature, apexFastEnetRoutingSubnetMask=apexFastEnetRoutingSubnetMask, apexDepiControlStatusLocalUdp=apexDepiControlStatusLocalUdp, apexPsipConfigTime=apexPsipConfigTime, apexEasRcvUdpPort=apexEasRcvUdpPort, apexPsipConfigSttMsgInsertionPeriod=apexPsipConfigSttMsgInsertionPeriod, apexRds=apexRds, apexInsertion=apexInsertion, apexQamRfConfigRfLevelHighThreshold=apexQamRfConfigRfLevelHighThreshold, apexQrmDownloadConfigGeneral=apexQrmDownloadConfigGeneral, apexGbeFrameBufferHourlyInInterface=apexGbeFrameBufferHourlyInInterface, apexChassisRedundancyRedundantApexIp=apexChassisRedundancyRedundantApexIp, apexChassisRedundancyCurrHBIntfIPStatus=apexChassisRedundancyCurrHBIntfIPStatus, apexChassisRedundancySecondaryApexStatus=apexChassisRedundancySecondaryApexStatus, apexPsipStatusInputIndex=apexPsipStatusInputIndex, apexPidMapIndex=apexPidMapIndex, apexDepiSessionStatusOutputQAMChannel=apexDepiSessionStatusOutputQAMChannel, apexPsiStatusProgramNumber=apexPsiStatusProgramNumber, apexQamModuleSerialNumber=apexQamModuleSerialNumber, apexPsStatusFanStatus=apexPsStatusFanStatus, apexRtspStatusGeneral=apexRtspStatusGeneral, apexGbeStatInTsSecCurStreamCount=apexGbeStatInTsSecCurStreamCount, apexOutputTsUtilizTime=apexOutputTsUtilizTime, trapChassisRedundancyPrimaryForceFailover=trapChassisRedundancyPrimaryForceFailover, apexChassisRedundancyFirmwareMismatchStatus=apexChassisRedundancyFirmwareMismatchStatus, apexRdsEmmStatusCsn=apexRdsEmmStatusCsn, apexSessionControl=apexSessionControl, apexQrmFileRevFirmware=apexQrmFileRevFirmware, apexEncryptionStatusGeneral=apexEncryptionStatusGeneral, apexDepiSessionStatusPerHopBehavior=apexDepiSessionStatusPerHopBehavior, apexQrmDownloadConfigRequest=apexQrmDownloadConfigRequest, apexGbeFrameCounterGbeInterfaceNum=apexGbeFrameCounterGbeInterfaceNum, apexFastEnet=apexFastEnet, apexTimeSource=apexTimeSource, apexQamRfConfigInterleaverDepth2=apexQamRfConfigInterleaverDepth2, apexChassisRedundancyPrimaryApexStatus=apexChassisRedundancyPrimaryApexStatus, apexOutputTsStatusServicesMapped=apexOutputTsStatusServicesMapped, apexQamModuleSerialNumTable=apexQamModuleSerialNumTable, apexOutputTsUtilizAvgPercent=apexOutputTsUtilizAvgPercent, apexOutputTsStatusScgsProvisioned=apexOutputTsStatusScgsProvisioned, apexRtspStatControllerEntry=apexRtspStatControllerEntry, apexOutputProgramTierData=apexOutputProgramTierData, apexSys=apexSys, apexRtspConfControlNamesDeviceName=apexRtspConfControlNamesDeviceName, apexQamRfRedundConfigRemCommonIpAddr=apexQamRfRedundConfigRemCommonIpAddr, apexRdsCommErrorCount=apexRdsCommErrorCount, apexRpcSessionStatIndex=apexRpcSessionStatIndex, apexOutputTsUtilizThreshold=apexOutputTsUtilizThreshold, apexOutputProgramSourceId=apexOutputProgramSourceId, apexGbeStatusInputTsUpdateInterval=apexGbeStatusInputTsUpdateInterval, apexPidMapInputType=apexPidMapInputType, apexGbeStatusInputTsEntry=apexGbeStatusInputTsEntry, apexEnableInvalidInitData=apexEnableInvalidInitData, apexGbeConfigInputDataTsSourceIp=apexGbeConfigInputDataTsSourceIp, apexQamChannelConfigApplyChannelNum=apexQamChannelConfigApplyChannelNum, apexRdsEmmStatusTable=apexRdsEmmStatusTable, apexOutputProgramDtaEncryptionMode=apexOutputProgramDtaEncryptionMode, apexRpcRfChannelNum=apexRpcRfChannelNum, apexManRteGbeInRedApplyEntry=apexManRteGbeInRedApplyEntry, apexPsipConfigTimeDsDayOut=apexPsipConfigTimeDsDayOut, apexOutputTsUtilizPeakPercent=apexOutputTsUtilizPeakPercent, apexDtaConfig=apexDtaConfig, apexGbeConfigInputDataTsApplyText=apexGbeConfigInputDataTsApplyText, apexGbeConfigFrameBufferMaxInDataRate=apexGbeConfigFrameBufferMaxInDataRate, trapGbeInterfaceRedundFailOver=trapGbeInterfaceRedundFailOver, apexGbeFrameBufferAlarmStatus=apexGbeFrameBufferAlarmStatus, apexPsStatusPsNum=apexPsStatusPsNum, apexGbe=apexGbe, apexGbeRoutedPacketUpdateInterval=apexGbeRoutedPacketUpdateInterval, apexUdpMapStatusOutputTsNum=apexUdpMapStatusOutputTsNum, apexGbeGarpPeriodicity=apexGbeGarpPeriodicity, apexOutputProgramIndex=apexOutputProgramIndex, apexGbeConfIfRedundApplyChange=apexGbeConfIfRedundApplyChange, apexOutputTsConfApplyEntry=apexOutputTsConfApplyEntry, apexGbeStatusInterfaceRedundInvalidApplyText=apexGbeStatusInterfaceRedundInvalidApplyText, apexQamRfPortStat5VdcFault=apexQamRfPortStat5VdcFault, apexRdsErrorCountReset=apexRdsErrorCountReset, apexAlarmChassisRedundancyAvailabilityFault=apexAlarmChassisRedundancyAvailabilityFault, apexQamModuleStatInstalled=apexQamModuleStatInstalled, apexQamQrmRevBootLoaderFw=apexQamQrmRevBootLoaderFw, apexRtspSessionStatInputTsIndex=apexRtspSessionStatInputTsIndex, apexOutputTsEventRollingDropPackets=apexOutputTsEventRollingDropPackets, apexQamConfigApplyEntry=apexQamConfigApplyEntry, apexEnableChassisRedundancyAvailabilityFault=apexEnableChassisRedundancyAvailabilityFault, trapConditionAlreadyInList=trapConditionAlreadyInList, apexAlarmQamRfRedundMismatch=apexAlarmQamRfRedundMismatch, apexOutputTsConfigEntry=apexOutputTsConfigEntry, ActiveTYPE=ActiveTYPE, apexPsipStatus=apexPsipStatus, apexOutputTsConfOperatingMode=apexOutputTsConfOperatingMode, apexUdpMapMulticastApplyIndex=apexUdpMapMulticastApplyIndex, apexMuxFpgaEncryption=apexMuxFpgaEncryption, apexManRtePassThroughInputSourceIp=apexManRtePassThroughInputSourceIp, apexOutputProgram=apexOutputProgram, apexGbeConfIfRedundEnable=apexGbeConfIfRedundEnable, apexAlarmGbeMptsRedundPrimaryThreshold=apexAlarmGbeMptsRedundPrimaryThreshold, apexGbeFrameBufferHourlyMaxPercentFull=apexGbeFrameBufferHourlyMaxPercentFull, apexQamChanStatActive=apexQamChanStatActive, apexInputTsConfigGeneral=apexInputTsConfigGeneral, apexDepiControl=apexDepiControl, apexSystemTime=apexSystemTime, apexRtspConfControllerApplyTable=apexRtspConfControllerApplyTable, apexAcpStatusGeneral=apexAcpStatusGeneral, apexAcpOddCsn=apexAcpOddCsn, apexRtspConfQamChannelEntry=apexRtspConfQamChannelEntry, apexGbeStatusInputTsErrorEntry=apexGbeStatusInputTsErrorEntry, apexDepiSessionConfigEntry=apexDepiSessionConfigEntry, apexQamChannelIdTable=apexQamChannelIdTable, apexChassisRedundancyMulticastRedundancyMode=apexChassisRedundancyMulticastRedundancyMode, apexRdsCommStatus=apexRdsCommStatus, apexPsipConfigEit3InsertionPeriod=apexPsipConfigEit3InsertionPeriod, apexOutputProgramStatusGeneral=apexOutputProgramStatusGeneral, apexPsStatusTemperatureStatus=apexPsStatusTemperatureStatus, apexRtspReportGbeInterfaces=apexRtspReportGbeInterfaces, apexDepiControlStatusGeneralUnknownConnectionMessages=apexDepiControlStatusGeneralUnknownConnectionMessages, apexOutputTsEventEntry=apexOutputTsEventEntry, apexPsipConfigTimeApplyChange=apexPsipConfigTimeApplyChange, apexQamRfRedundancyStatus=apexQamRfRedundancyStatus, apexDepiSessionStatusMalformedCtl=apexDepiSessionStatusMalformedCtl, apexQamModuleStatFanFault=apexQamModuleStatFanFault, apexEnableChassisRedundancySecondaryFailover=apexEnableChassisRedundancySecondaryFailover, trapOutputOverflow=trapOutputOverflow, apexOutputTsStatusOutputTsNum=apexOutputTsStatusOutputTsNum, apexRdsRmdRefresh=apexRdsRmdRefresh, apexRdsRmdPollInterval=apexRdsRmdPollInterval, apexPsip=apexPsip, apexRpcSessionStatProgramBandwidth=apexRpcSessionStatProgramBandwidth, apexOutputTsConfOutPatTsId=apexOutputTsConfOutPatTsId, apexDataIpLinkActive=apexDataIpLinkActive, apexMainBoardVersion=apexMainBoardVersion, apexQamRfRedundStatusBackupPort=apexQamRfRedundStatusBackupPort, apexInputTsConfig=apexInputTsConfig, apexPsipConfigGeneral=apexPsipConfigGeneral, apexRtspConfMhaUdpMapEnable=apexRtspConfMhaUdpMapEnable, apexRdsEmmStatusEntry=apexRdsEmmStatusEntry, apexAlarmGbeMptsRedundFailOver=apexAlarmGbeMptsRedundFailOver, apexEnableOutputOverflow=apexEnableOutputOverflow, apexGbeInputTsAssignedEntry=apexGbeInputTsAssignedEntry, apexChassisRedundancyUdpPort=apexChassisRedundancyUdpPort, apexFastEnetRoutingDestinIp=apexFastEnetRoutingDestinIp, apexGbeStatInTsSecLowBitRateError=apexGbeStatInTsSecLowBitRateError, apexPsipStatusOutputBody=apexPsipStatusOutputBody, apexPsiDetectionTimeout=apexPsiDetectionTimeout, apexChassisRedundancyEventTimeLogged=apexChassisRedundancyEventTimeLogged, apexQamChannelStatusTable=apexQamChannelStatusTable, apexQrmDownloadStatusTable=apexQrmDownloadStatusTable, apexQamRfConfigTuningMode=apexQamRfConfigTuningMode, apexOampLinkActive=apexOampLinkActive, apexAncillaryPidMapping=apexAncillaryPidMapping, apexAlarmRtspControllerCommFault=apexAlarmRtspControllerCommFault, apexAlarmChassisRedundancyPrimaryFailover=apexAlarmChassisRedundancyPrimaryFailover, apexManRtePassThroughOutputTsNum=apexManRtePassThroughOutputTsNum, apexQamRfConfigRfLevelLowThreshold=apexQamRfConfigRfLevelLowThreshold, apexInputTsStatPriInputSourceIp=apexInputTsStatPriInputSourceIp, apexGbeOpenInputUdpPortEntry=apexGbeOpenInputUdpPortEntry, apexOutputProgramEntry=apexOutputProgramEntry, apexDepiControlConfigType=apexDepiControlConfigType, apexOutputTsUtilMonResetTotDropPacket=apexOutputTsUtilMonResetTotDropPacket, apexPsStatusErrorStatus=apexPsStatusErrorStatus, apexQamChannelConfigApplyTable=apexQamChannelConfigApplyTable, apexEasServerTable=apexEasServerTable, apexGbeConfIfRedundIndex=apexGbeConfIfRedundIndex, apexAsiMonitorPortEncryption=apexAsiMonitorPortEncryption, apexQamQrmRevStatAppFw=apexQamQrmRevStatAppFw, apexChassisRedundancyCommunicationStatus=apexChassisRedundancyCommunicationStatus, apexRtspConfControllerApplyNum=apexRtspConfControllerApplyNum, apexEncryptionConfAlgorithm=apexEncryptionConfAlgorithm, apexRtsp=apexRtsp, apexDepiSessionStatusHbitSet=apexDepiSessionStatusHbitSet, apexDtaGeneralConfigCatSourceType=apexDtaGeneralConfigCatSourceType, apexQamChanConfigChannelNum=apexQamChanConfigChannelNum, apexChassisRedundancyFailOverEnet2LinkLoss=apexChassisRedundancyFailOverEnet2LinkLoss, apexOutputTsEventAvgRate=apexOutputTsEventAvgRate, apexEasServerApplyChange=apexEasServerApplyChange, apexEncryptionMux2CollisionCount=apexEncryptionMux2CollisionCount, trapChassisRedundancyPrimaryFailover=trapChassisRedundancyPrimaryFailover, apexPsStatusDiagnosticData2=apexPsStatusDiagnosticData2, apexTime=apexTime, apexRtspSessionStatIndex=apexRtspSessionStatIndex, apexPsipStatusInputPid=apexPsipStatusInputPid)
mibBuilder.exportSymbols('APEX-MIB', apexDepiControlStatusInvalidVendorId=apexDepiControlStatusInvalidVendorId, apexGbeConfigInterfaceRedundancyEntry=apexGbeConfigInterfaceRedundancyEntry, apexQamModuleStatCodeInitError=apexQamModuleStatCodeInitError, apexOutputTsUtilizCurPercent=apexOutputTsUtilizCurPercent, apexGbeConfigFrameBufferTable=apexGbeConfigFrameBufferTable, apexGbeStatInTsSecMinStreamCount=apexGbeStatInTsSecMinStreamCount, apexRtspConfControllerPort=apexRtspConfControllerPort, apexPsipStatusOutputPid=apexPsipStatusOutputPid, apexGbeStatusMacAddr=apexGbeStatusMacAddr, apexGbeInputTsEventAlarmSeverity=apexGbeInputTsEventAlarmSeverity, apexRtspConfMhaSbeApsLevel=apexRtspConfMhaSbeApsLevel, apexQamModuleStatFaultCondition=apexQamModuleStatFaultCondition, apexQamRfRedundStatusRemError=apexQamRfRedundStatusRemError, apexManualRouteInputPreEncryptCheck=apexManualRouteInputPreEncryptCheck, apexGbeTotalIpFragmentedPkts=apexGbeTotalIpFragmentedPkts, apexDepiControlConfigGeneralKeepaliveTimeout=apexDepiControlConfigGeneralKeepaliveTimeout, apexRdsStatusGeneral=apexRdsStatusGeneral, apexDtaConfigApplyIndex=apexDtaConfigApplyIndex, apexQamRfPortStatCodeInitError=apexQamRfPortStatCodeInitError, apexGbeStatusNumRoutedPackets=apexGbeStatusNumRoutedPackets, apexDataIpAddr=apexDataIpAddr, apexRdsEventEventIndex=apexRdsEventEventIndex, apexDebug=apexDebug, apexDepiSessionConfigControlId=apexDepiSessionConfigControlId, apexGbeFrameBufferCurrPercentFull=apexGbeFrameBufferCurrPercentFull, apexManRteGbeInRedForceSwitchEntry=apexManRteGbeInRedForceSwitchEntry, apexDepiControlConfigApplyIndex=apexDepiControlConfigApplyIndex, apexEnableRemFault=apexEnableRemFault, apexManualRouting=apexManualRouting, apexGbeConfigEntry=apexGbeConfigEntry, apexQamRfPortMuteStatusRfPortNum=apexQamRfPortMuteStatusRfPortNum, apexInsertionStatusGeneral=apexInsertionStatusGeneral, apexRtspConfGbeEdgeGroupTable=apexRtspConfGbeEdgeGroupTable, trapRemFault=trapRemFault, apexEasConfig=apexEasConfig, apexFastEnetInsertRateTable=apexFastEnetInsertRateTable, apexDataIpAutoNegotiate=apexDataIpAutoNegotiate, apexDepiSessionStatusIndex=apexDepiSessionStatusIndex, apexUdpMapTable=apexUdpMapTable, apexGbeInputTsEventInputTsState=apexGbeInputTsEventInputTsState, apexMappingErrorOutputOpMode=apexMappingErrorOutputOpMode, apexOutputProgramStatus=apexOutputProgramStatus, apexGbeInputTsEventRedundantConfig=apexGbeInputTsEventRedundantConfig, apexGbeStatusInterfaceRedundFaultCondition=apexGbeStatusInterfaceRedundFaultCondition, apexUdpMapPreEncryptCheck=apexUdpMapPreEncryptCheck, apexGbeRxFrames=apexGbeRxFrames, apexGbeFrameBufferStats=apexGbeFrameBufferStats, apexDataIpSubnetMask=apexDataIpSubnetMask, apexEnableDepiSessionSetupFault=apexEnableDepiSessionSetupFault, apexRpcStatus=apexRpcStatus, apexOutputProgramConfig=apexOutputProgramConfig, apexGbeConfigAutoNegotiate=apexGbeConfigAutoNegotiate, apexAcpUnitAddress=apexAcpUnitAddress, apexDepiControlConfigInterfaceNumber=apexDepiControlConfigInterfaceNumber, apexGbeConfigInterfaceRedundancyApplyEntry=apexGbeConfigInterfaceRedundancyApplyEntry, apexManRteGbeInRedApplyTable=apexManRteGbeInRedApplyTable, apexManualRouteInvalidApplyText=apexManualRouteInvalidApplyText, apexEasServerEntry=apexEasServerEntry, apexOutputTsUtilMonAlarmThreshold=apexOutputTsUtilMonAlarmThreshold, apexAcpStatus=apexAcpStatus, apexChassisRedundancyMode=apexChassisRedundancyMode, apexDepiControlConfig=apexDepiControlConfig, apexGbeInputTsEventUdpPort=apexGbeInputTsEventUdpPort, apexMappingErrorSourceIp=apexMappingErrorSourceIp, apexOutputTsUtilizMinPercent=apexOutputTsUtilizMinPercent, apexManRteGbeInRedPriMulticastIp=apexManRteGbeInRedPriMulticastIp, apexEas=apexEas, apexRtspEventSessionCount=apexRtspEventSessionCount, apexMappingErrorSecSourceIp=apexMappingErrorSecSourceIp, apexRtspStatControllerCommFault=apexRtspStatControllerCommFault, apexTimeStatusGeneral=apexTimeStatusGeneral, apexGbeConfigInterfaceRedundancyApplyTable=apexGbeConfigInterfaceRedundancyApplyTable, apexMainBoardTempMuxFpga=apexMainBoardTempMuxFpga, apexChassisRedundancyStatusInvalidApplyText=apexChassisRedundancyStatusInvalidApplyText, apexDepiConfigGeneral=apexDepiConfigGeneral, apexQamRfRedundancyStatusGeneral=apexQamRfRedundancyStatusGeneral, apexRpcSessionStatSessionType=apexRpcSessionStatSessionType, apexRdsEventTierData=apexRdsEventTierData, apexGbeStatInTsSecCurDataCount=apexGbeStatInTsSecCurDataCount, apexInsertPacketStatNumPkts=apexInsertPacketStatNumPkts, apexQamRfRedundConfigApexId=apexQamRfRedundConfigApexId, trapConfigurationChangeOID=trapConfigurationChangeOID, apexChassisRedundancyFailOverQamRfPortFault=apexChassisRedundancyFailOverQamRfPortFault, apexOutputTsConfigTable=apexOutputTsConfigTable, apexPsStatusGeneral=apexPsStatusGeneral, apexPsiRangeStart=apexPsiRangeStart, apexPidMapInputPid=apexPidMapInputPid, apexGbeConfigTableApplyChange=apexGbeConfigTableApplyChange, apexManualRouteApplyEntry=apexManualRouteApplyEntry, apexOutputTsEventTimeLogged=apexOutputTsEventTimeLogged, apexRdsConfigApplyChange=apexRdsConfigApplyChange, apexHwEventDescription=apexHwEventDescription, apexGbeApplicationCodeVersion=apexGbeApplicationCodeVersion, apexEncryptionStatAlgorithm=apexEncryptionStatAlgorithm, apexChassisRedundancyQamMismatchStatus=apexChassisRedundancyQamMismatchStatus, apexQamStatus=apexQamStatus, apexUdpMapMulticastEntry=apexUdpMapMulticastEntry, apexRtspConfMhaGeneral=apexRtspConfMhaGeneral, apexPidMapInputSourceIp=apexPidMapInputSourceIp, apexOutputTsConfigGeneral=apexOutputTsConfigGeneral, apexGbeFrameBufferOverflowLevel=apexGbeFrameBufferOverflowLevel, apexManualRouteOutputTsNum=apexManualRouteOutputTsNum, apexGbeFrameBufferProcessorNum=apexGbeFrameBufferProcessorNum, trapDepiControlConnectionFault=trapDepiControlConnectionFault, apexRdsEventProgramIndex=apexRdsEventProgramIndex, apexDepiSessionStatusMalformedAvp=apexDepiSessionStatusMalformedAvp, apexEnableGbeMptsRedundPrimaryThreshold=apexEnableGbeMptsRedundPrimaryThreshold, apexDepiSessionConfig=apexDepiSessionConfig, apexDepiSessionStatusLatencyStart=apexDepiSessionStatusLatencyStart, apexGbeConfigInputDataTsApplyEntry=apexGbeConfigInputDataTsApplyEntry, apexGbeFrameBufferUnderflowLevel=apexGbeFrameBufferUnderflowLevel, apexMappingErrorTable=apexMappingErrorTable, apexOutputTsEventIndex=apexOutputTsEventIndex, apexQamModuleSerialNumQamModuleNum=apexQamModuleSerialNumQamModuleNum, apexRtspConfQamChannelGroupName=apexRtspConfQamChannelGroupName, apexOutputProgramProviderId=apexOutputProgramProviderId, apexQrmFileRevFpga2=apexQrmFileRevFpga2, apexOampSubnetMask=apexOampSubnetMask, apexQamRfPortChannelInfoRfPortNum=apexQamRfPortChannelInfoRfPortNum, apexEnableQamRfRedundMismatch=apexEnableQamRfRedundMismatch, apexTimeConfig=apexTimeConfig, apexMainBoardTempMuxFpgaFault=apexMainBoardTempMuxFpgaFault, apexOutputTsUtilizCurRate=apexOutputTsUtilizCurRate, apexAcpUnitAttribute=apexAcpUnitAttribute, apexEasNumInvalRcvMsgs=apexEasNumInvalRcvMsgs, apexOutputTsConfPidRemappingMode=apexOutputTsConfPidRemappingMode, apexOutputTsEventPeakRate=apexOutputTsEventPeakRate, apexQamRfPortStatInfoRate=apexQamRfPortStatInfoRate, apexManualRouteApplyChange=apexManualRouteApplyChange, apexOutputProgramCitSetting=apexOutputProgramCitSetting, apexGbeInputTsEventDescription=apexGbeInputTsEventDescription, apexDepiSessionStatusInDataPackets=apexDepiSessionStatusInDataPackets, apexGbeConfInputMulticastTimeout=apexGbeConfInputMulticastTimeout, apexSesContConfInputPreEncryptCheck=apexSesContConfInputPreEncryptCheck, apexSesContConfRedundType=apexSesContConfRedundType, apexQamRfConfigSymbolRate=apexQamRfConfigSymbolRate, apexRdsEventInterstitialDuration=apexRdsEventInterstitialDuration, trapGbeLossOfPhysicalInput=trapGbeLossOfPhysicalInput, apexGbeRxBroadcastFrames=apexGbeRxBroadcastFrames, apexGbeFrameBufferHourlyMaxMsLevel=apexGbeFrameBufferHourlyMaxMsLevel, apexPsipStatusOutputSourceId=apexPsipStatusOutputSourceId, apexQamModuleStat3dot3VdcSupply=apexQamModuleStat3dot3VdcSupply, apexPatVersionIncrement=apexPatVersionIncrement, trapRtspControllerCommFault=trapRtspControllerCommFault, apexFastEnetInsPacketsTotPkts=apexFastEnetInsPacketsTotPkts, apexInputTsStatSecInputSourceIp=apexInputTsStatSecInputSourceIp, apexQamRfPortMuteStatusEntry=apexQamRfPortMuteStatusEntry, apexManualRouteInputInterface=apexManualRouteInputInterface, apexGbeStatInTsSecMinDataCount=apexGbeStatInTsSecMinDataCount, apexPsipStatusInputSourceId=apexPsipStatusInputSourceId, apexOutputTsUtilizationGeneral=apexOutputTsUtilizationGeneral, apexRtspEventEntry=apexRtspEventEntry, apexGbeStatusEntry=apexGbeStatusEntry, apexPsipStatusOutputTable=apexPsipStatusOutputTable, apexManRtePassThroughTable=apexManRtePassThroughTable, apexGbeSfpStatusDiagInfo=apexGbeSfpStatusDiagInfo, apexUdpMapMulticastApplyTable=apexUdpMapMulticastApplyTable, apexRdsCetRefresh=apexRdsCetRefresh, apexPsi=apexPsi, apexUdpMapMulticastApplyChange=apexUdpMapMulticastApplyChange, apexManRteGbeInRedStatusMapInputTsStatRow=apexManRteGbeInRedStatusMapInputTsStatRow, apexAlarmOutputUtilizationFault=apexAlarmOutputUtilizationFault, trapChassisRedundancyAvailabilityFault=trapChassisRedundancyAvailabilityFault, apexGbeInputDataTsSmoothingPeriod=apexGbeInputDataTsSmoothingPeriod, apexOutputTransport=apexOutputTransport, apexOutputProgramConfigGeneral=apexOutputProgramConfigGeneral, apexInputTsStatSecInputUdp=apexInputTsStatSecInputUdp, apexPsiStatusPart=apexPsiStatusPart, apexChassisRedundancyFailOverEnet1LinkLoss=apexChassisRedundancyFailOverEnet1LinkLoss, apexGbeFrameBufferHourlyInSourceIp=apexGbeFrameBufferHourlyInSourceIp, apexDepiSessionConfigApplyEntry=apexDepiSessionConfigApplyEntry, apexChassisRedundancyConfigEnable=apexChassisRedundancyConfigEnable, apexRdsRmdNextPollTime=apexRdsRmdNextPollTime, apexPsiStatusSegment=apexPsiStatusSegment, apexGbeInputTsEventAlarmCode=apexGbeInputTsEventAlarmCode, apexConfAlarmClear=apexConfAlarmClear, apexGbeFrameBufferHourlyProcessorNum=apexGbeFrameBufferHourlyProcessorNum, apexQamQrmRevStatFpga2=apexQamQrmRevStatFpga2, apexUdpMapInputInterface=apexUdpMapInputInterface, apexManRteGbeInRedPriLowAlarmBitRate=apexManRteGbeInRedPriLowAlarmBitRate, apexQamRfRedundancyConfig=apexQamRfRedundancyConfig, apexQamRfPortChannelInfoChanA=apexQamRfPortChannelInfoChanA, apexDepiSessionConfigTable=apexDepiSessionConfigTable, apexUdpMapInvalidApplyText=apexUdpMapInvalidApplyText, apexRtspConfControlNamesStreamingZone=apexRtspConfControlNamesStreamingZone, apexDepiControlConfigSrcIpAddr=apexDepiControlConfigSrcIpAddr, apexFastEnetRoutingIndex=apexFastEnetRoutingIndex, apexGbeInputTsEventGbeInterface=apexGbeInputTsEventGbeInterface, apexQamModuleStatFanSpeed=apexQamModuleStatFanSpeed, apexAlarmTemperatureFault=apexAlarmTemperatureFault, apexGbeConfInRedundForceToPrimary=apexGbeConfInRedundForceToPrimary, apexGbeMaxInputTs=apexGbeMaxInputTs, apexSesContConfOutputTsNum=apexSesContConfOutputTsNum, apexRtspQamStatQamChannelNum=apexRtspQamStatQamChannelNum, apexOutputTsStatusInputStreamsMapped=apexOutputTsStatusInputStreamsMapped, apexMainBoardTemperatureFault=apexMainBoardTemperatureFault, apexGbeStatInTsSecAvgDataCount=apexGbeStatInTsSecAvgDataCount, trapCannotOpenSocket=trapCannotOpenSocket, apexAlarmChassisRedundancyLinkFault=apexAlarmChassisRedundancyLinkFault, apexGbeStatusRoutedPacketTable=apexGbeStatusRoutedPacketTable, RateComparisonTYPE=RateComparisonTYPE, apexRtspQamStatNumSessions=apexRtspQamStatNumSessions, apexManRtePassThroughApplyEntry=apexManRtePassThroughApplyEntry, apexDepiSessionStatusSessionID=apexDepiSessionStatusSessionID, apexOamp=apexOamp, apexUdpMapStatus=apexUdpMapStatus, apexQamChanStatError=apexQamChanStatError, apexRtspConfControlNamesEntry=apexRtspConfControlNamesEntry, apexPidMapApplyIndex=apexPidMapApplyIndex, apexDepiSessionStatusStatus=apexDepiSessionStatusStatus, apexPsiStatusGeneral=apexPsiStatusGeneral, apexGbeStatusInputTransportStream=apexGbeStatusInputTransportStream, apexGbeStatusIgmpVersion=apexGbeStatusIgmpVersion, apexGbeConfigTable=apexGbeConfigTable, apexRdsSourceLookupIndex=apexRdsSourceLookupIndex, apexChassisRedundancyFailOverQamChannelFault=apexChassisRedundancyFailOverQamChannelFault, apexFastEnetRoutingApplyChange=apexFastEnetRoutingApplyChange, apexQamRfPortStatOutputLevel=apexQamRfPortStatOutputLevel, apexOutputProgramNumberTiers=apexOutputProgramNumberTiers, apexQamRfConfigTable=apexQamRfConfigTable, apexRpcSessionStatInputProgramNum=apexRpcSessionStatInputProgramNum, apexAlarmServiceInError=apexAlarmServiceInError, apexGbeStatusFrameCounterTableResetAll=apexGbeStatusFrameCounterTableResetAll, apexUdpPortMapping=apexUdpPortMapping, apexGbeBootCodeVersion=apexGbeBootCodeVersion, apexFastEnetRoutingEntry=apexFastEnetRoutingEntry, apexOutputTsEventTotalDropPackets=apexOutputTsEventTotalDropPackets, apexMappingErrorSecInputInterface=apexMappingErrorSecInputInterface, apexMappingErrorMappingType=apexMappingErrorMappingType, apexDtaConfigApplyEntry=apexDtaConfigApplyEntry, apexDepiStatusGeneralDtiClientStatusMode=apexDepiStatusGeneralDtiClientStatusMode, apexDataIpStatus=apexDataIpStatus, apexDtaOtsConfigIndex=apexDtaOtsConfigIndex, apexQamChannelConfigTable=apexQamChannelConfigTable, apexPsiStatusBody=apexPsiStatusBody, apexManualRouteInputMulticastIp=apexManualRouteInputMulticastIp, apexOperationalTime=apexOperationalTime, apexPsStatusEntry=apexPsStatusEntry, apexUdpMapEntry=apexUdpMapEntry, apexOutputTsStatusTable=apexOutputTsStatusTable, apexRpcRfPortServiceGroup=apexRpcRfPortServiceGroup, apexRtspConfControlNamesTable=apexRtspConfControlNamesTable, apexInputTsStatRoutingType=apexInputTsStatRoutingType, apexAcpStatusTable=apexAcpStatusTable, apexManRteGbeInRedSecUdp=apexManRteGbeInRedSecUdp, apexFastEnetInsertPacketsTable=apexFastEnetInsertPacketsTable, apexGbeStatInTsMptsRedundFailError=apexGbeStatInTsMptsRedundFailError, apexQamModuleStatQamModuleNum=apexQamModuleStatQamModuleNum, apexPsStatusInputPowerStatus=apexPsStatusInputPowerStatus, apexQamChannelConfigApplyChange=apexQamChannelConfigApplyChange, apexRtspConfControllerApplyChange=apexRtspConfControllerApplyChange, apexRpcRfPortEntry=apexRpcRfPortEntry, apexDepiControlConfigApplyTable=apexDepiControlConfigApplyTable, EnableDisableTYPE=EnableDisableTYPE)
mibBuilder.exportSymbols('APEX-MIB', apexQamModuleStatTemperature=apexQamModuleStatTemperature, apexManRtePassThroughApplyTable=apexManRtePassThroughApplyTable, apexManRteGbeInRedIndex=apexManRteGbeInRedIndex, apexGbeSfpStatus=apexGbeSfpStatus, apexQamRfPortStat3dot3VdcFault=apexQamRfPortStat3dot3VdcFault, apexFastEnetInsertRateEntry=apexFastEnetInsertRateEntry, apexQrmDownloadConfigEntry=apexQrmDownloadConfigEntry, apexEnableGbeLossOfInputTsFault=apexEnableGbeLossOfInputTsFault, apexManualRoutingStatus=apexManualRoutingStatus, apexInvalidInitDataTable=apexInvalidInitDataTable, apexManRteGbeInRedSecLowAlarmBitRate=apexManRteGbeInRedSecLowAlarmBitRate, apexAlarmRemCommFault=apexAlarmRemCommFault, apexFastEnetInsPacketsNumPkts=apexFastEnetInsPacketsNumPkts, apexAlarmChassisRedundancySecondaryFailover=apexAlarmChassisRedundancySecondaryFailover, apexPsipConfigCvctMsgInsertionPeriod=apexPsipConfigCvctMsgInsertionPeriod, apexPsipStatusInputMessageType=apexPsipStatusInputMessageType, apexEncryptionMcDiagEntry=apexEncryptionMcDiagEntry, apexRdsEventEpochNumber=apexRdsEventEpochNumber, apexMuxFpgaVersion=apexMuxFpgaVersion, apexQamRfPortStatFaultCondition=apexQamRfPortStatFaultCondition, apexEasStatus=apexEasStatus, apexManRteGbeInRedEnable=apexManRteGbeInRedEnable, apexGbeInputTsEventSamplingPeriod=apexGbeInputTsEventSamplingPeriod, apexManRteGbeInRedRateCompareType=apexManRteGbeInRedRateCompareType, apexQrmDownloadStatusGeneral=apexQrmDownloadStatusGeneral, apexManRtePassThroughInvalidApplyText=apexManRtePassThroughInvalidApplyText, apexDepiControlStatusConnectionStatus=apexDepiControlStatusConnectionStatus, apexChassisRedundancyPrimaryStandbyOverride=apexChassisRedundancyPrimaryStandbyOverride, apexDepiControlConfigGeneral=apexDepiControlConfigGeneral, apexSesContConfProtocol=apexSesContConfProtocol, apexAlarmGbeInterfaceRedundFailOver=apexAlarmGbeInterfaceRedundFailOver, apexPsipStatusServiceIndex=apexPsipStatusServiceIndex, apexDataIpConfig=apexDataIpConfig, apexPsStatusVersionsEntry=apexPsStatusVersionsEntry, apexDtaConfigApplyTable=apexDtaConfigApplyTable, apexGbeConfigInterfaceRedundancyTable=apexGbeConfigInterfaceRedundancyTable, apexPsStatusVersionsTable=apexPsStatusVersionsTable, trapInvalidCaseInSwitch=trapInvalidCaseInSwitch, apexAlarmQamRfRedundFailOver=apexAlarmQamRfRedundFailOver, trapPowerFault=trapPowerFault, apexQamChannelIdChannelDescription=apexQamChannelIdChannelDescription, apexUdpMapMulticastIndex=apexUdpMapMulticastIndex, trapGbeMptsRedundPrimaryThreshold=trapGbeMptsRedundPrimaryThreshold, apexFastEnetInsPacketsOutputTsNum=apexFastEnetInsPacketsOutputTsNum, apexOutputTsStatusGeneral=apexOutputTsStatusGeneral, apexAlarmGbeLossOfPhysicalInput=apexAlarmGbeLossOfPhysicalInput, apexManRteGbeInRedApplyIndex=apexManRteGbeInRedApplyIndex, apexGbeInputTsAssignedGbeInterfaceNum=apexGbeInputTsAssignedGbeInterfaceNum, apexGbeStatInTsSecPeakStreamCount=apexGbeStatInTsSecPeakStreamCount, apexQamModuleStatPowerFault=apexQamModuleStatPowerFault, apexGbeFrameCounterUpdateInterval=apexGbeFrameCounterUpdateInterval, trapEmUserLoginFailed=trapEmUserLoginFailed, apexAlarmGbeLossOfInputStream=apexAlarmGbeLossOfInputStream, apexRpcQamStatTable=apexRpcQamStatTable, apexEvents=apexEvents, apexGbeConfigInterfaceNum=apexGbeConfigInterfaceNum, apexQamModuleUpgradeCode=apexQamModuleUpgradeCode, apexUdpMapMulticastSourceIp=apexUdpMapMulticastSourceIp, apexMcEmmInsertionPid1=apexMcEmmInsertionPid1, apexTemperatureConfig=apexTemperatureConfig, apexChassisRedundancyGigE34LinkStatus=apexChassisRedundancyGigE34LinkStatus, apexSysConfigMcEmmInsertion=apexSysConfigMcEmmInsertion, apexGbeConfigIpAddr=apexGbeConfigIpAddr, apexFastEnetMaxInputUdpPorts=apexFastEnetMaxInputUdpPorts, apexDepiSessionStatusInDataPacketDiscards=apexDepiSessionStatusInDataPacketDiscards, apexEnableChassisRedundancyPrimaryFailover=apexEnableChassisRedundancyPrimaryFailover, apexRdsEventProgramCost=apexRdsEventProgramCost, apexGbeStatusRoutedPacketEntry=apexGbeStatusRoutedPacketEntry, ClearAlarmTYPE=ClearAlarmTYPE, apexRtspStatQamMptsModeQamChannelNum=apexRtspStatQamMptsModeQamChannelNum, apexRpcSessionStatInputTsIndex=apexRpcSessionStatInputTsIndex, apexQamQrmRevisionStatusEntry=apexQamQrmRevisionStatusEntry, apexOutputTsUtilizationMonitorEntry=apexOutputTsUtilizationMonitorEntry, apexRpcQamStatNumSdvSessions=apexRpcQamStatNumSdvSessions, apexAlarmInvalidInitData=apexAlarmInvalidInitData, apexRdsPollRandomization=apexRdsPollRandomization, apexDepiSessionStatusOutSLIMsgs=apexDepiSessionStatusOutSLIMsgs, apexQamRfConfigEiaChanNumChannelA=apexQamRfConfigEiaChanNumChannelA, apexGbeConfigInputDataTsTable=apexGbeConfigInputDataTsTable, apexEnableGbeInputStreamLowBitRate=apexEnableGbeInputStreamLowBitRate, trapQamRfRedundFailOver=trapQamRfRedundFailOver, apexQamModuleStat5VdcSupply=apexQamModuleStat5VdcSupply, apexQamConfigApplyTable=apexQamConfigApplyTable, apexGbeOpenInputUdpPortTable=apexGbeOpenInputUdpPortTable, apexRtspConfMhaSbe=apexRtspConfMhaSbe, apexDepiStatusGeneralDtiPort2LinkActive=apexDepiStatusGeneralDtiPort2LinkActive, apexOutputTsEventCurDropPackets=apexOutputTsEventCurDropPackets, apexCteCciLevel=apexCteCciLevel, apexQamRfConfigModulationMode=apexQamRfConfigModulationMode, apexGbeConfigInputRedundancy=apexGbeConfigInputRedundancy, apexOutputProgramRoutingStatus=apexOutputProgramRoutingStatus, apexGbeDefaultGateway2=apexGbeDefaultGateway2, apexDepiControlStatus=apexDepiControlStatus, apexPidMapStatusGeneral=apexPidMapStatusGeneral, apexQamRfRedundStatusFailedPort=apexQamRfRedundStatusFailedPort, apexQamQrmRevStatQrmNum=apexQamQrmRevStatQrmNum, trapQamModuleFault=trapQamModuleFault, apexOampConfigGeneral=apexOampConfigGeneral, apexPidMapTable=apexPidMapTable, apexEcmEmmNumberPids=apexEcmEmmNumberPids, apexRdsSourceLookupProviderId=apexRdsSourceLookupProviderId, apexDepiStatusGeneralDtiPort1CableAdvanceValue=apexDepiStatusGeneralDtiPort1CableAdvanceValue, apexGbeStatInTsPriMinDataCount=apexGbeStatInTsPriMinDataCount, trapQamChannelFault=trapQamChannelFault, apexAlarmGigeToHostCommFault=apexAlarmGigeToHostCommFault, apexRtspConfQamChannelNum=apexRtspConfQamChannelNum, apexGbeConfLossOfInputTsType=apexGbeConfLossOfInputTsType, apexHostApplicationDate=apexHostApplicationDate, apexUdpMapApplyTable=apexUdpMapApplyTable, apexConfigAlarms=apexConfigAlarms, apexRdsEventCcmAvailable=apexRdsEventCcmAvailable, apexDepiSessionStatusInSLIMsgs=apexDepiSessionStatusInSLIMsgs, apexOutputTsUtilizationMonitoring=apexOutputTsUtilizationMonitoring, apexRtspStatControllerTable=apexRtspStatControllerTable, apexGbeStatInTsPriPeakDataCount=apexGbeStatInTsPriPeakDataCount, apexEncryptionCwCountsPerSecond=apexEncryptionCwCountsPerSecond, apexManRteGbeInRedConfigGeneral=apexManRteGbeInRedConfigGeneral, apexSysStatusVersions=apexSysStatusVersions, apexGbeInputTsEventMulticastIp=apexGbeInputTsEventMulticastIp, apexQamRfConfigEntry=apexQamRfConfigEntry, apexRtspStatQamMptsModeTable=apexRtspStatQamMptsModeTable, apexRdsEventEpochStart=apexRdsEventEpochStart, apexHwEventAlarmSeverity=apexHwEventAlarmSeverity, apexUdpMapMulticastApplyEntry=apexUdpMapMulticastApplyEntry, apexChassisRedundancyState=apexChassisRedundancyState, apexInvalidInitDataIndex=apexInvalidInitDataIndex, apexAlarmDepiSessionSetupFault=apexAlarmDepiSessionSetupFault, apexDepiControlConfigEnable=apexDepiControlConfigEnable, apexAcpEvenCsn=apexAcpEvenCsn, apexGbeConfIfRedundAutoSwitchBackEnable=apexGbeConfIfRedundAutoSwitchBackEnable, apexPsStatusFanSpeed=apexPsStatusFanSpeed, apexRdsEventPreviewDuration=apexRdsEventPreviewDuration, apexEcmEmmFirstPid=apexEcmEmmFirstPid, apexMappingErrorTimeLogged=apexMappingErrorTimeLogged, apexChassisRedundancyGeneralConfigSyncStatusText=apexChassisRedundancyGeneralConfigSyncStatusText, apexEasNumRcvMsgs=apexEasNumRcvMsgs, apexUdpMapMulticastInterface=apexUdpMapMulticastInterface, apexRpc=apexRpc, apexManRteGbeInRedForceSwitchTable=apexManRteGbeInRedForceSwitchTable, apexManRtePassThroughInputInterface=apexManRtePassThroughInputInterface, apexGbeStatusInputTsTable=apexGbeStatusInputTsTable, apexEnableDtiSyncLossFault=apexEnableDtiSyncLossFault, apexGbeFrameBufferStatsEntry=apexGbeFrameBufferStatsEntry, apexAlarmGbeInputStreamHighBitRate=apexAlarmGbeInputStreamHighBitRate, apexChassisRedundancyEventEntry=apexChassisRedundancyEventEntry, trapInvalidMessageReceived=trapInvalidMessageReceived, apexQrmFileRevFpga=apexQrmFileRevFpga, apexManRtePassThroughInputMulticastIp=apexManRtePassThroughInputMulticastIp, apexGbeConfIfRedundSuspendFailover=apexGbeConfIfRedundSuspendFailover, apexChassisRedundancyStatus=apexChassisRedundancyStatus, apexDepiSessionConfigSyncCorrection=apexDepiSessionConfigSyncCorrection, apexInsertPacketStatisticsTable=apexInsertPacketStatisticsTable, apexSntpServerSpecified=apexSntpServerSpecified, apexMainBoardTempAcpModuleFault=apexMainBoardTempAcpModuleFault, apexQamRfPortStatTemperatureFault=apexQamRfPortStatTemperatureFault, apexRtspStatQamMptsModeQamChannelMode=apexRtspStatQamMptsModeQamChannelMode, apexMappingErrorOutputTsNum=apexMappingErrorOutputTsNum, apexPsConfigGeneral=apexPsConfigGeneral, apexRpcSessionStatEntry=apexRpcSessionStatEntry, apexDepiControlStatusGeneralUnknownSessionMessages=apexDepiControlStatusGeneralUnknownSessionMessages, apexGbeInputTsEventTimeLogged=apexGbeInputTsEventTimeLogged, apexGbeTotalRxSinglecastFrames=apexGbeTotalRxSinglecastFrames, apexFastEnetStatus=apexFastEnetStatus, trapGbeInputStreamLowBitRate=trapGbeInputStreamLowBitRate, apexGbeStatusInterfaceRedundEntry=apexGbeStatusInterfaceRedundEntry, apexGbeRxDocsisFrames=apexGbeRxDocsisFrames, apexGbeStatusRoutedPacketOutputTsNum=apexGbeStatusRoutedPacketOutputTsNum, apexDepiSessionStatusLocalUdp=apexDepiSessionStatusLocalUdp, apexRtspConfMhaSbeCciLevel=apexRtspConfMhaSbeCciLevel, apexMainBoardTempFrontIntake=apexMainBoardTempFrontIntake, apexGbeConfigFrameBufferAlarmThreshold=apexGbeConfigFrameBufferAlarmThreshold, apexRdsSourceLookupDescription=apexRdsSourceLookupDescription, apexDtaRfPortConfigNetPidMulticastIP=apexDtaRfPortConfigNetPidMulticastIP, apexRtspConfControllerTable=apexRtspConfControllerTable, apexQamRfConfigEiaFrequencyPlan=apexQamRfConfigEiaFrequencyPlan, apexOutputTsStatusServicesMuxed=apexOutputTsStatusServicesMuxed, apexGbeConfInRedundMonitorPeriod=apexGbeConfInRedundMonitorPeriod, apexOutputTsConfApplyIndex=apexOutputTsConfApplyIndex, apexRtspStatQamChannelEntry=apexRtspStatQamChannelEntry, apexRdsCurrentCsn=apexRdsCurrentCsn, trapChassisRedundancyFirmwareVersionMismatch=trapChassisRedundancyFirmwareVersionMismatch, apexEventChassisRedunPrimaryForceFailover=apexEventChassisRedunPrimaryForceFailover, apexRdsEventEntry=apexRdsEventEntry, apexRdsIpAddr=apexRdsIpAddr, apexEasServerPhysInType=apexEasServerPhysInType, apexRpcReportAllSessions=apexRpcReportAllSessions, apexGbeFrameBufferHourlyEntry=apexGbeFrameBufferHourlyEntry, apexUdpMapMulticastUdp=apexUdpMapMulticastUdp, apexGbeStatusInputTsErrorTable=apexGbeStatusInputTsErrorTable, apexQamRfRedundStatusMismatch=apexQamRfRedundStatusMismatch, apexOutputTsConfApplyTable=apexOutputTsConfApplyTable, apexOutputProgramCciLevel=apexOutputProgramCciLevel, apexSessionControlConfigGeneral=apexSessionControlConfigGeneral, apexAsi=apexAsi, apexDepiControlStatusGeneral=apexDepiControlStatusGeneral, apexRdsSourceLookupSourceId=apexRdsSourceLookupSourceId, apexRtspConfQamChannelApplyEntry=apexRtspConfQamChannelApplyEntry, apexQamModuleInstalledCount=apexQamModuleInstalledCount, apexPsipConfigTimeDsMonthIn=apexPsipConfigTimeDsMonthIn, apexGbeConfInRedundAutoSwitchBack=apexGbeConfInRedundAutoSwitchBack, apexEnableGbeMptsRedundFailOver=apexEnableGbeMptsRedundFailOver, apexQamRfRedundConfigRemConnection=apexQamRfRedundConfigRemConnection, apexFastEnetPacketsPortNum=apexFastEnetPacketsPortNum, apexOutputTsUtilizationSamplePeriod=apexOutputTsUtilizationSamplePeriod, apexDepiControlStatusGeneralRejectedConnections=apexDepiControlStatusGeneralRejectedConnections, apexOutputProgramEncryptionStatus=apexOutputProgramEncryptionStatus, apexSesContConfTable=apexSesContConfTable, apexEasOutputTable=apexEasOutputTable, apexGbeInputTsAssignedCount=apexGbeInputTsAssignedCount, apexQamQrmRevRfPortNum=apexQamQrmRevRfPortNum, apexInputTsStatInputType=apexInputTsStatInputType, apexRdsEventPurchaseDuration=apexRdsEventPurchaseDuration, apexEventQamModuleUpgraded=apexEventQamModuleUpgraded, apexEasServerSourceIpAddress=apexEasServerSourceIpAddress, apexInputTsStatPriInputUdp=apexInputTsStatPriInputUdp, apexAlarmFanFault=apexAlarmFanFault, apexPsipStatusServiceSourceId=apexPsipStatusServiceSourceId, apexQamRfConfigNumChannelsEnabled=apexQamRfConfigNumChannelsEnabled, apexRtspConfGbeEdgeGroupNum=apexRtspConfGbeEdgeGroupNum, apexDepiControlStatusGeneralInvalidApplyText=apexDepiControlStatusGeneralInvalidApplyText, apexGbeSfpStatusVendorId=apexGbeSfpStatusVendorId, apexGbeInputDataTsBufferDepth=apexGbeInputDataTsBufferDepth, apexGbeFrameBufferHourlyOverflows=apexGbeFrameBufferHourlyOverflows, apexGbeSfpStatusGeneral=apexGbeSfpStatusGeneral, apexGbeConfigInputRedundancyGeneral=apexGbeConfigInputRedundancyGeneral, InputTsStateTYPE=InputTsStateTYPE, apexProgramBasedPmtOffset=apexProgramBasedPmtOffset, apexManualRouteTable=apexManualRouteTable, apexGbeStatInTsPriHighBitRateError=apexGbeStatInTsPriHighBitRateError, apexOutputTsEventTable=apexOutputTsEventTable, apexGbeConfigInputDataTsApplyIndex=apexGbeConfigInputDataTsApplyIndex, apexRdsEmmStatusGpsTime=apexRdsEmmStatusGpsTime, apexDtaOtsConfigEntry=apexDtaOtsConfigEntry, apexRpcSessionStatOutputProgramNum=apexRpcSessionStatOutputProgramNum, apexPsipConfigTimeDsHourIn=apexPsipConfigTimeDsHourIn, apexOutputTsUtilizOverflowAlarm=apexOutputTsUtilizOverflowAlarm, apexRdsConfig=apexRdsConfig, apexPsConfig=apexPsConfig, apexGbeOpenInputUdpPortGbeInterfaceNum=apexGbeOpenInputUdpPortGbeInterfaceNum, apexPidMapApplyEntry=apexPidMapApplyEntry, apexDataIp=apexDataIp, apexQamQrmRevStatHw=apexQamQrmRevStatHw, apexQamChanStatRfFreq=apexQamChanStatRfFreq, apexChassisRedundancyFailOverGigE12LinkLoss=apexChassisRedundancyFailOverGigE12LinkLoss, apexQrmFileRevisionTable=apexQrmFileRevisionTable, apexInsertPacketStatOutputTsNum=apexInsertPacketStatOutputTsNum, apexDtaConfigApplyChange=apexDtaConfigApplyChange, apexOutputTsStatusServicesInError=apexOutputTsStatusServicesInError, apexRpcQamStatEntry=apexRpcQamStatEntry, apexRdsConfigServerUrl=apexRdsConfigServerUrl, ApplyDataToDeviceTYPE=ApplyDataToDeviceTYPE, apexOutputTsEventOutputTsNum=apexOutputTsEventOutputTsNum, apexManRtePassThroughInputType=apexManRtePassThroughInputType, apexPsStatusVersionsPsNum=apexPsStatusVersionsPsNum)
mibBuilder.exportSymbols('APEX-MIB', apexOutputTsUtilMonSetAlarmDelay=apexOutputTsUtilMonSetAlarmDelay, apexRpcSessionStatSessionIdWord3=apexRpcSessionStatSessionIdWord3, apexQamQrmRevHw=apexQamQrmRevHw) |
class ResultObject:
def __init__(self, title: str, animeid: str):
self.title = title
self.animeid = animeid
class MediaInfoObject:
def __init__(self,
title: str,
year: int,
other_names: str,
season: str,
status: str,
genres: list,
episodes: int,
image_url: str,
summary: str):
self.title = title
self.year = year
self.other_names = other_names
self.season = season
self.status = status
self.genres = genres
self.episodes = episodes
self.image_url = image_url
self.summary = summary
class MediaLinksObject:
def __init__(self,
link_360p=None,
link_480p=None,
link_720p=None,
link_1080p=None,
link_hdp=None,
link_sdp=None,
link_streamsb=None,
link_xstreamcdn=None,
link_streamtape=None,
link_mixdrop=None,
link_mp4upload=None,
link_doodstream=None
):
self.link_360p = link_360p
self.link_480p = link_480p
self.link_720p = link_720p
self.link_1080p = link_1080p
self.link_hdp = link_hdp
self.link_sdp = link_sdp
self.link_streamsb = link_streamsb
self. link_xstreamcdn = link_xstreamcdn
self.link_streamtape = link_streamtape
self.link_mixdrop = link_mixdrop
self.link_mp4upload = link_mp4upload
self.link_doodstream = link_doodstream
| class Resultobject:
def __init__(self, title: str, animeid: str):
self.title = title
self.animeid = animeid
class Mediainfoobject:
def __init__(self, title: str, year: int, other_names: str, season: str, status: str, genres: list, episodes: int, image_url: str, summary: str):
self.title = title
self.year = year
self.other_names = other_names
self.season = season
self.status = status
self.genres = genres
self.episodes = episodes
self.image_url = image_url
self.summary = summary
class Medialinksobject:
def __init__(self, link_360p=None, link_480p=None, link_720p=None, link_1080p=None, link_hdp=None, link_sdp=None, link_streamsb=None, link_xstreamcdn=None, link_streamtape=None, link_mixdrop=None, link_mp4upload=None, link_doodstream=None):
self.link_360p = link_360p
self.link_480p = link_480p
self.link_720p = link_720p
self.link_1080p = link_1080p
self.link_hdp = link_hdp
self.link_sdp = link_sdp
self.link_streamsb = link_streamsb
self.link_xstreamcdn = link_xstreamcdn
self.link_streamtape = link_streamtape
self.link_mixdrop = link_mixdrop
self.link_mp4upload = link_mp4upload
self.link_doodstream = link_doodstream |
#!/usr/bin/env python3
processors = 0
with open('/proc/cpuinfo') as cpufile:
for line in cpufile:
if line.find('core id') != -1:
processors += 1
print("No. of processors are : %d " %processors)
| processors = 0
with open('/proc/cpuinfo') as cpufile:
for line in cpufile:
if line.find('core id') != -1:
processors += 1
print('No. of processors are : %d ' % processors) |
files = {
'amy':{'num_1':5, 'num_2':2},
'bob':{'num_1':6, 'num_2':8},
'candy':{'num_1':9, 'num_2':6},
'doby':{'num_1':1, 'num_2':5},
'john':{'num_1':7, 'num_2':1},
}
for name,num in files.items():
print('\nName: ' + name)
favo_num = num['num_1'] + num['num_2']
print("Number is " + str(favo_num) + '.') | files = {'amy': {'num_1': 5, 'num_2': 2}, 'bob': {'num_1': 6, 'num_2': 8}, 'candy': {'num_1': 9, 'num_2': 6}, 'doby': {'num_1': 1, 'num_2': 5}, 'john': {'num_1': 7, 'num_2': 1}}
for (name, num) in files.items():
print('\nName: ' + name)
favo_num = num['num_1'] + num['num_2']
print('Number is ' + str(favo_num) + '.') |
"""
Exception Payloads
-> Exceptions can carry payload data.
-> Most exceptions accept a single string in their constructor call.
-> The most common exception you'll likely raise is ValueError.
-> Most exception payloads are strings containing a helpful message.
"""
| """
Exception Payloads
-> Exceptions can carry payload data.
-> Most exceptions accept a single string in their constructor call.
-> The most common exception you'll likely raise is ValueError.
-> Most exception payloads are strings containing a helpful message.
""" |
class Solution:
def getLastMoment(self, n: int, left: List[int], right: List[int]) -> int:
left=sorted(left)
right=sorted(right)
answer=0
if len(right)>0:
answer=max(answer, n-right[0])
if len(left)>0:
answer=max(answer, left[-1])
return answer | class Solution:
def get_last_moment(self, n: int, left: List[int], right: List[int]) -> int:
left = sorted(left)
right = sorted(right)
answer = 0
if len(right) > 0:
answer = max(answer, n - right[0])
if len(left) > 0:
answer = max(answer, left[-1])
return answer |
# -*- coding: utf-8 -*-
description = 'Sampletable complete'
includes = ['system']
group = 'lowlevel'
devices = dict(
stt_step = device('nicos.devices.generic.VirtualMotor',
unit = 'deg',
abslimits = (-100, 130),
speed = 4,
lowlevel = True,
),
stt_enc = device('nicos.devices.generic.VirtualCoder',
motor = 'stt_step',
unit = 'deg',
lowlevel = True,
),
stt = device('nicos.devices.generic.Axis',
description = 'sample two theta',
motor = 'stt_step',
coder = 'stt_enc',
precision = 0.025,
# offset = -0.925,
offset = -1.045,
),
sth_st_step = device('nicos.devices.generic.VirtualMotor',
unit = 'deg',
abslimits = (1, 359),
speed = 4,
lowlevel = True,
),
sth_st_enc = device('nicos.devices.generic.VirtualCoder',
motor = 'sth_st_step',
unit = 'deg',
lowlevel = True,
),
sth_st = device('nicos.devices.generic.Axis',
description = 'sth mounted on sampletable',
motor = 'sth_st_step',
coder = 'sth_st_enc',
precision = 0.02,
),
sgx_step = device('nicos.devices.generic.VirtualMotor',
unit = 'deg',
abslimits = (-15.1, 15.1),
speed = 1,
lowlevel = True,
),
sgx_enc = device('nicos.devices.generic.VirtualCoder',
motor = 'sgx_step',
unit = 'deg',
lowlevel = True,
),
sgx = device('nicos.devices.generic.Axis',
description = 'sample goniometer around X',
motor = 'sgx_step',
coder = 'sgx_enc',
precision = 0.05,
# rotary = True,
),
sgy_step = device('nicos.devices.generic.VirtualMotor',
unit = 'deg',
abslimits = (-15.1, 15.1),
speed = 1,
lowlevel = True,
),
sgy_enc = device('nicos.devices.generic.VirtualCoder',
motor = 'sgy_step',
unit = 'deg',
lowlevel = True,
),
sgy = device('nicos.devices.generic.Axis',
description = 'sample goniometer around Y',
motor = 'sgy_step',
coder = 'sgy_enc',
precision = 0.05,
# rotary = True,
),
vg1 = device('nicos.devices.tas.VirtualGonio',
description = 'Gonio along orient1 reflex',
cell = 'Sample',
gx = 'sgx',
gy = 'sgy',
axis = 1,
unit = 'deg',
),
vg2 = device('nicos.devices.tas.VirtualGonio',
description = 'Gonio along orient2 reflex',
cell = 'Sample',
gx = 'sgx',
gy = 'sgy',
axis = 2,
unit = 'deg',
),
stx_step = device('nicos.devices.generic.VirtualMotor',
unit = 'mm',
abslimits = (-20, 20),
speed = 1,
lowlevel = True,
),
stx_poti = device('nicos.devices.generic.VirtualCoder',
motor = 'stx_step',
unit = 'mm',
lowlevel = True,
),
stx = device('nicos.devices.generic.Axis',
description = 'sample translation along X',
motor = 'stx_step',
obs = ['stx_poti'],
precision = 0.05,
fmtstr = '%.1f',
),
sty_step = device('nicos.devices.generic.VirtualMotor',
unit = 'mm',
abslimits = (-15, 15),
speed = 1,
lowlevel = True,
),
sty_poti = device('nicos.devices.generic.VirtualCoder',
motor = 'sty_step',
unit = 'mm',
lowlevel = True,
),
sty = device('nicos.devices.generic.Axis',
description = 'sample translation along Y',
motor = 'sty_step',
obs = ['sty_poti'],
precision = 0.05,
fmtstr = '%.1f',
),
stz_step = device('nicos.devices.generic.VirtualMotor',
unit = 'mm',
abslimits = (-20, 20),
userlimits = (-15, 15),
speed = 0.5,
lowlevel = True,
),
stz = device('nicos.devices.generic.Axis',
description = 'vertical sample translation',
motor = 'stz_step',
precision = 0.1,
fmtstr = '%.3f',
),
)
alias_config = {
'sth': {'sth_st': 10},
}
| description = 'Sampletable complete'
includes = ['system']
group = 'lowlevel'
devices = dict(stt_step=device('nicos.devices.generic.VirtualMotor', unit='deg', abslimits=(-100, 130), speed=4, lowlevel=True), stt_enc=device('nicos.devices.generic.VirtualCoder', motor='stt_step', unit='deg', lowlevel=True), stt=device('nicos.devices.generic.Axis', description='sample two theta', motor='stt_step', coder='stt_enc', precision=0.025, offset=-1.045), sth_st_step=device('nicos.devices.generic.VirtualMotor', unit='deg', abslimits=(1, 359), speed=4, lowlevel=True), sth_st_enc=device('nicos.devices.generic.VirtualCoder', motor='sth_st_step', unit='deg', lowlevel=True), sth_st=device('nicos.devices.generic.Axis', description='sth mounted on sampletable', motor='sth_st_step', coder='sth_st_enc', precision=0.02), sgx_step=device('nicos.devices.generic.VirtualMotor', unit='deg', abslimits=(-15.1, 15.1), speed=1, lowlevel=True), sgx_enc=device('nicos.devices.generic.VirtualCoder', motor='sgx_step', unit='deg', lowlevel=True), sgx=device('nicos.devices.generic.Axis', description='sample goniometer around X', motor='sgx_step', coder='sgx_enc', precision=0.05), sgy_step=device('nicos.devices.generic.VirtualMotor', unit='deg', abslimits=(-15.1, 15.1), speed=1, lowlevel=True), sgy_enc=device('nicos.devices.generic.VirtualCoder', motor='sgy_step', unit='deg', lowlevel=True), sgy=device('nicos.devices.generic.Axis', description='sample goniometer around Y', motor='sgy_step', coder='sgy_enc', precision=0.05), vg1=device('nicos.devices.tas.VirtualGonio', description='Gonio along orient1 reflex', cell='Sample', gx='sgx', gy='sgy', axis=1, unit='deg'), vg2=device('nicos.devices.tas.VirtualGonio', description='Gonio along orient2 reflex', cell='Sample', gx='sgx', gy='sgy', axis=2, unit='deg'), stx_step=device('nicos.devices.generic.VirtualMotor', unit='mm', abslimits=(-20, 20), speed=1, lowlevel=True), stx_poti=device('nicos.devices.generic.VirtualCoder', motor='stx_step', unit='mm', lowlevel=True), stx=device('nicos.devices.generic.Axis', description='sample translation along X', motor='stx_step', obs=['stx_poti'], precision=0.05, fmtstr='%.1f'), sty_step=device('nicos.devices.generic.VirtualMotor', unit='mm', abslimits=(-15, 15), speed=1, lowlevel=True), sty_poti=device('nicos.devices.generic.VirtualCoder', motor='sty_step', unit='mm', lowlevel=True), sty=device('nicos.devices.generic.Axis', description='sample translation along Y', motor='sty_step', obs=['sty_poti'], precision=0.05, fmtstr='%.1f'), stz_step=device('nicos.devices.generic.VirtualMotor', unit='mm', abslimits=(-20, 20), userlimits=(-15, 15), speed=0.5, lowlevel=True), stz=device('nicos.devices.generic.Axis', description='vertical sample translation', motor='stz_step', precision=0.1, fmtstr='%.3f'))
alias_config = {'sth': {'sth_st': 10}} |
#Variables for drop, create, insert, and selection statements
# DROP TABLES
songplay_table_drop = "DROP TABLE IF EXISTS songplays"
user_table_drop = "DROP TABLE IF EXISTS users"
song_table_drop = "DROP TABLE IF EXISTS songs"
artist_table_drop = "DROP TABLE IF EXISTS artists"
time_table_drop = "DROP TABLE IF EXISTS time"
# CREATE TABLES
songplay_table_create = ("""CREATE TABLE IF NOT EXISTS songplays(
songplay_id serial PRIMARY KEY,
start_time bigint NOT NULL,
user_id int NOT NULL,
level text,
song_id text,
artist_id text,
session_id int,
location text,
user_agent text)""")
user_table_create = ("""CREATE TABLE IF NOT EXISTS users(
user_id text PRIMARY KEY,
first_name text NOT NULL,
last_name text NOT NULL,
gender character,
level text)""")
song_table_create = ("""CREATE TABLE IF NOT EXISTS songs(
song_id text PRIMARY KEY,
title text NOT NULL,
artist_id text NOT NULL,
year int,
duration float)""")
artist_table_create = ("""CREATE TABLE IF NOT EXISTS artists(
artist_id text PRIMARY KEY,
name text NOT NULL,
location text,
latitude numeric,
longitude numeric)""")
time_table_create = ("""CREATE TABLE IF NOT EXISTS time(
start_time bigint PRIMARY KEY,
hour int,
day int,
week int,
month int,
year int,
weekday int)""")
# INSERT RECORDS
songplay_table_insert = ("""INSERT INTO songplays(
start_time,
user_id,
level,
song_id,
artist_id,
session_id,
location,
user_agent)
VALUES (%s, %s, %s, %s, %s, %s, %s, %s)""")
user_table_insert = ("""INSERT INTO users(
user_id,
first_name,
last_name,
gender,
level)
VALUES (%s, %s, %s, %s, %s)
ON CONFLICT (user_id) DO UPDATE SET level=EXCLUDED.level""")
song_table_insert = ("""INSERT INTO songs(
song_id,
title,
artist_id,
year,
duration)
VALUES (%s, %s, %s, %s, %s)
ON CONFLICT DO NOTHING""")
artist_table_insert = ("""INSERT INTO artists(
artist_id,
name,
location,
latitude,
longitude)
VALUES (%s, %s, %s, %s, %s)
ON CONFLICT DO NOTHING""")
time_table_insert = ("""INSERT INTO time(
start_time,
hour,
day,
week,
month,
year,
weekday)
VALUES (%s, %s, %s, %s, %s, %s, %s)
ON CONFLICT DO NOTHING""")
# FIND SONGS
song_select = ("""SELECT song_id, artists.artist_id
FROM songs
JOIN artists
ON songs.artist_id = artists.artist_id
WHERE (songs.title = %s
AND artists.name = %s
AND songs.duration = %s)""")
# QUERY LISTS
create_table_queries = [songplay_table_create, user_table_create, song_table_create, artist_table_create, time_table_create]
drop_table_queries = [songplay_table_drop, user_table_drop, song_table_drop, artist_table_drop, time_table_drop] | songplay_table_drop = 'DROP TABLE IF EXISTS songplays'
user_table_drop = 'DROP TABLE IF EXISTS users'
song_table_drop = 'DROP TABLE IF EXISTS songs'
artist_table_drop = 'DROP TABLE IF EXISTS artists'
time_table_drop = 'DROP TABLE IF EXISTS time'
songplay_table_create = 'CREATE TABLE IF NOT EXISTS songplays(\n songplay_id serial PRIMARY KEY,\n start_time bigint NOT NULL,\n user_id int NOT NULL,\n level text,\n song_id text,\n artist_id text,\n session_id int,\n location text,\n user_agent text)'
user_table_create = 'CREATE TABLE IF NOT EXISTS users(\n user_id text PRIMARY KEY,\n first_name text NOT NULL,\n last_name text NOT NULL,\n gender character,\n level text)'
song_table_create = 'CREATE TABLE IF NOT EXISTS songs(\n song_id text PRIMARY KEY,\n title text NOT NULL,\n artist_id text NOT NULL,\n year int,\n duration float)'
artist_table_create = 'CREATE TABLE IF NOT EXISTS artists(\n artist_id text PRIMARY KEY,\n name text NOT NULL,\n location text,\n latitude numeric,\n longitude numeric)'
time_table_create = 'CREATE TABLE IF NOT EXISTS time(\n start_time bigint PRIMARY KEY,\n hour int,\n day int,\n week int,\n month int,\n year int,\n weekday int)'
songplay_table_insert = 'INSERT INTO songplays(\n start_time,\n user_id,\n level,\n song_id,\n artist_id,\n session_id,\n location,\n user_agent)\n VALUES (%s, %s, %s, %s, %s, %s, %s, %s)'
user_table_insert = 'INSERT INTO users(\n user_id,\n first_name,\n last_name,\n gender,\n level)\n VALUES (%s, %s, %s, %s, %s)\n ON CONFLICT (user_id) DO UPDATE SET level=EXCLUDED.level'
song_table_insert = 'INSERT INTO songs(\n song_id,\n title,\n artist_id,\n year,\n duration)\n VALUES (%s, %s, %s, %s, %s)\n ON CONFLICT DO NOTHING'
artist_table_insert = 'INSERT INTO artists(\n artist_id,\n name,\n location,\n latitude,\n longitude)\n VALUES (%s, %s, %s, %s, %s)\n ON CONFLICT DO NOTHING'
time_table_insert = 'INSERT INTO time(\n start_time,\n hour,\n day,\n week,\n month,\n year,\n weekday)\n VALUES (%s, %s, %s, %s, %s, %s, %s)\n ON CONFLICT DO NOTHING'
song_select = 'SELECT song_id, artists.artist_id \n FROM songs \n JOIN artists \n ON songs.artist_id = artists.artist_id \n WHERE (songs.title = %s \n AND artists.name = %s \n AND songs.duration = %s)'
create_table_queries = [songplay_table_create, user_table_create, song_table_create, artist_table_create, time_table_create]
drop_table_queries = [songplay_table_drop, user_table_drop, song_table_drop, artist_table_drop, time_table_drop] |
"""
0071. Simplify Path
Medium
Given a string path, which is an absolute path (starting with a slash '/') to a file or directory in a Unix-style file system, convert it to the simplified canonical path.
In a Unix-style file system, a period '.' refers to the current directory, a double period '..' refers to the directory up a level, and any multiple consecutive slashes (i.e. '//') are treated as a single slash '/'. For this problem, any other format of periods such as '...' are treated as file/directory names.
The canonical path should have the following format:
The path starts with a single slash '/'.
Any two directories are separated by a single slash '/'.
The path does not end with a trailing '/'.
The path only contains the directories on the path from the root directory to the target file or directory (i.e., no period '.' or double period '..')
Return the simplified canonical path.
Example 1:
Input: path = "/home/"
Output: "/home"
Explanation: Note that there is no trailing slash after the last directory name.
Example 2:
Input: path = "/../"
Output: "/"
Explanation: Going one level up from the root directory is a no-op, as the root level is the highest level you can go.
Example 3:
Input: path = "/home//foo/"
Output: "/home/foo"
Explanation: In the canonical path, multiple consecutive slashes are replaced by a single one.
Example 4:
Input: path = "/a/./b/../../c/"
Output: "/c"
Constraints:
1 <= path.length <= 3000
path consists of English letters, digits, period '.', slash '/' or '_'.
path is a valid absolute Unix path.
"""
class Solution:
def simplifyPath(self, path: str) -> str:
stack = []
for token in path.split('/'):
if token in ('','.'):
pass
elif token == '..':
if stack:
stack.pop()
else:
stack.append(token)
return '/'+ '/'.join(stack) | """
0071. Simplify Path
Medium
Given a string path, which is an absolute path (starting with a slash '/') to a file or directory in a Unix-style file system, convert it to the simplified canonical path.
In a Unix-style file system, a period '.' refers to the current directory, a double period '..' refers to the directory up a level, and any multiple consecutive slashes (i.e. '//') are treated as a single slash '/'. For this problem, any other format of periods such as '...' are treated as file/directory names.
The canonical path should have the following format:
The path starts with a single slash '/'.
Any two directories are separated by a single slash '/'.
The path does not end with a trailing '/'.
The path only contains the directories on the path from the root directory to the target file or directory (i.e., no period '.' or double period '..')
Return the simplified canonical path.
Example 1:
Input: path = "/home/"
Output: "/home"
Explanation: Note that there is no trailing slash after the last directory name.
Example 2:
Input: path = "/../"
Output: "/"
Explanation: Going one level up from the root directory is a no-op, as the root level is the highest level you can go.
Example 3:
Input: path = "/home//foo/"
Output: "/home/foo"
Explanation: In the canonical path, multiple consecutive slashes are replaced by a single one.
Example 4:
Input: path = "/a/./b/../../c/"
Output: "/c"
Constraints:
1 <= path.length <= 3000
path consists of English letters, digits, period '.', slash '/' or '_'.
path is a valid absolute Unix path.
"""
class Solution:
def simplify_path(self, path: str) -> str:
stack = []
for token in path.split('/'):
if token in ('', '.'):
pass
elif token == '..':
if stack:
stack.pop()
else:
stack.append(token)
return '/' + '/'.join(stack) |
# Integers in Python can be as big as the bytes in your machine's memory. There is no limit in size as there is:
# 2^31-1 (c++ int) or 2^63-1 (C++ long long int).
#
# As we know, the result of a^b grows really fast with increasing b.
#
# Let's do some calculations on very large integers.
#
# Task
# Read four numbers, a, b, c, and d, and print the result of a^b + c^d.
a = int(input())
b = int(input())
c = int(input())
d = int(input())
print(pow(a, b) + pow(c, d))
| a = int(input())
b = int(input())
c = int(input())
d = int(input())
print(pow(a, b) + pow(c, d)) |
class Node:
def __init__(self, value, next = None):
self.value = value
self.next = next
class LinkedQ:
def __init__(self):
self.__first = None
self.__last = None
def __str__(self):
end_of_row = ""
while not self.isEmpty():
char = self.dequeue()
end_of_row += char
return end_of_row
def enqueue(self, x):
"""
Adds a value to queue.
"""
new = Node(x)
if self.isEmpty():
self.__first = new
else:
self.__last.next = new
self.__last = new
def dequeue(self):
"""
Removes a value from the queue
:return: The removed value
"""
if not self.isEmpty():
x = self.__first.value
self.__first = self.__first.next
return x
def isEmpty(self):
"""
Checks if the queue is isEmpt
:return: Boolean variable. True if the queue is empty. False if not.
"""
return self.__first == None
def peek(self):
x = None
if self.__first != None:
x = self.__first.value
return x
| class Node:
def __init__(self, value, next=None):
self.value = value
self.next = next
class Linkedq:
def __init__(self):
self.__first = None
self.__last = None
def __str__(self):
end_of_row = ''
while not self.isEmpty():
char = self.dequeue()
end_of_row += char
return end_of_row
def enqueue(self, x):
"""
Adds a value to queue.
"""
new = node(x)
if self.isEmpty():
self.__first = new
else:
self.__last.next = new
self.__last = new
def dequeue(self):
"""
Removes a value from the queue
:return: The removed value
"""
if not self.isEmpty():
x = self.__first.value
self.__first = self.__first.next
return x
def is_empty(self):
"""
Checks if the queue is isEmpt
:return: Boolean variable. True if the queue is empty. False if not.
"""
return self.__first == None
def peek(self):
x = None
if self.__first != None:
x = self.__first.value
return x |
{
'targets': [
{
'target_name': 'webaudio',
'sources': [
'main.cpp',
"<!@(node -p \"require('fs').readdirSync('./lib/src').map(f=>'lib/src/'+f).join(' ')\")"
],
'include_dirs': [
"<!(node -e \"require('nan')\")",
'<(module_root_dir)/lib/include',
'<(module_root_dir)/labsound/include',
'<(module_root_dir)/labsound/third_party',
"<!(node -e \"console.log(require.resolve('native-video-deps').slice(0, -9) + '/include')\")"
],
'conditions': [
['OS=="linux"', {
'library_dirs': [
'<(module_root_dir)/labsound/bin',
"<!(node -e \"console.log(require.resolve('native-video-deps').slice(0, -9) + '/lib/linux')\")",
],
'libraries': [
'-lLabSound',
# '-ljack',
'-lasound',
# '-lpulse',
# '-lpulse-simple',
'-lavformat',
'-lavcodec',
'-lavutil',
'-lswscale',
'-lswresample',
],
'ldflags': [
'-Wl,-Bsymbolic',
],
}],
['OS=="win"', {
'library_dirs': [
'<(module_root_dir)/labsound/build/x64/Release',
"<!(node -e \"console.log(require.resolve('native-video-deps').slice(0, -9) + '/lib/win')\")",
],
'libraries': [
'LabSound.lib',
'avformat.lib',
'avcodec.lib',
'avutil.lib',
'swscale.lib',
'swresample.lib',
],
'copies': [
{
'destination': '<(module_root_dir)/build/Release/',
'files': [
"<!(node -e \"console.log(require.resolve('native-video-deps').slice(0, -9) + '/lib/win/avformat-58.dll')\")",
"<!(node -e \"console.log(require.resolve('native-video-deps').slice(0, -9) + '/lib/win/avcodec-58.dll')\")",
"<!(node -e \"console.log(require.resolve('native-video-deps').slice(0, -9) + '/lib/win/avutil-56.dll')\")",
"<!(node -e \"console.log(require.resolve('native-video-deps').slice(0, -9) + '/lib/win/swscale-5.dll')\")",
"<!(node -e \"console.log(require.resolve('native-video-deps').slice(0, -9) + '/lib/win/swresample-3.dll')\")",
]
}
],
}],
['OS=="mac"', {
'library_dirs': [
'<(module_root_dir)/labsound/bin',
"<!(node -e \"console.log(require.resolve('native-video-deps').slice(0, -9) + '/lib/macos')\")",
],
'libraries': [
'-framework Cocoa',
'-framework Accelerate',
'-framework CoreAudio',
'-framework AudioUnit',
'-framework AudioToolbox',
'-llabsound',
'-lavcodec',
'-lavformat',
'-lswscale',
'-lavresample',
'-lavutil'
],
'library_dirs': [
'<(module_root_dir)/labsound/bin',
],
}],
],
}
]
}
| {'targets': [{'target_name': 'webaudio', 'sources': ['main.cpp', '<!@(node -p "require(\'fs\').readdirSync(\'./lib/src\').map(f=>\'lib/src/\'+f).join(\' \')")'], 'include_dirs': ['<!(node -e "require(\'nan\')")', '<(module_root_dir)/lib/include', '<(module_root_dir)/labsound/include', '<(module_root_dir)/labsound/third_party', '<!(node -e "console.log(require.resolve(\'native-video-deps\').slice(0, -9) + \'/include\')")'], 'conditions': [['OS=="linux"', {'library_dirs': ['<(module_root_dir)/labsound/bin', '<!(node -e "console.log(require.resolve(\'native-video-deps\').slice(0, -9) + \'/lib/linux\')")'], 'libraries': ['-lLabSound', '-lasound', '-lavformat', '-lavcodec', '-lavutil', '-lswscale', '-lswresample'], 'ldflags': ['-Wl,-Bsymbolic']}], ['OS=="win"', {'library_dirs': ['<(module_root_dir)/labsound/build/x64/Release', '<!(node -e "console.log(require.resolve(\'native-video-deps\').slice(0, -9) + \'/lib/win\')")'], 'libraries': ['LabSound.lib', 'avformat.lib', 'avcodec.lib', 'avutil.lib', 'swscale.lib', 'swresample.lib'], 'copies': [{'destination': '<(module_root_dir)/build/Release/', 'files': ['<!(node -e "console.log(require.resolve(\'native-video-deps\').slice(0, -9) + \'/lib/win/avformat-58.dll\')")', '<!(node -e "console.log(require.resolve(\'native-video-deps\').slice(0, -9) + \'/lib/win/avcodec-58.dll\')")', '<!(node -e "console.log(require.resolve(\'native-video-deps\').slice(0, -9) + \'/lib/win/avutil-56.dll\')")', '<!(node -e "console.log(require.resolve(\'native-video-deps\').slice(0, -9) + \'/lib/win/swscale-5.dll\')")', '<!(node -e "console.log(require.resolve(\'native-video-deps\').slice(0, -9) + \'/lib/win/swresample-3.dll\')")']}]}], ['OS=="mac"', {'library_dirs': ['<(module_root_dir)/labsound/bin', '<!(node -e "console.log(require.resolve(\'native-video-deps\').slice(0, -9) + \'/lib/macos\')")'], 'libraries': ['-framework Cocoa', '-framework Accelerate', '-framework CoreAudio', '-framework AudioUnit', '-framework AudioToolbox', '-llabsound', '-lavcodec', '-lavformat', '-lswscale', '-lavresample', '-lavutil'], 'library_dirs': ['<(module_root_dir)/labsound/bin']}]]}]} |
def isPalind_string(str):
temp = str
if str[::-1] == temp:
return True
else:
return False
| def is_palind_string(str):
temp = str
if str[::-1] == temp:
return True
else:
return False |
class Degree:
def __init__(self,
title,
subject,
institution,
year):
self.title = title;
self.subject = subject;
self.institution = institution;
self.year = year;
bs = Degree(title = "B.S.",
subject = "Mathematics & Physics",
institution = "University of Arizona",
year = 2016);
ms = Degree(title = "M.S.",
subject = "Applied Mathematics",
institution = "University of Arizona",
year = 2021);
phd = Degree(title = "Ph.D.",
subject = "Applied Mathematics",
institution = "University of Arizona",
year = 2024);
degrees = [phd, ms, bs];
| class Degree:
def __init__(self, title, subject, institution, year):
self.title = title
self.subject = subject
self.institution = institution
self.year = year
bs = degree(title='B.S.', subject='Mathematics & Physics', institution='University of Arizona', year=2016)
ms = degree(title='M.S.', subject='Applied Mathematics', institution='University of Arizona', year=2021)
phd = degree(title='Ph.D.', subject='Applied Mathematics', institution='University of Arizona', year=2024)
degrees = [phd, ms, bs] |
"""
This module just defines the current jaraf version.
"""
VERSION = "0.2.2"
| """
This module just defines the current jaraf version.
"""
version = '0.2.2' |
class Pet:
def __init__(self, name):
self.name = 'unknown'
self._age = 10
def speak(self):
self.bark()
def _reset_age(self):
self._age = 10
class Dog(Pet):
def __init__(self):
Pet.__init__(self,'')
def bark(self):
print ('barking')
def set_age(self, new_age):
print(self._age)
self._age = new_age
print(self._age)
self._reset_age()
print(self._age)
my_dog = Dog()
my_dog.speak()
my_dog.set_age(22)
my_dog._reset_age()
| class Pet:
def __init__(self, name):
self.name = 'unknown'
self._age = 10
def speak(self):
self.bark()
def _reset_age(self):
self._age = 10
class Dog(Pet):
def __init__(self):
Pet.__init__(self, '')
def bark(self):
print('barking')
def set_age(self, new_age):
print(self._age)
self._age = new_age
print(self._age)
self._reset_age()
print(self._age)
my_dog = dog()
my_dog.speak()
my_dog.set_age(22)
my_dog._reset_age() |
__author__ = "Gawen Arab, Wes Mason"
__copyright__ = "Copyright 2012, Gawen Arab"
__credits__ = ["Gawen Arab", "Wes Mason"]
__license__ = "Apache License, Version 2.0"
__version__ = "1.0.2"
__maintainer__ = "Gawen Arab"
__email__ = "g@wenarab.com"
__status__ = "Production"
| __author__ = 'Gawen Arab, Wes Mason'
__copyright__ = 'Copyright 2012, Gawen Arab'
__credits__ = ['Gawen Arab', 'Wes Mason']
__license__ = 'Apache License, Version 2.0'
__version__ = '1.0.2'
__maintainer__ = 'Gawen Arab'
__email__ = 'g@wenarab.com'
__status__ = 'Production' |
# -*- coding: utf-8 -*-
"""Storage time range objects."""
class TimeRange(object):
"""A class that defines a date and time range.
The timestamp are integers containing the number of micro seconds
since January 1, 1970, 00:00:00 UTC.
Attributes:
start_timestamp: integer containing the timestamp that marks
the start of the range.
end_timestamp: integer containing the timestamp that marks
the end of the range.
"""
def __init__(self, start_timestamp, end_timestamp):
"""Initializes a date and time range object.
The timestamp are integers containing the number of micro seconds
since January 1, 1970, 00:00:00 UTC.
Args:
start_timestamp: integer containing the timestamp that marks
the start of the range.
end_timestamp: integer containing the timestamp that marks
the end of the range.
Raises:
ValueError: If the time range is badly formed.
"""
if start_timestamp is None or end_timestamp is None:
raise ValueError(
u'Time range must have either a start and an end timestamp.')
if start_timestamp > end_timestamp:
raise ValueError(
u'Invalid start must be earlier than end timestamp.')
super(TimeRange, self).__init__()
self.end_timestamp = end_timestamp
self.start_timestamp = start_timestamp
| """Storage time range objects."""
class Timerange(object):
"""A class that defines a date and time range.
The timestamp are integers containing the number of micro seconds
since January 1, 1970, 00:00:00 UTC.
Attributes:
start_timestamp: integer containing the timestamp that marks
the start of the range.
end_timestamp: integer containing the timestamp that marks
the end of the range.
"""
def __init__(self, start_timestamp, end_timestamp):
"""Initializes a date and time range object.
The timestamp are integers containing the number of micro seconds
since January 1, 1970, 00:00:00 UTC.
Args:
start_timestamp: integer containing the timestamp that marks
the start of the range.
end_timestamp: integer containing the timestamp that marks
the end of the range.
Raises:
ValueError: If the time range is badly formed.
"""
if start_timestamp is None or end_timestamp is None:
raise value_error(u'Time range must have either a start and an end timestamp.')
if start_timestamp > end_timestamp:
raise value_error(u'Invalid start must be earlier than end timestamp.')
super(TimeRange, self).__init__()
self.end_timestamp = end_timestamp
self.start_timestamp = start_timestamp |
sLabNew = {
"cdc": "cdc",
"cnic": "cnic",
"melb": "vidrl",
"vidrl": "vidrl",
"niid": "niid",
"nimr": "crick",
"crick": "crick",
}
sLabOld = {
"cdc": "cdc",
"cnic": "cnic",
"melb": "melb",
"vidrl": "melb",
"niid": "niid",
"nimr": "nimr",
"crick": "nimr",
}
sLabDisplayName = {
"cdc": "CDC",
"cnic": "CNIC",
"nimr": "Crick",
"crick": "Crick",
"niid": "NIID",
"melb": "VIDRL",
"vidrl": "VIDRL",
"all": "All labs"
}
def lab_new(lab):
return sLabNew[lab.lower()]
def lab_old(lab):
return sLabOld[lab.lower()]
def lab_display_name(lab):
return sLabDisplayName[lab.lower()]
# ======================================================================
### Local Variables:
### eval: (if (fboundp 'eu-rename-buffer) (eu-rename-buffer))
### End:
| s_lab_new = {'cdc': 'cdc', 'cnic': 'cnic', 'melb': 'vidrl', 'vidrl': 'vidrl', 'niid': 'niid', 'nimr': 'crick', 'crick': 'crick'}
s_lab_old = {'cdc': 'cdc', 'cnic': 'cnic', 'melb': 'melb', 'vidrl': 'melb', 'niid': 'niid', 'nimr': 'nimr', 'crick': 'nimr'}
s_lab_display_name = {'cdc': 'CDC', 'cnic': 'CNIC', 'nimr': 'Crick', 'crick': 'Crick', 'niid': 'NIID', 'melb': 'VIDRL', 'vidrl': 'VIDRL', 'all': 'All labs'}
def lab_new(lab):
return sLabNew[lab.lower()]
def lab_old(lab):
return sLabOld[lab.lower()]
def lab_display_name(lab):
return sLabDisplayName[lab.lower()] |
# -*- coding: utf-8 -*-
host = "127.0.0.1";
port = 3306;
user = "root";
pwd = "root";
db = "test";
charset = "utf8";
if __name__ == '__main__':
pass;
#end | host = '127.0.0.1'
port = 3306
user = 'root'
pwd = 'root'
db = 'test'
charset = 'utf8'
if __name__ == '__main__':
pass |
"""General utilities"""
class BadRequestError(Exception):
pass
class NotAuthorizedError(Exception):
pass | """General utilities"""
class Badrequesterror(Exception):
pass
class Notauthorizederror(Exception):
pass |
# 2020.03.25
# Problem Statement:
# https://leetcode.com/problems/sort-list/
# I hate linked list!
# https://leetcode.com/problems/sort-list/discuss/46714/Java-merge-sort-solution
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def sortList(self, head: ListNode) -> ListNode:
# linked list implementation of merge sort
# check base case
if not head or not head.next:
return head
# split
second_half, ptr, prev = head, head, None
while ptr and ptr.next:
prev = second_half
second_half = second_half.next
ptr = ptr.next.next
prev.next = None
# sort
left_half = self.sortList(head)
right_half = self.sortList(second_half)
# merge
# right_half will have equal nodes or 1 more nodes than left_half (doesn't really matter here)
return self.merge(left_half, right_half)
def merge(self, list_1, list_2):
# initialize pointers and dummy node
ptr_1, ptr_2 = list_1, list_2
dummy = ListNode(-inf, list_2)
current = dummy
while ptr_1 and ptr_2:
# pick the node from list_1 as the next node
if ptr_1.val <= ptr_2.val:
current.next = ptr_1
ptr_1 = ptr_1.next
# pick the node from list_2 as the next node
else:
current.next = ptr_2
ptr_2 = ptr_2.next
current = current.next
# connect the rest nodes
if ptr_1:
current.next = ptr_1
elif ptr_2:
current.next = ptr_2
return dummy.next
| class Solution:
def sort_list(self, head: ListNode) -> ListNode:
if not head or not head.next:
return head
(second_half, ptr, prev) = (head, head, None)
while ptr and ptr.next:
prev = second_half
second_half = second_half.next
ptr = ptr.next.next
prev.next = None
left_half = self.sortList(head)
right_half = self.sortList(second_half)
return self.merge(left_half, right_half)
def merge(self, list_1, list_2):
(ptr_1, ptr_2) = (list_1, list_2)
dummy = list_node(-inf, list_2)
current = dummy
while ptr_1 and ptr_2:
if ptr_1.val <= ptr_2.val:
current.next = ptr_1
ptr_1 = ptr_1.next
else:
current.next = ptr_2
ptr_2 = ptr_2.next
current = current.next
if ptr_1:
current.next = ptr_1
elif ptr_2:
current.next = ptr_2
return dummy.next |
# GYP file to build pdfviewer.
#
# To build on Linux:
# ./gyp_skia pdfviewer.gyp && make pdfviewer
#
{
'includes': [
'apptype_console.gypi',
],
'targets': [
{
'target_name': 'libpdfviewer',
'type': 'static_library',
'sources': [
'../experimental/PdfViewer/SkPdfBasics.cpp',
'../experimental/PdfViewer/SkPdfFont.cpp',
'../experimental/PdfViewer/SkPdfRenderer.cpp',
'../experimental/PdfViewer/SkPdfUtils.cpp',
#'../experimental/PdfViewer/SkPdfNYI.cpp',
'../experimental/PdfViewer/SkTrackDevice.cpp',
'../experimental/PdfViewer/SkTracker.cpp',
'../experimental/PdfViewer/pdfparser/native/SkPdfObject.cpp',
'../experimental/PdfViewer/pdfparser/native/SkPdfNativeTokenizer.cpp',
'../experimental/PdfViewer/pdfparser/native/SkNativeParsedPDF.cpp',
'<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfMapper_autogen.cpp',
'<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfHeaders_autogen.cpp',
],
'copies': [
{
'files': [
'../experimental/PdfViewer/datatypes.py',
'../experimental/PdfViewer/generate_code.py',
],
'destination': '<(SHARED_INTERMEDIATE_DIR)',
},
],
'actions': [
{
'action_name': 'spec2def',
'inputs': [
'../experimental/PdfViewer/spec2def.py',
'../experimental/PdfViewer/PdfReference-okular-1.txt',
],
'outputs': [
'<(SHARED_INTERMEDIATE_DIR)/pdfspec_autogen.py',
],
'action': ['python', '../experimental/PdfViewer/spec2def.py', '../experimental/PdfViewer/PdfReference-okular-1.txt', '<(SHARED_INTERMEDIATE_DIR)/pdfspec_autogen.py'],
},
{
'action_name': 'generate_code',
'inputs': [
'<(SHARED_INTERMEDIATE_DIR)/datatypes.py',
'<(SHARED_INTERMEDIATE_DIR)/generate_code.py',
'<(SHARED_INTERMEDIATE_DIR)/pdfspec_autogen.py',
],
'outputs': [
'<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfEnums_autogen.h',
'<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfMapper_autogen.h',
'<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfHeaders_autogen.h',
'<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfMapper_autogen.cpp',
'<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfHeaders_autogen.cpp',
# TODO(edisonn): ok, there are many more files here, which we should list but since
# any change in the above should trigger a change here, we should be fine normally
],
'action': ['python', '<(SHARED_INTERMEDIATE_DIR)/generate_code.py', '<(SHARED_INTERMEDIATE_DIR)'],
},
],
'include_dirs': [
'../experimental/PdfViewer',
'../experimental/PdfViewer/pdfparser',
'../experimental/PdfViewer/pdfparser/native',
'<(SHARED_INTERMEDIATE_DIR)/native/autogen',
],
'dependencies': [
'skia_lib.gyp:skia_lib',
'zlib.gyp:zlib',
],
},
{
'target_name': 'pdfviewer',
'type': 'executable',
'cflags': ['-fexceptions'],
'cflags_cc': ['-fexceptions'],
'cflags!': [ '-fno-exceptions' ],
'cflags_cc!': [ '-fno-exceptions' ],
'sources': [
'../experimental/PdfViewer/pdf_viewer_main.cpp',
],
'include_dirs': [
'../experimental/PdfViewer',
'../experimental/PdfViewer/pdfparser',
'../experimental/PdfViewer/pdfparser/autogen',
'../experimental/PdfViewer/pdfparser/native',
'../experimental/PdfViewer/pdfparser/native/autogen',
],
'dependencies': [
'skia_lib.gyp:skia_lib',
'flags.gyp:flags',
'libpdfviewer',
'chop_transparency',
],
},
{
'target_name': 'chop_transparency',
'type': 'executable',
'sources': [
'../experimental/PdfViewer/chop_transparency_main.cpp',
],
'include_dirs': [
# For SkBitmapHasher.h
'../src/utils/',
],
'dependencies': [
'skia_lib.gyp:skia_lib',
'flags.gyp:flags',
],
},
],
}
# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2:
| {'includes': ['apptype_console.gypi'], 'targets': [{'target_name': 'libpdfviewer', 'type': 'static_library', 'sources': ['../experimental/PdfViewer/SkPdfBasics.cpp', '../experimental/PdfViewer/SkPdfFont.cpp', '../experimental/PdfViewer/SkPdfRenderer.cpp', '../experimental/PdfViewer/SkPdfUtils.cpp', '../experimental/PdfViewer/SkTrackDevice.cpp', '../experimental/PdfViewer/SkTracker.cpp', '../experimental/PdfViewer/pdfparser/native/SkPdfObject.cpp', '../experimental/PdfViewer/pdfparser/native/SkPdfNativeTokenizer.cpp', '../experimental/PdfViewer/pdfparser/native/SkNativeParsedPDF.cpp', '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfMapper_autogen.cpp', '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfHeaders_autogen.cpp'], 'copies': [{'files': ['../experimental/PdfViewer/datatypes.py', '../experimental/PdfViewer/generate_code.py'], 'destination': '<(SHARED_INTERMEDIATE_DIR)'}], 'actions': [{'action_name': 'spec2def', 'inputs': ['../experimental/PdfViewer/spec2def.py', '../experimental/PdfViewer/PdfReference-okular-1.txt'], 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/pdfspec_autogen.py'], 'action': ['python', '../experimental/PdfViewer/spec2def.py', '../experimental/PdfViewer/PdfReference-okular-1.txt', '<(SHARED_INTERMEDIATE_DIR)/pdfspec_autogen.py']}, {'action_name': 'generate_code', 'inputs': ['<(SHARED_INTERMEDIATE_DIR)/datatypes.py', '<(SHARED_INTERMEDIATE_DIR)/generate_code.py', '<(SHARED_INTERMEDIATE_DIR)/pdfspec_autogen.py'], 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfEnums_autogen.h', '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfMapper_autogen.h', '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfHeaders_autogen.h', '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfMapper_autogen.cpp', '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfHeaders_autogen.cpp'], 'action': ['python', '<(SHARED_INTERMEDIATE_DIR)/generate_code.py', '<(SHARED_INTERMEDIATE_DIR)']}], 'include_dirs': ['../experimental/PdfViewer', '../experimental/PdfViewer/pdfparser', '../experimental/PdfViewer/pdfparser/native', '<(SHARED_INTERMEDIATE_DIR)/native/autogen'], 'dependencies': ['skia_lib.gyp:skia_lib', 'zlib.gyp:zlib']}, {'target_name': 'pdfviewer', 'type': 'executable', 'cflags': ['-fexceptions'], 'cflags_cc': ['-fexceptions'], 'cflags!': ['-fno-exceptions'], 'cflags_cc!': ['-fno-exceptions'], 'sources': ['../experimental/PdfViewer/pdf_viewer_main.cpp'], 'include_dirs': ['../experimental/PdfViewer', '../experimental/PdfViewer/pdfparser', '../experimental/PdfViewer/pdfparser/autogen', '../experimental/PdfViewer/pdfparser/native', '../experimental/PdfViewer/pdfparser/native/autogen'], 'dependencies': ['skia_lib.gyp:skia_lib', 'flags.gyp:flags', 'libpdfviewer', 'chop_transparency']}, {'target_name': 'chop_transparency', 'type': 'executable', 'sources': ['../experimental/PdfViewer/chop_transparency_main.cpp'], 'include_dirs': ['../src/utils/'], 'dependencies': ['skia_lib.gyp:skia_lib', 'flags.gyp:flags']}]} |
# SPDX-FileCopyrightText: 2021 Melissa LeBlanc-Williams for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""
`micropython` - MicroPython Specific Decorator Functions
========================================================
* Author(s): cefn
"""
def const(x):
"Emulate making a constant"
return x
def native(f):
"Emulate making a native"
return f
def viper(f):
"User is attempting to use a viper code emitter"
raise SyntaxError("invalid micropython decorator")
def asm_thumb(f):
"User is attempting to use an inline assembler"
raise SyntaxError("invalid micropython decorator")
| """
`micropython` - MicroPython Specific Decorator Functions
========================================================
* Author(s): cefn
"""
def const(x):
"""Emulate making a constant"""
return x
def native(f):
"""Emulate making a native"""
return f
def viper(f):
"""User is attempting to use a viper code emitter"""
raise syntax_error('invalid micropython decorator')
def asm_thumb(f):
"""User is attempting to use an inline assembler"""
raise syntax_error('invalid micropython decorator') |
class Utilities:
# Thanks, Wikipedia!
def inverse(self, a, n):
t = 0
r = n
newt = 1
newr = a
while newr != 0:
quot = r / newr
t, newt = newt, t - quot * newt
r, newr = newr, r - quot * newr
if (r > 1):
return "a not invertible"
if (t < 0):
t += n
return t
| class Utilities:
def inverse(self, a, n):
t = 0
r = n
newt = 1
newr = a
while newr != 0:
quot = r / newr
(t, newt) = (newt, t - quot * newt)
(r, newr) = (newr, r - quot * newr)
if r > 1:
return 'a not invertible'
if t < 0:
t += n
return t |
# dataset settings
dataset_type = 'ImageNetC'
data_prefix = '/home/sjtu/scratch/zltan/datasets/imagenet-c'
corruption = 'snow'
severity = 5
img_norm_cfg = dict(
mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True)
train_pipeline = [
dict(type='LoadImageFromFile'),
dict(type='Normalize', **img_norm_cfg),
dict(type='ImageToTensor', keys=['img']),
dict(type='ToTensor', keys=['gt_label']),
dict(type='Collect', keys=['img', 'gt_label'])
]
test_pipeline = [
dict(type='LoadImageFromFile'),
dict(type='Normalize', **img_norm_cfg),
dict(type='ImageToTensor', keys=['img']),
dict(type='Collect', keys=['img'])
]
data = dict(
samples_per_gpu=32,
workers_per_gpu=4,
shuffle=True,
train=dict(
type=dataset_type,
data_prefix=data_prefix,
pipeline=train_pipeline,
corruption=corruption,
severity=severity),
val=dict(
type=dataset_type,
data_prefix=data_prefix,
pipeline=test_pipeline,
corruption=corruption,
severity=severity),
test=dict(
# replace `data/val` with `data/test` for standard test
type=dataset_type,
data_prefix=data_prefix,
pipeline=test_pipeline,
corruption=corruption,
severity=severity))
evaluation = dict(interval=1, metric='accuracy') | dataset_type = 'ImageNetC'
data_prefix = '/home/sjtu/scratch/zltan/datasets/imagenet-c'
corruption = 'snow'
severity = 5
img_norm_cfg = dict(mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True)
train_pipeline = [dict(type='LoadImageFromFile'), dict(type='Normalize', **img_norm_cfg), dict(type='ImageToTensor', keys=['img']), dict(type='ToTensor', keys=['gt_label']), dict(type='Collect', keys=['img', 'gt_label'])]
test_pipeline = [dict(type='LoadImageFromFile'), dict(type='Normalize', **img_norm_cfg), dict(type='ImageToTensor', keys=['img']), dict(type='Collect', keys=['img'])]
data = dict(samples_per_gpu=32, workers_per_gpu=4, shuffle=True, train=dict(type=dataset_type, data_prefix=data_prefix, pipeline=train_pipeline, corruption=corruption, severity=severity), val=dict(type=dataset_type, data_prefix=data_prefix, pipeline=test_pipeline, corruption=corruption, severity=severity), test=dict(type=dataset_type, data_prefix=data_prefix, pipeline=test_pipeline, corruption=corruption, severity=severity))
evaluation = dict(interval=1, metric='accuracy') |
"""
global application configuration parameters passed to Flask
"""
S3_BUCKET_NAME = 'ankur6ue-dev-ocr-data'
REGION_NAME = 'us-east-1'
ACL = 'private'
LOCAL = 1
LOCAL_BASE_PATH = "/tmp/OCR/"
MYSQL_DBNAME = "jobs" | """
global application configuration parameters passed to Flask
"""
s3_bucket_name = 'ankur6ue-dev-ocr-data'
region_name = 'us-east-1'
acl = 'private'
local = 1
local_base_path = '/tmp/OCR/'
mysql_dbname = 'jobs' |
description = "neutronguide, leadblock"
group = 'lowlevel'
includes = ['nok_ref', 'zz_absoluts']
instrument_values = configdata('instrument.values')
showcase_values = configdata('cf_showcase.showcase_values')
tango_base = instrument_values['tango_base']
code_base = instrument_values['code_base']
devices = dict(
shutter_gamma = device('nicos.devices.generic.Switcher',
description = 'leadblock on nok1',
moveable = 'shutter_gamma_switcher',
precision = 0.5,
mapping = {'closed': -55,
'open': 0},
fallback = 'offline',
unit = '',
),
shutter_gamma_switcher = device(code_base + 'nok_support.SingleMotorNOK',
# length: 90.0 mm
description = 'shutter_gamma',
motor = 'shutter_gamma_motor',
# obs = ['shutter_gamma_analog'],
nok_start = 198.0,
nok_end = 288.0,
nok_gap = 1.0,
backlash = -2, # is this configured somewhere?
precision = 0.05,
lowlevel = True,
),
# generated from global/inf/poti_tracing.inf
shutter_gamma_analog = device(code_base + 'nok_support.NOKPosition',
description = 'Position sensing for shutter_gamma',
reference = 'nok_refa1',
measure = 'shutter_gamma_poti',
poly = [-13.748035, 996.393 / 3.856], # off, mul * 1000 / sensitivity, higher orders...
serial = 6505,
length = 250.0,
lowlevel = True,
),
# generated from global/inf/poti_tracing.inf
shutter_gamma_poti = device(code_base + 'nok_support.NOKMonitoredVoltage',
description = 'Poti for shutter_gamma',
tangodevice = tango_base + 'test/wb_a/1_0',
scale = 1, # mounted from bottom
lowlevel = showcase_values['hide_poti'],
),
shutter_gamma_acc = device(code_base + 'nok_support.MotorEncoderDifference',
description = 'calc error Motor and poti',
motor = 'shutter_gamma_motor',
analog = 'shutter_gamma_analog',
lowlevel = showcase_values['hide_acc'],
unit = 'mm'
),
)
| description = 'neutronguide, leadblock'
group = 'lowlevel'
includes = ['nok_ref', 'zz_absoluts']
instrument_values = configdata('instrument.values')
showcase_values = configdata('cf_showcase.showcase_values')
tango_base = instrument_values['tango_base']
code_base = instrument_values['code_base']
devices = dict(shutter_gamma=device('nicos.devices.generic.Switcher', description='leadblock on nok1', moveable='shutter_gamma_switcher', precision=0.5, mapping={'closed': -55, 'open': 0}, fallback='offline', unit=''), shutter_gamma_switcher=device(code_base + 'nok_support.SingleMotorNOK', description='shutter_gamma', motor='shutter_gamma_motor', nok_start=198.0, nok_end=288.0, nok_gap=1.0, backlash=-2, precision=0.05, lowlevel=True), shutter_gamma_analog=device(code_base + 'nok_support.NOKPosition', description='Position sensing for shutter_gamma', reference='nok_refa1', measure='shutter_gamma_poti', poly=[-13.748035, 996.393 / 3.856], serial=6505, length=250.0, lowlevel=True), shutter_gamma_poti=device(code_base + 'nok_support.NOKMonitoredVoltage', description='Poti for shutter_gamma', tangodevice=tango_base + 'test/wb_a/1_0', scale=1, lowlevel=showcase_values['hide_poti']), shutter_gamma_acc=device(code_base + 'nok_support.MotorEncoderDifference', description='calc error Motor and poti', motor='shutter_gamma_motor', analog='shutter_gamma_analog', lowlevel=showcase_values['hide_acc'], unit='mm')) |
__author__ = 'Haarm-Pieter Duiker'
__copyright__ = 'Copyright (C) 2016 - Duiker Research Corp'
__license__ = ''
__maintainer__ = 'Haarm-Pieter Duiker'
__email__ = 'support@duikerresearch.org'
__status__ = 'Production'
__major_version__ = '1'
__minor_version__ = '0'
__change_version__ = '0'
__version__ = '.'.join((__major_version__,
__minor_version__,
__change_version__))
def createMelPythonCallback(module, function, options=False, parametersList=None,
returnType=None, returnTypeIsArray=False):
mel = ""
# Arbitrary parameter list and return type
if parametersList:
mel += "global proc "
# return value
if returnType is None:
mel += "string"
else:
mel += returnType
if returnTypeIsArray:
mel += "[]"
# function name
mel += " melPythonCallbackOptions_%s_%s(" % (module, function)
# parameter list
paramString = ""
for (paramType, paramName) in parametersList:
paramString = paramString + ("%s $%s" % (paramType, paramName)) + ", "
paramString = paramString[:-2]
mel += "%s) { " % paramString
# return type
if returnType is None:
mel += " string $result"
else:
mel += " %s $result" % returnType
if returnTypeIsArray:
mel += "[]"
# python module and function
mel += " = python( \"import %s; %s.%s(" % (module, module, function)
# arguments for python function
for (paramType, paramName) in parametersList:
mel += "\\\"\" + $%s + \"\\\"," % paramName
mel += ")\" ); "
mel += " return $result; "
mel += "} "
# mel function call
mel += "melPythonCallbackOptions_%s_%s" % (module, function)
# Return value for python mel command is documented as string[] but seems to return
# string in some cases. Commands that don't have options are assumed to return string.
# Commands with options are assumed to return string[]
elif options:
mel += "global proc string[] melPythonCallbackOptions_%s_%s(string $options) { " % (module, function)
mel += " string $result[] = python( \"import %s; %s.%s(\\\"\" + $options + \"\\\")\" ); " % (module, module, function)
mel += " return $result; "
mel += "} "
mel += "melPythonCallbackOptions_%s_%s" % (module, function)
else:
mel += "global proc string melPythonCallback_%s_%s() { " % (module, function)
mel += " string $result = `python( \"import %s; %s.%s()\" )`; " % (module, module, function)
mel += " return $result; "
mel += "} "
mel += "melPythonCallback_%s_%s" % (module, function)
return mel | __author__ = 'Haarm-Pieter Duiker'
__copyright__ = 'Copyright (C) 2016 - Duiker Research Corp'
__license__ = ''
__maintainer__ = 'Haarm-Pieter Duiker'
__email__ = 'support@duikerresearch.org'
__status__ = 'Production'
__major_version__ = '1'
__minor_version__ = '0'
__change_version__ = '0'
__version__ = '.'.join((__major_version__, __minor_version__, __change_version__))
def create_mel_python_callback(module, function, options=False, parametersList=None, returnType=None, returnTypeIsArray=False):
mel = ''
if parametersList:
mel += 'global proc '
if returnType is None:
mel += 'string'
else:
mel += returnType
if returnTypeIsArray:
mel += '[]'
mel += ' melPythonCallbackOptions_%s_%s(' % (module, function)
param_string = ''
for (param_type, param_name) in parametersList:
param_string = paramString + '%s $%s' % (paramType, paramName) + ', '
param_string = paramString[:-2]
mel += '%s) { ' % paramString
if returnType is None:
mel += ' string $result'
else:
mel += ' %s $result' % returnType
if returnTypeIsArray:
mel += '[]'
mel += ' = python( "import %s; %s.%s(' % (module, module, function)
for (param_type, param_name) in parametersList:
mel += '\\"" + $%s + "\\",' % paramName
mel += ')" ); '
mel += ' return $result; '
mel += '} '
mel += 'melPythonCallbackOptions_%s_%s' % (module, function)
elif options:
mel += 'global proc string[] melPythonCallbackOptions_%s_%s(string $options) { ' % (module, function)
mel += ' string $result[] = python( "import %s; %s.%s(\\"" + $options + "\\")" ); ' % (module, module, function)
mel += ' return $result; '
mel += '} '
mel += 'melPythonCallbackOptions_%s_%s' % (module, function)
else:
mel += 'global proc string melPythonCallback_%s_%s() { ' % (module, function)
mel += ' string $result = `python( "import %s; %s.%s()" )`; ' % (module, module, function)
mel += ' return $result; '
mel += '} '
mel += 'melPythonCallback_%s_%s' % (module, function)
return mel |
# Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A library of functions for working with web_test metadata files."""
load(":files.bzl", "files")
def _merge_files(ctx, merger, output, inputs):
"""Produces a merged web test metadata file.
Args:
ctx: a Skylark rule context.
merger: the WTL metadata merger executable.
output: a File object for the output file.
inputs: a list of File objects. These files are in order of priority;
i.e. values in the first file will take precedence over values in the
second file, etc.
"""
paths = [i.path for i in reversed(inputs)]
short_paths = [i.short_path for i in inputs]
args = ["--output", output.path] + paths
ctx.actions.run(
outputs = [output],
inputs = inputs,
executable = merger,
arguments = args,
mnemonic = "METADATAMERGER",
progress_message = "merging %s" % (", ".join(short_paths)),
)
def _create_file(
ctx,
output,
browser_label = None,
capabilities = None,
config_label = None,
environment = None,
label = None,
test_label = None,
web_test_files = None,
extension = None):
"""Generates a web_test metadata file with specified contents.
Args:
ctx: a Skylark rule context.
output: File object. The file to write the metadata to.
browser_label: Label. The label for a browser rule.
capabilities: struct; Browser capabilities.
config_label: Label. The label for the web_test_config rule.
environment: string. The Web Test Launcher environment name.
label: Label. The label for this target.
test_label: Label. The label for the test being executed.
web_test_files: sequence of web_test_file structs.
extension: map or struct defining additional fields that should be added
metadata file.
"""
fields = {}
if browser_label:
fields["browserLabel"] = str(browser_label)
if capabilities:
fields["capabilities"] = capabilities
if config_label:
fields["configLabel"] = str(config_label)
if environment:
fields["environment"] = environment
if label:
fields["label"] = str(label)
if test_label:
fields["testLabel"] = str(test_label)
if web_test_files:
fields["webTestFiles"] = web_test_files
if extension:
if type(extension) == type({}):
extension = struct(**extension)
fields["extension"] = extension
ctx.actions.write(
output = output,
content = struct(**fields).to_json(),
is_executable = False,
)
def _web_test_files(ctx, archive_file = None, named_files = None, strip_prefix = ""):
"""Build a web_test_files struct.
Args:
ctx: a Skylark rule context.
archive_file: a File object. The archive file where the named_files will be
found. If absent, the named_files are located directly in the runfiles.
named_files: a dict of strings to strings or File objects. The mapping of
names to file path. If archive_file is absent, the values should be
File objects for files that will be in the runfiles of the test. If
archive_file is present, the values should be string paths referencing
files in archive_file.
strip_prefix: string. A prefix to strip from the begining of paths in an archive.
Returns:
A web_test_files struct.
"""
named_files = named_files or {}
for k, v in named_files.items():
if type(v) != type(""):
named_files[k] = files.long_path(ctx, v)
if archive_file:
archive_file = files.long_path(ctx, archive_file)
return struct(
archiveFile = archive_file,
namedFiles = struct(**named_files),
stripPrefix = strip_prefix,
)
metadata = struct(
create_file = _create_file,
merge_files = _merge_files,
web_test_files = _web_test_files,
)
| """A library of functions for working with web_test metadata files."""
load(':files.bzl', 'files')
def _merge_files(ctx, merger, output, inputs):
"""Produces a merged web test metadata file.
Args:
ctx: a Skylark rule context.
merger: the WTL metadata merger executable.
output: a File object for the output file.
inputs: a list of File objects. These files are in order of priority;
i.e. values in the first file will take precedence over values in the
second file, etc.
"""
paths = [i.path for i in reversed(inputs)]
short_paths = [i.short_path for i in inputs]
args = ['--output', output.path] + paths
ctx.actions.run(outputs=[output], inputs=inputs, executable=merger, arguments=args, mnemonic='METADATAMERGER', progress_message='merging %s' % ', '.join(short_paths))
def _create_file(ctx, output, browser_label=None, capabilities=None, config_label=None, environment=None, label=None, test_label=None, web_test_files=None, extension=None):
"""Generates a web_test metadata file with specified contents.
Args:
ctx: a Skylark rule context.
output: File object. The file to write the metadata to.
browser_label: Label. The label for a browser rule.
capabilities: struct; Browser capabilities.
config_label: Label. The label for the web_test_config rule.
environment: string. The Web Test Launcher environment name.
label: Label. The label for this target.
test_label: Label. The label for the test being executed.
web_test_files: sequence of web_test_file structs.
extension: map or struct defining additional fields that should be added
metadata file.
"""
fields = {}
if browser_label:
fields['browserLabel'] = str(browser_label)
if capabilities:
fields['capabilities'] = capabilities
if config_label:
fields['configLabel'] = str(config_label)
if environment:
fields['environment'] = environment
if label:
fields['label'] = str(label)
if test_label:
fields['testLabel'] = str(test_label)
if web_test_files:
fields['webTestFiles'] = web_test_files
if extension:
if type(extension) == type({}):
extension = struct(**extension)
fields['extension'] = extension
ctx.actions.write(output=output, content=struct(**fields).to_json(), is_executable=False)
def _web_test_files(ctx, archive_file=None, named_files=None, strip_prefix=''):
"""Build a web_test_files struct.
Args:
ctx: a Skylark rule context.
archive_file: a File object. The archive file where the named_files will be
found. If absent, the named_files are located directly in the runfiles.
named_files: a dict of strings to strings or File objects. The mapping of
names to file path. If archive_file is absent, the values should be
File objects for files that will be in the runfiles of the test. If
archive_file is present, the values should be string paths referencing
files in archive_file.
strip_prefix: string. A prefix to strip from the begining of paths in an archive.
Returns:
A web_test_files struct.
"""
named_files = named_files or {}
for (k, v) in named_files.items():
if type(v) != type(''):
named_files[k] = files.long_path(ctx, v)
if archive_file:
archive_file = files.long_path(ctx, archive_file)
return struct(archiveFile=archive_file, namedFiles=struct(**named_files), stripPrefix=strip_prefix)
metadata = struct(create_file=_create_file, merge_files=_merge_files, web_test_files=_web_test_files) |
n = int(input("Quantos elementos vai ter o verto? "))
vet = [0 for x in range(n)]
for i in range(n):
vet[i] = int(input("Digite um numero: "))
soma = 0
pares = 0
for i in range(n):
if vet[i] % 2 == 0:
soma = soma + vet[i]
pares = pares + 1
if pares == 0:
print("NENHUM NUMERO PAR")
else:
media = soma / pares
print(f"Media dos pares = {media}")
| n = int(input('Quantos elementos vai ter o verto? '))
vet = [0 for x in range(n)]
for i in range(n):
vet[i] = int(input('Digite um numero: '))
soma = 0
pares = 0
for i in range(n):
if vet[i] % 2 == 0:
soma = soma + vet[i]
pares = pares + 1
if pares == 0:
print('NENHUM NUMERO PAR')
else:
media = soma / pares
print(f'Media dos pares = {media}') |
"""
Dayliopy module.
This exists to let the linter run.
"""
| """
Dayliopy module.
This exists to let the linter run.
""" |
# Script to redirect from long-obsolete URLs to current static-blog ones
redirects = {
"2010/11/From-Baselayout-to-Systemd-setup-on-Exherbo": "2010/11/05/from-baselayout-to-systemd-setup-on-exherbo.html",
"2010/11/Moar-free-time": "2010/11/12/moar-free-time.html",
"2010/12/Commandline-pulseaudio-mixer-tool": "2010/12/25/commandline-pulseaudio-mixer-tool.html",
"2010/12/Further-improvements-on-notification-daemon": "2010/12/09/further-improvements-for-notification-daemon.html",
"2010/12/MooseFS-usage-experiences": "2010/12/07/moosefs-usage-experiences.html",
"2010/12/oslistdir-and-oswalk-in-python-without-lists-by-the-grace-of-c-api-generator-and-recursion-custom-stack": "2010/12/15/oslistdir-and-oswalk-in-python-without-lists-by-the-grace-of-c-api-generator-and-recursion-custom-stack.html",
"2010/12/Sane-playback-for-online-streaming-video-and-via-stream-dumping": "2010/12/29/sane-playback-for-online-streaming-video-via-stream-dumping.html",
"2010/12/zcat-bzcat-lzcat-xzcat-Arrrgh-Autodetection-rocks": "2010/12/11/zcat-bzcat-lzcat-xzcat-arrrgh-autodetection-rocks.html",
"2010/1/Wheee-Ive-got-a-blog-": "2010/01/30/wheee-ive-got-a-blog.html",
"2010/2/libnotify-notification-daemon-shortcomings-and-my-solution": "2010/02/26/libnotify-notification-daemon-shortcomings-and-my-solution.html",
"2010/2/Listening-to-music-over-the-net-with-authentication-and-cache": "2010/02/17/listening-to-music-over-the-net-with-authentication-and-cache.html",
"2010/2/My-simple-ok-not-quite-backup-system": "2010/02/11/my-simple-ok-not-quite-backup-system.html",
"2010/2/My-simple-ok-not-quite-backup-system-implementation-backed-up-side": "2010/02/13/my-simple-ok-not-quite-backup-system-implementation-backed-up-side.html",
"2010/2/My-simple-ok-not-quite-backup-system-implementation-backup-host": "2010/02/14/my-simple-ok-not-quite-backup-system-implementation-backup-host.html",
"2010/2/POSIX-capabilities-for-python": "2010/02/01/posix-capabilities-for-python.html",
"2010/2/snmpd-pyagentx-or-re-discovery-of-sfnet": "2010/02/28/snmpd-pyagentx-or-re-discovery-of-sfnet.html",
"2010/3/Single-instance-daemon-or-invisible-dock": "2010/03/10/single-instance-daemon-or-invisible-dock.html",
"2010/4/Auto-away-for-pidgin": "2010/04/10/auto-away-for-pidgin.html",
"2010/4/Availability-stats-and-history-log-with-relational-database-postgresql": "2010/04/10/availability-stats-and-history-log-with-relational-database-postgresql.html",
"2010/4/Exherbo-paludis-fossil-syncer": "2010/04/25/exherbo-paludis-fossil-syncer.html",
"2010/4/LUKS-dm-crypt-rootfs-without-password-via-smartcard": "2010/04/25/luks-dm-crypt-rootfs-without-password-via-smartcard.html",
"2010/4/Thoughts-on-VCS-supporting-documentation-and-Fossil": "2010/04/17/thoughts-on-vcs-supporting-documentation-and-fossil.html",
"2010/5/Music-collection-updates-feed-via-musicbrainz-and-lastfm": "2010/05/08/music-collection-updates-feed-via-musicbrainz-and-lastfm.html",
"2010/6/Drop-in-ccrypt-replacement-for-bournal": "2010/06/13/drop-in-ccrypt-replacement-for-bournal.html",
"2010/6/Getting-rid-of-dead-bittorrent-trackers-for-rtorrent-by-scrubbing-torrent-files": "2010/06/05/getting-rid-of-dead-bittorrent-trackers-for-rtorrent-by-scrubbing-torrent-files.html",
"2010/6/No-IPSec-on-a-stick-for-me-": "2010/06/14/no-ipsec-on-a-stick-for-me.html",
"2010/8/Home-brewed-NAS-gluster-with-sensible-replication": "2010/08/15/home-brewed-nas-gluster-with-sensible-replication.html",
"2010/9/Distributed-fault-tolerant-fs-take-2-MooseFS": "2010/09/09/distributed-fault-tolerant-fs-take-2-moosefs.html",
"2010/9/Info-feeds": "2010/09/12/info-feeds.html",
"2011/10/dm-crypt-password-caching-between-dracut-and-systemd-systemd-password-agent": "2011/10/23/dm-crypt-password-caching-between-dracut-and-systemd-systemd-password-agent.html",
"2011/11/Running-stuff-like-firefox-flash-and-skype-with-apparmor": "2011/11/12/running-stuff-like-firefox-flash-and-skype-with-apparmor.html",
"2011/2/cgroups-initialization-libcgroup-and-my-ad-hoc-replacement-for-it": "2011/02/26/cgroups-initialization-libcgroup-and-my-ad-hoc-replacement-for-it.html",
"2011/2/Dashboard-for-enabled-services-in-systemd": "2011/02/27/dashboard-for-enabled-services-in-systemd.html",
"2011/3/Auto-updating-desktop-background-with-scaling-via-LQR-and-some-other-tricks": "2011/03/05/auto-updating-desktop-background-with-scaling-via-lqr-and-some-other-tricks.html",
"2011/3/Parallel-port-LED-notification-for-extra-high-system-load": "2011/03/14/parallel-port-led-notification-for-extra-high-system-load.html",
"2011/3/Selective-IPv6-AAAA-DNS-resolution": "2011/03/19/selective-ipv6-aaaa-dns-resolution.html",
"2011/4/Key-Value-storage-with-historyversioning-on-top-of-scm": "2011/04/18/key-value-storage-with-historyversioning-on-top-of-scm.html",
"2011/4/xdiskusage-like-visualization-for-any-remote-machine": "2011/04/19/xdiskusage-like-visualization-for-any-remote-machine.html",
"2011/5/Backup-of-5-million-tiny-files-and-paths": "2011/05/08/backup-of-5-million-tiny-files-and-paths.html",
"2011/5/Fossil-to-Git-export-and-mirroring": "2011/05/02/fossil-to-git-export-and-mirroring.html",
"2011/6/Using-csync2-for-security-sensitive-paths": "2011/06/12/using-csync2-for-security-sensitive-paths.html",
"2011/8/Notification-daemon-in-python": "2011/08/14/notification-daemon-in-python.html",
"2011/9/Detailed-process-memory-accounting-including-shared-and-swapped-one": "2011/09/16/detailed-process-memory-accounting-including-shared-and-swapped-one.html",
"2012/2/Late-adventures-with-time-series-data-collection-and-representation": "2012/02/28/late-adventures-with-time-series-data-collection-and-representation.html",
"2012/2/On-github-as-well-now": "2012/02/03/on-github-as-well-now.html",
"2012/2/Phasing-out-fossil-completely": "2012/02/07/phasing-out-fossil-completely.html",
"2012/6/Proper-ish-way-to-start-long-running-systemd-service-on-udev-event-device-hotplug": "2012/06/16/proper-ish-way-to-start-long-running-systemd-service-on-udev-event-device-hotplug.html",
"2012/8/A-new-toy-to-play-with-TI-Launchpad-with-MSP430-MCU": "2012/08/16/a-new-toy-to-play-with-ti-launchpad-with-msp430-mcu.html",
"2012/8/Unhosted-remoteStorage-idea": "2012/08/09/unhosted-remotestorage-idea.html",
"2012/9/Terms-of-Service-Didnt-Read": "2012/09/16/terms-of-service-didnt-read.html",
"2013/1/Migrating-configuration-settings-to-E17-enlightenment-0170-from-older-E-versions": "2013/01/16/migrating-configuration-settings-to-e17-enlightenment-0170-from-older-e-versions.html",
"2013/1/PyParsing-vs-Yapps": "2013/01/21/pyparsing-vs-yapps.html",
}
def application(env, start_response):
url = env['REQUEST_URI'].strip('/')
url_redirect = redirects.get(url)
if not url_redirect:
start_response('404 Not Found', [('Content-Type', 'text/html')])
err = f'404: Requested URL was not found: {url}'
return [f'<img alt="{err}" title="{err}" src="/misc/ie404.png">'.encode()]
url_redirect = f'/{url_redirect}'
start_response( '301 Moved Permanently',
[('Location', url_redirect), ('Content-Type', 'text/plain')] )
return [f'Redirecting to: {url_redirect}\n'.encode()]
| redirects = {'2010/11/From-Baselayout-to-Systemd-setup-on-Exherbo': '2010/11/05/from-baselayout-to-systemd-setup-on-exherbo.html', '2010/11/Moar-free-time': '2010/11/12/moar-free-time.html', '2010/12/Commandline-pulseaudio-mixer-tool': '2010/12/25/commandline-pulseaudio-mixer-tool.html', '2010/12/Further-improvements-on-notification-daemon': '2010/12/09/further-improvements-for-notification-daemon.html', '2010/12/MooseFS-usage-experiences': '2010/12/07/moosefs-usage-experiences.html', '2010/12/oslistdir-and-oswalk-in-python-without-lists-by-the-grace-of-c-api-generator-and-recursion-custom-stack': '2010/12/15/oslistdir-and-oswalk-in-python-without-lists-by-the-grace-of-c-api-generator-and-recursion-custom-stack.html', '2010/12/Sane-playback-for-online-streaming-video-and-via-stream-dumping': '2010/12/29/sane-playback-for-online-streaming-video-via-stream-dumping.html', '2010/12/zcat-bzcat-lzcat-xzcat-Arrrgh-Autodetection-rocks': '2010/12/11/zcat-bzcat-lzcat-xzcat-arrrgh-autodetection-rocks.html', '2010/1/Wheee-Ive-got-a-blog-': '2010/01/30/wheee-ive-got-a-blog.html', '2010/2/libnotify-notification-daemon-shortcomings-and-my-solution': '2010/02/26/libnotify-notification-daemon-shortcomings-and-my-solution.html', '2010/2/Listening-to-music-over-the-net-with-authentication-and-cache': '2010/02/17/listening-to-music-over-the-net-with-authentication-and-cache.html', '2010/2/My-simple-ok-not-quite-backup-system': '2010/02/11/my-simple-ok-not-quite-backup-system.html', '2010/2/My-simple-ok-not-quite-backup-system-implementation-backed-up-side': '2010/02/13/my-simple-ok-not-quite-backup-system-implementation-backed-up-side.html', '2010/2/My-simple-ok-not-quite-backup-system-implementation-backup-host': '2010/02/14/my-simple-ok-not-quite-backup-system-implementation-backup-host.html', '2010/2/POSIX-capabilities-for-python': '2010/02/01/posix-capabilities-for-python.html', '2010/2/snmpd-pyagentx-or-re-discovery-of-sfnet': '2010/02/28/snmpd-pyagentx-or-re-discovery-of-sfnet.html', '2010/3/Single-instance-daemon-or-invisible-dock': '2010/03/10/single-instance-daemon-or-invisible-dock.html', '2010/4/Auto-away-for-pidgin': '2010/04/10/auto-away-for-pidgin.html', '2010/4/Availability-stats-and-history-log-with-relational-database-postgresql': '2010/04/10/availability-stats-and-history-log-with-relational-database-postgresql.html', '2010/4/Exherbo-paludis-fossil-syncer': '2010/04/25/exherbo-paludis-fossil-syncer.html', '2010/4/LUKS-dm-crypt-rootfs-without-password-via-smartcard': '2010/04/25/luks-dm-crypt-rootfs-without-password-via-smartcard.html', '2010/4/Thoughts-on-VCS-supporting-documentation-and-Fossil': '2010/04/17/thoughts-on-vcs-supporting-documentation-and-fossil.html', '2010/5/Music-collection-updates-feed-via-musicbrainz-and-lastfm': '2010/05/08/music-collection-updates-feed-via-musicbrainz-and-lastfm.html', '2010/6/Drop-in-ccrypt-replacement-for-bournal': '2010/06/13/drop-in-ccrypt-replacement-for-bournal.html', '2010/6/Getting-rid-of-dead-bittorrent-trackers-for-rtorrent-by-scrubbing-torrent-files': '2010/06/05/getting-rid-of-dead-bittorrent-trackers-for-rtorrent-by-scrubbing-torrent-files.html', '2010/6/No-IPSec-on-a-stick-for-me-': '2010/06/14/no-ipsec-on-a-stick-for-me.html', '2010/8/Home-brewed-NAS-gluster-with-sensible-replication': '2010/08/15/home-brewed-nas-gluster-with-sensible-replication.html', '2010/9/Distributed-fault-tolerant-fs-take-2-MooseFS': '2010/09/09/distributed-fault-tolerant-fs-take-2-moosefs.html', '2010/9/Info-feeds': '2010/09/12/info-feeds.html', '2011/10/dm-crypt-password-caching-between-dracut-and-systemd-systemd-password-agent': '2011/10/23/dm-crypt-password-caching-between-dracut-and-systemd-systemd-password-agent.html', '2011/11/Running-stuff-like-firefox-flash-and-skype-with-apparmor': '2011/11/12/running-stuff-like-firefox-flash-and-skype-with-apparmor.html', '2011/2/cgroups-initialization-libcgroup-and-my-ad-hoc-replacement-for-it': '2011/02/26/cgroups-initialization-libcgroup-and-my-ad-hoc-replacement-for-it.html', '2011/2/Dashboard-for-enabled-services-in-systemd': '2011/02/27/dashboard-for-enabled-services-in-systemd.html', '2011/3/Auto-updating-desktop-background-with-scaling-via-LQR-and-some-other-tricks': '2011/03/05/auto-updating-desktop-background-with-scaling-via-lqr-and-some-other-tricks.html', '2011/3/Parallel-port-LED-notification-for-extra-high-system-load': '2011/03/14/parallel-port-led-notification-for-extra-high-system-load.html', '2011/3/Selective-IPv6-AAAA-DNS-resolution': '2011/03/19/selective-ipv6-aaaa-dns-resolution.html', '2011/4/Key-Value-storage-with-historyversioning-on-top-of-scm': '2011/04/18/key-value-storage-with-historyversioning-on-top-of-scm.html', '2011/4/xdiskusage-like-visualization-for-any-remote-machine': '2011/04/19/xdiskusage-like-visualization-for-any-remote-machine.html', '2011/5/Backup-of-5-million-tiny-files-and-paths': '2011/05/08/backup-of-5-million-tiny-files-and-paths.html', '2011/5/Fossil-to-Git-export-and-mirroring': '2011/05/02/fossil-to-git-export-and-mirroring.html', '2011/6/Using-csync2-for-security-sensitive-paths': '2011/06/12/using-csync2-for-security-sensitive-paths.html', '2011/8/Notification-daemon-in-python': '2011/08/14/notification-daemon-in-python.html', '2011/9/Detailed-process-memory-accounting-including-shared-and-swapped-one': '2011/09/16/detailed-process-memory-accounting-including-shared-and-swapped-one.html', '2012/2/Late-adventures-with-time-series-data-collection-and-representation': '2012/02/28/late-adventures-with-time-series-data-collection-and-representation.html', '2012/2/On-github-as-well-now': '2012/02/03/on-github-as-well-now.html', '2012/2/Phasing-out-fossil-completely': '2012/02/07/phasing-out-fossil-completely.html', '2012/6/Proper-ish-way-to-start-long-running-systemd-service-on-udev-event-device-hotplug': '2012/06/16/proper-ish-way-to-start-long-running-systemd-service-on-udev-event-device-hotplug.html', '2012/8/A-new-toy-to-play-with-TI-Launchpad-with-MSP430-MCU': '2012/08/16/a-new-toy-to-play-with-ti-launchpad-with-msp430-mcu.html', '2012/8/Unhosted-remoteStorage-idea': '2012/08/09/unhosted-remotestorage-idea.html', '2012/9/Terms-of-Service-Didnt-Read': '2012/09/16/terms-of-service-didnt-read.html', '2013/1/Migrating-configuration-settings-to-E17-enlightenment-0170-from-older-E-versions': '2013/01/16/migrating-configuration-settings-to-e17-enlightenment-0170-from-older-e-versions.html', '2013/1/PyParsing-vs-Yapps': '2013/01/21/pyparsing-vs-yapps.html'}
def application(env, start_response):
url = env['REQUEST_URI'].strip('/')
url_redirect = redirects.get(url)
if not url_redirect:
start_response('404 Not Found', [('Content-Type', 'text/html')])
err = f'404: Requested URL was not found: {url}'
return [f'<img alt="{err}" title="{err}" src="/misc/ie404.png">'.encode()]
url_redirect = f'/{url_redirect}'
start_response('301 Moved Permanently', [('Location', url_redirect), ('Content-Type', 'text/plain')])
return [f'Redirecting to: {url_redirect}\n'.encode()] |
def test_setup_legacy_bus0(gpio, smbus, sn3218):
gpio.RPI_REVISION = 1
sn3218.channel_gamma(0, [int(pow(255, float(i - 1) / 255)) for i in range(256)])
assert smbus.SMBus.called_once_with(0)
sn3218.enable()
def test_setup_legacy_bus1(gpio, smbus, sn3218):
gpio.RPI_REVISION = 3
sn3218.channel_gamma(0, [int(pow(255, float(i - 1) / 255)) for i in range(256)])
assert smbus.SMBus.called_once_with(1)
sn3218.enable()
| def test_setup_legacy_bus0(gpio, smbus, sn3218):
gpio.RPI_REVISION = 1
sn3218.channel_gamma(0, [int(pow(255, float(i - 1) / 255)) for i in range(256)])
assert smbus.SMBus.called_once_with(0)
sn3218.enable()
def test_setup_legacy_bus1(gpio, smbus, sn3218):
gpio.RPI_REVISION = 3
sn3218.channel_gamma(0, [int(pow(255, float(i - 1) / 255)) for i in range(256)])
assert smbus.SMBus.called_once_with(1)
sn3218.enable() |
colors = ['darkred', 'darkmagenta', 'darkolivegreen',
'darkorange',
'darkorchid',
'darkseagreen',
'darksalmon',
'darkslateblue',
'crimson', 'antiquewhite',
'aqua', 'aquamarine', 'azure',
'beige', 'bisque', 'blanchedalmond',
'blue','blueviolet', 'brown',
'burlywood', 'cadetblue', 'chartreuse',
'chocolate', 'coral']
| colors = ['darkred', 'darkmagenta', 'darkolivegreen', 'darkorange', 'darkorchid', 'darkseagreen', 'darksalmon', 'darkslateblue', 'crimson', 'antiquewhite', 'aqua', 'aquamarine', 'azure', 'beige', 'bisque', 'blanchedalmond', 'blue', 'blueviolet', 'brown', 'burlywood', 'cadetblue', 'chartreuse', 'chocolate', 'coral'] |
def del_rep():
n=int(input("Enter the no of elements"))
print("Enter the list elements")
l=[]
for i in range(n):
l.append(input())
print(l)
for i in l:
c=int(l.count(i))
for j in l:
if(i==j) and c >1:
l.remove(j)
c-=1
print(l)
| def del_rep():
n = int(input('Enter the no of elements'))
print('Enter the list elements')
l = []
for i in range(n):
l.append(input())
print(l)
for i in l:
c = int(l.count(i))
for j in l:
if i == j and c > 1:
l.remove(j)
c -= 1
print(l) |
class Ecosystem:
def __init__(self, deer_0=1.5, wolves_0=1.5, deer_growth=2/3, deer_predation=4/3, wolves_predation=1.0, wolves_decay=1.0, dt=0.0):
self.initialDeer = deer_0
self.initialWolves = wolves_0
self.currentDeer = deer_0
self.currentWolves = wolves_0
self.maxWolves = wolves_0
self.deerGrowth = deer_growth
self.deerPredation = deer_predation
self.wolvesPredation = wolves_predation
self.wolvesDecay = wolves_decay
self.timeIncrement = dt
@staticmethod
def create(deer_0=1.5, wolves_0=1.5, deer_growth=2/3, deer_predation=4/3, wolves_predation=1.0, wolves_decay=1.0, dt=0.0):
return Ecosystem(deer_0, wolves_0, deer_growth, deer_predation, wolves_predation, wolves_decay, dt)
def __nextStep(self):
self.__updateAnimalsCount()
self.__verifyMaxWolves()
def __getNextStepWolvesCount(self):
newCount = self.currentWolves + (self.timeIncrement * (
(self.wolvesPredation * self.currentWolves * self.currentDeer) - (self.wolvesDecay * self.currentWolves)))
if(newCount < 0):
newCount = 0;
return newCount
def __getNextStepDeerCount(self):
newCount = self.currentDeer + (self.timeIncrement * (
(self.deerGrowth * self.currentDeer) - (self.deerPredation * self.currentWolves * self.currentDeer)))
if(newCount < 0):
newCount = 0;
return newCount
def __updateAnimalsCount(self):
wolves = self.__getNextStepWolvesCount()
deer = self.__getNextStepDeerCount()
self.currentDeer = deer
self.currentWolves = wolves
def __verifyMaxWolves(self):
if(self.currentWolves > self.maxWolves):
self.maxWolves = self.currentWolves
def runEcosystem(self, stepNumber):
for n in range(stepNumber - 1):
self.__nextStep()
return self
def wolves_and_dear(deer_0, wolves_0, deer_growth, deer_predation, wolves_predation, wolves_decay, dt, n):
print('deer_0: ' + str(deer_0) +', wolves_0: ' + str(wolves_0) +', deer_growth: ' + str(deer_growth)+ ', deer_predation: ' + str(deer_predation) + ', wolves_predation: ' + str(wolves_predation) + ', wolves_decay: ' + str(wolves_decay) + ', dt: ' + str(dt) + ', n: ' + str(n))
value = Ecosystem.create(deer_0, wolves_0, deer_growth, deer_predation, wolves_predation, wolves_decay, dt).runEcosystem(n).maxWolves
print(value)
return value
| class Ecosystem:
def __init__(self, deer_0=1.5, wolves_0=1.5, deer_growth=2 / 3, deer_predation=4 / 3, wolves_predation=1.0, wolves_decay=1.0, dt=0.0):
self.initialDeer = deer_0
self.initialWolves = wolves_0
self.currentDeer = deer_0
self.currentWolves = wolves_0
self.maxWolves = wolves_0
self.deerGrowth = deer_growth
self.deerPredation = deer_predation
self.wolvesPredation = wolves_predation
self.wolvesDecay = wolves_decay
self.timeIncrement = dt
@staticmethod
def create(deer_0=1.5, wolves_0=1.5, deer_growth=2 / 3, deer_predation=4 / 3, wolves_predation=1.0, wolves_decay=1.0, dt=0.0):
return ecosystem(deer_0, wolves_0, deer_growth, deer_predation, wolves_predation, wolves_decay, dt)
def __next_step(self):
self.__updateAnimalsCount()
self.__verifyMaxWolves()
def __get_next_step_wolves_count(self):
new_count = self.currentWolves + self.timeIncrement * (self.wolvesPredation * self.currentWolves * self.currentDeer - self.wolvesDecay * self.currentWolves)
if newCount < 0:
new_count = 0
return newCount
def __get_next_step_deer_count(self):
new_count = self.currentDeer + self.timeIncrement * (self.deerGrowth * self.currentDeer - self.deerPredation * self.currentWolves * self.currentDeer)
if newCount < 0:
new_count = 0
return newCount
def __update_animals_count(self):
wolves = self.__getNextStepWolvesCount()
deer = self.__getNextStepDeerCount()
self.currentDeer = deer
self.currentWolves = wolves
def __verify_max_wolves(self):
if self.currentWolves > self.maxWolves:
self.maxWolves = self.currentWolves
def run_ecosystem(self, stepNumber):
for n in range(stepNumber - 1):
self.__nextStep()
return self
def wolves_and_dear(deer_0, wolves_0, deer_growth, deer_predation, wolves_predation, wolves_decay, dt, n):
print('deer_0: ' + str(deer_0) + ', wolves_0: ' + str(wolves_0) + ', deer_growth: ' + str(deer_growth) + ', deer_predation: ' + str(deer_predation) + ', wolves_predation: ' + str(wolves_predation) + ', wolves_decay: ' + str(wolves_decay) + ', dt: ' + str(dt) + ', n: ' + str(n))
value = Ecosystem.create(deer_0, wolves_0, deer_growth, deer_predation, wolves_predation, wolves_decay, dt).runEcosystem(n).maxWolves
print(value)
return value |
class Seating:
def __init__(self, layout: str):
self.seats = [list(line) for line in layout.splitlines()]
self.width = len(self.seats[0])
self.height = len(self.seats)
def nr_neigbors(self, row: int, col: int) -> int:
count = 0
for i in range(max(row - 1, 0), min(row+2, self.height)):
for j in range(max(col-1, 0), min(col+2, self.width)):
if i == row and j == col:
continue
if self.seats[i][j] == "#":
count += 1
return count
def update(self):
new_seats = [['']*self.width for row in self.seats]
for i in range(self.height):
for j in range(self.width):
if self.seats[i][j] == "L":
if self.nr_neigbors(i, j) == 0:
new_seats[i][j] = "#"
elif self.seats[i][j] == "#":
if self.nr_neigbors(i, j) >= 4:
new_seats[i][j] = "L"
if new_seats[i][j] == '':
new_seats[i][j] = self.seats[i][j]
self.seats = new_seats
def update_line(self):
new_seats = [['']*self.width for row in self.seats]
for i in range(self.height):
for j in range(self.width):
if self.seats[i][j] == "L":
if self.nr_line_neigbors(i, j) == 0:
new_seats[i][j] = "#"
elif self.seats[i][j] == "#":
if self.nr_line_neigbors(i, j) >= 5:
new_seats[i][j] = "L"
if new_seats[i][j] == '':
new_seats[i][j] = self.seats[i][j]
self.seats = new_seats
def pattern(self) -> str:
rows = ["".join(row) for row in self.seats]
return "\n".join(rows)
def occupied(self) -> int:
count = 0
for i in range(self.height):
for j in range(self.width):
if self.seats[i][j] == "#":
count += 1
return count
def nr_line_neigbors(self, row: int, col: int) -> int:
count = 0
directions = [[1, 0], [1, 1], [0, 1], [-1, 1],
[-1, 0], [-1, -1], [0, -1], [1, -1]]
for d in directions:
for n in range(1, max(self.width, self.height)):
r, c = row + n * d[0], col + n * d[1]
if min(r, c) < 0:
break
if r >= self.height or c >= self.width:
break
v = self.seats[r][c]
if v == '#':
count += 1
break
if v == 'L':
break
return count
def main():
with open('seats.txt') as ifh:
seating = Seating(ifh.read())
nr_iterations = 0
last_pattern = seating.pattern()
while nr_iterations < 10000:
seating.update()
nr_iterations += 1
if seating.pattern() == last_pattern:
print(f"Nr iterations {nr_iterations}")
break
last_pattern = seating.pattern()
if nr_iterations > 100000:
print("Nr iterations is too big\n")
break
print("Number occupied seats is %d\n" % seating.occupied())
with open('seats.txt') as ifh:
seating = Seating(ifh.read())
nr_iterations = 0
last_pattern = seating.pattern()
while nr_iterations < 10000:
seating.update_line()
nr_iterations += 1
if seating.pattern() == last_pattern:
print(f"Nr line iterations {nr_iterations}")
break
last_pattern = seating.pattern()
if nr_iterations > 100000:
print("Nr line iterations is too big\n")
break
print("Number line occupied seats is %d\n" % seating.occupied())
if __name__ == "__main__":
main()
| class Seating:
def __init__(self, layout: str):
self.seats = [list(line) for line in layout.splitlines()]
self.width = len(self.seats[0])
self.height = len(self.seats)
def nr_neigbors(self, row: int, col: int) -> int:
count = 0
for i in range(max(row - 1, 0), min(row + 2, self.height)):
for j in range(max(col - 1, 0), min(col + 2, self.width)):
if i == row and j == col:
continue
if self.seats[i][j] == '#':
count += 1
return count
def update(self):
new_seats = [[''] * self.width for row in self.seats]
for i in range(self.height):
for j in range(self.width):
if self.seats[i][j] == 'L':
if self.nr_neigbors(i, j) == 0:
new_seats[i][j] = '#'
elif self.seats[i][j] == '#':
if self.nr_neigbors(i, j) >= 4:
new_seats[i][j] = 'L'
if new_seats[i][j] == '':
new_seats[i][j] = self.seats[i][j]
self.seats = new_seats
def update_line(self):
new_seats = [[''] * self.width for row in self.seats]
for i in range(self.height):
for j in range(self.width):
if self.seats[i][j] == 'L':
if self.nr_line_neigbors(i, j) == 0:
new_seats[i][j] = '#'
elif self.seats[i][j] == '#':
if self.nr_line_neigbors(i, j) >= 5:
new_seats[i][j] = 'L'
if new_seats[i][j] == '':
new_seats[i][j] = self.seats[i][j]
self.seats = new_seats
def pattern(self) -> str:
rows = [''.join(row) for row in self.seats]
return '\n'.join(rows)
def occupied(self) -> int:
count = 0
for i in range(self.height):
for j in range(self.width):
if self.seats[i][j] == '#':
count += 1
return count
def nr_line_neigbors(self, row: int, col: int) -> int:
count = 0
directions = [[1, 0], [1, 1], [0, 1], [-1, 1], [-1, 0], [-1, -1], [0, -1], [1, -1]]
for d in directions:
for n in range(1, max(self.width, self.height)):
(r, c) = (row + n * d[0], col + n * d[1])
if min(r, c) < 0:
break
if r >= self.height or c >= self.width:
break
v = self.seats[r][c]
if v == '#':
count += 1
break
if v == 'L':
break
return count
def main():
with open('seats.txt') as ifh:
seating = seating(ifh.read())
nr_iterations = 0
last_pattern = seating.pattern()
while nr_iterations < 10000:
seating.update()
nr_iterations += 1
if seating.pattern() == last_pattern:
print(f'Nr iterations {nr_iterations}')
break
last_pattern = seating.pattern()
if nr_iterations > 100000:
print('Nr iterations is too big\n')
break
print('Number occupied seats is %d\n' % seating.occupied())
with open('seats.txt') as ifh:
seating = seating(ifh.read())
nr_iterations = 0
last_pattern = seating.pattern()
while nr_iterations < 10000:
seating.update_line()
nr_iterations += 1
if seating.pattern() == last_pattern:
print(f'Nr line iterations {nr_iterations}')
break
last_pattern = seating.pattern()
if nr_iterations > 100000:
print('Nr line iterations is too big\n')
break
print('Number line occupied seats is %d\n' % seating.occupied())
if __name__ == '__main__':
main() |
"""Exceptions for Sleepi."""
class SleepiError(Exception):
"""Generic Sleepi exception."""
class SleepiConnectionError(SleepiError):
"""Sleepi connection exception."""
class SleepiGenericError(Exception):
"""Generic Sleepi exception.""" | """Exceptions for Sleepi."""
class Sleepierror(Exception):
"""Generic Sleepi exception."""
class Sleepiconnectionerror(SleepiError):
"""Sleepi connection exception."""
class Sleepigenericerror(Exception):
"""Generic Sleepi exception.""" |
string = [1, 2, 'ASD', 4, (1, 2, 3), '1', 'PY']
def get_string_list(lst):
if type(lst) == str:
return True
else:
return False
only_string = filter(get_string_list, string)
print(list(only_string))
| string = [1, 2, 'ASD', 4, (1, 2, 3), '1', 'PY']
def get_string_list(lst):
if type(lst) == str:
return True
else:
return False
only_string = filter(get_string_list, string)
print(list(only_string)) |
_base_ = [
'../_base_/models/ocrnet_hr18.py', '../_base_/datasets/cityscapes_bs2x.py',
'../_base_/default_runtime.py', '../_base_/schedules/schedule_40k_lr2x.py'
]
| _base_ = ['../_base_/models/ocrnet_hr18.py', '../_base_/datasets/cityscapes_bs2x.py', '../_base_/default_runtime.py', '../_base_/schedules/schedule_40k_lr2x.py'] |
#pylint: disable=bad-continuation,invalid-name,missing-docstring
# Basic test with a list
TEST_LIST1 = ['a' 'b'] # [implicit-str-concat-in-sequence]
# Testing with unicode strings in a tuple, with a comma AFTER concatenation
TEST_LIST2 = (u"a" u"b", u"c") # [implicit-str-concat-in-sequence]
# Testing with raw strings in a set, with a comma BEFORE concatenation
TEST_LIST3 = {r'''a''', r'''b''' r'''c'''} # [implicit-str-concat-in-sequence]
# Testing that only ONE warning is generated when string concatenation happens
# in the middle of a list
TEST_LIST4 = ["""a""", """b""" """c""", """d"""] # [implicit-str-concat-in-sequence]
# The following shouldn't raise a warning because it is a function call
print('a', 'bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb' 'ccc')
# The following shouldn't raise a warning because string literals are
# on different lines
TEST_LIST5 = ('a', 'b'
'c')
# The following shouldn't raise a warning because of the escaped newline
TEST_LIST6 = ('a' 'bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb \
ccc')
# No warning for bytes
TEST_LIST7 = [b'A' b'B']
| test_list1 = ['ab']
test_list2 = (u'ab', u'c')
test_list3 = {'a', 'bc'}
test_list4 = ['a', 'bc', 'd']
print('a', 'bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbccc')
test_list5 = ('a', 'bc')
test_list6 = 'abbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb ccc'
test_list7 = [b'AB'] |
# Python allows empty class
class EmptyClass:
pass
# Create an instance of the class
obj_1 = EmptyClass()
# Attrubutes can be added to an object dynamically
obj_1.attribute1 = "The attribute 1"
obj_1.attribute2 = "The attribute 2"
print(obj_1.attribute1 + ' - ' + obj_1.attribute2)
# The __dict__ has all the information
print('The __dict__:')
print(obj_1.__dict__)
# Attributes can be deleted from an object
del obj_1.attribute2
print(obj_1.__dict__)
print() | class Emptyclass:
pass
obj_1 = empty_class()
obj_1.attribute1 = 'The attribute 1'
obj_1.attribute2 = 'The attribute 2'
print(obj_1.attribute1 + ' - ' + obj_1.attribute2)
print('The __dict__:')
print(obj_1.__dict__)
del obj_1.attribute2
print(obj_1.__dict__)
print() |
"""
MIT License
Copyright (c) 2019 Sylte
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
class YUser(object):
"""The User object returned from API
Mostly a placeholder, methods may come in the future"""
def __init__(self, *,
discordID: int,
epicID: str,
epicDisplayName: str,
inputMethod: str,
platform: str
):
self.user_id = discordID
self.epic_id = epicID
self.displayname = epicDisplayName
self.input_method = inputMethod
self.platform = platform
def __repr__(self):
return '<YuniteUser user_id={0.user_id} epic_id={0.epic_id} displayname={0.displayname} ' \
'input_method={0.input_method} platform={0.platform}>'.format(self)
| """
MIT License
Copyright (c) 2019 Sylte
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
class Yuser(object):
"""The User object returned from API
Mostly a placeholder, methods may come in the future"""
def __init__(self, *, discordID: int, epicID: str, epicDisplayName: str, inputMethod: str, platform: str):
self.user_id = discordID
self.epic_id = epicID
self.displayname = epicDisplayName
self.input_method = inputMethod
self.platform = platform
def __repr__(self):
return '<YuniteUser user_id={0.user_id} epic_id={0.epic_id} displayname={0.displayname} input_method={0.input_method} platform={0.platform}>'.format(self) |
# This sample tests type annotations on variables.
array1 = [1, 2, 3]
# This should generate an error because the LHS can't
# have a declared type.
array1[2] = 4 # type: int
dict1 = {}
# This should generate an error because the LHS can't
# have a declared type.
dict1["hello"] = 4 # type: int
def foo():
a: int = 3
b: float = 4.5
c: str = ""
d: int = yield 42
| array1 = [1, 2, 3]
array1[2] = 4
dict1 = {}
dict1['hello'] = 4
def foo():
a: int = 3
b: float = 4.5
c: str = ''
d: int = (yield 42) |
"""
__init__.py
This init script will initialize any needed logic for this package.
This package will control parsing and access to the sqlite master schema files.
"""
| """
__init__.py
This init script will initialize any needed logic for this package.
This package will control parsing and access to the sqlite master schema files.
""" |
threePow19 = 1162261467 # 3**19
class Solution:
def isPowerOfThree(self, n: int) -> bool:
return n>0 and not (threePow19 % n)
| three_pow19 = 1162261467
class Solution:
def is_power_of_three(self, n: int) -> bool:
return n > 0 and (not threePow19 % n) |
__all__ = ["CLUSTER_ARGS", "EXAMPLE_DIRS", "EXTRA_ARGS"]
################################################################################
# Arguments used on the cluster
# Any set to None are ignored and only used for getting the key names in _update_cluster_args
CLUSTER_ARGS = {
'submit_cluster': None,
'submit_qtype': 'SGE',
'submit_array': None,
'submit_pe_lsf': None,
'submit_pe_sge': 'smp',
'submit_queue': None,
#'-submit_max_array', None ],
#'-submit_queue', None ],
}
################################################################################
# List of which test directories to process
# TODO: 'transmembrane.3LBW'
# 'missing-domain.1k04',
EXAMPLE_DIRS = [
'contact-example',
'homologs',
'ideal-helices',
'import-data',
'nmr.remodel',
'nmr.truncate',
'single-model',
'toxd-example',
]
################################################################################
# Any args that are to be added/updated
EXTRA_ARGS = [
['-nproc', 1], # Each test case needs to be run on a single processor
# [ '-do_mr','False'],
]
| __all__ = ['CLUSTER_ARGS', 'EXAMPLE_DIRS', 'EXTRA_ARGS']
cluster_args = {'submit_cluster': None, 'submit_qtype': 'SGE', 'submit_array': None, 'submit_pe_lsf': None, 'submit_pe_sge': 'smp', 'submit_queue': None}
example_dirs = ['contact-example', 'homologs', 'ideal-helices', 'import-data', 'nmr.remodel', 'nmr.truncate', 'single-model', 'toxd-example']
extra_args = [['-nproc', 1]] |
expected_output = {
'eigrp_instance': {
'100': {
'vrf': {
'default': {
'address_family': {
'ipv6': {
'name': 'test',
'named_mode': True,
'eigrp_interface': {
'GigabitEthernet0/0/0/1.90': {
'eigrp_nbr': {
'fe80::5c00:ff:fe02:7': {
'peer_handle': 1,
'hold': 12,
'uptime': '01:36:14',
'srtt': 0.011,
'rto': 200,
'q_cnt': 0,
'last_seq_number': 28
}
}
},
'GigabitEthernet0/0/0/0.90': {
'eigrp_nbr': {
'fe80::f816:3eff:feb4:b131': {
'peer_handle': 0,
'hold': 11,
'uptime': '02:30:16',
'srtt': 0.001,
'rto': 200,
'q_cnt': 0,
'last_seq_number': 23
}
}
}
}
}
}
}
}
}
}
}
| expected_output = {'eigrp_instance': {'100': {'vrf': {'default': {'address_family': {'ipv6': {'name': 'test', 'named_mode': True, 'eigrp_interface': {'GigabitEthernet0/0/0/1.90': {'eigrp_nbr': {'fe80::5c00:ff:fe02:7': {'peer_handle': 1, 'hold': 12, 'uptime': '01:36:14', 'srtt': 0.011, 'rto': 200, 'q_cnt': 0, 'last_seq_number': 28}}}, 'GigabitEthernet0/0/0/0.90': {'eigrp_nbr': {'fe80::f816:3eff:feb4:b131': {'peer_handle': 0, 'hold': 11, 'uptime': '02:30:16', 'srtt': 0.001, 'rto': 200, 'q_cnt': 0, 'last_seq_number': 23}}}}}}}}}}} |
"""
Get the difference between a given number and 17,
if the number is greater than 17 return double the absolute difference
"""
number = int(input("please input the number : "))
new_number = 17 - number
print(new_number)
def ashi():
if number > 17:
return (17 - number)*2
print(ashi())
def difference(n):
if n <= 17:
return 17-n
else:
return (n-17)*2
print(difference(22))
print(difference(14))
| """
Get the difference between a given number and 17,
if the number is greater than 17 return double the absolute difference
"""
number = int(input('please input the number : '))
new_number = 17 - number
print(new_number)
def ashi():
if number > 17:
return (17 - number) * 2
print(ashi())
def difference(n):
if n <= 17:
return 17 - n
else:
return (n - 17) * 2
print(difference(22))
print(difference(14)) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.