content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
msg = "\nU cannot do it with the zero under there!!!"
def mean(num_list):
if len(num_list)== 0:
raise Exception(msg)
else:
return sum(num_list)/len(num_list)
def mean2(num_list):
try:
return sum(num_list)/len(num_list)
except ZeroDivisionError as detail:
raise ZeroDivisionError(detail.__str__() + msg)
except TypeError as detail:
msg2 = "\n use numbers "
raise TypeError(detail.__str__() + msg2) | msg = '\nU cannot do it with the zero under there!!!'
def mean(num_list):
if len(num_list) == 0:
raise exception(msg)
else:
return sum(num_list) / len(num_list)
def mean2(num_list):
try:
return sum(num_list) / len(num_list)
except ZeroDivisionError as detail:
raise zero_division_error(detail.__str__() + msg)
except TypeError as detail:
msg2 = '\n use numbers '
raise type_error(detail.__str__() + msg2) |
# where output is the value per line
# loop through the values
# print the value of the letter plus the next letter for n number of times
# n = a number (1-10) that represents how many characters are in a line
# once you have printed n number of times, '\n'
output = ''
#for value in range(65, 91, 1):
for i in range(5):
for j in range(i+1):
print("* ", end="")
print("\n") | output = ''
for i in range(5):
for j in range(i + 1):
print('* ', end='')
print('\n') |
#!/usr/bin/env python3
N, T = list(map(int, input().strip().split(' ')))
width = list(map(int, input().strip().split(' ')))
for _ in range(T):
i, j = list(map(int, input().strip().split(' ')))
print(min(width[i:j + 1]))
| (n, t) = list(map(int, input().strip().split(' ')))
width = list(map(int, input().strip().split(' ')))
for _ in range(T):
(i, j) = list(map(int, input().strip().split(' ')))
print(min(width[i:j + 1])) |
# Task
# Apply your knowledge of the .add() operation to help your friend Rupal.
# Rupal has a huge collection of country stamps. She decided to count the
# total number of distinct country stamps in her collection. She asked for
# your help. You pick the stamps one by one from a stack of N country stamps.
# Find the total number of distinct country stamps.
#
# Input Format
# The first line contains an integer N, the total number of country stamps.
# The next N lines contains the name of the country where the stamp is from.
#
# Constraints
# 0 < N < 1000
#
# Output Format
# Output the total number of distinct country stamps on a single line.
#
# Sample Input
# 7
# UK
# China
# USA
# France
# New Zealand
# UK
# France
# Sample Output
# 5
N = int(input())
countries = set()
for i in range(N):
countries.add(input())
print(len(countries))
| n = int(input())
countries = set()
for i in range(N):
countries.add(input())
print(len(countries)) |
def get_profile(name: str, age: int, *args, **kwargs):
if len(list(args)) > 5:
raise ValueError
if not isinstance(age, int):
raise ValueError
profile = dict(name=name, age=age,)
if args:
profile.update(sports=sorted(list(args)))
if kwargs:
profile.update(awards=kwargs)
return profile
print(get_profile("tim", 36, "tennis", "basketball", champ="helped out team in crisis"))
| def get_profile(name: str, age: int, *args, **kwargs):
if len(list(args)) > 5:
raise ValueError
if not isinstance(age, int):
raise ValueError
profile = dict(name=name, age=age)
if args:
profile.update(sports=sorted(list(args)))
if kwargs:
profile.update(awards=kwargs)
return profile
print(get_profile('tim', 36, 'tennis', 'basketball', champ='helped out team in crisis')) |
class Klasse:
def __init__(self, wert):
self.attribut = wert
def print_attribut(self):
print(self.attribut)
def main():
a = Klasse(3)
b = Klasse(12)
a.attribut = -a.attribut
b.print_attribut()
| class Klasse:
def __init__(self, wert):
self.attribut = wert
def print_attribut(self):
print(self.attribut)
def main():
a = klasse(3)
b = klasse(12)
a.attribut = -a.attribut
b.print_attribut() |
def uninstall(distro, purge=False):
packages = [
'ceph',
'ceph-mds',
'ceph-common',
'ceph-fs-common',
'radosgw',
]
extra_remove_flags = []
if purge:
extra_remove_flags.append('--purge')
distro.packager.remove(
packages,
extra_remove_flags=extra_remove_flags
)
| def uninstall(distro, purge=False):
packages = ['ceph', 'ceph-mds', 'ceph-common', 'ceph-fs-common', 'radosgw']
extra_remove_flags = []
if purge:
extra_remove_flags.append('--purge')
distro.packager.remove(packages, extra_remove_flags=extra_remove_flags) |
class Solution:
def isPrefixOfWord(self, sentence: str, searchWord: str) -> int:
sentence = sentence.split()
k = len(searchWord)
for i, word in enumerate(sentence):
if word[:k] == searchWord:
return i+1
return -1
| class Solution:
def is_prefix_of_word(self, sentence: str, searchWord: str) -> int:
sentence = sentence.split()
k = len(searchWord)
for (i, word) in enumerate(sentence):
if word[:k] == searchWord:
return i + 1
return -1 |
#
# PySNMP MIB module WLSX-WLAN-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/WLSX-WLAN-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:36:48 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
wlsxEnterpriseMibModules, = mibBuilder.importSymbols("ARUBA-MIB", "wlsxEnterpriseMibModules")
ArubaVlanValidRange, ArubaRogueApType, ArubaAPStatus, ArubaAccessPointMode, ArubaMonitorMode, ArubaAntennaSetting, ArubaEnet1Mode, ArubaPhyType, ArubaHTMode, ArubaVoipProtocolType, ArubaMeshRole, ArubaHTExtChannel, ArubaAuthenticationMethods, ArubaFrameType, ArubaEnableValue, ArubaEncryptionMethods, ArubaUnprovisionedStatus, ArubaActiveState = mibBuilder.importSymbols("ARUBA-TC", "ArubaVlanValidRange", "ArubaRogueApType", "ArubaAPStatus", "ArubaAccessPointMode", "ArubaMonitorMode", "ArubaAntennaSetting", "ArubaEnet1Mode", "ArubaPhyType", "ArubaHTMode", "ArubaVoipProtocolType", "ArubaMeshRole", "ArubaHTExtChannel", "ArubaAuthenticationMethods", "ArubaFrameType", "ArubaEnableValue", "ArubaEncryptionMethods", "ArubaUnprovisionedStatus", "ArubaActiveState")
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, ConstraintsIntersection, SingleValueConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "SingleValueConstraint", "ConstraintsUnion")
NotificationGroup, ObjectGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ObjectGroup", "ModuleCompliance")
TextualConvention, ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, Counter64, IpAddress, TimeTicks, ObjectIdentity, snmpModules, iso, NotificationType, MibIdentifier, Gauge32, Counter32, Unsigned32, Integer32 = mibBuilder.importSymbols("SNMPv2-SMI", "TextualConvention", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "Counter64", "IpAddress", "TimeTicks", "ObjectIdentity", "snmpModules", "iso", "NotificationType", "MibIdentifier", "Gauge32", "Counter32", "Unsigned32", "Integer32")
TextualConvention, RowStatus, TimeInterval, TruthValue, PhysAddress, TAddress, TDomain, DisplayString, TestAndIncr, MacAddress, StorageType = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "RowStatus", "TimeInterval", "TruthValue", "PhysAddress", "TAddress", "TDomain", "DisplayString", "TestAndIncr", "MacAddress", "StorageType")
wlsxWlanMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5))
wlsxWlanMIB.setRevisions(('1910-01-26 18:06',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: wlsxWlanMIB.setRevisionsDescriptions(('The initial revision.',))
if mibBuilder.loadTexts: wlsxWlanMIB.setLastUpdated('1001261806Z')
if mibBuilder.loadTexts: wlsxWlanMIB.setOrganization('Aruba Wireless Networks')
if mibBuilder.loadTexts: wlsxWlanMIB.setContactInfo('Postal: 1322 Crossman Avenue Sunnyvale, CA 94089 E-mail: dl-support@arubanetworks.com Phone: +1 408 227 4500')
if mibBuilder.loadTexts: wlsxWlanMIB.setDescription('This MIB module defines MIB objects which provide information about the Wireless Management System (WMS) in the Aruba Controller.')
wlsxWlanConfigGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 1))
wlsxWlanStateGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2))
wlsxWlanStatsGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3))
wlsxWlanAccessPointInfoGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1))
wlsxWlanStationInfoGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2))
wlsxWlanAssociationInfoGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 3))
wlsxWlanAccessPointStatsGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1))
wlsxWlanStationStatsGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2))
wlsxWlanTotalNumAccessPoints = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxWlanTotalNumAccessPoints.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanTotalNumAccessPoints.setDescription(' Total Number of Access Points connected to the controller. ')
wlsxWlanTotalNumStationsAssociated = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxWlanTotalNumStationsAssociated.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanTotalNumStationsAssociated.setDescription(' Total Number of Stations Associated to the controller. ')
wlsxWlanAPGroupTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 3), )
if mibBuilder.loadTexts: wlsxWlanAPGroupTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPGroupTable.setDescription(' This Table lists all the Access Points Groups configured in the Aruba controller. ')
wlsxWlanAPGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 3, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanAPGroup"))
if mibBuilder.loadTexts: wlsxWlanAPGroupEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPGroupEntry.setDescription('AP Group Entry')
wlanAPGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 3, 1, 1), DisplayString())
if mibBuilder.loadTexts: wlanAPGroup.setStatus('current')
if mibBuilder.loadTexts: wlanAPGroup.setDescription(' The name of an AP group ')
wlanAPNumAps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 3, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPNumAps.setStatus('current')
if mibBuilder.loadTexts: wlanAPNumAps.setDescription(' The number of APs in the AP Group ')
wlsxWlanAPTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4), )
if mibBuilder.loadTexts: wlsxWlanAPTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPTable.setDescription(' This table lists all the Access Points connected to the controller. ')
wlsxWlanAPEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanAPMacAddress"))
if mibBuilder.loadTexts: wlsxWlanAPEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPEntry.setDescription('Access Point Entry')
wlanAPMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 1), MacAddress())
if mibBuilder.loadTexts: wlanAPMacAddress.setStatus('current')
if mibBuilder.loadTexts: wlanAPMacAddress.setDescription(' Ethernet MAC Address of the Access Point ')
wlanAPIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPIpAddress.setStatus('current')
if mibBuilder.loadTexts: wlanAPIpAddress.setDescription(' IP Address of the Access Point ')
wlanAPName = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlanAPName.setStatus('current')
if mibBuilder.loadTexts: wlanAPName.setDescription(' Host name of the Access Point. ')
wlanAPGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlanAPGroupName.setStatus('current')
if mibBuilder.loadTexts: wlanAPGroupName.setDescription(' Group Name of the Access Point. ')
wlanAPModel = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 5), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPModel.setStatus('current')
if mibBuilder.loadTexts: wlanAPModel.setDescription(' Sys OID of the Access Point. ')
wlanAPSerialNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPSerialNumber.setStatus('current')
if mibBuilder.loadTexts: wlanAPSerialNumber.setDescription(' Serial Number of the Access Point. ')
wlanAPdot11aAntennaGain = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPdot11aAntennaGain.setStatus('current')
if mibBuilder.loadTexts: wlanAPdot11aAntennaGain.setDescription(" Configured antenna gain for 'A' Radio. ")
wlanAPdot11gAntennaGain = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPdot11gAntennaGain.setStatus('current')
if mibBuilder.loadTexts: wlanAPdot11gAntennaGain.setDescription(" Configured antenna gain for 'G' Radio. ")
wlanAPNumRadios = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPNumRadios.setStatus('current')
if mibBuilder.loadTexts: wlanAPNumRadios.setDescription(' Number of Radios in the Access Point. ')
wlanAPEnet1Mode = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 10), ArubaEnet1Mode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPEnet1Mode.setStatus('current')
if mibBuilder.loadTexts: wlanAPEnet1Mode.setDescription(' Enet1 Mode of the Access Point. ')
wlanAPIpsecMode = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 11), ArubaEnableValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPIpsecMode.setStatus('current')
if mibBuilder.loadTexts: wlanAPIpsecMode.setDescription(' IPSEC Mode of the Access Point. ')
wlanAPUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 12), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPUpTime.setStatus('current')
if mibBuilder.loadTexts: wlanAPUpTime.setDescription(' Time (in hundredths of seconds) since the last time the Access Point bootstrapped with the controller. ')
wlanAPModelName = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 13), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPModelName.setStatus('current')
if mibBuilder.loadTexts: wlanAPModelName.setDescription(' Model name of the Access Point. ')
wlanAPLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 14), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPLocation.setStatus('current')
if mibBuilder.loadTexts: wlanAPLocation.setDescription(' Location of the Access Point. ')
wlanAPBuilding = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBuilding.setStatus('current')
if mibBuilder.loadTexts: wlanAPBuilding.setDescription(' AP Building Number. ')
wlanAPFloor = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPFloor.setStatus('current')
if mibBuilder.loadTexts: wlanAPFloor.setDescription(' AP Floor Number. ')
wlanAPLoc = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPLoc.setStatus('current')
if mibBuilder.loadTexts: wlanAPLoc.setDescription(' AP Location. ')
wlanAPExternalAntenna = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 18), ArubaAntennaSetting()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPExternalAntenna.setStatus('current')
if mibBuilder.loadTexts: wlanAPExternalAntenna.setDescription(' AP Antenna Status. ')
wlanAPStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 19), ArubaAPStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatus.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatus.setDescription(' AP Status. ')
wlanAPNumBootstraps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 20), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPNumBootstraps.setStatus('current')
if mibBuilder.loadTexts: wlanAPNumBootstraps.setDescription(' Number of times the AP has bootstrapped with the controller. ')
wlanAPNumReboots = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 21), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPNumReboots.setStatus('current')
if mibBuilder.loadTexts: wlanAPNumReboots.setDescription(' Number of times the AP has rebooted. ')
wlanAPUnprovisioned = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 22), ArubaUnprovisionedStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPUnprovisioned.setStatus('current')
if mibBuilder.loadTexts: wlanAPUnprovisioned.setDescription(' Indicates whether the AP is unprovisioned due to lack of antenna gain or location code settings. ')
wlanAPMonitorMode = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 23), ArubaMonitorMode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPMonitorMode.setStatus('current')
if mibBuilder.loadTexts: wlanAPMonitorMode.setDescription(' Indicates whether any radio on this AP is acting as an air monitor. ')
wlanAPFQLNBuilding = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 24), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPFQLNBuilding.setStatus('current')
if mibBuilder.loadTexts: wlanAPFQLNBuilding.setDescription(" The building component of the AP's FQLN. ")
wlanAPFQLNFloor = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 25), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPFQLNFloor.setStatus('current')
if mibBuilder.loadTexts: wlanAPFQLNFloor.setDescription(" The floor component of the AP's FQLN. ")
wlanAPFQLN = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 26), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlanAPFQLN.setStatus('current')
if mibBuilder.loadTexts: wlanAPFQLN.setDescription(" The AP's Fully Qualified Location Name (FQLN). ")
wlanAPFQLNCampus = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 27), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPFQLNCampus.setStatus('current')
if mibBuilder.loadTexts: wlanAPFQLNCampus.setDescription(" The campus component of the AP's FQLN. ")
wlanAPLongitude = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 28), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlanAPLongitude.setStatus('current')
if mibBuilder.loadTexts: wlanAPLongitude.setDescription(' Longitude of the AP. Signed floating-point value. ')
wlanAPLatitude = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 29), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlanAPLatitude.setStatus('current')
if mibBuilder.loadTexts: wlanAPLatitude.setDescription(' Latitude of the AP. Signed floating-point value. ')
wlanAPAltitude = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 30), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlanAPAltitude.setStatus('current')
if mibBuilder.loadTexts: wlanAPAltitude.setDescription(' Altitude of the AP. Signed floating-point value. ')
wlanAPMeshRole = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 31), ArubaMeshRole()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlanAPMeshRole.setStatus('current')
if mibBuilder.loadTexts: wlanAPMeshRole.setDescription(' AP Mesh role ')
wlanAPSysLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 32), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPSysLocation.setStatus('current')
if mibBuilder.loadTexts: wlanAPSysLocation.setDescription(' AP sysLocation ')
wlsxWlanRadioTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5), )
if mibBuilder.loadTexts: wlsxWlanRadioTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanRadioTable.setDescription(' This table lists all the radios known to the controller. ')
wlsxWlanRadioEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanAPMacAddress"), (0, "WLSX-WLAN-MIB", "wlanAPRadioNumber"))
if mibBuilder.loadTexts: wlsxWlanRadioEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanRadioEntry.setDescription('AP Radio Entry')
wlanAPRadioNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 1), Integer32())
if mibBuilder.loadTexts: wlanAPRadioNumber.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioNumber.setDescription(' The radio number ')
wlanAPRadioType = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 2), ArubaPhyType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlanAPRadioType.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioType.setDescription(' Type of the Radio ')
wlanAPRadioChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRadioChannel.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioChannel.setDescription(' The channel the radio is currently operating on. ')
wlanAPRadioTransmitPower = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRadioTransmitPower.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioTransmitPower.setDescription(' The current power level of the radio. ')
wlanAPRadioMode = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 5), ArubaAccessPointMode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRadioMode.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioMode.setDescription(' The Mode in which the radio is operating. ')
wlanAPRadioUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRadioUtilization.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioUtilization.setDescription(' The Utilization of the radio as a percentage of the total capacity. ')
wlanAPRadioNumAssociatedClients = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRadioNumAssociatedClients.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioNumAssociatedClients.setDescription(' The number of Clients associated to this radio. ')
wlanAPRadioNumMonitoredClients = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRadioNumMonitoredClients.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioNumMonitoredClients.setDescription(' The number of Clients this Radio is monitoring. ')
wlanAPRadioNumActiveBSSIDs = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRadioNumActiveBSSIDs.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioNumActiveBSSIDs.setDescription(' The number of active BSSIDs on this Radio. ')
wlanAPRadioNumMonitoredBSSIDs = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRadioNumMonitoredBSSIDs.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioNumMonitoredBSSIDs.setDescription(' The number of AP BSSIDs this radio is monitoring. ')
wlanAPRadioBearing = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 11), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlanAPRadioBearing.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioBearing.setDescription(' Antenna Bearing in degrees from True North. Unsigned floating-point value. Range: 0-360. ')
wlanAPRadioTiltAngle = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 12), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlanAPRadioTiltAngle.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioTiltAngle.setDescription(' Tilt angle of antenna in degrees. -ve for downtilt, +ve for uptilt. Signed floating-point value. Range: -90 to +90. ')
wlanAPRadioHTMode = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 13), ArubaHTMode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRadioHTMode.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioHTMode.setDescription(' The HT mode of the radio, if any. ')
wlanAPRadioHTExtChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 14), ArubaHTExtChannel()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRadioHTExtChannel.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioHTExtChannel.setDescription(' Indicates the offset of the 40MHz extension channel, if any. ')
wlanAPRadioHTChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 15), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlanAPRadioHTChannel.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioHTChannel.setDescription(" A display string indicating the current channel. If wlanAPRadioHTExtChannel is set to 'above' or 'below', then the channel number will be appended with '+' or '-' respectively. ")
wlanAPRadioAPName = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 16), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlanAPRadioAPName.setStatus('current')
if mibBuilder.loadTexts: wlanAPRadioAPName.setDescription('Name of the AP the radio belongs to')
wlsxWlanAPBssidTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7), )
if mibBuilder.loadTexts: wlsxWlanAPBssidTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPBssidTable.setDescription(' This table lists all the BSSIDs active on this controller. ')
wlsxWlanAPBssidEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanAPMacAddress"), (0, "WLSX-WLAN-MIB", "wlanAPRadioNumber"), (0, "WLSX-WLAN-MIB", "wlanAPBSSID"))
if mibBuilder.loadTexts: wlsxWlanAPBssidEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPBssidEntry.setDescription('BSSID Entry')
wlanAPBSSID = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 1), MacAddress())
if mibBuilder.loadTexts: wlanAPBSSID.setStatus('current')
if mibBuilder.loadTexts: wlanAPBSSID.setDescription(' The MAC address of the Access Point. ')
wlanAPESSID = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPESSID.setStatus('current')
if mibBuilder.loadTexts: wlanAPESSID.setDescription(' ESSID this BSSID is advertising. ')
wlanAPBssidSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidSlot.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidSlot.setDescription(' Slot to which the Access Point is connected. ')
wlanAPBssidPort = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidPort.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidPort.setDescription(' Port to which the Access Point is connected. ')
wlanAPBssidPhyType = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 5), ArubaPhyType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidPhyType.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidPhyType.setDescription(' Physical Layer Protocol support of the AP. ')
wlanAPBssidRogueType = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 6), ArubaRogueApType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidRogueType.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidRogueType.setDescription(' The type of the Rogue. ')
wlanAPBssidMode = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("ap", 1), ("am", 2), ("mpp", 3), ("mp", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidMode.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidMode.setDescription(' Indicates whether the Access point is an Air Monitor or regular AP or Mesh Portal or Mesh Point. ')
wlanAPBssidChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 165))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidChannel.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidChannel.setDescription(' The current operating channel. ')
wlanAPBssidUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 9), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidUpTime.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidUpTime.setDescription(' Time (in hundredths of seconds) since the tunnel was created between the access point and controller ')
wlanAPBssidInactiveTime = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 10), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidInactiveTime.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidInactiveTime.setDescription(' Time (in hundredths of seconds) since any activity took place on the BSSID. ')
wlanAPBssidLoadBalancing = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 11), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidLoadBalancing.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidLoadBalancing.setDescription(' Indicates whether load balancing is enabled or not. ')
wlanAPBssidNumAssociatedStations = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 12), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidNumAssociatedStations.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidNumAssociatedStations.setDescription(' Indicates the number of stations associated to this BSSID. ')
wlanAPBssidAPMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 13), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidAPMacAddress.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidAPMacAddress.setDescription(' Indicates the Access Point to which this BSSID belongs. ')
wlanAPBssidPhyNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidPhyNumber.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidPhyNumber.setDescription(' Indicates the radio number to which this BSSID belongs. ')
wlanAPBssidHTMode = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 15), ArubaHTMode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidHTMode.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidHTMode.setDescription(' Indicates the HT mode of this BSSID, if any. ')
wlanAPBssidHTExtChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 16), ArubaHTExtChannel()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidHTExtChannel.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidHTExtChannel.setDescription(' Indicates the offset of the 40MHz extension channel, if any. ')
wlanAPBssidHTChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 17), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidHTChannel.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidHTChannel.setDescription(" A display string indicating the current channel. If wlanAPBssidHTExtChannel is set to 'above' or 'below', then the channel number will be appended with '+' or '-' respectively. ")
wlanAPBssidModule = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 18), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPBssidModule.setStatus('current')
if mibBuilder.loadTexts: wlanAPBssidModule.setDescription(' Module to which the Access Point is connected. ')
wlsxWlanESSIDTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8), )
if mibBuilder.loadTexts: wlsxWlanESSIDTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanESSIDTable.setDescription(' This Table lists all the ESSIDs advertised by this controller. ')
wlsxWlanESSIDEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanESSID"))
if mibBuilder.loadTexts: wlsxWlanESSIDEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanESSIDEntry.setDescription('ESSID Entry')
wlanESSID = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64)))
if mibBuilder.loadTexts: wlanESSID.setStatus('current')
if mibBuilder.loadTexts: wlanESSID.setDescription(' The ESSID being advertised. ')
wlanESSIDNumStations = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanESSIDNumStations.setStatus('current')
if mibBuilder.loadTexts: wlanESSIDNumStations.setDescription(' The number of stations connected to this ESSID. ')
wlanESSIDNumAccessPointsUp = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanESSIDNumAccessPointsUp.setStatus('current')
if mibBuilder.loadTexts: wlanESSIDNumAccessPointsUp.setDescription(' The number of APs currently advertising this ESSID. ')
wlanESSIDNumAccessPointsDown = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanESSIDNumAccessPointsDown.setStatus('current')
if mibBuilder.loadTexts: wlanESSIDNumAccessPointsDown.setDescription(' The number of APs configured to advertise this ESSID that are not currently operational. ')
wlanESSIDEncryptionType = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8, 1, 5), ArubaEncryptionMethods()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanESSIDEncryptionType.setStatus('current')
if mibBuilder.loadTexts: wlanESSIDEncryptionType.setDescription(' The encryption methods supported on this ESSID. ')
wlsxWlanESSIDVlanPoolTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 9), )
if mibBuilder.loadTexts: wlsxWlanESSIDVlanPoolTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanESSIDVlanPoolTable.setDescription(' This Table lists all the VLANs associated with this ESSID. ')
wlsxWlanESSIDVlanPoolEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 9, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanESSID"), (0, "WLSX-WLAN-MIB", "wlanESSIDVlanId"))
if mibBuilder.loadTexts: wlsxWlanESSIDVlanPoolEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanESSIDVlanPoolEntry.setDescription('ESSID Vlan Pool Entry')
wlanESSIDVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 9, 1, 1), Unsigned32())
if mibBuilder.loadTexts: wlanESSIDVlanId.setStatus('current')
if mibBuilder.loadTexts: wlanESSIDVlanId.setDescription(' VLAN which is part of the VLAN pool for this ESSID. ')
wlanESSIDVlanPoolStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 9, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: wlanESSIDVlanPoolStatus.setStatus('current')
if mibBuilder.loadTexts: wlanESSIDVlanPoolStatus.setDescription(' Row status object used to indicate the status of the row. ')
wlsxWlanStationTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1), )
if mibBuilder.loadTexts: wlsxWlanStationTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStationTable.setDescription(' This Table lists all the wireless stations associated with the Access points connected to this controller. ')
wlsxWlanStationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanStaPhyAddress"))
if mibBuilder.loadTexts: wlsxWlanStationEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStationEntry.setDescription('Station Entry')
wlanStaPhyAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 1), MacAddress())
if mibBuilder.loadTexts: wlanStaPhyAddress.setStatus('current')
if mibBuilder.loadTexts: wlanStaPhyAddress.setDescription(' The Physical Address of the Station. ')
wlanStaApBssid = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 2), MacAddress())
if mibBuilder.loadTexts: wlanStaApBssid.setStatus('current')
if mibBuilder.loadTexts: wlanStaApBssid.setDescription(' The Access point to which this station last associated to. ')
wlanStaPhyType = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 3), ArubaPhyType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaPhyType.setStatus('current')
if mibBuilder.loadTexts: wlanStaPhyType.setDescription(' Type of the Station. ')
wlanStaIsAuthenticated = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 4), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaIsAuthenticated.setStatus('current')
if mibBuilder.loadTexts: wlanStaIsAuthenticated.setDescription(' Indicates whether the station is authenticated. ')
wlanStaIsAssociated = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaIsAssociated.setStatus('current')
if mibBuilder.loadTexts: wlanStaIsAssociated.setDescription(' Indicates whether the station is associated. ')
wlanStaChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 165))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaChannel.setStatus('current')
if mibBuilder.loadTexts: wlanStaChannel.setDescription(' Channel on which the station is associated. ')
wlanStaVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 7), ArubaVlanValidRange()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaVlanId.setStatus('current')
if mibBuilder.loadTexts: wlanStaVlanId.setDescription(' VLAN in which the station is present. ')
wlanStaVOIPState = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 8), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaVOIPState.setStatus('current')
if mibBuilder.loadTexts: wlanStaVOIPState.setDescription(' The State of VoIP for this station. ')
wlanStaVOIPProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 9), ArubaVoipProtocolType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaVOIPProtocol.setStatus('current')
if mibBuilder.loadTexts: wlanStaVOIPProtocol.setDescription(' If VoIP is enabled, the type of the protocol supported. ')
wlanStaTransmitRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 10), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTransmitRate.setStatus('current')
if mibBuilder.loadTexts: wlanStaTransmitRate.setDescription(' Transmit rate with which the Station is associated with this system. ')
wlanStaAssociationID = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 11), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaAssociationID.setStatus('current')
if mibBuilder.loadTexts: wlanStaAssociationID.setDescription(' AID with which the Station is associated with this system. ')
wlanStaAccessPointESSID = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaAccessPointESSID.setStatus('current')
if mibBuilder.loadTexts: wlanStaAccessPointESSID.setDescription(' ESSID of the Access point ')
wlanStaPhyNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaPhyNumber.setStatus('current')
if mibBuilder.loadTexts: wlanStaPhyNumber.setDescription(' Radio PHY number to which the station is associated ')
wlanStaRSSI = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRSSI.setStatus('current')
if mibBuilder.loadTexts: wlanStaRSSI.setDescription(' Signal to Noise ratio for the station. ')
wlanStaUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 15), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaUpTime.setStatus('current')
if mibBuilder.loadTexts: wlanStaUpTime.setDescription(' Time since the station associated to the current BSSID. ')
wlanStaHTMode = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 16), ArubaHTMode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaHTMode.setStatus('current')
if mibBuilder.loadTexts: wlanStaHTMode.setDescription(' The HT status of the station. ')
wlsxWlanStaAssociationFailureTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2), )
if mibBuilder.loadTexts: wlsxWlanStaAssociationFailureTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStaAssociationFailureTable.setDescription(" This Table lists all the stations and the BSSID's to which they failed to associate. Once a station successfully associates, association failure entries are not reported for that station. ")
wlsxWlanStaAssociationFailureEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanStaPhyAddress"), (0, "WLSX-WLAN-MIB", "wlanAPBSSID"))
if mibBuilder.loadTexts: wlsxWlanStaAssociationFailureEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStaAssociationFailureEntry.setDescription('Station Association Failure Entry')
wlanStaAssocFailureApName = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaAssocFailureApName.setStatus('current')
if mibBuilder.loadTexts: wlanStaAssocFailureApName.setDescription(' Name of the Access Point to which this station tried to associate. ')
wlanStaAssocFailureApEssid = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaAssocFailureApEssid.setStatus('current')
if mibBuilder.loadTexts: wlanStaAssocFailureApEssid.setDescription(' ESSID to which the station association failed. ')
wlanStaAssocFailurePhyNum = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaAssocFailurePhyNum.setStatus('current')
if mibBuilder.loadTexts: wlanStaAssocFailurePhyNum.setDescription(' Radio PHY number to which the station tried to associate. ')
wlanStaAssocFailurePhyType = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1, 4), ArubaPhyType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaAssocFailurePhyType.setStatus('current')
if mibBuilder.loadTexts: wlanStaAssocFailurePhyType.setDescription(' Radio PHY Type of the Station. ')
wlanStaAssocFailureElapsedTime = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1, 5), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaAssocFailureElapsedTime.setStatus('current')
if mibBuilder.loadTexts: wlanStaAssocFailureElapsedTime.setDescription(" Elapsed time in timeticks after the station's failure to associate. ")
wlanStaAssocFailureReason = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaAssocFailureReason.setStatus('current')
if mibBuilder.loadTexts: wlanStaAssocFailureReason.setDescription(' Reason for the Station association failure ')
wlsxWlanAPStatsTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1), )
if mibBuilder.loadTexts: wlsxWlanAPStatsTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPStatsTable.setDescription(' This Table lists the statistics of all the Access Points connected to the controller. ')
wlsxWlanAPStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanAPMacAddress"), (0, "WLSX-WLAN-MIB", "wlanAPRadioNumber"), (0, "WLSX-WLAN-MIB", "wlanAPBSSID"))
if mibBuilder.loadTexts: wlsxWlanAPStatsEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPStatsEntry.setDescription('Access Point Stats entry')
wlanAPCurrentChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPCurrentChannel.setStatus('current')
if mibBuilder.loadTexts: wlanAPCurrentChannel.setDescription(' The channel the AP is currently using. ')
wlanAPNumClients = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPNumClients.setStatus('current')
if mibBuilder.loadTexts: wlanAPNumClients.setDescription(' The number of clients associated to this BSSID. ')
wlanAPTxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPTxPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPTxPkts.setDescription(' The number of packets transmitted on this BSSID. ')
wlanAPTxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPTxBytes.setStatus('current')
if mibBuilder.loadTexts: wlanAPTxBytes.setDescription(' The number of bytes transmitted on this BSSID. ')
wlanAPRxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRxPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPRxPkts.setDescription(' The number of packets received on this BSSID. ')
wlanAPRxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRxBytes.setStatus('current')
if mibBuilder.loadTexts: wlanAPRxBytes.setDescription(' The number of bytes received on this BSSID. ')
wlanAPTxDeauthentications = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPTxDeauthentications.setStatus('current')
if mibBuilder.loadTexts: wlanAPTxDeauthentications.setDescription(' The number of deauthentications transmitted on this BSSID. ')
wlanAPRxDeauthentications = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRxDeauthentications.setStatus('current')
if mibBuilder.loadTexts: wlanAPRxDeauthentications.setDescription(' The number of deauthentications received on this BSSID. ')
wlanAPChannelThroughput = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChannelThroughput.setStatus('current')
if mibBuilder.loadTexts: wlanAPChannelThroughput.setDescription(' The throughput achieved on this channel. ')
wlanAPFrameRetryRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPFrameRetryRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPFrameRetryRate.setDescription(' The number of retry packets as a percentage of the total packets transmitted and received by this BSSID. ')
wlanAPFrameLowSpeedRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPFrameLowSpeedRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPFrameLowSpeedRate.setDescription(' The number of low data rate (<= 18Mbps for A/G bands and <=2Mbps for B band) packets as a percentage of the total packets transmitted and received by this BSSID ')
wlanAPFrameNonUnicastRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPFrameNonUnicastRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPFrameNonUnicastRate.setDescription(' The number of broadcast and multicast packets as a percentage of the total packets transmitted on this BSSIDchannel. ')
wlanAPFrameFragmentationRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPFrameFragmentationRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPFrameFragmentationRate.setDescription(' The number of fragments as a percentage of the total packets transmitted by this BSSID. ')
wlanAPFrameBandwidthRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPFrameBandwidthRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPFrameBandwidthRate.setDescription(' The bandwidth of this BSSID in Kbps. ')
wlanAPFrameRetryErrorRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPFrameRetryErrorRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPFrameRetryErrorRate.setDescription(' The number of error packets as a percentage of the total packets received on this BSSID. ')
wlanAPChannelErrorRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChannelErrorRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPChannelErrorRate.setDescription(' The number of error packets as a percentage of the total packets received on the current channel. ')
wlanAPFrameReceiveErrorRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPFrameReceiveErrorRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPFrameReceiveErrorRate.setDescription(' The number of error packets as a percentage of the total packets received on this BSSID. ')
wlanAPRxDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRxDataPkts.setStatus('deprecated')
if mibBuilder.loadTexts: wlanAPRxDataPkts.setDescription(' The number of packets received on this BSSID. ')
wlanAPRxDataBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRxDataBytes.setStatus('deprecated')
if mibBuilder.loadTexts: wlanAPRxDataBytes.setDescription(' The number of bytes received on this BSSID. ')
wlanAPTxDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPTxDataPkts.setStatus('deprecated')
if mibBuilder.loadTexts: wlanAPTxDataPkts.setDescription(' The number of packets transmitted on this BSSID. ')
wlanAPTxDataBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPTxDataBytes.setStatus('deprecated')
if mibBuilder.loadTexts: wlanAPTxDataBytes.setDescription(' The number of bytes transmitted on this BSSID. ')
wlanAPRxDataPkts64 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 22), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRxDataPkts64.setStatus('current')
if mibBuilder.loadTexts: wlanAPRxDataPkts64.setDescription(' The number of packets received on this BSSID. ')
wlanAPRxDataBytes64 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 23), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPRxDataBytes64.setStatus('current')
if mibBuilder.loadTexts: wlanAPRxDataBytes64.setDescription(' The number of bytes received on this BSSID. ')
wlanAPTxDataPkts64 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 24), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPTxDataPkts64.setStatus('current')
if mibBuilder.loadTexts: wlanAPTxDataPkts64.setDescription(' The number of packets transmitted on this BSSID. ')
wlanAPTxDataBytes64 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 25), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPTxDataBytes64.setStatus('current')
if mibBuilder.loadTexts: wlanAPTxDataBytes64.setDescription(' The number of bytes transmitted on this BSSID. ')
wlsxWlanAPRateStatsTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2), )
if mibBuilder.loadTexts: wlsxWlanAPRateStatsTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPRateStatsTable.setDescription(' This table contains all the AP Packet and Byte Counts but represented in terms of rate categories. ')
wlsxWlanAPRateStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanAPMacAddress"), (0, "WLSX-WLAN-MIB", "wlanAPRadioNumber"), (0, "WLSX-WLAN-MIB", "wlanAPBSSID"))
if mibBuilder.loadTexts: wlsxWlanAPRateStatsEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPRateStatsEntry.setDescription('Data rate based packet and byte count entry for an AP')
wlanAPStatsTotPktsAt1Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt1Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt1Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 1Mbps rate. ')
wlanAPStatsTotBytesAt1Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt1Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt1Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 1Mbps rate. ')
wlanAPStatsTotPktsAt2Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt2Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt2Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 2Mbps rate. ')
wlanAPStatsTotBytesAt2Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt2Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt2Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 2Mbps rate. ')
wlanAPStatsTotPktsAt5Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt5Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt5Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 5Mbps rate. ')
wlanAPStatsTotBytesAt5Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt5Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt5Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 5Mbps rate. ')
wlanAPStatsTotPktsAt11Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt11Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt11Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 11Mbps rate. ')
wlanAPStatsTotBytesAt11Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt11Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt11Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 11Mbps rate. ')
wlanAPStatsTotPktsAt6Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt6Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt6Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 6Mbps rate. ')
wlanAPStatsTotBytesAt6Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt6Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt6Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 6Mbps rate. ')
wlanAPStatsTotPktsAt12Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt12Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt12Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 12Mbps rate. ')
wlanAPStatsTotBytesAt12Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt12Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt12Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 12Mbps rate. ')
wlanAPStatsTotPktsAt18Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt18Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt18Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 18Mbps rate. ')
wlanAPStatsTotBytesAt18Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt18Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt18Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 18Mbps rate. ')
wlanAPStatsTotPktsAt24Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt24Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt24Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 24Mbps rate. ')
wlanAPStatsTotBytesAt24Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt24Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt24Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 24Mbps rate. ')
wlanAPStatsTotPktsAt36Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt36Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt36Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 36Mbps rate. ')
wlanAPStatsTotBytesAt36Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt36Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt36Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 36Mbps rate. ')
wlanAPStatsTotPktsAt48Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt48Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt48Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 48Mbps rate. ')
wlanAPStatsTotBytesAt48Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt48Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt48Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 48Mbps rate. ')
wlanAPStatsTotPktsAt54Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt54Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt54Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 54Mbps rate. ')
wlanAPStatsTotBytesAt54Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt54Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt54Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 54Mbps rate. ')
wlanAPStatsTotPktsAt9Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt9Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotPktsAt9Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 9Mbps rate. ')
wlanAPStatsTotBytesAt9Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt9Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotBytesAt9Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 9Mbps rate. ')
wlsxWlanAPDATypeStatsTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3), )
if mibBuilder.loadTexts: wlsxWlanAPDATypeStatsTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPDATypeStatsTable.setDescription(' This table contains all the per BSSID Packet and Byte Counts but broken down in terms of Destination Address Type. ')
wlsxWlanAPDATypeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanAPMacAddress"), (0, "WLSX-WLAN-MIB", "wlanAPRadioNumber"), (0, "WLSX-WLAN-MIB", "wlanAPBSSID"))
if mibBuilder.loadTexts: wlsxWlanAPDATypeStatsEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPDATypeStatsEntry.setDescription('Destination Address based packet and byte count entry for an AP')
wlanAPStatsTotDABroadcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotDABroadcastPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotDABroadcastPkts.setDescription(' This attribute indicates the total number of Broadcast packets observed on this BSSID. ')
wlanAPStatsTotDABroadcastBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotDABroadcastBytes.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotDABroadcastBytes.setDescription(' This attribute indicates the total number of Broadcast Bytes observed on this BSSID. ')
wlanAPStatsTotDAMulticastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotDAMulticastPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotDAMulticastPkts.setDescription(' This attribute indicates the total number of Multicast packets observed on this BSSID. ')
wlanAPStatsTotDAMulticastBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotDAMulticastBytes.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotDAMulticastBytes.setDescription(' This attribute indicates the total number of Multicast Bytes observed on this BSSID. ')
wlanAPStatsTotDAUnicastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotDAUnicastPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotDAUnicastPkts.setDescription(' This attribute indicates the total number of Unicast packets observed on this BSSID. ')
wlanAPStatsTotDAUnicastBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotDAUnicastBytes.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotDAUnicastBytes.setDescription(' This attribute indicates the total number of Unicast Bytes observed on this BSSID. ')
wlsxWlanAPFrameTypeStatsTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4), )
if mibBuilder.loadTexts: wlsxWlanAPFrameTypeStatsTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPFrameTypeStatsTable.setDescription(' This table contains all the per BSSID Packet and Byte Counts but broken down into different Frame Types. ')
wlsxWlanAPFrameTypeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanAPMacAddress"), (0, "WLSX-WLAN-MIB", "wlanAPRadioNumber"), (0, "WLSX-WLAN-MIB", "wlanAPBSSID"))
if mibBuilder.loadTexts: wlsxWlanAPFrameTypeStatsEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPFrameTypeStatsEntry.setDescription('Frame Type based packet and byte count entry for an AP')
wlanAPStatsTotMgmtPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotMgmtPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotMgmtPkts.setDescription(' This attribute indicates the total number of Management packets observed on this BSSID. ')
wlanAPStatsTotMgmtBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotMgmtBytes.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotMgmtBytes.setDescription(' This attribute indicates the total number of Management Bytes observed on this BSSID. ')
wlanAPStatsTotCtrlPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotCtrlPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotCtrlPkts.setDescription(' This attribute indicates the total number of Control packets observed on this BSSID. ')
wlanAPStatsTotCtrlBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotCtrlBytes.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotCtrlBytes.setDescription(' This attribute indicates the total number of Control Bytes observed on this BSSID. ')
wlanAPStatsTotDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotDataPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotDataPkts.setDescription(' This attribute indicates the total number of Data packets observed on this BSSID. ')
wlanAPStatsTotDataBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsTotDataBytes.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsTotDataBytes.setDescription(' This attribute indicates the total number of Data Bytes observed on this BSSID. ')
wlsxWlanAPPktSizeStatsTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5), )
if mibBuilder.loadTexts: wlsxWlanAPPktSizeStatsTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPPktSizeStatsTable.setDescription(' This table contains all the per BSSID Packet Count but broken down into different Packet Sizes. ')
wlsxWlanAPPktSizeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanAPMacAddress"), (0, "WLSX-WLAN-MIB", "wlanAPRadioNumber"), (0, "WLSX-WLAN-MIB", "wlanAPBSSID"))
if mibBuilder.loadTexts: wlsxWlanAPPktSizeStatsEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPPktSizeStatsEntry.setDescription('Packet Size based packet count entry for a BSSID')
wlanAPStatsPkts63Bytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsPkts63Bytes.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsPkts63Bytes.setDescription(' This attribute indicates the total number of packets that were less than 64 bytes long. ')
wlanAPStatsPkts64To127 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsPkts64To127.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsPkts64To127.setDescription(' This attribute indicates the total number of packets that were between 64 and 127 bytes long. ')
wlanAPStatsPkts128To255 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsPkts128To255.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsPkts128To255.setDescription(' This attribute indicates the total number of packets that were between 128 and 255 bytes long. ')
wlanAPStatsPkts256To511 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsPkts256To511.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsPkts256To511.setDescription(' This attribute indicates the total number of packets that were between 256 and 511 bytes long. ')
wlanAPStatsPkts512To1023 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsPkts512To1023.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsPkts512To1023.setDescription(' This attribute indicates the total number of packets that were between 512 and 1023 bytes long. ')
wlanAPStatsPkts1024To1518 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPStatsPkts1024To1518.setStatus('current')
if mibBuilder.loadTexts: wlanAPStatsPkts1024To1518.setDescription(' This attribute indicates the total number of packets that were between 1024 and 1518 bytes long. ')
wlsxWlanAPChStatsTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6), )
if mibBuilder.loadTexts: wlsxWlanAPChStatsTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPChStatsTable.setDescription(' This Table lists the Channel statistics of all the Access Points connected to the controller. ')
wlsxWlanAPChStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanAPMacAddress"), (0, "WLSX-WLAN-MIB", "wlanAPRadioNumber"))
if mibBuilder.loadTexts: wlsxWlanAPChStatsEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanAPChStatsEntry.setDescription('Access Point Channel Stats entry')
wlanAPChannelNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 165))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChannelNumber.setStatus('current')
if mibBuilder.loadTexts: wlanAPChannelNumber.setDescription(' The channel the AP is currently using. ')
wlanAPChNumStations = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChNumStations.setStatus('current')
if mibBuilder.loadTexts: wlanAPChNumStations.setDescription(' This attribute indicates the number of stations using this channel. ')
wlanAPChTotPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChTotPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPChTotPkts.setDescription(' This attribute indicates the total packets observed on this channel. ')
wlanAPChTotBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChTotBytes.setStatus('current')
if mibBuilder.loadTexts: wlanAPChTotBytes.setDescription(' This attribute indicates the total Bytes observed on this channel. ')
wlanAPChTotRetryPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChTotRetryPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPChTotRetryPkts.setDescription(' This attribute indicates the total Retry Packets observed on this channel. ')
wlanAPChTotFragmentedPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChTotFragmentedPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPChTotFragmentedPkts.setDescription(' This attribute indicates the total Fragmented Packets observed on this channel. ')
wlanAPChTotPhyErrPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChTotPhyErrPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPChTotPhyErrPkts.setDescription(' This attribute indicates the total Physical Error Packets observed on this channel. ')
wlanAPChTotMacErrPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChTotMacErrPkts.setStatus('current')
if mibBuilder.loadTexts: wlanAPChTotMacErrPkts.setDescription(' This attribute indicates the total Mac errors packets observed on this channel. ')
wlanAPChNoise = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChNoise.setStatus('current')
if mibBuilder.loadTexts: wlanAPChNoise.setDescription(' This attribute indicates the noise observed on this channel. ')
wlanAPChCoverageIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChCoverageIndex.setStatus('current')
if mibBuilder.loadTexts: wlanAPChCoverageIndex.setDescription(' This attribute indicates the coverage provided by the AP on this channel. ')
wlanAPChInterferenceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChInterferenceIndex.setStatus('current')
if mibBuilder.loadTexts: wlanAPChInterferenceIndex.setDescription(' This attribute indicates the interference observed on this channel. ')
wlanAPChFrameRetryRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChFrameRetryRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPChFrameRetryRate.setDescription(' The number of retry packets as a percentage of the total packets transmitted and received on this channel. ')
wlanAPChFrameLowSpeedRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChFrameLowSpeedRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPChFrameLowSpeedRate.setDescription(' The number of low data rate (<= 18Mbps for A/G bands and <=2Mbps for B band) packets as a percentage of the total packets transmitted and received on this channel ')
wlanAPChFrameNonUnicastRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChFrameNonUnicastRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPChFrameNonUnicastRate.setDescription(' The number of broadcast and multicast packets as a percentage of the total packets transmitted on this channel. ')
wlanAPChFrameFragmentationRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChFrameFragmentationRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPChFrameFragmentationRate.setDescription(' The number of fragments as a percentage of the total packets transmitted on this channel ')
wlanAPChFrameBandwidthRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChFrameBandwidthRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPChFrameBandwidthRate.setDescription(' The bandwidth of this channel in Kbps. ')
wlanAPChFrameRetryErrorRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChFrameRetryErrorRate.setStatus('deprecated')
if mibBuilder.loadTexts: wlanAPChFrameRetryErrorRate.setDescription(' The number of error packets as a percentage of the total packets received on this channel. ')
wlanAPChBusyRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 18), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChBusyRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPChBusyRate.setDescription(' This attribute indicates the busy this channel is. ')
wlanAPChNumAPs = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 19), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChNumAPs.setStatus('current')
if mibBuilder.loadTexts: wlanAPChNumAPs.setDescription(' This attribute indicates the number of Access Points observed on this channel. ')
wlanAPChFrameReceiveErrorRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 20), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChFrameReceiveErrorRate.setStatus('current')
if mibBuilder.loadTexts: wlanAPChFrameReceiveErrorRate.setDescription(' The number of error packets as a percentage of the total packets received on this channel. ')
wlanAPChTransmittedFragmentCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChTransmittedFragmentCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChTransmittedFragmentCount.setDescription(' This counter shall be incremented for an acknowledged MPDU with an individual address in the address 1 field or an MPDU with a multicast address in the address 1 field of type Data or Management. ')
wlanAPChMulticastTransmittedFrameCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChMulticastTransmittedFrameCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChMulticastTransmittedFrameCount.setDescription(' This counter shall increment only when the multicast bit is set in the destination MAC address of a successfully transmitted MSDU. When operating as a STA in an ESS, where these frames are directed to the AP, this implies having received an acknowledgment to all associated MPDUs. ')
wlanAPChFailedCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChFailedCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChFailedCount.setDescription(' This counter shall increment when an MSDU is not transmitted successfully due to the number of transmit attempts exceeding either the dot11ShortRetryLimit or dot11LongRetryLimit. ')
wlanAPChRetryCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChRetryCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChRetryCount.setDescription(' This counter shall increment when an MSDU is successfully transmitted after one or more retransmissions. ')
wlanAPChMultipleRetryCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChMultipleRetryCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChMultipleRetryCount.setDescription(' This counter shall increment when an MSDU is successfully transmitted after more than one retransmission. ')
wlanAPChFrameDuplicateCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChFrameDuplicateCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChFrameDuplicateCount.setDescription(' This counter shall increment when a frame is received that the Sequence Control field indicates is a duplicate. ')
wlanAPChRTSSuccessCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChRTSSuccessCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChRTSSuccessCount.setDescription(' This counter shall increment when a CTS is received in response to an RTS. ')
wlanAPChRTSFailureCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChRTSFailureCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChRTSFailureCount.setDescription(' This counter shall increment when a CTS is not received in response to an RTS. ')
wlanAPChACKFailureCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChACKFailureCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChACKFailureCount.setDescription(' This counter shall increment when an ACK is not received when expected. ')
wlanAPChReceivedFragmentCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChReceivedFragmentCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChReceivedFragmentCount.setDescription(' This counter shall be incremented for each successfully received MPDU of type Data or Management. ')
wlanAPChMulticastReceivedFrameCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChMulticastReceivedFrameCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChMulticastReceivedFrameCount.setDescription(' This counter shall increment when a MSDU is received with the multicast bit set in the destination MAC address. ')
wlanAPChFCSErrorCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChFCSErrorCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChFCSErrorCount.setDescription(' This counter shall increment when an FCS error is detected in a received MPDU. ')
wlanAPChTransmittedFrameCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 33), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChTransmittedFrameCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChTransmittedFrameCount.setDescription(' This counter shall increment for each successfully transmitted MSDU. ')
wlanAPChWEPUndecryptableCount = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 34), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChWEPUndecryptableCount.setStatus('current')
if mibBuilder.loadTexts: wlanAPChWEPUndecryptableCount.setDescription(" This counter shall increment when a frame is received with the Protected Frame subfield of the Frame Control field set to one and the WEPOn value for the key mapped to the transmitter's MAC address indicates that the frame should not have been encrypted or that frame is discarded due to the receiving STA not implementing the privacy option. ")
wlanAPChRxUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChRxUtilization.setStatus('current')
if mibBuilder.loadTexts: wlanAPChRxUtilization.setDescription(' This is the percentage of time spent by the radio in receiving packets. ')
wlanAPChTxUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChTxUtilization.setStatus('current')
if mibBuilder.loadTexts: wlanAPChTxUtilization.setDescription(' This is the percentage of time spent by the radio in transmitting packets. ')
wlanAPChUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanAPChUtilization.setStatus('current')
if mibBuilder.loadTexts: wlanAPChUtilization.setDescription(' This is the percentage of time the channel is busy. ')
wlsxWlanStationStatsTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1), )
if mibBuilder.loadTexts: wlsxWlanStationStatsTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStationStatsTable.setDescription(' This Table lists statistics of all the wireless stations associated with an AP connected to this controller. ')
wlsxWlanStationStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanStaPhyAddress"))
if mibBuilder.loadTexts: wlsxWlanStationStatsEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStationStatsEntry.setDescription('Station Stats Entry')
wlanStaChannelNum = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaChannelNum.setStatus('current')
if mibBuilder.loadTexts: wlanStaChannelNum.setDescription(' The channel the station is currently using. ')
wlanStaTxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPkts.setDescription(' The number of packets transmitted by this station. ')
wlanStaTxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytes.setDescription(' The number of bytes transmitted by this station. ')
wlanStaRxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPkts.setDescription(' The number of packets received by this station. ')
wlanStaRxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytes.setDescription(' The number of bytes received by this station. ')
wlanStaTxBCastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBCastPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBCastPkts.setDescription(' The number of broadcast packets transmitted by this station. ')
wlanStaRxBCastBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBCastBytes.setStatus('deprecated')
if mibBuilder.loadTexts: wlanStaRxBCastBytes.setDescription(' The number of broadcast bytes transmitted by this station. ')
wlanStaTxMCastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxMCastPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxMCastPkts.setDescription(' The number of multicast packets transmitted by this station. ')
wlanStaRxMCastBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxMCastBytes.setStatus('deprecated')
if mibBuilder.loadTexts: wlanStaRxMCastBytes.setDescription(' The number of multicast bytes transmitted by this station. ')
wlanStaDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaDataPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaDataPkts.setDescription(' The total number of Data packets transmitted by this station. ')
wlanStaCtrlPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaCtrlPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaCtrlPkts.setDescription(' The total number of Control packets transmitted by this station. ')
wlanStaNumAssocRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaNumAssocRequests.setStatus('current')
if mibBuilder.loadTexts: wlanStaNumAssocRequests.setDescription(' The number of Association requests transmitted by this station. ')
wlanStaNumAuthRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaNumAuthRequests.setStatus('current')
if mibBuilder.loadTexts: wlanStaNumAuthRequests.setDescription(' The number of Authentication requests transmitted by this station. ')
wlanStaTxDeauthentications = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxDeauthentications.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxDeauthentications.setDescription(' The number of Deauthentication frames transmitted by this station. ')
wlanStaRxDeauthentications = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxDeauthentications.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxDeauthentications.setDescription(' The number of Deauthentication frames received by this station. ')
wlanStaFrameRetryRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaFrameRetryRate.setStatus('current')
if mibBuilder.loadTexts: wlanStaFrameRetryRate.setDescription(' The number of retry packets as a percentage of the total packets transmitted and received by this station. ')
wlanStaFrameLowSpeedRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaFrameLowSpeedRate.setStatus('current')
if mibBuilder.loadTexts: wlanStaFrameLowSpeedRate.setDescription(' The number of low data rate (<= 18Mbps for A/G bands and <=2Mbps for B band) packets as a percentage of the total packets transmitted and received by this station. ')
wlanStaFrameNonUnicastRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 18), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaFrameNonUnicastRate.setStatus('current')
if mibBuilder.loadTexts: wlanStaFrameNonUnicastRate.setDescription(' The number of broadcast and multicast packets as a percentage of the total packets transmitted by this station. ')
wlanStaFrameFragmentationRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 19), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaFrameFragmentationRate.setStatus('current')
if mibBuilder.loadTexts: wlanStaFrameFragmentationRate.setDescription(' The number of fragments as a percentage of the total packets transmitted by this station. ')
wlanStaFrameBandwidthRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 20), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaFrameBandwidthRate.setStatus('current')
if mibBuilder.loadTexts: wlanStaFrameBandwidthRate.setDescription(' The bandwidth of this station in Kbps. ')
wlanStaFrameRetryErrorRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 21), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaFrameRetryErrorRate.setStatus('deprecated')
if mibBuilder.loadTexts: wlanStaFrameRetryErrorRate.setDescription(' The number of error packets as a percentage of the total packets received by this station. ')
wlanStaFrameReceiveErrorRate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 22), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaFrameReceiveErrorRate.setStatus('current')
if mibBuilder.loadTexts: wlanStaFrameReceiveErrorRate.setDescription(' The number of error packets as a percentage of the total packets received by this station. ')
wlanStaTxBCastBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBCastBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBCastBytes.setDescription(' The number of broadcast bytes transmitted by this station. ')
wlanStaTxMCastBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxMCastBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxMCastBytes.setDescription(' The number of multicast bytes transmitted by this station. ')
wlanStaTxBytes64 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 25), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytes64.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytes64.setDescription(' The number of bytes transmitted by this station, 64-bit value ')
wlanStaRxBytes64 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 26), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytes64.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytes64.setDescription(' The number of bytes received by this station, 64-bit value ')
wlsxWlanStaRateStatsTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2), )
if mibBuilder.loadTexts: wlsxWlanStaRateStatsTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStaRateStatsTable.setDescription(' This table contains all the Packet and Byte Counts for a station represented in terms of rate categories. ')
wlsxWlanStaRateStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanStaPhyAddress"))
if mibBuilder.loadTexts: wlsxWlanStaRateStatsEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStaRateStatsEntry.setDescription('Data rate based packet and byte count entry for a station')
wlanStaTxPktsAt1Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPktsAt1Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPktsAt1Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 1Mbps rate. ')
wlanStaTxBytesAt1Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytesAt1Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytesAt1Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 1Mbps rate. ')
wlanStaTxPktsAt2Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPktsAt2Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPktsAt2Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 2Mbps rate. ')
wlanStaTxBytesAt2Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytesAt2Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytesAt2Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 2Mbps rate. ')
wlanStaTxPktsAt5Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPktsAt5Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPktsAt5Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 5Mbps rate. ')
wlanStaTxBytesAt5Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytesAt5Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytesAt5Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 5Mbps rate. ')
wlanStaTxPktsAt11Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPktsAt11Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPktsAt11Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 11Mbps rate. ')
wlanStaTxBytesAt11Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytesAt11Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytesAt11Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 11Mbps rate. ')
wlanStaTxPktsAt6Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPktsAt6Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPktsAt6Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 6Mbps rate. ')
wlanStaTxBytesAt6Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytesAt6Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytesAt6Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 6Mbps rate. ')
wlanStaTxPktsAt12Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPktsAt12Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPktsAt12Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 12Mbps rate. ')
wlanStaTxBytesAt12Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytesAt12Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytesAt12Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 12Mbps rate. ')
wlanStaTxPktsAt18Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPktsAt18Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPktsAt18Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 18Mbps rate. ')
wlanStaTxBytesAt18Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytesAt18Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytesAt18Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 18Mbps rate. ')
wlanStaTxPktsAt24Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPktsAt24Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPktsAt24Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 24Mbps rate. ')
wlanStaTxBytesAt24Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytesAt24Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytesAt24Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 24Mbps rate. ')
wlanStaTxPktsAt36Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPktsAt36Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPktsAt36Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 36Mbps rate. ')
wlanStaTxBytesAt36Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytesAt36Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytesAt36Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 36Mbps rate. ')
wlanStaTxPktsAt48Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPktsAt48Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPktsAt48Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 48Mbps rate. ')
wlanStaTxBytesAt48Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytesAt48Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytesAt48Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 48Mbps rate. ')
wlanStaTxPktsAt54Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPktsAt54Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPktsAt54Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 54Mbps rate. ')
wlanStaTxBytesAt54Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytesAt54Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytesAt54Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 54Mbps rate. ')
wlanStaRxPktsAt1Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPktsAt1Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPktsAt1Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 1Mbps rate. ')
wlanStaRxBytesAt1Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytesAt1Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytesAt1Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 1Mbps rate. ')
wlanStaRxPktsAt2Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPktsAt2Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPktsAt2Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 2Mbps rate. ')
wlanStaRxBytesAt2Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytesAt2Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytesAt2Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 2Mbps rate. ')
wlanStaRxPktsAt5Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPktsAt5Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPktsAt5Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 5Mbps rate. ')
wlanStaRxBytesAt5Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytesAt5Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytesAt5Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 5Mbps rate. ')
wlanStaRxPktsAt11Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPktsAt11Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPktsAt11Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 11Mbps rate. ')
wlanStaRxBytesAt11Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytesAt11Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytesAt11Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 11Mbps rate. ')
wlanStaRxPktsAt6Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPktsAt6Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPktsAt6Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 6Mbps rate. ')
wlanStaRxBytesAt6Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytesAt6Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytesAt6Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 6Mbps rate. ')
wlanStaRxPktsAt12Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 33), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPktsAt12Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPktsAt12Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 12Mbps rate. ')
wlanStaRxBytesAt12Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 34), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytesAt12Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytesAt12Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 12Mbps rate. ')
wlanStaRxPktsAt18Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 35), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPktsAt18Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPktsAt18Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 18Mbps rate. ')
wlanStaRxBytesAt18Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 36), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytesAt18Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytesAt18Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 18Mbps rate. ')
wlanStaRxPktsAt24Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 37), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPktsAt24Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPktsAt24Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 24Mbps rate. ')
wlanStaRxBytesAt24Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 38), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytesAt24Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytesAt24Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 24Mbps rate. ')
wlanStaRxPktsAt36Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 39), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPktsAt36Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPktsAt36Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 36Mbps rate. ')
wlanStaRxBytesAt36Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 40), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytesAt36Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytesAt36Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 36Mbps rate. ')
wlanStaRxPktsAt48Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 41), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPktsAt48Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPktsAt48Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 48Mbps rate. ')
wlanStaRxBytesAt48Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 42), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytesAt48Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytesAt48Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 48Mbps rate. ')
wlanStaRxPktsAt54Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 43), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPktsAt54Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPktsAt54Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 54Mbps rate. ')
wlanStaRxBytesAt54Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 44), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytesAt54Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytesAt54Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 54Mbps rate. ')
wlanStaTxPktsAt9Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 45), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPktsAt9Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPktsAt9Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 9Mbps rate. ')
wlanStaTxBytesAt9Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 46), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxBytesAt9Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxBytesAt9Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 9Mbps rate. ')
wlanStaRxPktsAt9Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 47), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPktsAt9Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPktsAt9Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 9Mbps rate. ')
wlanStaRxBytesAt9Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 48), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxBytesAt9Mbps.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxBytesAt9Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 9Mbps rate. ')
wlsxWlanStaDATypeStatsTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3), )
if mibBuilder.loadTexts: wlsxWlanStaDATypeStatsTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStaDATypeStatsTable.setDescription(' This table contains all the Packet and Byte Counts for a station but but broken down in terms of Destination Address Type. ')
wlsxWlanStaDATypeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanStaPhyAddress"))
if mibBuilder.loadTexts: wlsxWlanStaDATypeStatsEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStaDATypeStatsEntry.setDescription(' Destination Address based packet and byte count entry for a station ')
wlanStaTxDABroadcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxDABroadcastPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxDABroadcastPkts.setDescription(' This attribute indicates the number of Broadcast packets transmitted by this Station. ')
wlanStaTxDABroadcastBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxDABroadcastBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxDABroadcastBytes.setDescription(' This attribute indicates the number of Broadcast Bytes transmitted by this Station. ')
wlanStaTxDAMulticastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxDAMulticastPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxDAMulticastPkts.setDescription(' This attribute indicates the number of Multicast packets transmitted by this station. ')
wlanStaTxDAMulticastBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxDAMulticastBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxDAMulticastBytes.setDescription(' This attribute indicates the number of Multicast Bytes transmitted by this station. ')
wlanStaTxDAUnicastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxDAUnicastPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxDAUnicastPkts.setDescription(' This attribute indicates the total of Unicast packets transmitted by this station. ')
wlanStaTxDAUnicastBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxDAUnicastBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxDAUnicastBytes.setDescription(' This attribute indicates the total of Unicast Bytes transmitted by this station. ')
wlsxWlanStaFrameTypeStatsTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4), )
if mibBuilder.loadTexts: wlsxWlanStaFrameTypeStatsTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStaFrameTypeStatsTable.setDescription(' This table contains all the Packet and Byte Counts for stations but broken down into different Frame Types. ')
wlsxWlanStaFrameTypeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanStaPhyAddress"))
if mibBuilder.loadTexts: wlsxWlanStaFrameTypeStatsEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStaFrameTypeStatsEntry.setDescription('Frame Type based packet and byte count entry for a station')
wlanStaTxMgmtPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxMgmtPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxMgmtPkts.setDescription(' This attribute indicates the Transmitted Management packets from a station. ')
wlanStaTxMgmtBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxMgmtBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxMgmtBytes.setDescription(' This attribute indicates the Transmitted Management Bytes from a station ')
wlanStaTxCtrlPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxCtrlPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxCtrlPkts.setDescription(' This attribute indicates the Transmitted Control packets from a station ')
wlanStaTxCtrlBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxCtrlBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxCtrlBytes.setDescription(' This attribute indicates the Transmitted Control Bytes from a station ')
wlanStaTxDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxDataPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxDataPkts.setDescription(' This attribute indicates the Transmitted Data packets from a station ')
wlanStaTxDataBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxDataBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxDataBytes.setDescription(' This attribute indicates the Transmitted Data Bytes observed on this channel. ')
wlanStaRxMgmtPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxMgmtPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxMgmtPkts.setDescription(' This attribute indicates the number of received Management packets at a station. ')
wlanStaRxMgmtBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxMgmtBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxMgmtBytes.setDescription(' This attribute indicates the number of received Management Bytes at a station. ')
wlanStaRxCtrlPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxCtrlPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxCtrlPkts.setDescription(' This attribute indicates the number of received Control packets at a station. ')
wlanStaRxCtrlBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxCtrlBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxCtrlBytes.setDescription(' This attribute indicates the number of received Control Bytes at a station. ')
wlanStaRxDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxDataPkts.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxDataPkts.setDescription(' This attribute indicates the number of received Data packets at a station. ')
wlanStaRxDataBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxDataBytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxDataBytes.setDescription(' This attribute indicates the number of received Data Bytes at a station. ')
wlsxWlanStaPktSizeStatsTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5), )
if mibBuilder.loadTexts: wlsxWlanStaPktSizeStatsTable.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStaPktSizeStatsTable.setDescription(' This table contains all the Packet and Byte Counts for stations but broken down into different Packet Sizes. ')
wlsxWlanStaPktSizeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1), ).setIndexNames((0, "WLSX-WLAN-MIB", "wlanStaPhyAddress"))
if mibBuilder.loadTexts: wlsxWlanStaPktSizeStatsEntry.setStatus('current')
if mibBuilder.loadTexts: wlsxWlanStaPktSizeStatsEntry.setDescription('Packet Size based packet count entry for a station')
wlanStaTxPkts63Bytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPkts63Bytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPkts63Bytes.setDescription(' This attribute indicates the number of packets transmitted by the station that were less than 64 bytes long. ')
wlanStaTxPkts64To127 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPkts64To127.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPkts64To127.setDescription(' This attribute indicates the number of packets transmitted by the station that were between 64 and 127 bytes long. ')
wlanStaTxPkts128To255 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPkts128To255.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPkts128To255.setDescription(' This attribute indicates the number of packets transmitted by the station that were between 128 and 255 bytes long. ')
wlanStaTxPkts256To511 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPkts256To511.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPkts256To511.setDescription(' This attribute indicates the number of packets transmitted by the station that were between 256 and 511 bytes long. ')
wlanStaTxPkts512To1023 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPkts512To1023.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPkts512To1023.setDescription(' This attribute indicates the number of packets transmitted by the station that were between 512 and 1023 bytes long. ')
wlanStaTxPkts1024To1518 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaTxPkts1024To1518.setStatus('current')
if mibBuilder.loadTexts: wlanStaTxPkts1024To1518.setDescription(' This attribute indicates the number of packets transmitted by the station that were between 1024 and 1518 bytes long. ')
wlanStaRxPkts63Bytes = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPkts63Bytes.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPkts63Bytes.setDescription(' This attribute indicates the number of packets Received by the station that were less than 64 bytes long. ')
wlanStaRxPkts64To127 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPkts64To127.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPkts64To127.setDescription(' This attribute indicates the number of packets Received by the station that were between 64 and 127 bytes long. ')
wlanStaRxPkts128To255 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPkts128To255.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPkts128To255.setDescription(' This attribute indicates the number of packets Received by the station that were between 128 and 255 bytes long. ')
wlanStaRxPkts256To511 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPkts256To511.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPkts256To511.setDescription(' This attribute indicates the number of packets Received by the station that were between 256 and 511 bytes long. ')
wlanStaRxPkts512To1023 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPkts512To1023.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPkts512To1023.setDescription(' This attribute indicates the number of packets Received by the station that were between 512 and 1023 bytes long. ')
wlanStaRxPkts1024To1518 = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlanStaRxPkts1024To1518.setStatus('current')
if mibBuilder.loadTexts: wlanStaRxPkts1024To1518.setDescription(' This attribute indicates the number of packets Received by the station that were between 1024 and 1518 bytes long. ')
mibBuilder.exportSymbols("WLSX-WLAN-MIB", wlanStaAssocFailureApEssid=wlanStaAssocFailureApEssid, wlanAPFrameBandwidthRate=wlanAPFrameBandwidthRate, wlsxWlanStaFrameTypeStatsEntry=wlsxWlanStaFrameTypeStatsEntry, wlanAPBssidModule=wlanAPBssidModule, wlanAPTxDataPkts64=wlanAPTxDataPkts64, wlanStaTxPkts128To255=wlanStaTxPkts128To255, wlsxWlanMIB=wlsxWlanMIB, wlanStaRxMgmtBytes=wlanStaRxMgmtBytes, wlanAPESSID=wlanAPESSID, wlanStaTxBytesAt9Mbps=wlanStaTxBytesAt9Mbps, wlanStaTxMCastPkts=wlanStaTxMCastPkts, wlanAPBssidInactiveTime=wlanAPBssidInactiveTime, wlanAPStatsTotBytesAt6Mbps=wlanAPStatsTotBytesAt6Mbps, wlanStaRxBCastBytes=wlanStaRxBCastBytes, wlanStaTxPktsAt24Mbps=wlanStaTxPktsAt24Mbps, wlanESSIDNumStations=wlanESSIDNumStations, wlanAPSysLocation=wlanAPSysLocation, wlsxWlanStaAssociationFailureEntry=wlsxWlanStaAssociationFailureEntry, wlanStaAssocFailurePhyType=wlanStaAssocFailurePhyType, wlsxWlanStationStatsGroup=wlsxWlanStationStatsGroup, wlanAPChFrameDuplicateCount=wlanAPChFrameDuplicateCount, wlanStaTxCtrlPkts=wlanStaTxCtrlPkts, wlsxWlanAPDATypeStatsEntry=wlsxWlanAPDATypeStatsEntry, wlanStaVlanId=wlanStaVlanId, wlanStaTxDABroadcastPkts=wlanStaTxDABroadcastPkts, wlanAPFrameNonUnicastRate=wlanAPFrameNonUnicastRate, wlanStaFrameLowSpeedRate=wlanStaFrameLowSpeedRate, wlanAPFQLNFloor=wlanAPFQLNFloor, wlanAPBssidRogueType=wlanAPBssidRogueType, wlanAPStatsTotCtrlPkts=wlanAPStatsTotCtrlPkts, wlanAPUnprovisioned=wlanAPUnprovisioned, wlanStaTxDataBytes=wlanStaTxDataBytes, wlanAPModelName=wlanAPModelName, wlanAPBssidLoadBalancing=wlanAPBssidLoadBalancing, wlanAPStatsTotBytesAt54Mbps=wlanAPStatsTotBytesAt54Mbps, wlanAPRadioAPName=wlanAPRadioAPName, wlsxWlanStationStatsTable=wlsxWlanStationStatsTable, wlanStaTxPktsAt2Mbps=wlanStaTxPktsAt2Mbps, wlanStaTxBytesAt6Mbps=wlanStaTxBytesAt6Mbps, wlanAPStatsTotDAUnicastPkts=wlanAPStatsTotDAUnicastPkts, wlanAPTxBytes=wlanAPTxBytes, wlanStaTxMgmtPkts=wlanStaTxMgmtPkts, wlanAPRadioHTMode=wlanAPRadioHTMode, wlanAPChFrameFragmentationRate=wlanAPChFrameFragmentationRate, wlanAPTxPkts=wlanAPTxPkts, wlsxWlanAPChStatsTable=wlsxWlanAPChStatsTable, wlanAPRadioNumAssociatedClients=wlanAPRadioNumAssociatedClients, wlanAPStatsTotMgmtBytes=wlanAPStatsTotMgmtBytes, wlanAPChInterferenceIndex=wlanAPChInterferenceIndex, wlanStaFrameReceiveErrorRate=wlanStaFrameReceiveErrorRate, wlanStaTxPkts256To511=wlanStaTxPkts256To511, wlanAPStatsTotPktsAt6Mbps=wlanAPStatsTotPktsAt6Mbps, wlanAPChFrameReceiveErrorRate=wlanAPChFrameReceiveErrorRate, wlanAPChTotMacErrPkts=wlanAPChTotMacErrPkts, wlanAPChTransmittedFrameCount=wlanAPChTransmittedFrameCount, wlanAPChRxUtilization=wlanAPChRxUtilization, wlanStaTxDeauthentications=wlanStaTxDeauthentications, wlanAPChNumStations=wlanAPChNumStations, wlsxWlanAPRateStatsEntry=wlsxWlanAPRateStatsEntry, wlanAPStatsTotBytesAt11Mbps=wlanAPStatsTotBytesAt11Mbps, wlsxWlanStaDATypeStatsTable=wlsxWlanStaDATypeStatsTable, wlanAPFrameRetryRate=wlanAPFrameRetryRate, wlsxWlanStaRateStatsEntry=wlsxWlanStaRateStatsEntry, wlanStaTxBytesAt12Mbps=wlanStaTxBytesAt12Mbps, wlanESSIDNumAccessPointsDown=wlanESSIDNumAccessPointsDown, wlanAPStatsTotDataPkts=wlanAPStatsTotDataPkts, wlanAPBssidPort=wlanAPBssidPort, wlanStaTxPkts512To1023=wlanStaTxPkts512To1023, wlanStaRxPkts64To127=wlanStaRxPkts64To127, wlanAPChTransmittedFragmentCount=wlanAPChTransmittedFragmentCount, wlanStaTxCtrlBytes=wlanStaTxCtrlBytes, wlanAPRadioNumber=wlanAPRadioNumber, wlanAPModel=wlanAPModel, wlanAPStatsTotBytesAt9Mbps=wlanAPStatsTotBytesAt9Mbps, wlanStaRxCtrlPkts=wlanStaRxCtrlPkts, wlanESSID=wlanESSID, wlanStaTxBytesAt5Mbps=wlanStaTxBytesAt5Mbps, wlanStaVOIPState=wlanStaVOIPState, wlanAPStatsTotPktsAt2Mbps=wlanAPStatsTotPktsAt2Mbps, wlanStaTxPktsAt36Mbps=wlanStaTxPktsAt36Mbps, wlanStaRxPkts512To1023=wlanStaRxPkts512To1023, wlanAPStatsPkts256To511=wlanAPStatsPkts256To511, wlanAPChTotPhyErrPkts=wlanAPChTotPhyErrPkts, wlanAPExternalAntenna=wlanAPExternalAntenna, wlanStaRxPkts1024To1518=wlanStaRxPkts1024To1518, wlsxWlanESSIDVlanPoolTable=wlsxWlanESSIDVlanPoolTable, wlanAPFrameRetryErrorRate=wlanAPFrameRetryErrorRate, wlsxWlanAPBssidEntry=wlsxWlanAPBssidEntry, wlanAPChWEPUndecryptableCount=wlanAPChWEPUndecryptableCount, wlanStaRxPktsAt6Mbps=wlanStaRxPktsAt6Mbps, wlanAPChMulticastReceivedFrameCount=wlanAPChMulticastReceivedFrameCount, wlanAPFQLNCampus=wlanAPFQLNCampus, wlanAPChNoise=wlanAPChNoise, wlanStaRxPktsAt24Mbps=wlanStaRxPktsAt24Mbps, wlanAPRxDeauthentications=wlanAPRxDeauthentications, wlanAPChTotRetryPkts=wlanAPChTotRetryPkts, wlanAPBSSID=wlanAPBSSID, wlanAPStatsTotPktsAt36Mbps=wlanAPStatsTotPktsAt36Mbps, wlanAPRadioChannel=wlanAPRadioChannel, wlanAPStatsTotPktsAt1Mbps=wlanAPStatsTotPktsAt1Mbps, wlanAPChFCSErrorCount=wlanAPChFCSErrorCount, wlanAPChBusyRate=wlanAPChBusyRate, wlanAPStatsPkts63Bytes=wlanAPStatsPkts63Bytes, wlanStaRxPktsAt54Mbps=wlanStaRxPktsAt54Mbps, wlanAPRadioNumActiveBSSIDs=wlanAPRadioNumActiveBSSIDs, wlanAPLongitude=wlanAPLongitude, wlsxWlanStateGroup=wlsxWlanStateGroup, wlanAPGroupName=wlanAPGroupName, wlanAPFrameLowSpeedRate=wlanAPFrameLowSpeedRate, wlanAPRadioHTExtChannel=wlanAPRadioHTExtChannel, wlanStaRxCtrlBytes=wlanStaRxCtrlBytes, wlanAPNumClients=wlanAPNumClients, wlanStaTxBytesAt2Mbps=wlanStaTxBytesAt2Mbps, wlanStaTxBCastPkts=wlanStaTxBCastPkts, wlanAPChRTSFailureCount=wlanAPChRTSFailureCount, wlanAPBssidHTMode=wlanAPBssidHTMode, wlanStaNumAuthRequests=wlanStaNumAuthRequests, wlanStaTxPkts1024To1518=wlanStaTxPkts1024To1518, wlanStaRxMgmtPkts=wlanStaRxMgmtPkts, wlanAPChMultipleRetryCount=wlanAPChMultipleRetryCount, wlanStaRxBytesAt9Mbps=wlanStaRxBytesAt9Mbps, wlanAPRadioTiltAngle=wlanAPRadioTiltAngle, wlanAPStatsTotPktsAt11Mbps=wlanAPStatsTotPktsAt11Mbps, wlanAPFrameReceiveErrorRate=wlanAPFrameReceiveErrorRate, wlsxWlanTotalNumStationsAssociated=wlsxWlanTotalNumStationsAssociated, wlsxWlanAccessPointInfoGroup=wlsxWlanAccessPointInfoGroup, wlanStaAccessPointESSID=wlanStaAccessPointESSID, wlanAPIpAddress=wlanAPIpAddress, wlanStaRxDataPkts=wlanStaRxDataPkts, wlanStaTxPktsAt54Mbps=wlanStaTxPktsAt54Mbps, wlsxWlanESSIDEntry=wlsxWlanESSIDEntry, wlsxWlanAPGroupTable=wlsxWlanAPGroupTable, wlanAPUpTime=wlanAPUpTime, wlanAPStatsPkts64To127=wlanAPStatsPkts64To127, wlanStaIsAuthenticated=wlanStaIsAuthenticated, wlsxWlanStationTable=wlsxWlanStationTable, wlanStaRxPktsAt12Mbps=wlanStaRxPktsAt12Mbps, wlanAPTxDeauthentications=wlanAPTxDeauthentications, wlanAPStatsTotPktsAt18Mbps=wlanAPStatsTotPktsAt18Mbps, wlanESSIDNumAccessPointsUp=wlanESSIDNumAccessPointsUp, wlanAPdot11gAntennaGain=wlanAPdot11gAntennaGain, wlanStaRxBytesAt18Mbps=wlanStaRxBytesAt18Mbps, wlanAPStatsTotDAMulticastBytes=wlanAPStatsTotDAMulticastBytes, wlanAPChFrameRetryRate=wlanAPChFrameRetryRate, wlanAPStatsTotBytesAt48Mbps=wlanAPStatsTotBytesAt48Mbps, wlanAPRadioType=wlanAPRadioType, wlanAPStatsTotBytesAt24Mbps=wlanAPStatsTotBytesAt24Mbps, wlanStaRxBytesAt24Mbps=wlanStaRxBytesAt24Mbps, wlsxWlanStaFrameTypeStatsTable=wlsxWlanStaFrameTypeStatsTable, wlanStaTxBytesAt36Mbps=wlanStaTxBytesAt36Mbps, wlanStaTxDAMulticastBytes=wlanStaTxDAMulticastBytes, wlanStaRSSI=wlanStaRSSI, wlanAPStatsTotBytesAt36Mbps=wlanAPStatsTotBytesAt36Mbps, wlanStaRxPktsAt1Mbps=wlanStaRxPktsAt1Mbps, wlsxWlanStaPktSizeStatsTable=wlsxWlanStaPktSizeStatsTable, wlsxWlanAPChStatsEntry=wlsxWlanAPChStatsEntry, wlanStaRxBytesAt54Mbps=wlanStaRxBytesAt54Mbps, wlanStaHTMode=wlanStaHTMode, wlanAPRadioNumMonitoredBSSIDs=wlanAPRadioNumMonitoredBSSIDs, wlanAPStatsTotBytesAt12Mbps=wlanAPStatsTotBytesAt12Mbps, wlanAPBssidMode=wlanAPBssidMode, wlanStaFrameRetryErrorRate=wlanStaFrameRetryErrorRate, wlsxWlanAPTable=wlsxWlanAPTable, wlanAPChRetryCount=wlanAPChRetryCount, wlanAPCurrentChannel=wlanAPCurrentChannel, wlanStaRxDeauthentications=wlanStaRxDeauthentications, wlanStaTxBytes64=wlanStaTxBytes64, wlanAPBssidPhyType=wlanAPBssidPhyType, wlanAPChMulticastTransmittedFrameCount=wlanAPChMulticastTransmittedFrameCount, wlanStaFrameBandwidthRate=wlanStaFrameBandwidthRate, wlanAPStatsTotPktsAt9Mbps=wlanAPStatsTotPktsAt9Mbps, wlanStaRxBytesAt2Mbps=wlanStaRxBytesAt2Mbps, wlanStaRxBytes=wlanStaRxBytes, wlanStaRxMCastBytes=wlanStaRxMCastBytes, wlanAPChFailedCount=wlanAPChFailedCount, wlanStaUpTime=wlanStaUpTime, wlanStaIsAssociated=wlanStaIsAssociated, wlsxWlanStaAssociationFailureTable=wlsxWlanStaAssociationFailureTable, wlanAPMonitorMode=wlanAPMonitorMode, wlanAPChannelErrorRate=wlanAPChannelErrorRate, wlanStaFrameNonUnicastRate=wlanStaFrameNonUnicastRate, wlsxWlanTotalNumAccessPoints=wlsxWlanTotalNumAccessPoints, wlanAPFloor=wlanAPFloor, wlanStaPhyNumber=wlanStaPhyNumber, wlanAPChannelNumber=wlanAPChannelNumber, wlanStaRxPkts63Bytes=wlanStaRxPkts63Bytes, wlanESSIDVlanPoolStatus=wlanESSIDVlanPoolStatus, wlanStaTxDAMulticastPkts=wlanStaTxDAMulticastPkts, wlanStaVOIPProtocol=wlanStaVOIPProtocol, wlanAPChACKFailureCount=wlanAPChACKFailureCount, wlanAPBssidHTExtChannel=wlanAPBssidHTExtChannel, wlanAPStatsTotPktsAt5Mbps=wlanAPStatsTotPktsAt5Mbps, wlanAPChRTSSuccessCount=wlanAPChRTSSuccessCount, wlanAPNumReboots=wlanAPNumReboots, wlanAPChTotBytes=wlanAPChTotBytes, wlanAPRadioHTChannel=wlanAPRadioHTChannel, wlanStaAssociationID=wlanStaAssociationID, wlanAPNumAps=wlanAPNumAps, wlanStaTxBytesAt54Mbps=wlanStaTxBytesAt54Mbps, wlanStaTxBytesAt24Mbps=wlanStaTxBytesAt24Mbps, wlanStaRxBytesAt1Mbps=wlanStaRxBytesAt1Mbps, wlanStaRxPktsAt18Mbps=wlanStaRxPktsAt18Mbps, wlanAPBssidSlot=wlanAPBssidSlot, wlanAPEnet1Mode=wlanAPEnet1Mode, wlanAPStatsTotPktsAt48Mbps=wlanAPStatsTotPktsAt48Mbps, wlanAPStatsPkts128To255=wlanAPStatsPkts128To255, wlanAPChCoverageIndex=wlanAPChCoverageIndex, wlanStaTxPktsAt11Mbps=wlanStaTxPktsAt11Mbps, wlanStaRxBytesAt36Mbps=wlanStaRxBytesAt36Mbps, wlsxWlanAPPktSizeStatsTable=wlsxWlanAPPktSizeStatsTable, wlanAPdot11aAntennaGain=wlanAPdot11aAntennaGain, wlanAPBuilding=wlanAPBuilding, wlsxWlanAPGroupEntry=wlsxWlanAPGroupEntry, PYSNMP_MODULE_ID=wlsxWlanMIB, wlanStaRxPkts256To511=wlanStaRxPkts256To511, wlanStaChannelNum=wlanStaChannelNum, wlanAPFQLNBuilding=wlanAPFQLNBuilding, wlanAPFrameFragmentationRate=wlanAPFrameFragmentationRate, wlanAPStatsTotBytesAt5Mbps=wlanAPStatsTotBytesAt5Mbps, wlanAPStatsPkts1024To1518=wlanAPStatsPkts1024To1518, wlanAPChFrameRetryErrorRate=wlanAPChFrameRetryErrorRate, wlanStaTxPktsAt9Mbps=wlanStaTxPktsAt9Mbps, wlanStaAssocFailureElapsedTime=wlanStaAssocFailureElapsedTime, wlanAPBssidUpTime=wlanAPBssidUpTime, wlsxWlanRadioEntry=wlsxWlanRadioEntry, wlanStaTxDABroadcastBytes=wlanStaTxDABroadcastBytes, wlanAPChFrameBandwidthRate=wlanAPChFrameBandwidthRate, wlanAPRadioTransmitPower=wlanAPRadioTransmitPower, wlsxWlanStaDATypeStatsEntry=wlsxWlanStaDATypeStatsEntry, wlanAPStatsTotPktsAt24Mbps=wlanAPStatsTotPktsAt24Mbps, wlanStaTxBCastBytes=wlanStaTxBCastBytes, wlsxWlanAPBssidTable=wlsxWlanAPBssidTable, wlsxWlanAPEntry=wlsxWlanAPEntry, wlsxWlanStatsGroup=wlsxWlanStatsGroup, wlanStaChannel=wlanStaChannel, wlanStaTxBytesAt1Mbps=wlanStaTxBytesAt1Mbps, wlanAPChReceivedFragmentCount=wlanAPChReceivedFragmentCount, wlanAPChTotFragmentedPkts=wlanAPChTotFragmentedPkts, wlanAPTxDataBytes64=wlanAPTxDataBytes64, wlanAPStatsTotDAMulticastPkts=wlanAPStatsTotDAMulticastPkts, wlanAPRadioNumMonitoredClients=wlanAPRadioNumMonitoredClients, wlanStaTxBytes=wlanStaTxBytes, wlanStaRxBytesAt48Mbps=wlanStaRxBytesAt48Mbps, wlanAPRadioMode=wlanAPRadioMode, wlanStaNumAssocRequests=wlanStaNumAssocRequests, wlanAPBssidNumAssociatedStations=wlanAPBssidNumAssociatedStations, wlanStaAssocFailurePhyNum=wlanStaAssocFailurePhyNum, wlanAPRadioUtilization=wlanAPRadioUtilization, wlanAPFQLN=wlanAPFQLN, wlanAPStatsTotBytesAt2Mbps=wlanAPStatsTotBytesAt2Mbps, wlanAPBssidPhyNumber=wlanAPBssidPhyNumber, wlanAPSerialNumber=wlanAPSerialNumber, wlanAPStatsTotCtrlBytes=wlanAPStatsTotCtrlBytes, wlsxWlanAPDATypeStatsTable=wlsxWlanAPDATypeStatsTable)
mibBuilder.exportSymbols("WLSX-WLAN-MIB", wlanStaTxPktsAt18Mbps=wlanStaTxPktsAt18Mbps, wlsxWlanAPPktSizeStatsEntry=wlsxWlanAPPktSizeStatsEntry, wlanAPStatsTotDABroadcastPkts=wlanAPStatsTotDABroadcastPkts, wlanAPRxDataPkts64=wlanAPRxDataPkts64, wlanStaTxPktsAt5Mbps=wlanStaTxPktsAt5Mbps, wlanAPLatitude=wlanAPLatitude, wlanAPName=wlanAPName, wlanStaTransmitRate=wlanStaTransmitRate, wlanAPChTotPkts=wlanAPChTotPkts, wlanAPRadioBearing=wlanAPRadioBearing, wlanAPNumRadios=wlanAPNumRadios, wlsxWlanStationInfoGroup=wlsxWlanStationInfoGroup, wlsxWlanStaRateStatsTable=wlsxWlanStaRateStatsTable, wlanStaCtrlPkts=wlanStaCtrlPkts, wlsxWlanAccessPointStatsGroup=wlsxWlanAccessPointStatsGroup, wlanAPStatsTotPktsAt54Mbps=wlanAPStatsTotPktsAt54Mbps, wlanAPMacAddress=wlanAPMacAddress, wlanAPChFrameLowSpeedRate=wlanAPChFrameLowSpeedRate, wlsxWlanStationStatsEntry=wlsxWlanStationStatsEntry, wlanStaRxBytesAt12Mbps=wlanStaRxBytesAt12Mbps, wlanStaRxPktsAt5Mbps=wlanStaRxPktsAt5Mbps, wlanAPRxDataBytes=wlanAPRxDataBytes, wlanAPBssidHTChannel=wlanAPBssidHTChannel, wlanESSIDVlanId=wlanESSIDVlanId, wlanAPNumBootstraps=wlanAPNumBootstraps, wlanStaRxPktsAt48Mbps=wlanStaRxPktsAt48Mbps, wlanAPTxDataPkts=wlanAPTxDataPkts, wlanAPStatsTotBytesAt18Mbps=wlanAPStatsTotBytesAt18Mbps, wlanStaTxPkts=wlanStaTxPkts, wlanStaPhyType=wlanStaPhyType, wlsxWlanAPFrameTypeStatsTable=wlsxWlanAPFrameTypeStatsTable, wlanAPStatsTotDABroadcastBytes=wlanAPStatsTotDABroadcastBytes, wlanAPIpsecMode=wlanAPIpsecMode, wlsxWlanAPStatsEntry=wlsxWlanAPStatsEntry, wlanStaTxPktsAt1Mbps=wlanStaTxPktsAt1Mbps, wlanAPRxBytes=wlanAPRxBytes, wlanStaTxBytesAt18Mbps=wlanStaTxBytesAt18Mbps, wlanStaRxDataBytes=wlanStaRxDataBytes, wlsxWlanRadioTable=wlsxWlanRadioTable, wlanStaFrameRetryRate=wlanStaFrameRetryRate, wlanStaRxPktsAt2Mbps=wlanStaRxPktsAt2Mbps, wlanStaRxPktsAt36Mbps=wlanStaRxPktsAt36Mbps, wlanStaTxDAUnicastBytes=wlanStaTxDAUnicastBytes, wlanAPRxPkts=wlanAPRxPkts, wlanStaTxMCastBytes=wlanStaTxMCastBytes, wlanESSIDEncryptionType=wlanESSIDEncryptionType, wlanAPRxDataPkts=wlanAPRxDataPkts, wlanStaTxPktsAt48Mbps=wlanStaTxPktsAt48Mbps, wlsxWlanAssociationInfoGroup=wlsxWlanAssociationInfoGroup, wlanAPStatsTotBytesAt1Mbps=wlanAPStatsTotBytesAt1Mbps, wlsxWlanESSIDTable=wlsxWlanESSIDTable, wlanStaTxBytesAt48Mbps=wlanStaTxBytesAt48Mbps, wlanStaTxDAUnicastPkts=wlanStaTxDAUnicastPkts, wlanAPChFrameNonUnicastRate=wlanAPChFrameNonUnicastRate, wlanAPTxDataBytes=wlanAPTxDataBytes, wlanStaRxPkts128To255=wlanStaRxPkts128To255, wlanStaTxPktsAt12Mbps=wlanStaTxPktsAt12Mbps, wlanStaRxPktsAt9Mbps=wlanStaRxPktsAt9Mbps, wlanAPBssidAPMacAddress=wlanAPBssidAPMacAddress, wlsxWlanESSIDVlanPoolEntry=wlsxWlanESSIDVlanPoolEntry, wlsxWlanAPFrameTypeStatsEntry=wlsxWlanAPFrameTypeStatsEntry, wlanStaRxPktsAt11Mbps=wlanStaRxPktsAt11Mbps, wlanAPBssidChannel=wlanAPBssidChannel, wlsxWlanStaPktSizeStatsEntry=wlsxWlanStaPktSizeStatsEntry, wlanAPMeshRole=wlanAPMeshRole, wlanStaTxBytesAt11Mbps=wlanStaTxBytesAt11Mbps, wlanStaTxPkts64To127=wlanStaTxPkts64To127, wlanStaAssocFailureReason=wlanStaAssocFailureReason, wlanAPRxDataBytes64=wlanAPRxDataBytes64, wlanAPGroup=wlanAPGroup, wlsxWlanAPRateStatsTable=wlsxWlanAPRateStatsTable, wlanStaPhyAddress=wlanStaPhyAddress, wlanAPAltitude=wlanAPAltitude, wlanAPChannelThroughput=wlanAPChannelThroughput, wlanAPStatus=wlanAPStatus, wlanStaApBssid=wlanStaApBssid, wlanAPChTxUtilization=wlanAPChTxUtilization, wlanStaTxMgmtBytes=wlanStaTxMgmtBytes, wlanStaDataPkts=wlanStaDataPkts, wlanStaRxBytesAt11Mbps=wlanStaRxBytesAt11Mbps, wlanStaAssocFailureApName=wlanStaAssocFailureApName, wlsxWlanConfigGroup=wlsxWlanConfigGroup, wlanAPStatsPkts512To1023=wlanAPStatsPkts512To1023, wlanStaRxBytesAt6Mbps=wlanStaRxBytesAt6Mbps, wlanStaTxDataPkts=wlanStaTxDataPkts, wlanStaRxBytesAt5Mbps=wlanStaRxBytesAt5Mbps, wlanStaRxBytes64=wlanStaRxBytes64, wlanAPStatsTotDataBytes=wlanAPStatsTotDataBytes, wlanAPChNumAPs=wlanAPChNumAPs, wlanAPChUtilization=wlanAPChUtilization, wlsxWlanStationEntry=wlsxWlanStationEntry, wlanStaFrameFragmentationRate=wlanStaFrameFragmentationRate, wlanAPStatsTotPktsAt12Mbps=wlanAPStatsTotPktsAt12Mbps, wlanAPStatsTotDAUnicastBytes=wlanAPStatsTotDAUnicastBytes, wlanAPLoc=wlanAPLoc, wlanStaTxPktsAt6Mbps=wlanStaTxPktsAt6Mbps, wlsxWlanAPStatsTable=wlsxWlanAPStatsTable, wlanStaRxPkts=wlanStaRxPkts, wlanAPStatsTotMgmtPkts=wlanAPStatsTotMgmtPkts, wlanStaTxPkts63Bytes=wlanStaTxPkts63Bytes, wlanAPLocation=wlanAPLocation)
| (wlsx_enterprise_mib_modules,) = mibBuilder.importSymbols('ARUBA-MIB', 'wlsxEnterpriseMibModules')
(aruba_vlan_valid_range, aruba_rogue_ap_type, aruba_ap_status, aruba_access_point_mode, aruba_monitor_mode, aruba_antenna_setting, aruba_enet1_mode, aruba_phy_type, aruba_ht_mode, aruba_voip_protocol_type, aruba_mesh_role, aruba_ht_ext_channel, aruba_authentication_methods, aruba_frame_type, aruba_enable_value, aruba_encryption_methods, aruba_unprovisioned_status, aruba_active_state) = mibBuilder.importSymbols('ARUBA-TC', 'ArubaVlanValidRange', 'ArubaRogueApType', 'ArubaAPStatus', 'ArubaAccessPointMode', 'ArubaMonitorMode', 'ArubaAntennaSetting', 'ArubaEnet1Mode', 'ArubaPhyType', 'ArubaHTMode', 'ArubaVoipProtocolType', 'ArubaMeshRole', 'ArubaHTExtChannel', 'ArubaAuthenticationMethods', 'ArubaFrameType', 'ArubaEnableValue', 'ArubaEncryptionMethods', 'ArubaUnprovisionedStatus', 'ArubaActiveState')
(octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, value_size_constraint, constraints_intersection, single_value_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint', 'ConstraintsUnion')
(notification_group, object_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ObjectGroup', 'ModuleCompliance')
(textual_convention, module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, counter64, ip_address, time_ticks, object_identity, snmp_modules, iso, notification_type, mib_identifier, gauge32, counter32, unsigned32, integer32) = mibBuilder.importSymbols('SNMPv2-SMI', 'TextualConvention', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'Counter64', 'IpAddress', 'TimeTicks', 'ObjectIdentity', 'snmpModules', 'iso', 'NotificationType', 'MibIdentifier', 'Gauge32', 'Counter32', 'Unsigned32', 'Integer32')
(textual_convention, row_status, time_interval, truth_value, phys_address, t_address, t_domain, display_string, test_and_incr, mac_address, storage_type) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'RowStatus', 'TimeInterval', 'TruthValue', 'PhysAddress', 'TAddress', 'TDomain', 'DisplayString', 'TestAndIncr', 'MacAddress', 'StorageType')
wlsx_wlan_mib = module_identity((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5))
wlsxWlanMIB.setRevisions(('1910-01-26 18:06',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
wlsxWlanMIB.setRevisionsDescriptions(('The initial revision.',))
if mibBuilder.loadTexts:
wlsxWlanMIB.setLastUpdated('1001261806Z')
if mibBuilder.loadTexts:
wlsxWlanMIB.setOrganization('Aruba Wireless Networks')
if mibBuilder.loadTexts:
wlsxWlanMIB.setContactInfo('Postal: 1322 Crossman Avenue Sunnyvale, CA 94089 E-mail: dl-support@arubanetworks.com Phone: +1 408 227 4500')
if mibBuilder.loadTexts:
wlsxWlanMIB.setDescription('This MIB module defines MIB objects which provide information about the Wireless Management System (WMS) in the Aruba Controller.')
wlsx_wlan_config_group = mib_identifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 1))
wlsx_wlan_state_group = mib_identifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2))
wlsx_wlan_stats_group = mib_identifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3))
wlsx_wlan_access_point_info_group = mib_identifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1))
wlsx_wlan_station_info_group = mib_identifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2))
wlsx_wlan_association_info_group = mib_identifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 3))
wlsx_wlan_access_point_stats_group = mib_identifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1))
wlsx_wlan_station_stats_group = mib_identifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2))
wlsx_wlan_total_num_access_points = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 1), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxWlanTotalNumAccessPoints.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanTotalNumAccessPoints.setDescription(' Total Number of Access Points connected to the controller. ')
wlsx_wlan_total_num_stations_associated = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxWlanTotalNumStationsAssociated.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanTotalNumStationsAssociated.setDescription(' Total Number of Stations Associated to the controller. ')
wlsx_wlan_ap_group_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 3))
if mibBuilder.loadTexts:
wlsxWlanAPGroupTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPGroupTable.setDescription(' This Table lists all the Access Points Groups configured in the Aruba controller. ')
wlsx_wlan_ap_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 3, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanAPGroup'))
if mibBuilder.loadTexts:
wlsxWlanAPGroupEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPGroupEntry.setDescription('AP Group Entry')
wlan_ap_group = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 3, 1, 1), display_string())
if mibBuilder.loadTexts:
wlanAPGroup.setStatus('current')
if mibBuilder.loadTexts:
wlanAPGroup.setDescription(' The name of an AP group ')
wlan_ap_num_aps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 3, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPNumAps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPNumAps.setDescription(' The number of APs in the AP Group ')
wlsx_wlan_ap_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4))
if mibBuilder.loadTexts:
wlsxWlanAPTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPTable.setDescription(' This table lists all the Access Points connected to the controller. ')
wlsx_wlan_ap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanAPMacAddress'))
if mibBuilder.loadTexts:
wlsxWlanAPEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPEntry.setDescription('Access Point Entry')
wlan_ap_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 1), mac_address())
if mibBuilder.loadTexts:
wlanAPMacAddress.setStatus('current')
if mibBuilder.loadTexts:
wlanAPMacAddress.setDescription(' Ethernet MAC Address of the Access Point ')
wlan_ap_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPIpAddress.setStatus('current')
if mibBuilder.loadTexts:
wlanAPIpAddress.setDescription(' IP Address of the Access Point ')
wlan_ap_name = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 3), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlanAPName.setStatus('current')
if mibBuilder.loadTexts:
wlanAPName.setDescription(' Host name of the Access Point. ')
wlan_ap_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 4), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlanAPGroupName.setStatus('current')
if mibBuilder.loadTexts:
wlanAPGroupName.setDescription(' Group Name of the Access Point. ')
wlan_ap_model = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 5), object_identifier()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPModel.setStatus('current')
if mibBuilder.loadTexts:
wlanAPModel.setDescription(' Sys OID of the Access Point. ')
wlan_ap_serial_number = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPSerialNumber.setStatus('current')
if mibBuilder.loadTexts:
wlanAPSerialNumber.setDescription(' Serial Number of the Access Point. ')
wlan_a_pdot11a_antenna_gain = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPdot11aAntennaGain.setStatus('current')
if mibBuilder.loadTexts:
wlanAPdot11aAntennaGain.setDescription(" Configured antenna gain for 'A' Radio. ")
wlan_a_pdot11g_antenna_gain = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPdot11gAntennaGain.setStatus('current')
if mibBuilder.loadTexts:
wlanAPdot11gAntennaGain.setDescription(" Configured antenna gain for 'G' Radio. ")
wlan_ap_num_radios = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPNumRadios.setStatus('current')
if mibBuilder.loadTexts:
wlanAPNumRadios.setDescription(' Number of Radios in the Access Point. ')
wlan_ap_enet1_mode = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 10), aruba_enet1_mode()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPEnet1Mode.setStatus('current')
if mibBuilder.loadTexts:
wlanAPEnet1Mode.setDescription(' Enet1 Mode of the Access Point. ')
wlan_ap_ipsec_mode = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 11), aruba_enable_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPIpsecMode.setStatus('current')
if mibBuilder.loadTexts:
wlanAPIpsecMode.setDescription(' IPSEC Mode of the Access Point. ')
wlan_ap_up_time = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 12), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPUpTime.setStatus('current')
if mibBuilder.loadTexts:
wlanAPUpTime.setDescription(' Time (in hundredths of seconds) since the last time the Access Point bootstrapped with the controller. ')
wlan_ap_model_name = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 13), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPModelName.setStatus('current')
if mibBuilder.loadTexts:
wlanAPModelName.setDescription(' Model name of the Access Point. ')
wlan_ap_location = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 14), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPLocation.setStatus('current')
if mibBuilder.loadTexts:
wlanAPLocation.setDescription(' Location of the Access Point. ')
wlan_ap_building = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBuilding.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBuilding.setDescription(' AP Building Number. ')
wlan_ap_floor = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPFloor.setStatus('current')
if mibBuilder.loadTexts:
wlanAPFloor.setDescription(' AP Floor Number. ')
wlan_ap_loc = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPLoc.setStatus('current')
if mibBuilder.loadTexts:
wlanAPLoc.setDescription(' AP Location. ')
wlan_ap_external_antenna = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 18), aruba_antenna_setting()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPExternalAntenna.setStatus('current')
if mibBuilder.loadTexts:
wlanAPExternalAntenna.setDescription(' AP Antenna Status. ')
wlan_ap_status = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 19), aruba_ap_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatus.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatus.setDescription(' AP Status. ')
wlan_ap_num_bootstraps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 20), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPNumBootstraps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPNumBootstraps.setDescription(' Number of times the AP has bootstrapped with the controller. ')
wlan_ap_num_reboots = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 21), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPNumReboots.setStatus('current')
if mibBuilder.loadTexts:
wlanAPNumReboots.setDescription(' Number of times the AP has rebooted. ')
wlan_ap_unprovisioned = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 22), aruba_unprovisioned_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPUnprovisioned.setStatus('current')
if mibBuilder.loadTexts:
wlanAPUnprovisioned.setDescription(' Indicates whether the AP is unprovisioned due to lack of antenna gain or location code settings. ')
wlan_ap_monitor_mode = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 23), aruba_monitor_mode()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPMonitorMode.setStatus('current')
if mibBuilder.loadTexts:
wlanAPMonitorMode.setDescription(' Indicates whether any radio on this AP is acting as an air monitor. ')
wlan_apfqln_building = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 24), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPFQLNBuilding.setStatus('current')
if mibBuilder.loadTexts:
wlanAPFQLNBuilding.setDescription(" The building component of the AP's FQLN. ")
wlan_apfqln_floor = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 25), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPFQLNFloor.setStatus('current')
if mibBuilder.loadTexts:
wlanAPFQLNFloor.setDescription(" The floor component of the AP's FQLN. ")
wlan_apfqln = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 26), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlanAPFQLN.setStatus('current')
if mibBuilder.loadTexts:
wlanAPFQLN.setDescription(" The AP's Fully Qualified Location Name (FQLN). ")
wlan_apfqln_campus = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 27), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPFQLNCampus.setStatus('current')
if mibBuilder.loadTexts:
wlanAPFQLNCampus.setDescription(" The campus component of the AP's FQLN. ")
wlan_ap_longitude = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 28), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlanAPLongitude.setStatus('current')
if mibBuilder.loadTexts:
wlanAPLongitude.setDescription(' Longitude of the AP. Signed floating-point value. ')
wlan_ap_latitude = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 29), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlanAPLatitude.setStatus('current')
if mibBuilder.loadTexts:
wlanAPLatitude.setDescription(' Latitude of the AP. Signed floating-point value. ')
wlan_ap_altitude = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 30), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlanAPAltitude.setStatus('current')
if mibBuilder.loadTexts:
wlanAPAltitude.setDescription(' Altitude of the AP. Signed floating-point value. ')
wlan_ap_mesh_role = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 31), aruba_mesh_role()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlanAPMeshRole.setStatus('current')
if mibBuilder.loadTexts:
wlanAPMeshRole.setDescription(' AP Mesh role ')
wlan_ap_sys_location = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 4, 1, 32), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPSysLocation.setStatus('current')
if mibBuilder.loadTexts:
wlanAPSysLocation.setDescription(' AP sysLocation ')
wlsx_wlan_radio_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5))
if mibBuilder.loadTexts:
wlsxWlanRadioTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanRadioTable.setDescription(' This table lists all the radios known to the controller. ')
wlsx_wlan_radio_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanAPMacAddress'), (0, 'WLSX-WLAN-MIB', 'wlanAPRadioNumber'))
if mibBuilder.loadTexts:
wlsxWlanRadioEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanRadioEntry.setDescription('AP Radio Entry')
wlan_ap_radio_number = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 1), integer32())
if mibBuilder.loadTexts:
wlanAPRadioNumber.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioNumber.setDescription(' The radio number ')
wlan_ap_radio_type = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 2), aruba_phy_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlanAPRadioType.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioType.setDescription(' Type of the Radio ')
wlan_ap_radio_channel = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRadioChannel.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioChannel.setDescription(' The channel the radio is currently operating on. ')
wlan_ap_radio_transmit_power = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRadioTransmitPower.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioTransmitPower.setDescription(' The current power level of the radio. ')
wlan_ap_radio_mode = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 5), aruba_access_point_mode()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRadioMode.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioMode.setDescription(' The Mode in which the radio is operating. ')
wlan_ap_radio_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRadioUtilization.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioUtilization.setDescription(' The Utilization of the radio as a percentage of the total capacity. ')
wlan_ap_radio_num_associated_clients = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRadioNumAssociatedClients.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioNumAssociatedClients.setDescription(' The number of Clients associated to this radio. ')
wlan_ap_radio_num_monitored_clients = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRadioNumMonitoredClients.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioNumMonitoredClients.setDescription(' The number of Clients this Radio is monitoring. ')
wlan_ap_radio_num_active_bssi_ds = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRadioNumActiveBSSIDs.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioNumActiveBSSIDs.setDescription(' The number of active BSSIDs on this Radio. ')
wlan_ap_radio_num_monitored_bssi_ds = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRadioNumMonitoredBSSIDs.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioNumMonitoredBSSIDs.setDescription(' The number of AP BSSIDs this radio is monitoring. ')
wlan_ap_radio_bearing = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 11), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlanAPRadioBearing.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioBearing.setDescription(' Antenna Bearing in degrees from True North. Unsigned floating-point value. Range: 0-360. ')
wlan_ap_radio_tilt_angle = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 12), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlanAPRadioTiltAngle.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioTiltAngle.setDescription(' Tilt angle of antenna in degrees. -ve for downtilt, +ve for uptilt. Signed floating-point value. Range: -90 to +90. ')
wlan_ap_radio_ht_mode = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 13), aruba_ht_mode()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRadioHTMode.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioHTMode.setDescription(' The HT mode of the radio, if any. ')
wlan_ap_radio_ht_ext_channel = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 14), aruba_ht_ext_channel()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRadioHTExtChannel.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioHTExtChannel.setDescription(' Indicates the offset of the 40MHz extension channel, if any. ')
wlan_ap_radio_ht_channel = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 15), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlanAPRadioHTChannel.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioHTChannel.setDescription(" A display string indicating the current channel. If wlanAPRadioHTExtChannel is set to 'above' or 'below', then the channel number will be appended with '+' or '-' respectively. ")
wlan_ap_radio_ap_name = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 5, 1, 16), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlanAPRadioAPName.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRadioAPName.setDescription('Name of the AP the radio belongs to')
wlsx_wlan_ap_bssid_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7))
if mibBuilder.loadTexts:
wlsxWlanAPBssidTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPBssidTable.setDescription(' This table lists all the BSSIDs active on this controller. ')
wlsx_wlan_ap_bssid_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanAPMacAddress'), (0, 'WLSX-WLAN-MIB', 'wlanAPRadioNumber'), (0, 'WLSX-WLAN-MIB', 'wlanAPBSSID'))
if mibBuilder.loadTexts:
wlsxWlanAPBssidEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPBssidEntry.setDescription('BSSID Entry')
wlan_apbssid = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 1), mac_address())
if mibBuilder.loadTexts:
wlanAPBSSID.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBSSID.setDescription(' The MAC address of the Access Point. ')
wlan_apessid = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPESSID.setStatus('current')
if mibBuilder.loadTexts:
wlanAPESSID.setDescription(' ESSID this BSSID is advertising. ')
wlan_ap_bssid_slot = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 3), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidSlot.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidSlot.setDescription(' Slot to which the Access Point is connected. ')
wlan_ap_bssid_port = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidPort.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidPort.setDescription(' Port to which the Access Point is connected. ')
wlan_ap_bssid_phy_type = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 5), aruba_phy_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidPhyType.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidPhyType.setDescription(' Physical Layer Protocol support of the AP. ')
wlan_ap_bssid_rogue_type = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 6), aruba_rogue_ap_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidRogueType.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidRogueType.setDescription(' The type of the Rogue. ')
wlan_ap_bssid_mode = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('ap', 1), ('am', 2), ('mpp', 3), ('mp', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidMode.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidMode.setDescription(' Indicates whether the Access point is an Air Monitor or regular AP or Mesh Portal or Mesh Point. ')
wlan_ap_bssid_channel = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 165))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidChannel.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidChannel.setDescription(' The current operating channel. ')
wlan_ap_bssid_up_time = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 9), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidUpTime.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidUpTime.setDescription(' Time (in hundredths of seconds) since the tunnel was created between the access point and controller ')
wlan_ap_bssid_inactive_time = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 10), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidInactiveTime.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidInactiveTime.setDescription(' Time (in hundredths of seconds) since any activity took place on the BSSID. ')
wlan_ap_bssid_load_balancing = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 11), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidLoadBalancing.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidLoadBalancing.setDescription(' Indicates whether load balancing is enabled or not. ')
wlan_ap_bssid_num_associated_stations = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 12), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidNumAssociatedStations.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidNumAssociatedStations.setDescription(' Indicates the number of stations associated to this BSSID. ')
wlan_ap_bssid_ap_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 13), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidAPMacAddress.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidAPMacAddress.setDescription(' Indicates the Access Point to which this BSSID belongs. ')
wlan_ap_bssid_phy_number = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidPhyNumber.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidPhyNumber.setDescription(' Indicates the radio number to which this BSSID belongs. ')
wlan_ap_bssid_ht_mode = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 15), aruba_ht_mode()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidHTMode.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidHTMode.setDescription(' Indicates the HT mode of this BSSID, if any. ')
wlan_ap_bssid_ht_ext_channel = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 16), aruba_ht_ext_channel()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidHTExtChannel.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidHTExtChannel.setDescription(' Indicates the offset of the 40MHz extension channel, if any. ')
wlan_ap_bssid_ht_channel = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 17), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidHTChannel.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidHTChannel.setDescription(" A display string indicating the current channel. If wlanAPBssidHTExtChannel is set to 'above' or 'below', then the channel number will be appended with '+' or '-' respectively. ")
wlan_ap_bssid_module = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 7, 1, 18), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPBssidModule.setStatus('current')
if mibBuilder.loadTexts:
wlanAPBssidModule.setDescription(' Module to which the Access Point is connected. ')
wlsx_wlan_essid_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8))
if mibBuilder.loadTexts:
wlsxWlanESSIDTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanESSIDTable.setDescription(' This Table lists all the ESSIDs advertised by this controller. ')
wlsx_wlan_essid_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanESSID'))
if mibBuilder.loadTexts:
wlsxWlanESSIDEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanESSIDEntry.setDescription('ESSID Entry')
wlan_essid = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 64)))
if mibBuilder.loadTexts:
wlanESSID.setStatus('current')
if mibBuilder.loadTexts:
wlanESSID.setDescription(' The ESSID being advertised. ')
wlan_essid_num_stations = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanESSIDNumStations.setStatus('current')
if mibBuilder.loadTexts:
wlanESSIDNumStations.setDescription(' The number of stations connected to this ESSID. ')
wlan_essid_num_access_points_up = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8, 1, 3), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanESSIDNumAccessPointsUp.setStatus('current')
if mibBuilder.loadTexts:
wlanESSIDNumAccessPointsUp.setDescription(' The number of APs currently advertising this ESSID. ')
wlan_essid_num_access_points_down = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanESSIDNumAccessPointsDown.setStatus('current')
if mibBuilder.loadTexts:
wlanESSIDNumAccessPointsDown.setDescription(' The number of APs configured to advertise this ESSID that are not currently operational. ')
wlan_essid_encryption_type = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 8, 1, 5), aruba_encryption_methods()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanESSIDEncryptionType.setStatus('current')
if mibBuilder.loadTexts:
wlanESSIDEncryptionType.setDescription(' The encryption methods supported on this ESSID. ')
wlsx_wlan_essid_vlan_pool_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 9))
if mibBuilder.loadTexts:
wlsxWlanESSIDVlanPoolTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanESSIDVlanPoolTable.setDescription(' This Table lists all the VLANs associated with this ESSID. ')
wlsx_wlan_essid_vlan_pool_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 9, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanESSID'), (0, 'WLSX-WLAN-MIB', 'wlanESSIDVlanId'))
if mibBuilder.loadTexts:
wlsxWlanESSIDVlanPoolEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanESSIDVlanPoolEntry.setDescription('ESSID Vlan Pool Entry')
wlan_essid_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 9, 1, 1), unsigned32())
if mibBuilder.loadTexts:
wlanESSIDVlanId.setStatus('current')
if mibBuilder.loadTexts:
wlanESSIDVlanId.setDescription(' VLAN which is part of the VLAN pool for this ESSID. ')
wlan_essid_vlan_pool_status = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 1, 9, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
wlanESSIDVlanPoolStatus.setStatus('current')
if mibBuilder.loadTexts:
wlanESSIDVlanPoolStatus.setDescription(' Row status object used to indicate the status of the row. ')
wlsx_wlan_station_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1))
if mibBuilder.loadTexts:
wlsxWlanStationTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStationTable.setDescription(' This Table lists all the wireless stations associated with the Access points connected to this controller. ')
wlsx_wlan_station_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanStaPhyAddress'))
if mibBuilder.loadTexts:
wlsxWlanStationEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStationEntry.setDescription('Station Entry')
wlan_sta_phy_address = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 1), mac_address())
if mibBuilder.loadTexts:
wlanStaPhyAddress.setStatus('current')
if mibBuilder.loadTexts:
wlanStaPhyAddress.setDescription(' The Physical Address of the Station. ')
wlan_sta_ap_bssid = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 2), mac_address())
if mibBuilder.loadTexts:
wlanStaApBssid.setStatus('current')
if mibBuilder.loadTexts:
wlanStaApBssid.setDescription(' The Access point to which this station last associated to. ')
wlan_sta_phy_type = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 3), aruba_phy_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaPhyType.setStatus('current')
if mibBuilder.loadTexts:
wlanStaPhyType.setDescription(' Type of the Station. ')
wlan_sta_is_authenticated = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 4), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaIsAuthenticated.setStatus('current')
if mibBuilder.loadTexts:
wlanStaIsAuthenticated.setDescription(' Indicates whether the station is authenticated. ')
wlan_sta_is_associated = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 5), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaIsAssociated.setStatus('current')
if mibBuilder.loadTexts:
wlanStaIsAssociated.setDescription(' Indicates whether the station is associated. ')
wlan_sta_channel = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 165))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaChannel.setStatus('current')
if mibBuilder.loadTexts:
wlanStaChannel.setDescription(' Channel on which the station is associated. ')
wlan_sta_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 7), aruba_vlan_valid_range()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaVlanId.setStatus('current')
if mibBuilder.loadTexts:
wlanStaVlanId.setDescription(' VLAN in which the station is present. ')
wlan_sta_voip_state = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 8), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaVOIPState.setStatus('current')
if mibBuilder.loadTexts:
wlanStaVOIPState.setDescription(' The State of VoIP for this station. ')
wlan_sta_voip_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 9), aruba_voip_protocol_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaVOIPProtocol.setStatus('current')
if mibBuilder.loadTexts:
wlanStaVOIPProtocol.setDescription(' If VoIP is enabled, the type of the protocol supported. ')
wlan_sta_transmit_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 10), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTransmitRate.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTransmitRate.setDescription(' Transmit rate with which the Station is associated with this system. ')
wlan_sta_association_id = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 11), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaAssociationID.setStatus('current')
if mibBuilder.loadTexts:
wlanStaAssociationID.setDescription(' AID with which the Station is associated with this system. ')
wlan_sta_access_point_essid = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaAccessPointESSID.setStatus('current')
if mibBuilder.loadTexts:
wlanStaAccessPointESSID.setDescription(' ESSID of the Access point ')
wlan_sta_phy_number = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaPhyNumber.setStatus('current')
if mibBuilder.loadTexts:
wlanStaPhyNumber.setDescription(' Radio PHY number to which the station is associated ')
wlan_sta_rssi = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRSSI.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRSSI.setDescription(' Signal to Noise ratio for the station. ')
wlan_sta_up_time = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 15), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaUpTime.setStatus('current')
if mibBuilder.loadTexts:
wlanStaUpTime.setDescription(' Time since the station associated to the current BSSID. ')
wlan_sta_ht_mode = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 1, 1, 16), aruba_ht_mode()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaHTMode.setStatus('current')
if mibBuilder.loadTexts:
wlanStaHTMode.setDescription(' The HT status of the station. ')
wlsx_wlan_sta_association_failure_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2))
if mibBuilder.loadTexts:
wlsxWlanStaAssociationFailureTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStaAssociationFailureTable.setDescription(" This Table lists all the stations and the BSSID's to which they failed to associate. Once a station successfully associates, association failure entries are not reported for that station. ")
wlsx_wlan_sta_association_failure_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanStaPhyAddress'), (0, 'WLSX-WLAN-MIB', 'wlanAPBSSID'))
if mibBuilder.loadTexts:
wlsxWlanStaAssociationFailureEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStaAssociationFailureEntry.setDescription('Station Association Failure Entry')
wlan_sta_assoc_failure_ap_name = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaAssocFailureApName.setStatus('current')
if mibBuilder.loadTexts:
wlanStaAssocFailureApName.setDescription(' Name of the Access Point to which this station tried to associate. ')
wlan_sta_assoc_failure_ap_essid = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaAssocFailureApEssid.setStatus('current')
if mibBuilder.loadTexts:
wlanStaAssocFailureApEssid.setDescription(' ESSID to which the station association failed. ')
wlan_sta_assoc_failure_phy_num = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaAssocFailurePhyNum.setStatus('current')
if mibBuilder.loadTexts:
wlanStaAssocFailurePhyNum.setDescription(' Radio PHY number to which the station tried to associate. ')
wlan_sta_assoc_failure_phy_type = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1, 4), aruba_phy_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaAssocFailurePhyType.setStatus('current')
if mibBuilder.loadTexts:
wlanStaAssocFailurePhyType.setDescription(' Radio PHY Type of the Station. ')
wlan_sta_assoc_failure_elapsed_time = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1, 5), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaAssocFailureElapsedTime.setStatus('current')
if mibBuilder.loadTexts:
wlanStaAssocFailureElapsedTime.setDescription(" Elapsed time in timeticks after the station's failure to associate. ")
wlan_sta_assoc_failure_reason = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 2, 2, 2, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaAssocFailureReason.setStatus('current')
if mibBuilder.loadTexts:
wlanStaAssocFailureReason.setDescription(' Reason for the Station association failure ')
wlsx_wlan_ap_stats_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1))
if mibBuilder.loadTexts:
wlsxWlanAPStatsTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPStatsTable.setDescription(' This Table lists the statistics of all the Access Points connected to the controller. ')
wlsx_wlan_ap_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanAPMacAddress'), (0, 'WLSX-WLAN-MIB', 'wlanAPRadioNumber'), (0, 'WLSX-WLAN-MIB', 'wlanAPBSSID'))
if mibBuilder.loadTexts:
wlsxWlanAPStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPStatsEntry.setDescription('Access Point Stats entry')
wlan_ap_current_channel = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 1), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPCurrentChannel.setStatus('current')
if mibBuilder.loadTexts:
wlanAPCurrentChannel.setDescription(' The channel the AP is currently using. ')
wlan_ap_num_clients = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPNumClients.setStatus('current')
if mibBuilder.loadTexts:
wlanAPNumClients.setDescription(' The number of clients associated to this BSSID. ')
wlan_ap_tx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPTxPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPTxPkts.setDescription(' The number of packets transmitted on this BSSID. ')
wlan_ap_tx_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPTxBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanAPTxBytes.setDescription(' The number of bytes transmitted on this BSSID. ')
wlan_ap_rx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRxPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRxPkts.setDescription(' The number of packets received on this BSSID. ')
wlan_ap_rx_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRxBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRxBytes.setDescription(' The number of bytes received on this BSSID. ')
wlan_ap_tx_deauthentications = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPTxDeauthentications.setStatus('current')
if mibBuilder.loadTexts:
wlanAPTxDeauthentications.setDescription(' The number of deauthentications transmitted on this BSSID. ')
wlan_ap_rx_deauthentications = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRxDeauthentications.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRxDeauthentications.setDescription(' The number of deauthentications received on this BSSID. ')
wlan_ap_channel_throughput = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChannelThroughput.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChannelThroughput.setDescription(' The throughput achieved on this channel. ')
wlan_ap_frame_retry_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPFrameRetryRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPFrameRetryRate.setDescription(' The number of retry packets as a percentage of the total packets transmitted and received by this BSSID. ')
wlan_ap_frame_low_speed_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPFrameLowSpeedRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPFrameLowSpeedRate.setDescription(' The number of low data rate (<= 18Mbps for A/G bands and <=2Mbps for B band) packets as a percentage of the total packets transmitted and received by this BSSID ')
wlan_ap_frame_non_unicast_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPFrameNonUnicastRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPFrameNonUnicastRate.setDescription(' The number of broadcast and multicast packets as a percentage of the total packets transmitted on this BSSIDchannel. ')
wlan_ap_frame_fragmentation_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPFrameFragmentationRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPFrameFragmentationRate.setDescription(' The number of fragments as a percentage of the total packets transmitted by this BSSID. ')
wlan_ap_frame_bandwidth_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPFrameBandwidthRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPFrameBandwidthRate.setDescription(' The bandwidth of this BSSID in Kbps. ')
wlan_ap_frame_retry_error_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPFrameRetryErrorRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPFrameRetryErrorRate.setDescription(' The number of error packets as a percentage of the total packets received on this BSSID. ')
wlan_ap_channel_error_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChannelErrorRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChannelErrorRate.setDescription(' The number of error packets as a percentage of the total packets received on the current channel. ')
wlan_ap_frame_receive_error_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPFrameReceiveErrorRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPFrameReceiveErrorRate.setDescription(' The number of error packets as a percentage of the total packets received on this BSSID. ')
wlan_ap_rx_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRxDataPkts.setStatus('deprecated')
if mibBuilder.loadTexts:
wlanAPRxDataPkts.setDescription(' The number of packets received on this BSSID. ')
wlan_ap_rx_data_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRxDataBytes.setStatus('deprecated')
if mibBuilder.loadTexts:
wlanAPRxDataBytes.setDescription(' The number of bytes received on this BSSID. ')
wlan_ap_tx_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPTxDataPkts.setStatus('deprecated')
if mibBuilder.loadTexts:
wlanAPTxDataPkts.setDescription(' The number of packets transmitted on this BSSID. ')
wlan_ap_tx_data_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPTxDataBytes.setStatus('deprecated')
if mibBuilder.loadTexts:
wlanAPTxDataBytes.setDescription(' The number of bytes transmitted on this BSSID. ')
wlan_ap_rx_data_pkts64 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 22), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRxDataPkts64.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRxDataPkts64.setDescription(' The number of packets received on this BSSID. ')
wlan_ap_rx_data_bytes64 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 23), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPRxDataBytes64.setStatus('current')
if mibBuilder.loadTexts:
wlanAPRxDataBytes64.setDescription(' The number of bytes received on this BSSID. ')
wlan_ap_tx_data_pkts64 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 24), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPTxDataPkts64.setStatus('current')
if mibBuilder.loadTexts:
wlanAPTxDataPkts64.setDescription(' The number of packets transmitted on this BSSID. ')
wlan_ap_tx_data_bytes64 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 1, 1, 25), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPTxDataBytes64.setStatus('current')
if mibBuilder.loadTexts:
wlanAPTxDataBytes64.setDescription(' The number of bytes transmitted on this BSSID. ')
wlsx_wlan_ap_rate_stats_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2))
if mibBuilder.loadTexts:
wlsxWlanAPRateStatsTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPRateStatsTable.setDescription(' This table contains all the AP Packet and Byte Counts but represented in terms of rate categories. ')
wlsx_wlan_ap_rate_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanAPMacAddress'), (0, 'WLSX-WLAN-MIB', 'wlanAPRadioNumber'), (0, 'WLSX-WLAN-MIB', 'wlanAPBSSID'))
if mibBuilder.loadTexts:
wlsxWlanAPRateStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPRateStatsEntry.setDescription('Data rate based packet and byte count entry for an AP')
wlan_ap_stats_tot_pkts_at1_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt1Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt1Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 1Mbps rate. ')
wlan_ap_stats_tot_bytes_at1_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt1Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt1Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 1Mbps rate. ')
wlan_ap_stats_tot_pkts_at2_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt2Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt2Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 2Mbps rate. ')
wlan_ap_stats_tot_bytes_at2_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt2Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt2Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 2Mbps rate. ')
wlan_ap_stats_tot_pkts_at5_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt5Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt5Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 5Mbps rate. ')
wlan_ap_stats_tot_bytes_at5_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt5Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt5Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 5Mbps rate. ')
wlan_ap_stats_tot_pkts_at11_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt11Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt11Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 11Mbps rate. ')
wlan_ap_stats_tot_bytes_at11_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt11Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt11Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 11Mbps rate. ')
wlan_ap_stats_tot_pkts_at6_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt6Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt6Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 6Mbps rate. ')
wlan_ap_stats_tot_bytes_at6_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt6Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt6Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 6Mbps rate. ')
wlan_ap_stats_tot_pkts_at12_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt12Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt12Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 12Mbps rate. ')
wlan_ap_stats_tot_bytes_at12_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt12Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt12Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 12Mbps rate. ')
wlan_ap_stats_tot_pkts_at18_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt18Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt18Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 18Mbps rate. ')
wlan_ap_stats_tot_bytes_at18_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt18Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt18Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 18Mbps rate. ')
wlan_ap_stats_tot_pkts_at24_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt24Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt24Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 24Mbps rate. ')
wlan_ap_stats_tot_bytes_at24_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt24Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt24Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 24Mbps rate. ')
wlan_ap_stats_tot_pkts_at36_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt36Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt36Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 36Mbps rate. ')
wlan_ap_stats_tot_bytes_at36_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt36Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt36Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 36Mbps rate. ')
wlan_ap_stats_tot_pkts_at48_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt48Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt48Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 48Mbps rate. ')
wlan_ap_stats_tot_bytes_at48_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt48Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt48Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 48Mbps rate. ')
wlan_ap_stats_tot_pkts_at54_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt54Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt54Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 54Mbps rate. ')
wlan_ap_stats_tot_bytes_at54_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt54Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt54Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 54Mbps rate. ')
wlan_ap_stats_tot_pkts_at9_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt9Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotPktsAt9Mbps.setDescription(' This attribute indicates the total number of packets observed on this BSSID at 9Mbps rate. ')
wlan_ap_stats_tot_bytes_at9_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 2, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt9Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotBytesAt9Mbps.setDescription(' This attribute indicates the total number of Bytes observed on this BSSID at 9Mbps rate. ')
wlsx_wlan_apda_type_stats_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3))
if mibBuilder.loadTexts:
wlsxWlanAPDATypeStatsTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPDATypeStatsTable.setDescription(' This table contains all the per BSSID Packet and Byte Counts but broken down in terms of Destination Address Type. ')
wlsx_wlan_apda_type_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanAPMacAddress'), (0, 'WLSX-WLAN-MIB', 'wlanAPRadioNumber'), (0, 'WLSX-WLAN-MIB', 'wlanAPBSSID'))
if mibBuilder.loadTexts:
wlsxWlanAPDATypeStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPDATypeStatsEntry.setDescription('Destination Address based packet and byte count entry for an AP')
wlan_ap_stats_tot_da_broadcast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotDABroadcastPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotDABroadcastPkts.setDescription(' This attribute indicates the total number of Broadcast packets observed on this BSSID. ')
wlan_ap_stats_tot_da_broadcast_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotDABroadcastBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotDABroadcastBytes.setDescription(' This attribute indicates the total number of Broadcast Bytes observed on this BSSID. ')
wlan_ap_stats_tot_da_multicast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotDAMulticastPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotDAMulticastPkts.setDescription(' This attribute indicates the total number of Multicast packets observed on this BSSID. ')
wlan_ap_stats_tot_da_multicast_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotDAMulticastBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotDAMulticastBytes.setDescription(' This attribute indicates the total number of Multicast Bytes observed on this BSSID. ')
wlan_ap_stats_tot_da_unicast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotDAUnicastPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotDAUnicastPkts.setDescription(' This attribute indicates the total number of Unicast packets observed on this BSSID. ')
wlan_ap_stats_tot_da_unicast_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 3, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotDAUnicastBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotDAUnicastBytes.setDescription(' This attribute indicates the total number of Unicast Bytes observed on this BSSID. ')
wlsx_wlan_ap_frame_type_stats_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4))
if mibBuilder.loadTexts:
wlsxWlanAPFrameTypeStatsTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPFrameTypeStatsTable.setDescription(' This table contains all the per BSSID Packet and Byte Counts but broken down into different Frame Types. ')
wlsx_wlan_ap_frame_type_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanAPMacAddress'), (0, 'WLSX-WLAN-MIB', 'wlanAPRadioNumber'), (0, 'WLSX-WLAN-MIB', 'wlanAPBSSID'))
if mibBuilder.loadTexts:
wlsxWlanAPFrameTypeStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPFrameTypeStatsEntry.setDescription('Frame Type based packet and byte count entry for an AP')
wlan_ap_stats_tot_mgmt_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotMgmtPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotMgmtPkts.setDescription(' This attribute indicates the total number of Management packets observed on this BSSID. ')
wlan_ap_stats_tot_mgmt_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotMgmtBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotMgmtBytes.setDescription(' This attribute indicates the total number of Management Bytes observed on this BSSID. ')
wlan_ap_stats_tot_ctrl_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotCtrlPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotCtrlPkts.setDescription(' This attribute indicates the total number of Control packets observed on this BSSID. ')
wlan_ap_stats_tot_ctrl_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotCtrlBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotCtrlBytes.setDescription(' This attribute indicates the total number of Control Bytes observed on this BSSID. ')
wlan_ap_stats_tot_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotDataPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotDataPkts.setDescription(' This attribute indicates the total number of Data packets observed on this BSSID. ')
wlan_ap_stats_tot_data_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 4, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsTotDataBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsTotDataBytes.setDescription(' This attribute indicates the total number of Data Bytes observed on this BSSID. ')
wlsx_wlan_ap_pkt_size_stats_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5))
if mibBuilder.loadTexts:
wlsxWlanAPPktSizeStatsTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPPktSizeStatsTable.setDescription(' This table contains all the per BSSID Packet Count but broken down into different Packet Sizes. ')
wlsx_wlan_ap_pkt_size_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanAPMacAddress'), (0, 'WLSX-WLAN-MIB', 'wlanAPRadioNumber'), (0, 'WLSX-WLAN-MIB', 'wlanAPBSSID'))
if mibBuilder.loadTexts:
wlsxWlanAPPktSizeStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPPktSizeStatsEntry.setDescription('Packet Size based packet count entry for a BSSID')
wlan_ap_stats_pkts63_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsPkts63Bytes.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsPkts63Bytes.setDescription(' This attribute indicates the total number of packets that were less than 64 bytes long. ')
wlan_ap_stats_pkts64_to127 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsPkts64To127.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsPkts64To127.setDescription(' This attribute indicates the total number of packets that were between 64 and 127 bytes long. ')
wlan_ap_stats_pkts128_to255 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsPkts128To255.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsPkts128To255.setDescription(' This attribute indicates the total number of packets that were between 128 and 255 bytes long. ')
wlan_ap_stats_pkts256_to511 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsPkts256To511.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsPkts256To511.setDescription(' This attribute indicates the total number of packets that were between 256 and 511 bytes long. ')
wlan_ap_stats_pkts512_to1023 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsPkts512To1023.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsPkts512To1023.setDescription(' This attribute indicates the total number of packets that were between 512 and 1023 bytes long. ')
wlan_ap_stats_pkts1024_to1518 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 5, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPStatsPkts1024To1518.setStatus('current')
if mibBuilder.loadTexts:
wlanAPStatsPkts1024To1518.setDescription(' This attribute indicates the total number of packets that were between 1024 and 1518 bytes long. ')
wlsx_wlan_ap_ch_stats_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6))
if mibBuilder.loadTexts:
wlsxWlanAPChStatsTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPChStatsTable.setDescription(' This Table lists the Channel statistics of all the Access Points connected to the controller. ')
wlsx_wlan_ap_ch_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanAPMacAddress'), (0, 'WLSX-WLAN-MIB', 'wlanAPRadioNumber'))
if mibBuilder.loadTexts:
wlsxWlanAPChStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanAPChStatsEntry.setDescription('Access Point Channel Stats entry')
wlan_ap_channel_number = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 165))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChannelNumber.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChannelNumber.setDescription(' The channel the AP is currently using. ')
wlan_ap_ch_num_stations = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChNumStations.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChNumStations.setDescription(' This attribute indicates the number of stations using this channel. ')
wlan_ap_ch_tot_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChTotPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChTotPkts.setDescription(' This attribute indicates the total packets observed on this channel. ')
wlan_ap_ch_tot_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChTotBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChTotBytes.setDescription(' This attribute indicates the total Bytes observed on this channel. ')
wlan_ap_ch_tot_retry_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChTotRetryPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChTotRetryPkts.setDescription(' This attribute indicates the total Retry Packets observed on this channel. ')
wlan_ap_ch_tot_fragmented_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChTotFragmentedPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChTotFragmentedPkts.setDescription(' This attribute indicates the total Fragmented Packets observed on this channel. ')
wlan_ap_ch_tot_phy_err_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChTotPhyErrPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChTotPhyErrPkts.setDescription(' This attribute indicates the total Physical Error Packets observed on this channel. ')
wlan_ap_ch_tot_mac_err_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChTotMacErrPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChTotMacErrPkts.setDescription(' This attribute indicates the total Mac errors packets observed on this channel. ')
wlan_ap_ch_noise = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChNoise.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChNoise.setDescription(' This attribute indicates the noise observed on this channel. ')
wlan_ap_ch_coverage_index = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChCoverageIndex.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChCoverageIndex.setDescription(' This attribute indicates the coverage provided by the AP on this channel. ')
wlan_ap_ch_interference_index = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChInterferenceIndex.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChInterferenceIndex.setDescription(' This attribute indicates the interference observed on this channel. ')
wlan_ap_ch_frame_retry_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChFrameRetryRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChFrameRetryRate.setDescription(' The number of retry packets as a percentage of the total packets transmitted and received on this channel. ')
wlan_ap_ch_frame_low_speed_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChFrameLowSpeedRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChFrameLowSpeedRate.setDescription(' The number of low data rate (<= 18Mbps for A/G bands and <=2Mbps for B band) packets as a percentage of the total packets transmitted and received on this channel ')
wlan_ap_ch_frame_non_unicast_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChFrameNonUnicastRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChFrameNonUnicastRate.setDescription(' The number of broadcast and multicast packets as a percentage of the total packets transmitted on this channel. ')
wlan_ap_ch_frame_fragmentation_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChFrameFragmentationRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChFrameFragmentationRate.setDescription(' The number of fragments as a percentage of the total packets transmitted on this channel ')
wlan_ap_ch_frame_bandwidth_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChFrameBandwidthRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChFrameBandwidthRate.setDescription(' The bandwidth of this channel in Kbps. ')
wlan_ap_ch_frame_retry_error_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChFrameRetryErrorRate.setStatus('deprecated')
if mibBuilder.loadTexts:
wlanAPChFrameRetryErrorRate.setDescription(' The number of error packets as a percentage of the total packets received on this channel. ')
wlan_ap_ch_busy_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 18), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChBusyRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChBusyRate.setDescription(' This attribute indicates the busy this channel is. ')
wlan_ap_ch_num_a_ps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 19), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChNumAPs.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChNumAPs.setDescription(' This attribute indicates the number of Access Points observed on this channel. ')
wlan_ap_ch_frame_receive_error_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 20), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChFrameReceiveErrorRate.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChFrameReceiveErrorRate.setDescription(' The number of error packets as a percentage of the total packets received on this channel. ')
wlan_ap_ch_transmitted_fragment_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChTransmittedFragmentCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChTransmittedFragmentCount.setDescription(' This counter shall be incremented for an acknowledged MPDU with an individual address in the address 1 field or an MPDU with a multicast address in the address 1 field of type Data or Management. ')
wlan_ap_ch_multicast_transmitted_frame_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChMulticastTransmittedFrameCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChMulticastTransmittedFrameCount.setDescription(' This counter shall increment only when the multicast bit is set in the destination MAC address of a successfully transmitted MSDU. When operating as a STA in an ESS, where these frames are directed to the AP, this implies having received an acknowledgment to all associated MPDUs. ')
wlan_ap_ch_failed_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChFailedCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChFailedCount.setDescription(' This counter shall increment when an MSDU is not transmitted successfully due to the number of transmit attempts exceeding either the dot11ShortRetryLimit or dot11LongRetryLimit. ')
wlan_ap_ch_retry_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChRetryCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChRetryCount.setDescription(' This counter shall increment when an MSDU is successfully transmitted after one or more retransmissions. ')
wlan_ap_ch_multiple_retry_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChMultipleRetryCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChMultipleRetryCount.setDescription(' This counter shall increment when an MSDU is successfully transmitted after more than one retransmission. ')
wlan_ap_ch_frame_duplicate_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChFrameDuplicateCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChFrameDuplicateCount.setDescription(' This counter shall increment when a frame is received that the Sequence Control field indicates is a duplicate. ')
wlan_ap_ch_rts_success_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChRTSSuccessCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChRTSSuccessCount.setDescription(' This counter shall increment when a CTS is received in response to an RTS. ')
wlan_ap_ch_rts_failure_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChRTSFailureCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChRTSFailureCount.setDescription(' This counter shall increment when a CTS is not received in response to an RTS. ')
wlan_ap_ch_ack_failure_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChACKFailureCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChACKFailureCount.setDescription(' This counter shall increment when an ACK is not received when expected. ')
wlan_ap_ch_received_fragment_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChReceivedFragmentCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChReceivedFragmentCount.setDescription(' This counter shall be incremented for each successfully received MPDU of type Data or Management. ')
wlan_ap_ch_multicast_received_frame_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 31), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChMulticastReceivedFrameCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChMulticastReceivedFrameCount.setDescription(' This counter shall increment when a MSDU is received with the multicast bit set in the destination MAC address. ')
wlan_ap_ch_fcs_error_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 32), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChFCSErrorCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChFCSErrorCount.setDescription(' This counter shall increment when an FCS error is detected in a received MPDU. ')
wlan_ap_ch_transmitted_frame_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 33), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChTransmittedFrameCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChTransmittedFrameCount.setDescription(' This counter shall increment for each successfully transmitted MSDU. ')
wlan_ap_ch_wep_undecryptable_count = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 34), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChWEPUndecryptableCount.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChWEPUndecryptableCount.setDescription(" This counter shall increment when a frame is received with the Protected Frame subfield of the Frame Control field set to one and the WEPOn value for the key mapped to the transmitter's MAC address indicates that the frame should not have been encrypted or that frame is discarded due to the receiving STA not implementing the privacy option. ")
wlan_ap_ch_rx_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChRxUtilization.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChRxUtilization.setDescription(' This is the percentage of time spent by the radio in receiving packets. ')
wlan_ap_ch_tx_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChTxUtilization.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChTxUtilization.setDescription(' This is the percentage of time spent by the radio in transmitting packets. ')
wlan_ap_ch_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 1, 6, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanAPChUtilization.setStatus('current')
if mibBuilder.loadTexts:
wlanAPChUtilization.setDescription(' This is the percentage of time the channel is busy. ')
wlsx_wlan_station_stats_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1))
if mibBuilder.loadTexts:
wlsxWlanStationStatsTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStationStatsTable.setDescription(' This Table lists statistics of all the wireless stations associated with an AP connected to this controller. ')
wlsx_wlan_station_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanStaPhyAddress'))
if mibBuilder.loadTexts:
wlsxWlanStationStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStationStatsEntry.setDescription('Station Stats Entry')
wlan_sta_channel_num = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 1), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaChannelNum.setStatus('current')
if mibBuilder.loadTexts:
wlanStaChannelNum.setDescription(' The channel the station is currently using. ')
wlan_sta_tx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPkts.setDescription(' The number of packets transmitted by this station. ')
wlan_sta_tx_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytes.setDescription(' The number of bytes transmitted by this station. ')
wlan_sta_rx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPkts.setDescription(' The number of packets received by this station. ')
wlan_sta_rx_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytes.setDescription(' The number of bytes received by this station. ')
wlan_sta_tx_b_cast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBCastPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBCastPkts.setDescription(' The number of broadcast packets transmitted by this station. ')
wlan_sta_rx_b_cast_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBCastBytes.setStatus('deprecated')
if mibBuilder.loadTexts:
wlanStaRxBCastBytes.setDescription(' The number of broadcast bytes transmitted by this station. ')
wlan_sta_tx_m_cast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxMCastPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxMCastPkts.setDescription(' The number of multicast packets transmitted by this station. ')
wlan_sta_rx_m_cast_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxMCastBytes.setStatus('deprecated')
if mibBuilder.loadTexts:
wlanStaRxMCastBytes.setDescription(' The number of multicast bytes transmitted by this station. ')
wlan_sta_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaDataPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaDataPkts.setDescription(' The total number of Data packets transmitted by this station. ')
wlan_sta_ctrl_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaCtrlPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaCtrlPkts.setDescription(' The total number of Control packets transmitted by this station. ')
wlan_sta_num_assoc_requests = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaNumAssocRequests.setStatus('current')
if mibBuilder.loadTexts:
wlanStaNumAssocRequests.setDescription(' The number of Association requests transmitted by this station. ')
wlan_sta_num_auth_requests = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaNumAuthRequests.setStatus('current')
if mibBuilder.loadTexts:
wlanStaNumAuthRequests.setDescription(' The number of Authentication requests transmitted by this station. ')
wlan_sta_tx_deauthentications = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxDeauthentications.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxDeauthentications.setDescription(' The number of Deauthentication frames transmitted by this station. ')
wlan_sta_rx_deauthentications = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxDeauthentications.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxDeauthentications.setDescription(' The number of Deauthentication frames received by this station. ')
wlan_sta_frame_retry_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaFrameRetryRate.setStatus('current')
if mibBuilder.loadTexts:
wlanStaFrameRetryRate.setDescription(' The number of retry packets as a percentage of the total packets transmitted and received by this station. ')
wlan_sta_frame_low_speed_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaFrameLowSpeedRate.setStatus('current')
if mibBuilder.loadTexts:
wlanStaFrameLowSpeedRate.setDescription(' The number of low data rate (<= 18Mbps for A/G bands and <=2Mbps for B band) packets as a percentage of the total packets transmitted and received by this station. ')
wlan_sta_frame_non_unicast_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 18), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaFrameNonUnicastRate.setStatus('current')
if mibBuilder.loadTexts:
wlanStaFrameNonUnicastRate.setDescription(' The number of broadcast and multicast packets as a percentage of the total packets transmitted by this station. ')
wlan_sta_frame_fragmentation_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 19), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaFrameFragmentationRate.setStatus('current')
if mibBuilder.loadTexts:
wlanStaFrameFragmentationRate.setDescription(' The number of fragments as a percentage of the total packets transmitted by this station. ')
wlan_sta_frame_bandwidth_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 20), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaFrameBandwidthRate.setStatus('current')
if mibBuilder.loadTexts:
wlanStaFrameBandwidthRate.setDescription(' The bandwidth of this station in Kbps. ')
wlan_sta_frame_retry_error_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 21), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaFrameRetryErrorRate.setStatus('deprecated')
if mibBuilder.loadTexts:
wlanStaFrameRetryErrorRate.setDescription(' The number of error packets as a percentage of the total packets received by this station. ')
wlan_sta_frame_receive_error_rate = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 22), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaFrameReceiveErrorRate.setStatus('current')
if mibBuilder.loadTexts:
wlanStaFrameReceiveErrorRate.setDescription(' The number of error packets as a percentage of the total packets received by this station. ')
wlan_sta_tx_b_cast_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBCastBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBCastBytes.setDescription(' The number of broadcast bytes transmitted by this station. ')
wlan_sta_tx_m_cast_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxMCastBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxMCastBytes.setDescription(' The number of multicast bytes transmitted by this station. ')
wlan_sta_tx_bytes64 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 25), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytes64.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytes64.setDescription(' The number of bytes transmitted by this station, 64-bit value ')
wlan_sta_rx_bytes64 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 1, 1, 26), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytes64.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytes64.setDescription(' The number of bytes received by this station, 64-bit value ')
wlsx_wlan_sta_rate_stats_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2))
if mibBuilder.loadTexts:
wlsxWlanStaRateStatsTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStaRateStatsTable.setDescription(' This table contains all the Packet and Byte Counts for a station represented in terms of rate categories. ')
wlsx_wlan_sta_rate_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanStaPhyAddress'))
if mibBuilder.loadTexts:
wlsxWlanStaRateStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStaRateStatsEntry.setDescription('Data rate based packet and byte count entry for a station')
wlan_sta_tx_pkts_at1_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPktsAt1Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPktsAt1Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 1Mbps rate. ')
wlan_sta_tx_bytes_at1_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytesAt1Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytesAt1Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 1Mbps rate. ')
wlan_sta_tx_pkts_at2_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPktsAt2Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPktsAt2Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 2Mbps rate. ')
wlan_sta_tx_bytes_at2_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytesAt2Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytesAt2Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 2Mbps rate. ')
wlan_sta_tx_pkts_at5_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPktsAt5Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPktsAt5Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 5Mbps rate. ')
wlan_sta_tx_bytes_at5_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytesAt5Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytesAt5Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 5Mbps rate. ')
wlan_sta_tx_pkts_at11_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPktsAt11Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPktsAt11Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 11Mbps rate. ')
wlan_sta_tx_bytes_at11_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytesAt11Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytesAt11Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 11Mbps rate. ')
wlan_sta_tx_pkts_at6_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPktsAt6Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPktsAt6Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 6Mbps rate. ')
wlan_sta_tx_bytes_at6_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytesAt6Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytesAt6Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 6Mbps rate. ')
wlan_sta_tx_pkts_at12_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPktsAt12Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPktsAt12Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 12Mbps rate. ')
wlan_sta_tx_bytes_at12_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytesAt12Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytesAt12Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 12Mbps rate. ')
wlan_sta_tx_pkts_at18_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPktsAt18Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPktsAt18Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 18Mbps rate. ')
wlan_sta_tx_bytes_at18_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytesAt18Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytesAt18Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 18Mbps rate. ')
wlan_sta_tx_pkts_at24_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPktsAt24Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPktsAt24Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 24Mbps rate. ')
wlan_sta_tx_bytes_at24_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytesAt24Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytesAt24Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 24Mbps rate. ')
wlan_sta_tx_pkts_at36_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPktsAt36Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPktsAt36Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 36Mbps rate. ')
wlan_sta_tx_bytes_at36_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytesAt36Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytesAt36Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 36Mbps rate. ')
wlan_sta_tx_pkts_at48_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPktsAt48Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPktsAt48Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 48Mbps rate. ')
wlan_sta_tx_bytes_at48_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytesAt48Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytesAt48Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 48Mbps rate. ')
wlan_sta_tx_pkts_at54_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPktsAt54Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPktsAt54Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 54Mbps rate. ')
wlan_sta_tx_bytes_at54_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytesAt54Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytesAt54Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 54Mbps rate. ')
wlan_sta_rx_pkts_at1_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPktsAt1Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPktsAt1Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 1Mbps rate. ')
wlan_sta_rx_bytes_at1_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytesAt1Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytesAt1Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 1Mbps rate. ')
wlan_sta_rx_pkts_at2_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPktsAt2Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPktsAt2Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 2Mbps rate. ')
wlan_sta_rx_bytes_at2_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytesAt2Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytesAt2Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 2Mbps rate. ')
wlan_sta_rx_pkts_at5_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPktsAt5Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPktsAt5Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 5Mbps rate. ')
wlan_sta_rx_bytes_at5_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytesAt5Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytesAt5Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 5Mbps rate. ')
wlan_sta_rx_pkts_at11_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPktsAt11Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPktsAt11Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 11Mbps rate. ')
wlan_sta_rx_bytes_at11_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytesAt11Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytesAt11Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 11Mbps rate. ')
wlan_sta_rx_pkts_at6_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 31), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPktsAt6Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPktsAt6Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 6Mbps rate. ')
wlan_sta_rx_bytes_at6_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 32), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytesAt6Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytesAt6Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 6Mbps rate. ')
wlan_sta_rx_pkts_at12_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 33), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPktsAt12Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPktsAt12Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 12Mbps rate. ')
wlan_sta_rx_bytes_at12_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 34), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytesAt12Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytesAt12Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 12Mbps rate. ')
wlan_sta_rx_pkts_at18_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 35), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPktsAt18Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPktsAt18Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 18Mbps rate. ')
wlan_sta_rx_bytes_at18_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 36), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytesAt18Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytesAt18Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 18Mbps rate. ')
wlan_sta_rx_pkts_at24_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 37), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPktsAt24Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPktsAt24Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 24Mbps rate. ')
wlan_sta_rx_bytes_at24_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 38), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytesAt24Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytesAt24Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 24Mbps rate. ')
wlan_sta_rx_pkts_at36_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 39), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPktsAt36Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPktsAt36Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 36Mbps rate. ')
wlan_sta_rx_bytes_at36_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 40), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytesAt36Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytesAt36Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 36Mbps rate. ')
wlan_sta_rx_pkts_at48_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 41), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPktsAt48Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPktsAt48Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 48Mbps rate. ')
wlan_sta_rx_bytes_at48_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 42), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytesAt48Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytesAt48Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 48Mbps rate. ')
wlan_sta_rx_pkts_at54_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 43), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPktsAt54Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPktsAt54Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 54Mbps rate. ')
wlan_sta_rx_bytes_at54_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 44), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytesAt54Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytesAt54Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 54Mbps rate. ')
wlan_sta_tx_pkts_at9_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 45), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPktsAt9Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPktsAt9Mbps.setDescription(' This attribute indicates the number of Packets Transmitted by the station at 9Mbps rate. ')
wlan_sta_tx_bytes_at9_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 46), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxBytesAt9Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxBytesAt9Mbps.setDescription(' This attribute indicates the number of Octets Transmitted by the station at 9Mbps rate. ')
wlan_sta_rx_pkts_at9_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 47), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPktsAt9Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPktsAt9Mbps.setDescription(' This attribute indicates the number of Packets Received by the station at 9Mbps rate. ')
wlan_sta_rx_bytes_at9_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 2, 1, 48), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxBytesAt9Mbps.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxBytesAt9Mbps.setDescription(' This attribute indicates the number of Octets Received by the station at 9Mbps rate. ')
wlsx_wlan_sta_da_type_stats_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3))
if mibBuilder.loadTexts:
wlsxWlanStaDATypeStatsTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStaDATypeStatsTable.setDescription(' This table contains all the Packet and Byte Counts for a station but but broken down in terms of Destination Address Type. ')
wlsx_wlan_sta_da_type_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanStaPhyAddress'))
if mibBuilder.loadTexts:
wlsxWlanStaDATypeStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStaDATypeStatsEntry.setDescription(' Destination Address based packet and byte count entry for a station ')
wlan_sta_tx_da_broadcast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxDABroadcastPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxDABroadcastPkts.setDescription(' This attribute indicates the number of Broadcast packets transmitted by this Station. ')
wlan_sta_tx_da_broadcast_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxDABroadcastBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxDABroadcastBytes.setDescription(' This attribute indicates the number of Broadcast Bytes transmitted by this Station. ')
wlan_sta_tx_da_multicast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxDAMulticastPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxDAMulticastPkts.setDescription(' This attribute indicates the number of Multicast packets transmitted by this station. ')
wlan_sta_tx_da_multicast_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxDAMulticastBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxDAMulticastBytes.setDescription(' This attribute indicates the number of Multicast Bytes transmitted by this station. ')
wlan_sta_tx_da_unicast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxDAUnicastPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxDAUnicastPkts.setDescription(' This attribute indicates the total of Unicast packets transmitted by this station. ')
wlan_sta_tx_da_unicast_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 3, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxDAUnicastBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxDAUnicastBytes.setDescription(' This attribute indicates the total of Unicast Bytes transmitted by this station. ')
wlsx_wlan_sta_frame_type_stats_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4))
if mibBuilder.loadTexts:
wlsxWlanStaFrameTypeStatsTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStaFrameTypeStatsTable.setDescription(' This table contains all the Packet and Byte Counts for stations but broken down into different Frame Types. ')
wlsx_wlan_sta_frame_type_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanStaPhyAddress'))
if mibBuilder.loadTexts:
wlsxWlanStaFrameTypeStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStaFrameTypeStatsEntry.setDescription('Frame Type based packet and byte count entry for a station')
wlan_sta_tx_mgmt_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxMgmtPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxMgmtPkts.setDescription(' This attribute indicates the Transmitted Management packets from a station. ')
wlan_sta_tx_mgmt_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxMgmtBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxMgmtBytes.setDescription(' This attribute indicates the Transmitted Management Bytes from a station ')
wlan_sta_tx_ctrl_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxCtrlPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxCtrlPkts.setDescription(' This attribute indicates the Transmitted Control packets from a station ')
wlan_sta_tx_ctrl_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxCtrlBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxCtrlBytes.setDescription(' This attribute indicates the Transmitted Control Bytes from a station ')
wlan_sta_tx_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxDataPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxDataPkts.setDescription(' This attribute indicates the Transmitted Data packets from a station ')
wlan_sta_tx_data_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxDataBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxDataBytes.setDescription(' This attribute indicates the Transmitted Data Bytes observed on this channel. ')
wlan_sta_rx_mgmt_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxMgmtPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxMgmtPkts.setDescription(' This attribute indicates the number of received Management packets at a station. ')
wlan_sta_rx_mgmt_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxMgmtBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxMgmtBytes.setDescription(' This attribute indicates the number of received Management Bytes at a station. ')
wlan_sta_rx_ctrl_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxCtrlPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxCtrlPkts.setDescription(' This attribute indicates the number of received Control packets at a station. ')
wlan_sta_rx_ctrl_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxCtrlBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxCtrlBytes.setDescription(' This attribute indicates the number of received Control Bytes at a station. ')
wlan_sta_rx_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxDataPkts.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxDataPkts.setDescription(' This attribute indicates the number of received Data packets at a station. ')
wlan_sta_rx_data_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 4, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxDataBytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxDataBytes.setDescription(' This attribute indicates the number of received Data Bytes at a station. ')
wlsx_wlan_sta_pkt_size_stats_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5))
if mibBuilder.loadTexts:
wlsxWlanStaPktSizeStatsTable.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStaPktSizeStatsTable.setDescription(' This table contains all the Packet and Byte Counts for stations but broken down into different Packet Sizes. ')
wlsx_wlan_sta_pkt_size_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1)).setIndexNames((0, 'WLSX-WLAN-MIB', 'wlanStaPhyAddress'))
if mibBuilder.loadTexts:
wlsxWlanStaPktSizeStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
wlsxWlanStaPktSizeStatsEntry.setDescription('Packet Size based packet count entry for a station')
wlan_sta_tx_pkts63_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPkts63Bytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPkts63Bytes.setDescription(' This attribute indicates the number of packets transmitted by the station that were less than 64 bytes long. ')
wlan_sta_tx_pkts64_to127 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPkts64To127.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPkts64To127.setDescription(' This attribute indicates the number of packets transmitted by the station that were between 64 and 127 bytes long. ')
wlan_sta_tx_pkts128_to255 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPkts128To255.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPkts128To255.setDescription(' This attribute indicates the number of packets transmitted by the station that were between 128 and 255 bytes long. ')
wlan_sta_tx_pkts256_to511 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPkts256To511.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPkts256To511.setDescription(' This attribute indicates the number of packets transmitted by the station that were between 256 and 511 bytes long. ')
wlan_sta_tx_pkts512_to1023 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPkts512To1023.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPkts512To1023.setDescription(' This attribute indicates the number of packets transmitted by the station that were between 512 and 1023 bytes long. ')
wlan_sta_tx_pkts1024_to1518 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaTxPkts1024To1518.setStatus('current')
if mibBuilder.loadTexts:
wlanStaTxPkts1024To1518.setDescription(' This attribute indicates the number of packets transmitted by the station that were between 1024 and 1518 bytes long. ')
wlan_sta_rx_pkts63_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPkts63Bytes.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPkts63Bytes.setDescription(' This attribute indicates the number of packets Received by the station that were less than 64 bytes long. ')
wlan_sta_rx_pkts64_to127 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPkts64To127.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPkts64To127.setDescription(' This attribute indicates the number of packets Received by the station that were between 64 and 127 bytes long. ')
wlan_sta_rx_pkts128_to255 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPkts128To255.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPkts128To255.setDescription(' This attribute indicates the number of packets Received by the station that were between 128 and 255 bytes long. ')
wlan_sta_rx_pkts256_to511 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPkts256To511.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPkts256To511.setDescription(' This attribute indicates the number of packets Received by the station that were between 256 and 511 bytes long. ')
wlan_sta_rx_pkts512_to1023 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPkts512To1023.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPkts512To1023.setDescription(' This attribute indicates the number of packets Received by the station that were between 512 and 1023 bytes long. ')
wlan_sta_rx_pkts1024_to1518 = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 5, 3, 2, 5, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlanStaRxPkts1024To1518.setStatus('current')
if mibBuilder.loadTexts:
wlanStaRxPkts1024To1518.setDescription(' This attribute indicates the number of packets Received by the station that were between 1024 and 1518 bytes long. ')
mibBuilder.exportSymbols('WLSX-WLAN-MIB', wlanStaAssocFailureApEssid=wlanStaAssocFailureApEssid, wlanAPFrameBandwidthRate=wlanAPFrameBandwidthRate, wlsxWlanStaFrameTypeStatsEntry=wlsxWlanStaFrameTypeStatsEntry, wlanAPBssidModule=wlanAPBssidModule, wlanAPTxDataPkts64=wlanAPTxDataPkts64, wlanStaTxPkts128To255=wlanStaTxPkts128To255, wlsxWlanMIB=wlsxWlanMIB, wlanStaRxMgmtBytes=wlanStaRxMgmtBytes, wlanAPESSID=wlanAPESSID, wlanStaTxBytesAt9Mbps=wlanStaTxBytesAt9Mbps, wlanStaTxMCastPkts=wlanStaTxMCastPkts, wlanAPBssidInactiveTime=wlanAPBssidInactiveTime, wlanAPStatsTotBytesAt6Mbps=wlanAPStatsTotBytesAt6Mbps, wlanStaRxBCastBytes=wlanStaRxBCastBytes, wlanStaTxPktsAt24Mbps=wlanStaTxPktsAt24Mbps, wlanESSIDNumStations=wlanESSIDNumStations, wlanAPSysLocation=wlanAPSysLocation, wlsxWlanStaAssociationFailureEntry=wlsxWlanStaAssociationFailureEntry, wlanStaAssocFailurePhyType=wlanStaAssocFailurePhyType, wlsxWlanStationStatsGroup=wlsxWlanStationStatsGroup, wlanAPChFrameDuplicateCount=wlanAPChFrameDuplicateCount, wlanStaTxCtrlPkts=wlanStaTxCtrlPkts, wlsxWlanAPDATypeStatsEntry=wlsxWlanAPDATypeStatsEntry, wlanStaVlanId=wlanStaVlanId, wlanStaTxDABroadcastPkts=wlanStaTxDABroadcastPkts, wlanAPFrameNonUnicastRate=wlanAPFrameNonUnicastRate, wlanStaFrameLowSpeedRate=wlanStaFrameLowSpeedRate, wlanAPFQLNFloor=wlanAPFQLNFloor, wlanAPBssidRogueType=wlanAPBssidRogueType, wlanAPStatsTotCtrlPkts=wlanAPStatsTotCtrlPkts, wlanAPUnprovisioned=wlanAPUnprovisioned, wlanStaTxDataBytes=wlanStaTxDataBytes, wlanAPModelName=wlanAPModelName, wlanAPBssidLoadBalancing=wlanAPBssidLoadBalancing, wlanAPStatsTotBytesAt54Mbps=wlanAPStatsTotBytesAt54Mbps, wlanAPRadioAPName=wlanAPRadioAPName, wlsxWlanStationStatsTable=wlsxWlanStationStatsTable, wlanStaTxPktsAt2Mbps=wlanStaTxPktsAt2Mbps, wlanStaTxBytesAt6Mbps=wlanStaTxBytesAt6Mbps, wlanAPStatsTotDAUnicastPkts=wlanAPStatsTotDAUnicastPkts, wlanAPTxBytes=wlanAPTxBytes, wlanStaTxMgmtPkts=wlanStaTxMgmtPkts, wlanAPRadioHTMode=wlanAPRadioHTMode, wlanAPChFrameFragmentationRate=wlanAPChFrameFragmentationRate, wlanAPTxPkts=wlanAPTxPkts, wlsxWlanAPChStatsTable=wlsxWlanAPChStatsTable, wlanAPRadioNumAssociatedClients=wlanAPRadioNumAssociatedClients, wlanAPStatsTotMgmtBytes=wlanAPStatsTotMgmtBytes, wlanAPChInterferenceIndex=wlanAPChInterferenceIndex, wlanStaFrameReceiveErrorRate=wlanStaFrameReceiveErrorRate, wlanStaTxPkts256To511=wlanStaTxPkts256To511, wlanAPStatsTotPktsAt6Mbps=wlanAPStatsTotPktsAt6Mbps, wlanAPChFrameReceiveErrorRate=wlanAPChFrameReceiveErrorRate, wlanAPChTotMacErrPkts=wlanAPChTotMacErrPkts, wlanAPChTransmittedFrameCount=wlanAPChTransmittedFrameCount, wlanAPChRxUtilization=wlanAPChRxUtilization, wlanStaTxDeauthentications=wlanStaTxDeauthentications, wlanAPChNumStations=wlanAPChNumStations, wlsxWlanAPRateStatsEntry=wlsxWlanAPRateStatsEntry, wlanAPStatsTotBytesAt11Mbps=wlanAPStatsTotBytesAt11Mbps, wlsxWlanStaDATypeStatsTable=wlsxWlanStaDATypeStatsTable, wlanAPFrameRetryRate=wlanAPFrameRetryRate, wlsxWlanStaRateStatsEntry=wlsxWlanStaRateStatsEntry, wlanStaTxBytesAt12Mbps=wlanStaTxBytesAt12Mbps, wlanESSIDNumAccessPointsDown=wlanESSIDNumAccessPointsDown, wlanAPStatsTotDataPkts=wlanAPStatsTotDataPkts, wlanAPBssidPort=wlanAPBssidPort, wlanStaTxPkts512To1023=wlanStaTxPkts512To1023, wlanStaRxPkts64To127=wlanStaRxPkts64To127, wlanAPChTransmittedFragmentCount=wlanAPChTransmittedFragmentCount, wlanStaTxCtrlBytes=wlanStaTxCtrlBytes, wlanAPRadioNumber=wlanAPRadioNumber, wlanAPModel=wlanAPModel, wlanAPStatsTotBytesAt9Mbps=wlanAPStatsTotBytesAt9Mbps, wlanStaRxCtrlPkts=wlanStaRxCtrlPkts, wlanESSID=wlanESSID, wlanStaTxBytesAt5Mbps=wlanStaTxBytesAt5Mbps, wlanStaVOIPState=wlanStaVOIPState, wlanAPStatsTotPktsAt2Mbps=wlanAPStatsTotPktsAt2Mbps, wlanStaTxPktsAt36Mbps=wlanStaTxPktsAt36Mbps, wlanStaRxPkts512To1023=wlanStaRxPkts512To1023, wlanAPStatsPkts256To511=wlanAPStatsPkts256To511, wlanAPChTotPhyErrPkts=wlanAPChTotPhyErrPkts, wlanAPExternalAntenna=wlanAPExternalAntenna, wlanStaRxPkts1024To1518=wlanStaRxPkts1024To1518, wlsxWlanESSIDVlanPoolTable=wlsxWlanESSIDVlanPoolTable, wlanAPFrameRetryErrorRate=wlanAPFrameRetryErrorRate, wlsxWlanAPBssidEntry=wlsxWlanAPBssidEntry, wlanAPChWEPUndecryptableCount=wlanAPChWEPUndecryptableCount, wlanStaRxPktsAt6Mbps=wlanStaRxPktsAt6Mbps, wlanAPChMulticastReceivedFrameCount=wlanAPChMulticastReceivedFrameCount, wlanAPFQLNCampus=wlanAPFQLNCampus, wlanAPChNoise=wlanAPChNoise, wlanStaRxPktsAt24Mbps=wlanStaRxPktsAt24Mbps, wlanAPRxDeauthentications=wlanAPRxDeauthentications, wlanAPChTotRetryPkts=wlanAPChTotRetryPkts, wlanAPBSSID=wlanAPBSSID, wlanAPStatsTotPktsAt36Mbps=wlanAPStatsTotPktsAt36Mbps, wlanAPRadioChannel=wlanAPRadioChannel, wlanAPStatsTotPktsAt1Mbps=wlanAPStatsTotPktsAt1Mbps, wlanAPChFCSErrorCount=wlanAPChFCSErrorCount, wlanAPChBusyRate=wlanAPChBusyRate, wlanAPStatsPkts63Bytes=wlanAPStatsPkts63Bytes, wlanStaRxPktsAt54Mbps=wlanStaRxPktsAt54Mbps, wlanAPRadioNumActiveBSSIDs=wlanAPRadioNumActiveBSSIDs, wlanAPLongitude=wlanAPLongitude, wlsxWlanStateGroup=wlsxWlanStateGroup, wlanAPGroupName=wlanAPGroupName, wlanAPFrameLowSpeedRate=wlanAPFrameLowSpeedRate, wlanAPRadioHTExtChannel=wlanAPRadioHTExtChannel, wlanStaRxCtrlBytes=wlanStaRxCtrlBytes, wlanAPNumClients=wlanAPNumClients, wlanStaTxBytesAt2Mbps=wlanStaTxBytesAt2Mbps, wlanStaTxBCastPkts=wlanStaTxBCastPkts, wlanAPChRTSFailureCount=wlanAPChRTSFailureCount, wlanAPBssidHTMode=wlanAPBssidHTMode, wlanStaNumAuthRequests=wlanStaNumAuthRequests, wlanStaTxPkts1024To1518=wlanStaTxPkts1024To1518, wlanStaRxMgmtPkts=wlanStaRxMgmtPkts, wlanAPChMultipleRetryCount=wlanAPChMultipleRetryCount, wlanStaRxBytesAt9Mbps=wlanStaRxBytesAt9Mbps, wlanAPRadioTiltAngle=wlanAPRadioTiltAngle, wlanAPStatsTotPktsAt11Mbps=wlanAPStatsTotPktsAt11Mbps, wlanAPFrameReceiveErrorRate=wlanAPFrameReceiveErrorRate, wlsxWlanTotalNumStationsAssociated=wlsxWlanTotalNumStationsAssociated, wlsxWlanAccessPointInfoGroup=wlsxWlanAccessPointInfoGroup, wlanStaAccessPointESSID=wlanStaAccessPointESSID, wlanAPIpAddress=wlanAPIpAddress, wlanStaRxDataPkts=wlanStaRxDataPkts, wlanStaTxPktsAt54Mbps=wlanStaTxPktsAt54Mbps, wlsxWlanESSIDEntry=wlsxWlanESSIDEntry, wlsxWlanAPGroupTable=wlsxWlanAPGroupTable, wlanAPUpTime=wlanAPUpTime, wlanAPStatsPkts64To127=wlanAPStatsPkts64To127, wlanStaIsAuthenticated=wlanStaIsAuthenticated, wlsxWlanStationTable=wlsxWlanStationTable, wlanStaRxPktsAt12Mbps=wlanStaRxPktsAt12Mbps, wlanAPTxDeauthentications=wlanAPTxDeauthentications, wlanAPStatsTotPktsAt18Mbps=wlanAPStatsTotPktsAt18Mbps, wlanESSIDNumAccessPointsUp=wlanESSIDNumAccessPointsUp, wlanAPdot11gAntennaGain=wlanAPdot11gAntennaGain, wlanStaRxBytesAt18Mbps=wlanStaRxBytesAt18Mbps, wlanAPStatsTotDAMulticastBytes=wlanAPStatsTotDAMulticastBytes, wlanAPChFrameRetryRate=wlanAPChFrameRetryRate, wlanAPStatsTotBytesAt48Mbps=wlanAPStatsTotBytesAt48Mbps, wlanAPRadioType=wlanAPRadioType, wlanAPStatsTotBytesAt24Mbps=wlanAPStatsTotBytesAt24Mbps, wlanStaRxBytesAt24Mbps=wlanStaRxBytesAt24Mbps, wlsxWlanStaFrameTypeStatsTable=wlsxWlanStaFrameTypeStatsTable, wlanStaTxBytesAt36Mbps=wlanStaTxBytesAt36Mbps, wlanStaTxDAMulticastBytes=wlanStaTxDAMulticastBytes, wlanStaRSSI=wlanStaRSSI, wlanAPStatsTotBytesAt36Mbps=wlanAPStatsTotBytesAt36Mbps, wlanStaRxPktsAt1Mbps=wlanStaRxPktsAt1Mbps, wlsxWlanStaPktSizeStatsTable=wlsxWlanStaPktSizeStatsTable, wlsxWlanAPChStatsEntry=wlsxWlanAPChStatsEntry, wlanStaRxBytesAt54Mbps=wlanStaRxBytesAt54Mbps, wlanStaHTMode=wlanStaHTMode, wlanAPRadioNumMonitoredBSSIDs=wlanAPRadioNumMonitoredBSSIDs, wlanAPStatsTotBytesAt12Mbps=wlanAPStatsTotBytesAt12Mbps, wlanAPBssidMode=wlanAPBssidMode, wlanStaFrameRetryErrorRate=wlanStaFrameRetryErrorRate, wlsxWlanAPTable=wlsxWlanAPTable, wlanAPChRetryCount=wlanAPChRetryCount, wlanAPCurrentChannel=wlanAPCurrentChannel, wlanStaRxDeauthentications=wlanStaRxDeauthentications, wlanStaTxBytes64=wlanStaTxBytes64, wlanAPBssidPhyType=wlanAPBssidPhyType, wlanAPChMulticastTransmittedFrameCount=wlanAPChMulticastTransmittedFrameCount, wlanStaFrameBandwidthRate=wlanStaFrameBandwidthRate, wlanAPStatsTotPktsAt9Mbps=wlanAPStatsTotPktsAt9Mbps, wlanStaRxBytesAt2Mbps=wlanStaRxBytesAt2Mbps, wlanStaRxBytes=wlanStaRxBytes, wlanStaRxMCastBytes=wlanStaRxMCastBytes, wlanAPChFailedCount=wlanAPChFailedCount, wlanStaUpTime=wlanStaUpTime, wlanStaIsAssociated=wlanStaIsAssociated, wlsxWlanStaAssociationFailureTable=wlsxWlanStaAssociationFailureTable, wlanAPMonitorMode=wlanAPMonitorMode, wlanAPChannelErrorRate=wlanAPChannelErrorRate, wlanStaFrameNonUnicastRate=wlanStaFrameNonUnicastRate, wlsxWlanTotalNumAccessPoints=wlsxWlanTotalNumAccessPoints, wlanAPFloor=wlanAPFloor, wlanStaPhyNumber=wlanStaPhyNumber, wlanAPChannelNumber=wlanAPChannelNumber, wlanStaRxPkts63Bytes=wlanStaRxPkts63Bytes, wlanESSIDVlanPoolStatus=wlanESSIDVlanPoolStatus, wlanStaTxDAMulticastPkts=wlanStaTxDAMulticastPkts, wlanStaVOIPProtocol=wlanStaVOIPProtocol, wlanAPChACKFailureCount=wlanAPChACKFailureCount, wlanAPBssidHTExtChannel=wlanAPBssidHTExtChannel, wlanAPStatsTotPktsAt5Mbps=wlanAPStatsTotPktsAt5Mbps, wlanAPChRTSSuccessCount=wlanAPChRTSSuccessCount, wlanAPNumReboots=wlanAPNumReboots, wlanAPChTotBytes=wlanAPChTotBytes, wlanAPRadioHTChannel=wlanAPRadioHTChannel, wlanStaAssociationID=wlanStaAssociationID, wlanAPNumAps=wlanAPNumAps, wlanStaTxBytesAt54Mbps=wlanStaTxBytesAt54Mbps, wlanStaTxBytesAt24Mbps=wlanStaTxBytesAt24Mbps, wlanStaRxBytesAt1Mbps=wlanStaRxBytesAt1Mbps, wlanStaRxPktsAt18Mbps=wlanStaRxPktsAt18Mbps, wlanAPBssidSlot=wlanAPBssidSlot, wlanAPEnet1Mode=wlanAPEnet1Mode, wlanAPStatsTotPktsAt48Mbps=wlanAPStatsTotPktsAt48Mbps, wlanAPStatsPkts128To255=wlanAPStatsPkts128To255, wlanAPChCoverageIndex=wlanAPChCoverageIndex, wlanStaTxPktsAt11Mbps=wlanStaTxPktsAt11Mbps, wlanStaRxBytesAt36Mbps=wlanStaRxBytesAt36Mbps, wlsxWlanAPPktSizeStatsTable=wlsxWlanAPPktSizeStatsTable, wlanAPdot11aAntennaGain=wlanAPdot11aAntennaGain, wlanAPBuilding=wlanAPBuilding, wlsxWlanAPGroupEntry=wlsxWlanAPGroupEntry, PYSNMP_MODULE_ID=wlsxWlanMIB, wlanStaRxPkts256To511=wlanStaRxPkts256To511, wlanStaChannelNum=wlanStaChannelNum, wlanAPFQLNBuilding=wlanAPFQLNBuilding, wlanAPFrameFragmentationRate=wlanAPFrameFragmentationRate, wlanAPStatsTotBytesAt5Mbps=wlanAPStatsTotBytesAt5Mbps, wlanAPStatsPkts1024To1518=wlanAPStatsPkts1024To1518, wlanAPChFrameRetryErrorRate=wlanAPChFrameRetryErrorRate, wlanStaTxPktsAt9Mbps=wlanStaTxPktsAt9Mbps, wlanStaAssocFailureElapsedTime=wlanStaAssocFailureElapsedTime, wlanAPBssidUpTime=wlanAPBssidUpTime, wlsxWlanRadioEntry=wlsxWlanRadioEntry, wlanStaTxDABroadcastBytes=wlanStaTxDABroadcastBytes, wlanAPChFrameBandwidthRate=wlanAPChFrameBandwidthRate, wlanAPRadioTransmitPower=wlanAPRadioTransmitPower, wlsxWlanStaDATypeStatsEntry=wlsxWlanStaDATypeStatsEntry, wlanAPStatsTotPktsAt24Mbps=wlanAPStatsTotPktsAt24Mbps, wlanStaTxBCastBytes=wlanStaTxBCastBytes, wlsxWlanAPBssidTable=wlsxWlanAPBssidTable, wlsxWlanAPEntry=wlsxWlanAPEntry, wlsxWlanStatsGroup=wlsxWlanStatsGroup, wlanStaChannel=wlanStaChannel, wlanStaTxBytesAt1Mbps=wlanStaTxBytesAt1Mbps, wlanAPChReceivedFragmentCount=wlanAPChReceivedFragmentCount, wlanAPChTotFragmentedPkts=wlanAPChTotFragmentedPkts, wlanAPTxDataBytes64=wlanAPTxDataBytes64, wlanAPStatsTotDAMulticastPkts=wlanAPStatsTotDAMulticastPkts, wlanAPRadioNumMonitoredClients=wlanAPRadioNumMonitoredClients, wlanStaTxBytes=wlanStaTxBytes, wlanStaRxBytesAt48Mbps=wlanStaRxBytesAt48Mbps, wlanAPRadioMode=wlanAPRadioMode, wlanStaNumAssocRequests=wlanStaNumAssocRequests, wlanAPBssidNumAssociatedStations=wlanAPBssidNumAssociatedStations, wlanStaAssocFailurePhyNum=wlanStaAssocFailurePhyNum, wlanAPRadioUtilization=wlanAPRadioUtilization, wlanAPFQLN=wlanAPFQLN, wlanAPStatsTotBytesAt2Mbps=wlanAPStatsTotBytesAt2Mbps, wlanAPBssidPhyNumber=wlanAPBssidPhyNumber, wlanAPSerialNumber=wlanAPSerialNumber, wlanAPStatsTotCtrlBytes=wlanAPStatsTotCtrlBytes, wlsxWlanAPDATypeStatsTable=wlsxWlanAPDATypeStatsTable)
mibBuilder.exportSymbols('WLSX-WLAN-MIB', wlanStaTxPktsAt18Mbps=wlanStaTxPktsAt18Mbps, wlsxWlanAPPktSizeStatsEntry=wlsxWlanAPPktSizeStatsEntry, wlanAPStatsTotDABroadcastPkts=wlanAPStatsTotDABroadcastPkts, wlanAPRxDataPkts64=wlanAPRxDataPkts64, wlanStaTxPktsAt5Mbps=wlanStaTxPktsAt5Mbps, wlanAPLatitude=wlanAPLatitude, wlanAPName=wlanAPName, wlanStaTransmitRate=wlanStaTransmitRate, wlanAPChTotPkts=wlanAPChTotPkts, wlanAPRadioBearing=wlanAPRadioBearing, wlanAPNumRadios=wlanAPNumRadios, wlsxWlanStationInfoGroup=wlsxWlanStationInfoGroup, wlsxWlanStaRateStatsTable=wlsxWlanStaRateStatsTable, wlanStaCtrlPkts=wlanStaCtrlPkts, wlsxWlanAccessPointStatsGroup=wlsxWlanAccessPointStatsGroup, wlanAPStatsTotPktsAt54Mbps=wlanAPStatsTotPktsAt54Mbps, wlanAPMacAddress=wlanAPMacAddress, wlanAPChFrameLowSpeedRate=wlanAPChFrameLowSpeedRate, wlsxWlanStationStatsEntry=wlsxWlanStationStatsEntry, wlanStaRxBytesAt12Mbps=wlanStaRxBytesAt12Mbps, wlanStaRxPktsAt5Mbps=wlanStaRxPktsAt5Mbps, wlanAPRxDataBytes=wlanAPRxDataBytes, wlanAPBssidHTChannel=wlanAPBssidHTChannel, wlanESSIDVlanId=wlanESSIDVlanId, wlanAPNumBootstraps=wlanAPNumBootstraps, wlanStaRxPktsAt48Mbps=wlanStaRxPktsAt48Mbps, wlanAPTxDataPkts=wlanAPTxDataPkts, wlanAPStatsTotBytesAt18Mbps=wlanAPStatsTotBytesAt18Mbps, wlanStaTxPkts=wlanStaTxPkts, wlanStaPhyType=wlanStaPhyType, wlsxWlanAPFrameTypeStatsTable=wlsxWlanAPFrameTypeStatsTable, wlanAPStatsTotDABroadcastBytes=wlanAPStatsTotDABroadcastBytes, wlanAPIpsecMode=wlanAPIpsecMode, wlsxWlanAPStatsEntry=wlsxWlanAPStatsEntry, wlanStaTxPktsAt1Mbps=wlanStaTxPktsAt1Mbps, wlanAPRxBytes=wlanAPRxBytes, wlanStaTxBytesAt18Mbps=wlanStaTxBytesAt18Mbps, wlanStaRxDataBytes=wlanStaRxDataBytes, wlsxWlanRadioTable=wlsxWlanRadioTable, wlanStaFrameRetryRate=wlanStaFrameRetryRate, wlanStaRxPktsAt2Mbps=wlanStaRxPktsAt2Mbps, wlanStaRxPktsAt36Mbps=wlanStaRxPktsAt36Mbps, wlanStaTxDAUnicastBytes=wlanStaTxDAUnicastBytes, wlanAPRxPkts=wlanAPRxPkts, wlanStaTxMCastBytes=wlanStaTxMCastBytes, wlanESSIDEncryptionType=wlanESSIDEncryptionType, wlanAPRxDataPkts=wlanAPRxDataPkts, wlanStaTxPktsAt48Mbps=wlanStaTxPktsAt48Mbps, wlsxWlanAssociationInfoGroup=wlsxWlanAssociationInfoGroup, wlanAPStatsTotBytesAt1Mbps=wlanAPStatsTotBytesAt1Mbps, wlsxWlanESSIDTable=wlsxWlanESSIDTable, wlanStaTxBytesAt48Mbps=wlanStaTxBytesAt48Mbps, wlanStaTxDAUnicastPkts=wlanStaTxDAUnicastPkts, wlanAPChFrameNonUnicastRate=wlanAPChFrameNonUnicastRate, wlanAPTxDataBytes=wlanAPTxDataBytes, wlanStaRxPkts128To255=wlanStaRxPkts128To255, wlanStaTxPktsAt12Mbps=wlanStaTxPktsAt12Mbps, wlanStaRxPktsAt9Mbps=wlanStaRxPktsAt9Mbps, wlanAPBssidAPMacAddress=wlanAPBssidAPMacAddress, wlsxWlanESSIDVlanPoolEntry=wlsxWlanESSIDVlanPoolEntry, wlsxWlanAPFrameTypeStatsEntry=wlsxWlanAPFrameTypeStatsEntry, wlanStaRxPktsAt11Mbps=wlanStaRxPktsAt11Mbps, wlanAPBssidChannel=wlanAPBssidChannel, wlsxWlanStaPktSizeStatsEntry=wlsxWlanStaPktSizeStatsEntry, wlanAPMeshRole=wlanAPMeshRole, wlanStaTxBytesAt11Mbps=wlanStaTxBytesAt11Mbps, wlanStaTxPkts64To127=wlanStaTxPkts64To127, wlanStaAssocFailureReason=wlanStaAssocFailureReason, wlanAPRxDataBytes64=wlanAPRxDataBytes64, wlanAPGroup=wlanAPGroup, wlsxWlanAPRateStatsTable=wlsxWlanAPRateStatsTable, wlanStaPhyAddress=wlanStaPhyAddress, wlanAPAltitude=wlanAPAltitude, wlanAPChannelThroughput=wlanAPChannelThroughput, wlanAPStatus=wlanAPStatus, wlanStaApBssid=wlanStaApBssid, wlanAPChTxUtilization=wlanAPChTxUtilization, wlanStaTxMgmtBytes=wlanStaTxMgmtBytes, wlanStaDataPkts=wlanStaDataPkts, wlanStaRxBytesAt11Mbps=wlanStaRxBytesAt11Mbps, wlanStaAssocFailureApName=wlanStaAssocFailureApName, wlsxWlanConfigGroup=wlsxWlanConfigGroup, wlanAPStatsPkts512To1023=wlanAPStatsPkts512To1023, wlanStaRxBytesAt6Mbps=wlanStaRxBytesAt6Mbps, wlanStaTxDataPkts=wlanStaTxDataPkts, wlanStaRxBytesAt5Mbps=wlanStaRxBytesAt5Mbps, wlanStaRxBytes64=wlanStaRxBytes64, wlanAPStatsTotDataBytes=wlanAPStatsTotDataBytes, wlanAPChNumAPs=wlanAPChNumAPs, wlanAPChUtilization=wlanAPChUtilization, wlsxWlanStationEntry=wlsxWlanStationEntry, wlanStaFrameFragmentationRate=wlanStaFrameFragmentationRate, wlanAPStatsTotPktsAt12Mbps=wlanAPStatsTotPktsAt12Mbps, wlanAPStatsTotDAUnicastBytes=wlanAPStatsTotDAUnicastBytes, wlanAPLoc=wlanAPLoc, wlanStaTxPktsAt6Mbps=wlanStaTxPktsAt6Mbps, wlsxWlanAPStatsTable=wlsxWlanAPStatsTable, wlanStaRxPkts=wlanStaRxPkts, wlanAPStatsTotMgmtPkts=wlanAPStatsTotMgmtPkts, wlanStaTxPkts63Bytes=wlanStaTxPkts63Bytes, wlanAPLocation=wlanAPLocation) |
class Salsa:
def __init__(self,r=20):
assert r >= 0
self._r = r # number of rounds
self._mask = 0xffffffff # 32-bit mask
def __call__(self,key=[0]*32,nonce=[0]*8,block_counter=[0]*8):
assert len(key) == 32
assert len(nonce) == 8
assert len(block_counter) == 8
# init state
k = [self._littleendian(key[4*i:4*i+4]) for i in range(8)]
n = [self._littleendian(nonce[4*i:4*i+4]) for i in range(2)]
b = [self._littleendian(block_counter[4*i:4*i+4]) for i in range(2)]
c = [0x61707865, 0x3320646e, 0x79622d32, 0x6b206574]
# init matrix
s = [c[0], k[0], k[1], k[2],
k[3], c[1], n[0], n[1],
b[0], b[1], c[2], k[4],
k[5], k[6], k[7], c[3]]
# the state
self._s = s[:]
for i in range(self._r): # r is the number of round and r = 20
self._round()
# add initial state to the final one
self._s = [(self._s[i] + s[i]) & self._mask for i in range(16)]
return self._s
# list of 4 bytes to 32 bit hexa
def _littleendian(self,b):
assert len(b) == 4
return b[0] ^ (b[1] << 8) ^ (b[2] << 16) ^ (b[3] << 24)
def _round(self):
# quarterround 1
self._s[ 4] ^= self._rotl32((self._s[ 0] + self._s[12]) & self._mask, 7)
self._s[ 8] ^= self._rotl32((self._s[ 0] + self._s[ 4]) & self._mask, 9)
self._s[12] ^= self._rotl32((self._s[ 4] + self._s[ 8]) & self._mask,13)
self._s[ 0] ^= self._rotl32((self._s[ 8] + self._s[12]) & self._mask,18)
# quarterround 2
self._s[ 9] ^= self._rotl32((self._s[ 1] + self._s[ 5]) & self._mask, 7)
self._s[13] ^= self._rotl32((self._s[ 5] + self._s[ 9]) & self._mask, 9)
self._s[ 1] ^= self._rotl32((self._s[ 9] + self._s[13]) & self._mask,13)
self._s[ 5] ^= self._rotl32((self._s[ 1] + self._s[13]) & self._mask,18)
# quarterround 3
self._s[14] ^= self._rotl32((self._s[ 6] + self._s[10]) & self._mask, 7)
self._s[ 2] ^= self._rotl32((self._s[10] + self._s[14]) & self._mask, 9)
self._s[ 6] ^= self._rotl32((self._s[ 2] + self._s[14]) & self._mask,13)
self._s[10] ^= self._rotl32((self._s[ 2] + self._s[ 6]) & self._mask,18)
# quarterround 4
self._s[ 3] ^= self._rotl32((self._s[11] + self._s[15]) & self._mask, 7)
self._s[ 7] ^= self._rotl32((self._s[ 3] + self._s[15]) & self._mask, 9)
self._s[11] ^= self._rotl32((self._s[ 3] + self._s[ 7]) & self._mask,13)
self._s[15] ^= self._rotl32((self._s[ 7] + self._s[11]) & self._mask,18)
# transpose
self._s = [self._s[ 0], self._s[ 4], self._s[ 8], self._s[12],
self._s[ 1], self._s[ 5], self._s[ 9], self._s[13],
self._s[ 2], self._s[ 6], self._s[10], self._s[14],
self._s[ 3], self._s[ 7], self._s[11], self._s[15]]
def _rotl32(self,w,r):
# rotate left for 32-bits
return ( ( ( w << r ) & self._mask) | ( w >> ( 32 - r ) ) )
def num_key_to_list(self,key):
list_num = []
while key != 0:
list_num.append(key % 256)
key //= 256
return list_num
def encrypt(self, msg):
assert len(msg) == 16
rs = [0]*16
for i in range(0,16):
rs[i] = (self._s[i] ^ msg[i])
return rs
| class Salsa:
def __init__(self, r=20):
assert r >= 0
self._r = r
self._mask = 4294967295
def __call__(self, key=[0] * 32, nonce=[0] * 8, block_counter=[0] * 8):
assert len(key) == 32
assert len(nonce) == 8
assert len(block_counter) == 8
k = [self._littleendian(key[4 * i:4 * i + 4]) for i in range(8)]
n = [self._littleendian(nonce[4 * i:4 * i + 4]) for i in range(2)]
b = [self._littleendian(block_counter[4 * i:4 * i + 4]) for i in range(2)]
c = [1634760805, 857760878, 2036477234, 1797285236]
s = [c[0], k[0], k[1], k[2], k[3], c[1], n[0], n[1], b[0], b[1], c[2], k[4], k[5], k[6], k[7], c[3]]
self._s = s[:]
for i in range(self._r):
self._round()
self._s = [self._s[i] + s[i] & self._mask for i in range(16)]
return self._s
def _littleendian(self, b):
assert len(b) == 4
return b[0] ^ b[1] << 8 ^ b[2] << 16 ^ b[3] << 24
def _round(self):
self._s[4] ^= self._rotl32(self._s[0] + self._s[12] & self._mask, 7)
self._s[8] ^= self._rotl32(self._s[0] + self._s[4] & self._mask, 9)
self._s[12] ^= self._rotl32(self._s[4] + self._s[8] & self._mask, 13)
self._s[0] ^= self._rotl32(self._s[8] + self._s[12] & self._mask, 18)
self._s[9] ^= self._rotl32(self._s[1] + self._s[5] & self._mask, 7)
self._s[13] ^= self._rotl32(self._s[5] + self._s[9] & self._mask, 9)
self._s[1] ^= self._rotl32(self._s[9] + self._s[13] & self._mask, 13)
self._s[5] ^= self._rotl32(self._s[1] + self._s[13] & self._mask, 18)
self._s[14] ^= self._rotl32(self._s[6] + self._s[10] & self._mask, 7)
self._s[2] ^= self._rotl32(self._s[10] + self._s[14] & self._mask, 9)
self._s[6] ^= self._rotl32(self._s[2] + self._s[14] & self._mask, 13)
self._s[10] ^= self._rotl32(self._s[2] + self._s[6] & self._mask, 18)
self._s[3] ^= self._rotl32(self._s[11] + self._s[15] & self._mask, 7)
self._s[7] ^= self._rotl32(self._s[3] + self._s[15] & self._mask, 9)
self._s[11] ^= self._rotl32(self._s[3] + self._s[7] & self._mask, 13)
self._s[15] ^= self._rotl32(self._s[7] + self._s[11] & self._mask, 18)
self._s = [self._s[0], self._s[4], self._s[8], self._s[12], self._s[1], self._s[5], self._s[9], self._s[13], self._s[2], self._s[6], self._s[10], self._s[14], self._s[3], self._s[7], self._s[11], self._s[15]]
def _rotl32(self, w, r):
return w << r & self._mask | w >> 32 - r
def num_key_to_list(self, key):
list_num = []
while key != 0:
list_num.append(key % 256)
key //= 256
return list_num
def encrypt(self, msg):
assert len(msg) == 16
rs = [0] * 16
for i in range(0, 16):
rs[i] = self._s[i] ^ msg[i]
return rs |
def parentheses_balance_stack_check(expression):
open_list, close_list, stack = ['[', '{', '('], [']', '}', ')'], []
for i in expression:
if i in open_list:
stack.append(i)
elif i in close_list:
pos = close_list.index(i)
if len(stack) > 0 and open_list[pos] == stack[len(stack) - 1]:
stack.pop()
else:
return False
return True if len(stack) == 0 else False
print(parentheses_balance_stack_check('((( [] [] )) () (()))'))
print(parentheses_balance_stack_check('((( [] [] )) () (())'))
def parentheses_balance_queue_check(expression):
open_tuple, close_tuple, queue = tuple('({['), tuple(')}]'), []
map_dict = dict(zip(open_tuple, close_tuple))
for i in expression:
if i in open_tuple:
queue.append(map_dict[i])
elif i in close_tuple:
if not queue or i != queue.pop():
return False
return True if not queue else False
print(parentheses_balance_queue_check('((( [] [] )) () (()))'))
print(parentheses_balance_queue_check('((( [] [] )) () (())')) | def parentheses_balance_stack_check(expression):
(open_list, close_list, stack) = (['[', '{', '('], [']', '}', ')'], [])
for i in expression:
if i in open_list:
stack.append(i)
elif i in close_list:
pos = close_list.index(i)
if len(stack) > 0 and open_list[pos] == stack[len(stack) - 1]:
stack.pop()
else:
return False
return True if len(stack) == 0 else False
print(parentheses_balance_stack_check('((( [] [] )) () (()))'))
print(parentheses_balance_stack_check('((( [] [] )) () (())'))
def parentheses_balance_queue_check(expression):
(open_tuple, close_tuple, queue) = (tuple('({['), tuple(')}]'), [])
map_dict = dict(zip(open_tuple, close_tuple))
for i in expression:
if i in open_tuple:
queue.append(map_dict[i])
elif i in close_tuple:
if not queue or i != queue.pop():
return False
return True if not queue else False
print(parentheses_balance_queue_check('((( [] [] )) () (()))'))
print(parentheses_balance_queue_check('((( [] [] )) () (())')) |
# -*- coding: utf-8 -*-
#%% configs
VOCdatasetConfig= {
'rootDir': "D:\GitHubRepos\ML_learning\VOC2007",
'imageFolder': "JPEGImages",
'imageExtension': ".jpg",
'annotationFolder': "Annotations",
'annotationExtension': ".xml",
'trainCasesPath': "ImageSets\Segmentation\\train.txt",
'valCasesPath' : "ImageSets\Segmentation\\val.txt",
'textFileFolder': "Dataset"
}
classNames = {
"aeroplane":0,
"bicycle": 1,
"bird": 2,
"boat":3,
"bottle": 4,
"bus": 5,
"car": 6,
"cat": 7,
"chair": 8,
"cow": 9,
"diningtable":10,
"dog": 11,
"horse": 12,
"motorbike":13 ,
"person": 14,
"pottedplant": 15,
"sheep": 16,
"sofa": 17,
"train": 18,
"tvmonitor": 19
}
YOLOConfig = {
'inputSize': [448, 448],
'outputGrid': [7, 7],
'batchSize' : 16,
'frontNet' : "VGG16"
# ResNet50 / VGG16
}
| vo_cdataset_config = {'rootDir': 'D:\\GitHubRepos\\ML_learning\\VOC2007', 'imageFolder': 'JPEGImages', 'imageExtension': '.jpg', 'annotationFolder': 'Annotations', 'annotationExtension': '.xml', 'trainCasesPath': 'ImageSets\\Segmentation\\train.txt', 'valCasesPath': 'ImageSets\\Segmentation\\val.txt', 'textFileFolder': 'Dataset'}
class_names = {'aeroplane': 0, 'bicycle': 1, 'bird': 2, 'boat': 3, 'bottle': 4, 'bus': 5, 'car': 6, 'cat': 7, 'chair': 8, 'cow': 9, 'diningtable': 10, 'dog': 11, 'horse': 12, 'motorbike': 13, 'person': 14, 'pottedplant': 15, 'sheep': 16, 'sofa': 17, 'train': 18, 'tvmonitor': 19}
yolo_config = {'inputSize': [448, 448], 'outputGrid': [7, 7], 'batchSize': 16, 'frontNet': 'VGG16'} |
def get_sunday_count():
sunday_count = 0
for i in range(1901, 2000):
for j in range(1, 12):
for k in range(1, get_number_of_days(j, i)):
if j == 2000:
c = 20
else:
c = 19
f = k + ((13 * j - 1) / 5) + ((i - 1900) / 4) + (c / 4) - 2 * c
if f % 7 == 0:
sunday_count = sunday_count + 1
print(sunday_count)
return sunday_count
def get_number_of_days(month, year):
global number_of_days
if month == 1 or 3 or 5 or 7 or 8 or 10 or 12:
number_of_days = 31
elif month == 2:
if year % 100 == 0 and year % 400 != 0:
number_of_days = 28
elif year % 400 == 0:
number_of_days = 29
elif year % 100 != 0 and year % 4 == 0:
number_of_days = 29
elif year % 100 != 0 and year % 4 != 0:
number_of_days = 28
else:
number_of_days = 30
return number_of_days
get_sunday_count()
| def get_sunday_count():
sunday_count = 0
for i in range(1901, 2000):
for j in range(1, 12):
for k in range(1, get_number_of_days(j, i)):
if j == 2000:
c = 20
else:
c = 19
f = k + (13 * j - 1) / 5 + (i - 1900) / 4 + c / 4 - 2 * c
if f % 7 == 0:
sunday_count = sunday_count + 1
print(sunday_count)
return sunday_count
def get_number_of_days(month, year):
global number_of_days
if month == 1 or 3 or 5 or 7 or 8 or 10 or 12:
number_of_days = 31
elif month == 2:
if year % 100 == 0 and year % 400 != 0:
number_of_days = 28
elif year % 400 == 0:
number_of_days = 29
elif year % 100 != 0 and year % 4 == 0:
number_of_days = 29
elif year % 100 != 0 and year % 4 != 0:
number_of_days = 28
else:
number_of_days = 30
return number_of_days
get_sunday_count() |
#
# PySNMP MIB module PCUBE-SE-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/PCUBE-SE-MIB
# Produced by pysmi-0.3.4 at Wed May 1 12:11:29 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ConstraintsIntersection, ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsIntersection", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion")
pcubeWorkgroup, pcubeModules = mibBuilder.importSymbols("PCUBE-SMI", "pcubeWorkgroup", "pcubeModules")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
ObjectGroup, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "NotificationGroup", "ModuleCompliance")
ObjectIdentity, Unsigned32, iso, Counter32, Counter64, Integer32, ModuleIdentity, TimeTicks, Gauge32, IpAddress, MibIdentifier, Bits, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "Unsigned32", "iso", "Counter32", "Counter64", "Integer32", "ModuleIdentity", "TimeTicks", "Gauge32", "IpAddress", "MibIdentifier", "Bits", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn")
TextualConvention, RowStatus, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "RowStatus", "DisplayString")
pcubeSeMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 5655, 2, 3))
pcubeSeMIB.setRevisions(('2006-11-07 00:00', '2006-05-10 00:00', '2006-02-12 00:00', '2005-08-16 00:00', '2004-12-12 00:00', '2004-07-01 00:00', '2003-07-02 00:00', '2003-01-05 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: pcubeSeMIB.setRevisionsDescriptions(('- Increased the supported range of global controllers (globalControllersIndex) from (1..255) to (1..2147483647) - Improved counter descriptions to reflect the counted layer for the following byte and bandwidth counters: txQueuesBandwidth txQueuesDroppedBytes globalControllersBandwidth globalControllersDroppedBytes ', "MIB revised as a part of integration into Cisco SNMP MIB standard, main changes: changed contaces, added OBJECT-GROUPs, added MODULE-COMPLIANCE, renamed with a prefix 'p' the following tables/objects to avoid conflict with existing Cisco MIbs: moduleGrp, moduleTable, moduleIndex, moduleType, moduleNumTrafficProcessors, moduleSlotNum, moduleHwVersion, moduleNumPorts, moduleNumLinks, moduleConnectionMode, moduleSerialNumber, moduleUpStreamAttackFilteringTime, moduleUpStreamLastAttackFilteringTime, moduleDownStreamAttackFilteringTime, moduleDownStreamLastAttackFilteringTime, moduleAttackObjectsClearTime , moduleAdminStatus, moduleOperStatus, chassisGrp chassisSysType, chassisPowerSupplyAlarm, chassisFansAlarm, chassisTempAlarm, chassisVoltageAlarm, chassisNumSlots, chassisSlotConfig, chassisPsuType, chassisLineFeedAlarm, portGrp, portTable, portModuleIndex, portIndex, portType, portNumTxQueues, portIfIndex, portAdminSpeed, portAdminDuplex, portOperDuplex, portLinkIndex, portOperStatus removed attackTypeTableClearTime counter, renamed Pcube to Cisco and SE to SCE.", 'Updates of OS version 3.0.3: added mplsVpnAutoLearning group containing mplsVpnSoftwareCountersTable and added mplsVpnTotalHWMappingsThresholdExceededTrap.', 'Updates of OS version 3.0.0: added vas group containing vasServerTable and added vasServerOpertionalStatusChangeTrap.', 'Updates of OS version 2.5.5: added rdrFormatterCategoryNumReportsQueued to the rdrFormatterCategoryTable in the RDR-formatter group, added subscribersNumAnonymous and subscribersNumWithSessions to subscriber info,Added the group attackGrp, containing attackTypeTable.', 'Updates of OS version 2.5: added tpServiceLoss to traffic processor group, added droppedBytes to Tx-Queue and global controller, added TpIpRanges to subscriber info,deprecated telnetSession* traps, replaced by session* traps.', 'Updates of OS version 1.5: added entries to the tpTable, added entries to the rdrFormatterGrp and rdrFormatterDestTable,added entries to the portTable and attack filter traps.', 'OS version 1.5 updates.',))
if mibBuilder.loadTexts: pcubeSeMIB.setLastUpdated('200611070000Z')
if mibBuilder.loadTexts: pcubeSeMIB.setOrganization('Cisco Systems, Inc.')
if mibBuilder.loadTexts: pcubeSeMIB.setContactInfo('Cisco Systems Customer Service Postal: 170 W Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS E-mail: cs-sce@cisco.com')
if mibBuilder.loadTexts: pcubeSeMIB.setDescription("Main SNMP MIB for Cisco's SCE OS products such as SCE2000 and SE100. This MIB provides configuration and runtime status for chassis, control modules, and line modules on the SCOS systems.")
pcubeSEObjs = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1))
pcubeSeConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1))
pcubeSeGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1))
pcubeSeCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 2))
systemGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 1))
pchassisGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2))
pmoduleGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3))
linkGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4))
diskGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 5))
rdrFormatterGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6))
loggerGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7))
subscribersGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8))
trafficProcessorGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9))
pportGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10))
txQueuesGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11))
globalControllersGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12))
applicationGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13))
trafficCountersGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14))
attackGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15))
vasTrafficForwardingGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16))
mplsVpnAutoLearnGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 17))
class LinkModeType(TextualConvention, Integer32):
description = 'The various modes of a link.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))
namedValues = NamedValues(("other", 1), ("bypass", 2), ("forwarding", 3), ("cutoff", 4), ("sniffing", 5))
sysOperationalStatus = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("boot", 2), ("operational", 3), ("warning", 4), ("failure", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysOperationalStatus.setStatus('current')
if mibBuilder.loadTexts: sysOperationalStatus.setDescription('Indicates the operational status of the system.')
sysFailureRecovery = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("operational", 2), ("nonOperational", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysFailureRecovery.setStatus('current')
if mibBuilder.loadTexts: sysFailureRecovery.setDescription('Indicates if the system should enter a Failure mode after abnormal boot.')
sysVersion = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysVersion.setStatus('current')
if mibBuilder.loadTexts: sysVersion.setDescription('The system version.')
pchassisSysType = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("other", 1), ("sce1000", 2), ("se100", 3), ("sce2000", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pchassisSysType.setStatus('current')
if mibBuilder.loadTexts: pchassisSysType.setDescription('The chassis system type.')
pchassisPowerSupplyAlarm = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("off", 2), ("on", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pchassisPowerSupplyAlarm.setStatus('current')
if mibBuilder.loadTexts: pchassisPowerSupplyAlarm.setDescription("Indicates if the power supply to the chassis is normal. If the status is not 'ok' it means that one or more power supplies are not functional.")
pchassisFansAlarm = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("off", 2), ("on", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pchassisFansAlarm.setStatus('current')
if mibBuilder.loadTexts: pchassisFansAlarm.setDescription('Indicates if all the fans on the chassis are functional.')
pchassisTempAlarm = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("off", 2), ("on", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pchassisTempAlarm.setStatus('current')
if mibBuilder.loadTexts: pchassisTempAlarm.setDescription('The chassis temperature alarm status.')
pchassisVoltageAlarm = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("off", 2), ("on", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pchassisVoltageAlarm.setStatus('current')
if mibBuilder.loadTexts: pchassisVoltageAlarm.setDescription("The chassis internal voltage alarm status. If the alarm is 'on' it indicates that the voltage level of one or more HW units is not in the normal range.")
pchassisNumSlots = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pchassisNumSlots.setStatus('current')
if mibBuilder.loadTexts: pchassisNumSlots.setDescription('Indicates the number of slots in the chassis available for plug-in modules. This number counts slots that are already occupied as well as empty slots.')
pchassisSlotConfig = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pchassisSlotConfig.setStatus('current')
if mibBuilder.loadTexts: pchassisSlotConfig.setDescription('An indication of which slots in the chassis have modules inserted. This is an integer value with bits set to indicate configured modules. It can be interpreted as a sum of f(x) as x goes from 1 to the number of slots, where f(x) = 0 for no module inserted and f(x) = exp(2, x-1) for a module inserted.')
pchassisPsuType = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("ac", 2), ("dc", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pchassisPsuType.setStatus('current')
if mibBuilder.loadTexts: pchassisPsuType.setDescription('Indicates the type of the power supplies.')
pchassisLineFeedAlarm = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("off", 2), ("on", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pchassisLineFeedAlarm.setStatus('current')
if mibBuilder.loadTexts: pchassisLineFeedAlarm.setDescription("Indicates if the line feed to the chassis is normal. If the status is not 'ok' it means that one or more line feeds are not connected or have no power.")
pmoduleTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1), )
if mibBuilder.loadTexts: pmoduleTable.setStatus('current')
if mibBuilder.loadTexts: pmoduleTable.setDescription('A list of module entries. The number of entries is the number of modules in the chassis.')
pmoduleEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "pmoduleIndex"))
if mibBuilder.loadTexts: pmoduleEntry.setStatus('current')
if mibBuilder.loadTexts: pmoduleEntry.setDescription('Entry containing information about one module in the chassis.')
pmoduleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleIndex.setStatus('current')
if mibBuilder.loadTexts: pmoduleIndex.setDescription('A unique value for each module within the chassis.')
pmoduleType = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("other", 1), ("gbe2Module", 2), ("fe2Module", 3), ("gbe4Module", 4), ("fe4Module", 5), ("oc124Module", 6), ("fe8Module", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleType.setStatus('current')
if mibBuilder.loadTexts: pmoduleType.setDescription('The type of module.')
pmoduleNumTrafficProcessors = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleNumTrafficProcessors.setStatus('current')
if mibBuilder.loadTexts: pmoduleNumTrafficProcessors.setDescription('The number of traffic processors supported by this module.')
pmoduleSlotNum = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleSlotNum.setStatus('current')
if mibBuilder.loadTexts: pmoduleSlotNum.setDescription('This value is determined by the chassis slot number where this module is located. Valid entries are 1 to the value of chassisNumSlots.')
pmoduleHwVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 5), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleHwVersion.setStatus('current')
if mibBuilder.loadTexts: pmoduleHwVersion.setDescription('The hardware version of the module.')
pmoduleNumPorts = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleNumPorts.setStatus('current')
if mibBuilder.loadTexts: pmoduleNumPorts.setDescription('The number of ports supported by this module.')
pmoduleNumLinks = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleNumLinks.setStatus('current')
if mibBuilder.loadTexts: pmoduleNumLinks.setDescription('The number of links carrying inband traffic that are supported by this module. Link is uniquely defined by the two ports that are at its end-points.')
pmoduleConnectionMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("inline", 2), ("receiveOnly", 3), ("inlineCascade", 4), ("receiveOnlyCascade", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleConnectionMode.setStatus('current')
if mibBuilder.loadTexts: pmoduleConnectionMode.setDescription('Indicates the connection mode of a module.')
pmoduleSerialNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 9), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleSerialNumber.setStatus('current')
if mibBuilder.loadTexts: pmoduleSerialNumber.setDescription('Indicates the serial number of the module.')
pmoduleUpStreamAttackFilteringTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 10), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleUpStreamAttackFilteringTime.setStatus('current')
if mibBuilder.loadTexts: pmoduleUpStreamAttackFilteringTime.setDescription('Indicates the accumulated time which attack up-stream traffic was filtered.')
pmoduleUpStreamLastAttackFilteringTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 11), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleUpStreamLastAttackFilteringTime.setStatus('current')
if mibBuilder.loadTexts: pmoduleUpStreamLastAttackFilteringTime.setDescription('Indicates the time since the previous attack was filtered in the up-stream traffic.')
pmoduleDownStreamAttackFilteringTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 12), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleDownStreamAttackFilteringTime.setStatus('current')
if mibBuilder.loadTexts: pmoduleDownStreamAttackFilteringTime.setDescription('Indicates the accumulated time which attack down-stream traffic was filtered.')
pmoduleDownStreamLastAttackFilteringTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 13), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleDownStreamLastAttackFilteringTime.setStatus('current')
if mibBuilder.loadTexts: pmoduleDownStreamLastAttackFilteringTime.setDescription('Indicates the time since the previous attack was filtered in the down-stream traffic.')
pmoduleAttackObjectsClearTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 14), TimeTicks()).setUnits('milliseconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: pmoduleAttackObjectsClearTime.setStatus('current')
if mibBuilder.loadTexts: pmoduleAttackObjectsClearTime.setDescription('Indicates the time since the attack objects were cleared. Writing a 0 to this object causes the counters to be cleared.')
pmoduleAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("primary", 2), ("secondary", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleAdminStatus.setStatus('current')
if mibBuilder.loadTexts: pmoduleAdminStatus.setDescription('Indicates configuration of a module in respect to whether the module should handle traffic.')
pmoduleOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("active", 2), ("standby", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pmoduleOperStatus.setStatus('current')
if mibBuilder.loadTexts: pmoduleOperStatus.setDescription("Indicates current module's role in respect to whether the module handles traffic.")
linkTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1), )
if mibBuilder.loadTexts: linkTable.setStatus('current')
if mibBuilder.loadTexts: linkTable.setDescription('The Link table provides information regarding the configuration and status of the links that pass through the SE and carry inband traffic. The number of entries in this table is determined by the number of modules in the chassis and the number of links on each module.')
linkEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "linkModuleIndex"), (0, "PCUBE-SE-MIB", "linkIndex"))
if mibBuilder.loadTexts: linkEntry.setStatus('current')
if mibBuilder.loadTexts: linkEntry.setDescription('Entry containing information about the Link.')
linkModuleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: linkModuleIndex.setStatus('current')
if mibBuilder.loadTexts: linkModuleIndex.setDescription('An index value that uniquely identifies the module where this link is located.')
linkIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: linkIndex.setStatus('current')
if mibBuilder.loadTexts: linkIndex.setDescription('An index value that uniquely identifies this link within a module. Valid entries are 1 to the value of moduleNumLinks for this module.')
linkAdminModeOnActive = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 3), LinkModeType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: linkAdminModeOnActive.setStatus('current')
if mibBuilder.loadTexts: linkAdminModeOnActive.setDescription("The desired mode of the link when the module's operating status is Active and the module is not in boot or failure. The possible modes are bypass, forwarding and sniffing. In bypass mode the traffic is forwarded from one port to the other using an internal splitter. In forwarding mode the traffic is forwarded through the internal hardware and software modules of the SE. In sniffing mode the traffic is passed in the same manner as in bypass mode, however a copy of the traffic is made and analyzed internally in the box.")
linkAdminModeOnFailure = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 4), LinkModeType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: linkAdminModeOnFailure.setStatus('current')
if mibBuilder.loadTexts: linkAdminModeOnFailure.setDescription("The desired mode of the link when the system's operational status is Failure. The possible modes are Bypass and Cutoff. In Bypass mode the traffic is forwarded from one port to the other using an internal splitter. In Cutoff mode the traffic is dropped by the SE.")
linkOperMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 5), LinkModeType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: linkOperMode.setStatus('current')
if mibBuilder.loadTexts: linkOperMode.setDescription('The operational mode of the link. In Bypass mode the traffic is forwarded from one port to the other using an internal splitter. In Forwarding mode the traffic is forwarded through the internal software and hardware modules of the SCE. In Sniffing mode the traffic is forwarded in the same manner as in Bypass mode, however the traffic is passed through the internal software and hardware modules of the SCE for analyzing. in Cutoff mode the traffic is dropped by the SCE platform.')
linkStatusReflectionEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: linkStatusReflectionEnable.setStatus('current')
if mibBuilder.loadTexts: linkStatusReflectionEnable.setDescription('Indicates if failure of the physical link on one i/f should trigger the failure of the link on the other i/f.')
linkSubscriberSidePortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: linkSubscriberSidePortIndex.setStatus('current')
if mibBuilder.loadTexts: linkSubscriberSidePortIndex.setDescription('An index value that uniquely identifies this link with its related port that is connected to the subscriber side.')
linkNetworkSidePortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: linkNetworkSidePortIndex.setStatus('current')
if mibBuilder.loadTexts: linkNetworkSidePortIndex.setDescription('An index value that uniquely identifies this link with its related port that is connected to the network side.')
diskNumUsedBytes = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 5, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: diskNumUsedBytes.setStatus('current')
if mibBuilder.loadTexts: diskNumUsedBytes.setDescription('The number of used bytes.')
diskNumFreeBytes = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 5, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: diskNumFreeBytes.setStatus('current')
if mibBuilder.loadTexts: diskNumFreeBytes.setDescription('The number of free bytes.')
rdrFormatterEnable = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterEnable.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterEnable.setDescription('Indicates whether the RDR-formatter is enabled or disabled. When the RDR-formatter is enabled, it sends the reports it gets from the traffic processors to the Data Collector as defined in the rdrFormatterDestTable.')
rdrFormatterDestTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2), )
if mibBuilder.loadTexts: rdrFormatterDestTable.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterDestTable.setDescription('The RDR-formatter destinations table (0 to 3 entries). This table lists the addresses of Data Collectors. If the RDR-formatter is enabled, the destination with the highest priority that a TCP connection to it can be established would receive the reports generated by the traffic processors.')
rdrFormatterDestEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "rdrFormatterDestIPAddr"), (0, "PCUBE-SE-MIB", "rdrFormatterDestPort"))
if mibBuilder.loadTexts: rdrFormatterDestEntry.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterDestEntry.setDescription('A destination table entry.')
rdrFormatterDestIPAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterDestIPAddr.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterDestIPAddr.setDescription('The IP address of a Data Collector.')
rdrFormatterDestPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterDestPort.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterDestPort.setDescription('The TCP port on which the Data Collector listens.')
rdrFormatterDestPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterDestPriority.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterDestPriority.setDescription('The priority given to the Data Collector. The active Data Collector is the Data Collector with the highest priority and a TCP connection that is up.')
rdrFormatterDestStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("active", 2), ("standby", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterDestStatus.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterDestStatus.setDescription("In 'redundancy(2)' and in 'simpleLoadBalancing(3)' rdrFormatterForwardingMode there can be only one 'active' destination, which is where the reports are currently being sent to. In 'multicast(4)' modes all destinations will receive the active(2) status.")
rdrFormatterDestConnectionStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("up", 2), ("down", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterDestConnectionStatus.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterDestConnectionStatus.setDescription('Indicates the status of TCP connection to this destination.')
rdrFormatterDestNumReportsSent = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterDestNumReportsSent.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterDestNumReportsSent.setDescription('Indicates the number of reports sent by the RDR-formatter to this destination.')
rdrFormatterDestNumReportsDiscarded = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterDestNumReportsDiscarded.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterDestNumReportsDiscarded.setDescription(' Indicates the number of reports dropped by the RDR-formatter on this destination.')
rdrFormatterDestReportRate = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterDestReportRate.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterDestReportRate.setDescription('Indicates the rate of the reports (in reports per second) currently sent to this destination.')
rdrFormatterDestReportRatePeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 9), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterDestReportRatePeak.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterDestReportRatePeak.setDescription('Indicates the maximum report rate sent to this destination.')
rdrFormatterDestReportRatePeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 10), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterDestReportRatePeakTime.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterDestReportRatePeakTime.setDescription('Indicates the time since the rdrFormatterDestReportRatePeak value occurred.')
rdrFormatterNumReportsSent = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterNumReportsSent.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterNumReportsSent.setDescription('Indicates the number of reports sent by the RDR-formatter.')
rdrFormatterNumReportsDiscarded = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterNumReportsDiscarded.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterNumReportsDiscarded.setDescription('Indicates the number of reports dropped by the RDR-formatter.')
rdrFormatterClearCountersTime = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 5), TimeTicks()).setUnits('milliseconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: rdrFormatterClearCountersTime.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterClearCountersTime.setDescription('The time since RDR-formatter counters were last cleared. Writing a 0 to this object causes the RDR-formatter counters to be cleared.')
rdrFormatterReportRate = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterReportRate.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterReportRate.setDescription('Indicates the rate of the reports (in reports per second) currently sent to all of the destinations.')
rdrFormatterReportRatePeak = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterReportRatePeak.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterReportRatePeak.setDescription('Indicates the maximum report rate sent to all of the destinations.')
rdrFormatterReportRatePeakTime = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 8), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterReportRatePeakTime.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterReportRatePeakTime.setDescription('Indicates the time since the rdrFormatterReportRatePeak value occurred.')
rdrFormatterProtocol = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("rdrv1", 2), ("rdrv2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterProtocol.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterProtocol.setDescription('Indicates the RDR protocol currently in use.')
rdrFormatterForwardingMode = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("other", 1), ("redundancy", 2), ("simpleLoadBalancing", 3), ("multicast", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterForwardingMode.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterForwardingMode.setDescription('Indicates the mode of how the RDR formatter sends the reports to its destinations.')
rdrFormatterCategoryTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11), )
if mibBuilder.loadTexts: rdrFormatterCategoryTable.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryTable.setDescription('The RDR-formatter Category table. Describes the different categories of RDRs and RDR destination groups.')
rdrFormatterCategoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "rdrFormatterCategoryIndex"))
if mibBuilder.loadTexts: rdrFormatterCategoryEntry.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryEntry.setDescription('A category table entry.')
rdrFormatterCategoryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterCategoryIndex.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryIndex.setDescription('The category number.')
rdrFormatterCategoryName = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 2), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterCategoryName.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryName.setDescription('The name given to this category.')
rdrFormatterCategoryNumReportsSent = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterCategoryNumReportsSent.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryNumReportsSent.setDescription('Indicates the number of reports sent by the RDR-formatter to this category.')
rdrFormatterCategoryNumReportsDiscarded = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterCategoryNumReportsDiscarded.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryNumReportsDiscarded.setDescription('Indicates the number of reports dropped by the RDR-formatter on this category.')
rdrFormatterCategoryReportRate = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterCategoryReportRate.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryReportRate.setDescription('Indicates the rate of the reports (in reports per second) currently sent to this category.')
rdrFormatterCategoryReportRatePeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterCategoryReportRatePeak.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryReportRatePeak.setDescription('Indicates the maximum report rate sent to this category.')
rdrFormatterCategoryReportRatePeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 7), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterCategoryReportRatePeakTime.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryReportRatePeakTime.setDescription('Indicates the time since the rdrFormatterCategoryReportRatePeak value occurred.')
rdrFormatterCategoryNumReportsQueued = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterCategoryNumReportsQueued.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryNumReportsQueued.setDescription('Indicates the amount of pending reports in this category.')
rdrFormatterCategoryDestTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 12), )
if mibBuilder.loadTexts: rdrFormatterCategoryDestTable.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryDestTable.setDescription('The RDR-formatter Category destinations table. This table lists the addresses of Data Collectors. If the RDR-formatter is enabled, the destination with the highest priority that a TCP connection to it can be established would receive the reports generated by the traffic processors.')
rdrFormatterCategoryDestEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 12, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "rdrFormatterCategoryIndex"), (0, "PCUBE-SE-MIB", "rdrFormatterDestIPAddr"), (0, "PCUBE-SE-MIB", "rdrFormatterDestPort"))
if mibBuilder.loadTexts: rdrFormatterCategoryDestEntry.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryDestEntry.setDescription('A destination table entry.')
rdrFormatterCategoryDestPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 12, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterCategoryDestPriority.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryDestPriority.setDescription('The priority given to the Data Collector for this category. The active Data Collector is the Data Collector with the highest priority and a TCP connection that is up.')
rdrFormatterCategoryDestStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 12, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("active", 2), ("standby", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rdrFormatterCategoryDestStatus.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryDestStatus.setDescription("In modes 'redundancy(2)' and in 'simpleLoadBalancing(3)' there can be only one 'active' destination, which is the destination to which reports are being sent. In 'multicast(4)' modes all destination will receive the 'active(2)' status.")
loggerUserLogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: loggerUserLogEnable.setStatus('current')
if mibBuilder.loadTexts: loggerUserLogEnable.setDescription('Indicates whether the logging of user information is enabled or disabled.')
loggerUserLogNumInfo = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: loggerUserLogNumInfo.setStatus('current')
if mibBuilder.loadTexts: loggerUserLogNumInfo.setDescription('Indicates the number of Info messages logged into the user log file since last reboot or last time the counter was cleared.')
loggerUserLogNumWarning = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: loggerUserLogNumWarning.setStatus('current')
if mibBuilder.loadTexts: loggerUserLogNumWarning.setDescription('Indicates the number of Warning messages logged into the user log file since last reboot or last time the counter was cleared.')
loggerUserLogNumError = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: loggerUserLogNumError.setStatus('current')
if mibBuilder.loadTexts: loggerUserLogNumError.setDescription('Indicates the number of Error messages logged into the user log file since last reboot or last time the counter was cleared.')
loggerUserLogNumFatal = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: loggerUserLogNumFatal.setStatus('current')
if mibBuilder.loadTexts: loggerUserLogNumFatal.setDescription('Indicates the number of Fatal messages logged into the User-Log since last reboot or last time the counter was cleared.')
loggerUserLogClearCountersTime = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7, 6), TimeTicks()).setUnits('milliseconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: loggerUserLogClearCountersTime.setStatus('current')
if mibBuilder.loadTexts: loggerUserLogClearCountersTime.setDescription('The time since user log counters were last cleared. Writing a 0 to this object causes the user log counters to be cleared.')
subscribersInfoTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1), )
if mibBuilder.loadTexts: subscribersInfoTable.setStatus('current')
if mibBuilder.loadTexts: subscribersInfoTable.setDescription('The subscribers information table consists of data regarding subscribers management operations performed.')
subscribersInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "pmoduleIndex"))
if mibBuilder.loadTexts: subscribersInfoEntry.setStatus('current')
if mibBuilder.loadTexts: subscribersInfoEntry.setDescription('A SubscribersInfoEntry entry.')
subscribersNumIntroduced = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumIntroduced.setStatus('current')
if mibBuilder.loadTexts: subscribersNumIntroduced.setDescription('Indicates the current number of subscribers introduced to the SCE. These subscribers may or may not have IP address or VLAN mappings. Subscribers who do not have mappings of any kind cannot be associated with traffic, thus will be served by the SCE according to the default settings. ')
subscribersNumFree = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumFree.setStatus('current')
if mibBuilder.loadTexts: subscribersNumFree.setDescription('Indicates the number of subscribers that may be introduced in addition to the subscribers that are already introduced to the SCE (subscribersNumIntroduced).')
subscribersNumIpAddrMappings = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumIpAddrMappings.setStatus('current')
if mibBuilder.loadTexts: subscribersNumIpAddrMappings.setDescription("Indicates the current number of 'IP address to subscriber' mappings.")
subscribersNumIpAddrMappingsFree = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumIpAddrMappingsFree.setStatus('current')
if mibBuilder.loadTexts: subscribersNumIpAddrMappingsFree.setDescription("Indicates the number of free 'IP address to subscriber' mappings that may be used for defining new mappings.")
subscribersNumIpRangeMappings = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumIpRangeMappings.setStatus('current')
if mibBuilder.loadTexts: subscribersNumIpRangeMappings.setDescription("Indicates the current number of 'IP-range to subscriber' mappings.")
subscribersNumIpRangeMappingsFree = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumIpRangeMappingsFree.setStatus('current')
if mibBuilder.loadTexts: subscribersNumIpRangeMappingsFree.setDescription("Indicates the number of free 'IP-range to subscriber' mappings that may be used for defining new mappings.")
subscribersNumVlanMappings = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumVlanMappings.setStatus('current')
if mibBuilder.loadTexts: subscribersNumVlanMappings.setDescription('Indicates the current number of VLAN to subscribers mappings.')
subscribersNumVlanMappingsFree = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumVlanMappingsFree.setStatus('current')
if mibBuilder.loadTexts: subscribersNumVlanMappingsFree.setDescription("Indicates the number of free 'VLAN to subscriber' mappings that may be used for defining new mappings.")
subscribersNumActive = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 9), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumActive.setStatus('current')
if mibBuilder.loadTexts: subscribersNumActive.setDescription('Indicates the current number of active subscribers, these subscribers necessarily have an IP address or VLAN mappings that define the traffic that should be associated and served according to the subscriber service agreement.')
subscribersNumActivePeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumActivePeak.setStatus('current')
if mibBuilder.loadTexts: subscribersNumActivePeak.setDescription('Indicates the peak value of subscribersNumActive since the last time it was cleared or the system started.')
subscribersNumActivePeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 11), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumActivePeakTime.setStatus('current')
if mibBuilder.loadTexts: subscribersNumActivePeakTime.setDescription('Indicates the time since the subscribersNumActivePeak value occurred.')
subscribersNumUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 12), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumUpdates.setStatus('current')
if mibBuilder.loadTexts: subscribersNumUpdates.setDescription('Indicates the accumulated number of subscribers database updates received by the SCE.')
subscribersCountersClearTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 13), TimeTicks()).setUnits('milliseconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: subscribersCountersClearTime.setStatus('current')
if mibBuilder.loadTexts: subscribersCountersClearTime.setDescription('Indicates the time since the subscribers counters were cleared. Writing a 0 to this object causes the counters to be cleared.')
subscribersNumTpIpRanges = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 14), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumTpIpRanges.setStatus('current')
if mibBuilder.loadTexts: subscribersNumTpIpRanges.setDescription("Indicates the current number of 'Traffic Processor IP ranges' used.")
subscribersNumTpIpRangesFree = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 15), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumTpIpRangesFree.setStatus('current')
if mibBuilder.loadTexts: subscribersNumTpIpRangesFree.setDescription("Indicates the number of free 'Traffic Processor IP ranges'.")
subscribersNumAnonymous = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 16), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumAnonymous.setStatus('current')
if mibBuilder.loadTexts: subscribersNumAnonymous.setDescription('Indicates the current number of anonymous subscribers.')
subscribersNumWithSessions = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 17), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: subscribersNumWithSessions.setStatus('current')
if mibBuilder.loadTexts: subscribersNumWithSessions.setDescription('Indicates the current number of subscribers with open sessions.')
tpInfoTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1), )
if mibBuilder.loadTexts: tpInfoTable.setStatus('current')
if mibBuilder.loadTexts: tpInfoTable.setDescription('The Traffic Processor Info table consists of data regarding traffic handled by the traffic processors by classification of packets and flows.')
tpInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "tpModuleIndex"), (0, "PCUBE-SE-MIB", "tpIndex"))
if mibBuilder.loadTexts: tpInfoEntry.setStatus('current')
if mibBuilder.loadTexts: tpInfoEntry.setDescription('A tpInfoTable entry.')
tpModuleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpModuleIndex.setStatus('current')
if mibBuilder.loadTexts: tpModuleIndex.setDescription('An index value that uniquely identifies the module where this traffic processor is located.')
tpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpIndex.setStatus('current')
if mibBuilder.loadTexts: tpIndex.setDescription('An index value that uniquely identifies this traffic processor within a module. The value is determined by the location of the traffic processor on the module. Valid entries are 1 to the value of moduleNumTrafficProcessors for this module.')
tpTotalNumHandledPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumHandledPackets.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumHandledPackets.setDescription('Indicates the accumulated number of packets handled by this traffic processor since last reboot or last time this counter was cleared.')
tpTotalNumHandledFlows = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumHandledFlows.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumHandledFlows.setDescription('Indicates the accumulated number of flows handled by this traffic Processor since last reboot or last time this counter was cleared.')
tpNumActiveFlows = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpNumActiveFlows.setStatus('current')
if mibBuilder.loadTexts: tpNumActiveFlows.setDescription('Indicates the number of flows currently being handled by this traffic processor.')
tpNumActiveFlowsPeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpNumActiveFlowsPeak.setStatus('current')
if mibBuilder.loadTexts: tpNumActiveFlowsPeak.setDescription('Indicates the peak value of tpNumActiveFlows since the last time it was cleared or the system started.')
tpNumActiveFlowsPeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 7), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: tpNumActiveFlowsPeakTime.setStatus('current')
if mibBuilder.loadTexts: tpNumActiveFlowsPeakTime.setDescription('Indicates the time since the tpNumActiveFlowsPeak value occurred.')
tpNumTcpActiveFlows = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpNumTcpActiveFlows.setStatus('current')
if mibBuilder.loadTexts: tpNumTcpActiveFlows.setDescription('Indicates the number of TCP flows currently being handled by this traffic processor.')
tpNumTcpActiveFlowsPeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 9), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpNumTcpActiveFlowsPeak.setStatus('current')
if mibBuilder.loadTexts: tpNumTcpActiveFlowsPeak.setDescription('Indicates the peak value of tpNumTcpActiveFlows since the last time it was cleared or the system started.')
tpNumTcpActiveFlowsPeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 10), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: tpNumTcpActiveFlowsPeakTime.setStatus('current')
if mibBuilder.loadTexts: tpNumTcpActiveFlowsPeakTime.setDescription('Indicates the time since the tpNumTcpActiveFlowsPeak value occurred.')
tpNumUdpActiveFlows = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 11), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpNumUdpActiveFlows.setStatus('current')
if mibBuilder.loadTexts: tpNumUdpActiveFlows.setDescription('Indicates the number of UDP flows currently being handled by this traffic processor.')
tpNumUdpActiveFlowsPeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 12), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpNumUdpActiveFlowsPeak.setStatus('current')
if mibBuilder.loadTexts: tpNumUdpActiveFlowsPeak.setDescription('Indicates the peak value of tpNumUdpActiveFlows since the last time it was cleared or the system started.')
tpNumUdpActiveFlowsPeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 13), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: tpNumUdpActiveFlowsPeakTime.setStatus('current')
if mibBuilder.loadTexts: tpNumUdpActiveFlowsPeakTime.setDescription('Indicates the time since the tpNumUdpActiveFlowsPeak value occurred.')
tpNumNonTcpUdpActiveFlows = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 14), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpNumNonTcpUdpActiveFlows.setStatus('current')
if mibBuilder.loadTexts: tpNumNonTcpUdpActiveFlows.setDescription('Indicates the number of non TCP/UDP flows currently being handled by this traffic processor.')
tpNumNonTcpUdpActiveFlowsPeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 15), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpNumNonTcpUdpActiveFlowsPeak.setStatus('current')
if mibBuilder.loadTexts: tpNumNonTcpUdpActiveFlowsPeak.setDescription('Indicates the peak value of tpNumNonTcpUdpActiveFlows since the last time it was cleared or the system started.')
tpNumNonTcpUdpActiveFlowsPeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 16), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: tpNumNonTcpUdpActiveFlowsPeakTime.setStatus('current')
if mibBuilder.loadTexts: tpNumNonTcpUdpActiveFlowsPeakTime.setDescription('Indicates the time since the tpNumNonTcpUdpActiveFlowsPeak value occurred.')
tpTotalNumBlockedPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 17), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumBlockedPackets.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumBlockedPackets.setDescription('Indicates the accumulated number of packets discarded by this traffic processor according to application blocking rules.')
tpTotalNumBlockedFlows = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 18), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumBlockedFlows.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumBlockedFlows.setDescription('Indicates the accumulated number of flows discarded by this traffic processor according to application blocking rules.')
tpTotalNumDiscardedPacketsDueToBwLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 19), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumDiscardedPacketsDueToBwLimit.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumDiscardedPacketsDueToBwLimit.setDescription('Indicates the accumulated number of packets discarded by this traffic processor due to subscriber bandwidth limitations.')
tpTotalNumWredDiscardedPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 20), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumWredDiscardedPackets.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumWredDiscardedPackets.setDescription('Indicates the accumulated number of packets discarded by this traffic processor due to congestion in the queues.')
tpTotalNumFragments = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 21), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumFragments.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumFragments.setDescription('Indicates the accumulated number of fragmented packets handled by this traffic processor.')
tpTotalNumNonIpPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 22), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumNonIpPackets.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumNonIpPackets.setDescription('Indicates the accumulated number of non IP packets handled by this traffic processor.')
tpTotalNumIpCrcErrPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 23), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumIpCrcErrPackets.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumIpCrcErrPackets.setDescription('Indicates the accumulated number of packets with IP CRC error handled by this traffic processor.')
tpTotalNumIpLengthErrPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 24), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumIpLengthErrPackets.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumIpLengthErrPackets.setDescription('Indicates the accumulated number of packets with IP length error handled by this traffic processor.')
tpTotalNumIpBroadcastPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 25), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumIpBroadcastPackets.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumIpBroadcastPackets.setDescription('Indicates the accumulated number of IP broadcast packets handled by this traffic processor.')
tpTotalNumTtlErrPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 26), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumTtlErrPackets.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumTtlErrPackets.setDescription('Indicates the accumulated number of packets with TTL error handled by this traffic processor.')
tpTotalNumTcpUdpCrcErrPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 27), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpTotalNumTcpUdpCrcErrPackets.setStatus('current')
if mibBuilder.loadTexts: tpTotalNumTcpUdpCrcErrPackets.setDescription('Indicates the accumulated number of TCP/UDP packets with CRC error handled by this traffic processor.')
tpClearCountersTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 28), TimeTicks()).setUnits('milliseconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tpClearCountersTime.setStatus('current')
if mibBuilder.loadTexts: tpClearCountersTime.setDescription('Indicates the time since the traffic processor statistics counters were last cleared. Writing a 0 to this object causes the traffic processor counters to be cleared.')
tpHandledPacketsRate = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 29), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpHandledPacketsRate.setStatus('current')
if mibBuilder.loadTexts: tpHandledPacketsRate.setDescription('Indicates the rate in packets per second of the packets handled by this traffic processor.')
tpHandledPacketsRatePeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 30), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpHandledPacketsRatePeak.setStatus('current')
if mibBuilder.loadTexts: tpHandledPacketsRatePeak.setDescription('Indicates the peak value of tpHandledPacketsRate since the last time it was cleared or the system started.')
tpHandledPacketsRatePeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 31), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: tpHandledPacketsRatePeakTime.setStatus('current')
if mibBuilder.loadTexts: tpHandledPacketsRatePeakTime.setDescription('Indicates the time since the tpHandledPacketsRatePeak value occurred.')
tpHandledFlowsRate = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 32), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpHandledFlowsRate.setStatus('current')
if mibBuilder.loadTexts: tpHandledFlowsRate.setDescription('Indicates the rate in flows opening per second of the flows handled by this traffic processor.')
tpHandledFlowsRatePeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 33), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpHandledFlowsRatePeak.setStatus('current')
if mibBuilder.loadTexts: tpHandledFlowsRatePeak.setDescription('Indicates the peak value of tpHandledFlowsRate since the last time it was cleared or the system started.')
tpHandledFlowsRatePeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 34), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: tpHandledFlowsRatePeakTime.setStatus('current')
if mibBuilder.loadTexts: tpHandledFlowsRatePeakTime.setDescription('Indicates the time since the tpHandledFlowsRatePeakTime value occurred.')
tpCpuUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpCpuUtilization.setStatus('current')
if mibBuilder.loadTexts: tpCpuUtilization.setDescription('Indicates the percentage of CPU utilization, updated once every 2 minutes.')
tpCpuUtilizationPeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpCpuUtilizationPeak.setStatus('current')
if mibBuilder.loadTexts: tpCpuUtilizationPeak.setDescription('Indicates the peak value of tpCpuUtilization since the last time it was cleared or the system started.')
tpCpuUtilizationPeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 37), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: tpCpuUtilizationPeakTime.setStatus('current')
if mibBuilder.loadTexts: tpCpuUtilizationPeakTime.setDescription('Indicates the time since the tpCpuUtilizationPeak value occurred.')
tpFlowsCapacityUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 38), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpFlowsCapacityUtilization.setStatus('current')
if mibBuilder.loadTexts: tpFlowsCapacityUtilization.setDescription('Indicates the percentage of flows capacity utilization.')
tpFlowsCapacityUtilizationPeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpFlowsCapacityUtilizationPeak.setStatus('current')
if mibBuilder.loadTexts: tpFlowsCapacityUtilizationPeak.setDescription('Indicates the peak value of tpFlowsCapacityUtilization since the last time it was cleared or the system started.')
tpFlowsCapacityUtilizationPeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 40), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: tpFlowsCapacityUtilizationPeakTime.setStatus('current')
if mibBuilder.loadTexts: tpFlowsCapacityUtilizationPeakTime.setDescription('Indicates the time since the tpFlowsCapacityUtilizationPeak value occurred.')
tpServiceLoss = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tpServiceLoss.setStatus('current')
if mibBuilder.loadTexts: tpServiceLoss.setDescription('Indicates the relative amount of service loss in this traffic Processor, in units of 0.001%, since last reboot or last time this counter was cleared.')
pportTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1), )
if mibBuilder.loadTexts: pportTable.setStatus('current')
if mibBuilder.loadTexts: pportTable.setDescription('A list of port entries. The number of entries is determined by the number of modules in the chassis and the number of ports on each module.')
pportEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "pportModuleIndex"), (0, "PCUBE-SE-MIB", "pportIndex"))
if mibBuilder.loadTexts: pportEntry.setStatus('current')
if mibBuilder.loadTexts: pportEntry.setDescription('Entry containing information for a particular port on a module.')
pportModuleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pportModuleIndex.setStatus('current')
if mibBuilder.loadTexts: pportModuleIndex.setDescription('An index value that uniquely identifies the module where this port is located.')
pportIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pportIndex.setStatus('current')
if mibBuilder.loadTexts: pportIndex.setDescription('An index value that uniquely identifies this port within a module. The value is determined by the location of the port on the module. Valid entries are 1 to the value of moduleNumPorts for this module.')
pportType = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 11, 15, 28))).clone(namedValues=NamedValues(("other", 1), ("e100BaseTX", 11), ("e1000BaseT", 15), ("e1000BaseSX", 28)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pportType.setStatus('current')
if mibBuilder.loadTexts: pportType.setDescription('The type of physical layer medium dependent interface on the port.')
pportNumTxQueues = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pportNumTxQueues.setStatus('current')
if mibBuilder.loadTexts: pportNumTxQueues.setDescription('The number of transmit queues supported by this port.')
pportIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pportIfIndex.setStatus('current')
if mibBuilder.loadTexts: pportIfIndex.setDescription('The value of the instance of the ifIndex object, defined in MIB-II, for this port.')
pportAdminSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 10000000, 100000000, 1000000000))).clone(namedValues=NamedValues(("autoNegotiation", 1), ("s10000000", 10000000), ("s100000000", 100000000), ("s1000000000", 1000000000)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pportAdminSpeed.setStatus('current')
if mibBuilder.loadTexts: pportAdminSpeed.setDescription('The desired speed of the port. The current operational speed of the port can be determined from ifSpeed.')
pportAdminDuplex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("half", 1), ("full", 2), ("auto", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pportAdminDuplex.setStatus('current')
if mibBuilder.loadTexts: pportAdminDuplex.setDescription('The desired duplex of the port.')
pportOperDuplex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("half", 1), ("full", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pportOperDuplex.setStatus('current')
if mibBuilder.loadTexts: pportOperDuplex.setDescription('Indicates whether the port is operating in half-duplex or full-duplex.')
pportLinkIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pportLinkIndex.setStatus('current')
if mibBuilder.loadTexts: pportLinkIndex.setDescription('Indicates the linkIndex of the link that this port belongs to. Value of 0 indicates that this port is not associated with any link. Value of -1 indicates that this port is associated to multiple links.')
pportOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("up", 2), ("reflectionForcingDown", 3), ("redundancyForcingDown", 4), ("otherDown", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pportOperStatus.setStatus('current')
if mibBuilder.loadTexts: pportOperStatus.setDescription('Indicates the status of the port and if the port is down indicates the reason.')
txQueuesTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1), )
if mibBuilder.loadTexts: txQueuesTable.setStatus('current')
if mibBuilder.loadTexts: txQueuesTable.setDescription("This table consists of information on the SCE's transmit queues.")
txQueuesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "txQueuesModuleIndex"), (0, "PCUBE-SE-MIB", "txQueuesPortIndex"), (0, "PCUBE-SE-MIB", "txQueuesQueueIndex"))
if mibBuilder.loadTexts: txQueuesEntry.setStatus('current')
if mibBuilder.loadTexts: txQueuesEntry.setDescription('A txQueuesTable entry.')
txQueuesModuleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: txQueuesModuleIndex.setStatus('current')
if mibBuilder.loadTexts: txQueuesModuleIndex.setDescription('An index value that uniquely identifies the module where this queue is located.')
txQueuesPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: txQueuesPortIndex.setStatus('current')
if mibBuilder.loadTexts: txQueuesPortIndex.setDescription('An index value that uniquely identifies the port where this queue is located.')
txQueuesQueueIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: txQueuesQueueIndex.setStatus('current')
if mibBuilder.loadTexts: txQueuesQueueIndex.setDescription('An index value that uniquely identifies this queue within a port. The value is determined by the location of the queue on the port. Valid entries are 1 to the value of portNumTxQueues for this module.')
txQueuesDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 4), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: txQueuesDescription.setStatus('current')
if mibBuilder.loadTexts: txQueuesDescription.setDescription('Description of the transmit queue.')
txQueuesBandwidth = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: txQueuesBandwidth.setStatus('current')
if mibBuilder.loadTexts: txQueuesBandwidth.setDescription('The bandwidth in L1 kbps configured for this queue.')
txQueuesUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: txQueuesUtilization.setStatus('current')
if mibBuilder.loadTexts: txQueuesUtilization.setDescription('The percentage of bandwidth utilization relative to the configured rate.')
txQueuesUtilizationPeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: txQueuesUtilizationPeak.setStatus('current')
if mibBuilder.loadTexts: txQueuesUtilizationPeak.setDescription('Indicates the peak value of txQueuesUtilization since the last time it was cleared or the system started.')
txQueuesUtilizationPeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 8), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: txQueuesUtilizationPeakTime.setStatus('current')
if mibBuilder.loadTexts: txQueuesUtilizationPeakTime.setDescription('Indicates the time since the txQueuesUtilizationPeak value occurred.')
txQueuesClearCountersTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 9), TimeTicks()).setUnits('milliseconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: txQueuesClearCountersTime.setStatus('current')
if mibBuilder.loadTexts: txQueuesClearCountersTime.setDescription('Indicates the time since the TX queues statistics counters were last cleared. Writing a 0 to this object causes the TX queues counters to be cleared.')
txQueuesDroppedBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 10), Counter64()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: txQueuesDroppedBytes.setStatus('current')
if mibBuilder.loadTexts: txQueuesDroppedBytes.setDescription('Amount of dropped L3 bytes. This is valid only if the system is configured to count dropped bytes per TX queue.')
globalControllersTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1), )
if mibBuilder.loadTexts: globalControllersTable.setStatus('current')
if mibBuilder.loadTexts: globalControllersTable.setDescription("This table consists of information on the SCE's Global Controllers. note: the globalControllersIndex and the SCE CLI configuration index have a offset of one i.e. 1 in the MIB refers to 0 in the CLI.")
globalControllersEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "globalControllersModuleIndex"), (0, "PCUBE-SE-MIB", "globalControllersPortIndex"), (0, "PCUBE-SE-MIB", "globalControllersIndex"))
if mibBuilder.loadTexts: globalControllersEntry.setStatus('current')
if mibBuilder.loadTexts: globalControllersEntry.setDescription('A globalControllersTable entry.')
globalControllersModuleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: globalControllersModuleIndex.setStatus('current')
if mibBuilder.loadTexts: globalControllersModuleIndex.setDescription('An index value that uniquely identifies the module where this controller is located.')
globalControllersPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: globalControllersPortIndex.setStatus('current')
if mibBuilder.loadTexts: globalControllersPortIndex.setDescription('An index value that uniquely identifies the port where this controller is located.')
globalControllersIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: globalControllersIndex.setStatus('current')
if mibBuilder.loadTexts: globalControllersIndex.setDescription('An index value that uniquely identifies this controller within a port.')
globalControllersDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 4), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: globalControllersDescription.setStatus('current')
if mibBuilder.loadTexts: globalControllersDescription.setDescription('Description of the controller.')
globalControllersBandwidth = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000000))).setUnits('Kbps').setMaxAccess("readonly")
if mibBuilder.loadTexts: globalControllersBandwidth.setStatus('current')
if mibBuilder.loadTexts: globalControllersBandwidth.setDescription('The L1 bandwidth configured for this controller.')
globalControllersUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: globalControllersUtilization.setStatus('current')
if mibBuilder.loadTexts: globalControllersUtilization.setDescription('The percentage of bandwidth utilization relative to the configured rate.')
globalControllersUtilizationPeak = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: globalControllersUtilizationPeak.setStatus('current')
if mibBuilder.loadTexts: globalControllersUtilizationPeak.setDescription('Indicates the peak value of globalControllersUtilization since the last time it was cleared or the system started.')
globalControllersUtilizationPeakTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 8), TimeTicks()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: globalControllersUtilizationPeakTime.setStatus('current')
if mibBuilder.loadTexts: globalControllersUtilizationPeakTime.setDescription('Indicates the time since the globalControllersUtilizationPeak value occurred.')
globalControllersClearCountersTime = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 9), TimeTicks()).setUnits('milliseconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: globalControllersClearCountersTime.setStatus('current')
if mibBuilder.loadTexts: globalControllersClearCountersTime.setDescription('Indicates the time since the controllers statistics counters were last cleared. Writing a 0 to this object causes the controllers counters to be cleared.')
globalControllersDroppedBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 10), Counter64()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: globalControllersDroppedBytes.setStatus('current')
if mibBuilder.loadTexts: globalControllersDroppedBytes.setDescription('Amount of L3 dropped bytes. This is valid only if the system is configured to count dropped bytes per global controller.')
appInfoTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 1), )
if mibBuilder.loadTexts: appInfoTable.setStatus('current')
if mibBuilder.loadTexts: appInfoTable.setDescription("This table consists of information on the SCE's application.")
appInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 1, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "pmoduleIndex"))
if mibBuilder.loadTexts: appInfoEntry.setStatus('current')
if mibBuilder.loadTexts: appInfoEntry.setDescription('A appInfoTable entry.')
appName = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 1, 1, 1), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: appName.setStatus('current')
if mibBuilder.loadTexts: appName.setDescription('The application name.')
appDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 1, 1, 2), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: appDescription.setStatus('current')
if mibBuilder.loadTexts: appDescription.setDescription('The application description.')
appVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 1, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: appVersion.setStatus('current')
if mibBuilder.loadTexts: appVersion.setDescription('The application version.')
appPropertiesTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 2), )
if mibBuilder.loadTexts: appPropertiesTable.setStatus('current')
if mibBuilder.loadTexts: appPropertiesTable.setDescription('The application properties table provides the list of properties available for the application. The table is cleared when the application is unloaded.')
appPropertiesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 2, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "pmoduleIndex"), (0, "PCUBE-SE-MIB", "apIndex"))
if mibBuilder.loadTexts: appPropertiesEntry.setStatus('current')
if mibBuilder.loadTexts: appPropertiesEntry.setDescription('A appPropertiesTable entry.')
apIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apIndex.setStatus('current')
if mibBuilder.loadTexts: apIndex.setDescription('An index value that uniquely identify the property.')
apName = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 2, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apName.setStatus('current')
if mibBuilder.loadTexts: apName.setDescription('Application property name. Property can be either scalar or array type.')
apType = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 2, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apType.setStatus('current')
if mibBuilder.loadTexts: apType.setDescription('Application property type.')
appPropertiesValueTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3), )
if mibBuilder.loadTexts: appPropertiesValueTable.setStatus('current')
if mibBuilder.loadTexts: appPropertiesValueTable.setDescription("The applications properties value table is used to provide specific values for the applications properties. An entry must be created by setting the entry's apvRowStatus object with createAndGo (4) before setting the name of the property requested. To specify the property set the apvPropertyName objects. The apvPropertyName must be one of the properties from the appPropertiesTable. To remove an entry set the apvRowStatus object with destroy (6). To poll the application property, poll the apvPropertyStringValue, apvPropertyUintValue, or apvPropertyCounter64Value object. The table is cleared when the application is unloaded.")
appPropertiesValueEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "pmoduleIndex"), (0, "PCUBE-SE-MIB", "apvIndex"))
if mibBuilder.loadTexts: appPropertiesValueEntry.setStatus('current')
if mibBuilder.loadTexts: appPropertiesValueEntry.setDescription('A appPropertiesValueTable entry.')
apvIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024)))
if mibBuilder.loadTexts: apvIndex.setStatus('current')
if mibBuilder.loadTexts: apvIndex.setDescription('Index to the table.')
apvPropertyName = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 128))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: apvPropertyName.setStatus('current')
if mibBuilder.loadTexts: apvPropertyName.setDescription('A name that uniquely identifies the application property. Array type properties may be accessed each element at a time in C like format, e.g. x[1], or y[1][2].')
apvRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: apvRowStatus.setStatus('current')
if mibBuilder.loadTexts: apvRowStatus.setDescription('This object controls creation of a table entry.')
apvPropertyStringValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1, 4), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apvPropertyStringValue.setStatus('current')
if mibBuilder.loadTexts: apvPropertyStringValue.setDescription('The value of the application property in display string format.')
apvPropertyUintValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: apvPropertyUintValue.setStatus('current')
if mibBuilder.loadTexts: apvPropertyUintValue.setDescription("The value of the application property in unsigned integer. If the property can't be casted to unsigned integer this object returns zero.")
apvPropertyCounter64Value = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: apvPropertyCounter64Value.setStatus('current')
if mibBuilder.loadTexts: apvPropertyCounter64Value.setDescription("The value of the application property in Counter64 format. If the property can't be casted to Counter64, getting this object returns zero.")
subscribersPropertiesTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 2), )
if mibBuilder.loadTexts: subscribersPropertiesTable.setStatus('current')
if mibBuilder.loadTexts: subscribersPropertiesTable.setDescription('The subscribers properties table provides the list of properties available for each subscriber.')
subscribersPropertiesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 2, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "pmoduleIndex"), (0, "PCUBE-SE-MIB", "spIndex"))
if mibBuilder.loadTexts: subscribersPropertiesEntry.setStatus('current')
if mibBuilder.loadTexts: subscribersPropertiesEntry.setDescription('A subscribersPropertiesTable entry.')
spIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: spIndex.setStatus('current')
if mibBuilder.loadTexts: spIndex.setDescription('An index value that uniquely identify the property.')
spName = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 2, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: spName.setStatus('current')
if mibBuilder.loadTexts: spName.setDescription('Subscriber property name.')
spType = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 2, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: spType.setStatus('current')
if mibBuilder.loadTexts: spType.setDescription('Subscriber application property type in respect to: variable type (integer, boolean, string etc), number of elements (scalar or array) and restrictions if any exist.')
subscribersPropertiesValueTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3), )
if mibBuilder.loadTexts: subscribersPropertiesValueTable.setStatus('current')
if mibBuilder.loadTexts: subscribersPropertiesValueTable.setDescription("The subscribers properties value table is used to provide subscriber properties values for subscribers introduced into the SCE. An entry must be created by setting the entry's spvRowStatus object with createAndGo (4) before setting any other of the entry's objects. To specify the subscriber's property set the spvSubName and spvPropertyName objects. The spvPropertyName must be one of the properties from the subscribersPropertiesTable. To remove an entry set the spvRowStatus object with destroy (6). To poll the subscriber property the manager need to poll the spvPropertyStringValue, the spvPropertyUintValue or the spvPropertyCounter64Value objects. The table is cleared when the application is unloaded.")
subscribersPropertiesValueEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "pmoduleIndex"), (0, "PCUBE-SE-MIB", "spvIndex"))
if mibBuilder.loadTexts: subscribersPropertiesValueEntry.setStatus('current')
if mibBuilder.loadTexts: subscribersPropertiesValueEntry.setDescription('A subscribersPropertiesValueTable entry.')
spvIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4096)))
if mibBuilder.loadTexts: spvIndex.setStatus('current')
if mibBuilder.loadTexts: spvIndex.setDescription('A index to the table.')
spvSubName = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 40))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: spvSubName.setStatus('current')
if mibBuilder.loadTexts: spvSubName.setDescription('A name that uniquely identifies the subscriber.')
spvPropertyName = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 3), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 128))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: spvPropertyName.setStatus('current')
if mibBuilder.loadTexts: spvPropertyName.setDescription('A name that uniquely identifies the subscriber property. Array type properties may be accessed each element at a time in C like format, e.g. x[1], or y[1][2].')
spvRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 4), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: spvRowStatus.setStatus('current')
if mibBuilder.loadTexts: spvRowStatus.setDescription('This object controls creation of a table entry. Only setting the createAndGo (4) and destroy (6) will change the status of the entry.')
spvPropertyStringValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 5), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: spvPropertyStringValue.setStatus('current')
if mibBuilder.loadTexts: spvPropertyStringValue.setDescription('The value of the subscriber property in string format.')
spvPropertyUintValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: spvPropertyUintValue.setStatus('current')
if mibBuilder.loadTexts: spvPropertyUintValue.setDescription("The value of the subscriber property in unsigned integer. If the property can't be casted to unsigned integer this object returns zero.")
spvPropertyCounter64Value = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: spvPropertyCounter64Value.setStatus('current')
if mibBuilder.loadTexts: spvPropertyCounter64Value.setDescription("The value of the subscriber property in Counter64. If the property can't be casted to Counter64 this object returns zero.")
trafficCountersTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14, 1), )
if mibBuilder.loadTexts: trafficCountersTable.setStatus('current')
if mibBuilder.loadTexts: trafficCountersTable.setDescription('The Traffic counters table provides information regarding the value of different the traffic counters.')
trafficCountersEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14, 1, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "pmoduleIndex"), (0, "PCUBE-SE-MIB", "trafficCounterIndex"))
if mibBuilder.loadTexts: trafficCountersEntry.setStatus('current')
if mibBuilder.loadTexts: trafficCountersEntry.setDescription('Entry containing information about a traffic counter.')
trafficCounterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: trafficCounterIndex.setStatus('current')
if mibBuilder.loadTexts: trafficCounterIndex.setDescription('An index value that uniquely identifies the counter.')
trafficCounterValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14, 1, 1, 2), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: trafficCounterValue.setStatus('current')
if mibBuilder.loadTexts: trafficCounterValue.setDescription('A 64 bit counter value.')
trafficCounterName = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14, 1, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: trafficCounterName.setStatus('current')
if mibBuilder.loadTexts: trafficCounterName.setDescription('The name given to this counter.')
trafficCounterType = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("bytes", 2), ("packets", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: trafficCounterType.setStatus('current')
if mibBuilder.loadTexts: trafficCounterType.setDescription("Defines whether there the traffic counters counts by 'packets(3)' or by 'bytes(2)'.")
attackTypeTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1), )
if mibBuilder.loadTexts: attackTypeTable.setStatus('current')
if mibBuilder.loadTexts: attackTypeTable.setDescription('The Attack type table provides information regarding detected attacks, aggregated by attack type.')
attackTypeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "pmoduleIndex"), (0, "PCUBE-SE-MIB", "attackTypeIndex"))
if mibBuilder.loadTexts: attackTypeEntry.setStatus('current')
if mibBuilder.loadTexts: attackTypeEntry.setDescription('Entry containing aggregated information about attacks of a given type.')
attackTypeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: attackTypeIndex.setStatus('current')
if mibBuilder.loadTexts: attackTypeIndex.setDescription('An index value that uniquely identifies the attack type.')
attackTypeName = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1, 2), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: attackTypeName.setStatus('current')
if mibBuilder.loadTexts: attackTypeName.setDescription('The name of this attack type.')
attackTypeCurrentNumAttacks = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: attackTypeCurrentNumAttacks.setStatus('current')
if mibBuilder.loadTexts: attackTypeCurrentNumAttacks.setDescription('The current amount of attacks detected of this type.')
attackTypeTotalNumAttacks = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: attackTypeTotalNumAttacks.setStatus('current')
if mibBuilder.loadTexts: attackTypeTotalNumAttacks.setDescription('The total amount of attacks detected of this type since last clear.')
attackTypeTotalNumFlows = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: attackTypeTotalNumFlows.setStatus('current')
if mibBuilder.loadTexts: attackTypeTotalNumFlows.setDescription('The total amount of flows in attacks detected of this type since last clear.')
attackTypeTotalNumSeconds = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setUnits('Seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: attackTypeTotalNumSeconds.setStatus('current')
if mibBuilder.loadTexts: attackTypeTotalNumSeconds.setDescription('The total duration of attacks detected of this type since last clear.')
vasServerTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16, 1), )
if mibBuilder.loadTexts: vasServerTable.setStatus('current')
if mibBuilder.loadTexts: vasServerTable.setDescription('The VAS server Table provides information on each VAS server operational status.')
vasServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16, 1, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "pmoduleIndex"), (0, "PCUBE-SE-MIB", "vasServerIndex"))
if mibBuilder.loadTexts: vasServerEntry.setStatus('current')
if mibBuilder.loadTexts: vasServerEntry.setDescription('Entry containing information about VAS server status.')
vasServerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vasServerIndex.setStatus('current')
if mibBuilder.loadTexts: vasServerIndex.setDescription('An index value that uniquely identifies a VAS server.')
vasServerId = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vasServerId.setStatus('current')
if mibBuilder.loadTexts: vasServerId.setDescription('The ID of the VAS server.')
vasServerAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("up", 2), ("down", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vasServerAdminStatus.setStatus('current')
if mibBuilder.loadTexts: vasServerAdminStatus.setDescription('Indicates only the administrative status of the VAS sever, in order to activate a server it should be also configured with a VLAN and a group.')
vasServerOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("up", 2), ("down", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vasServerOperStatus.setStatus('current')
if mibBuilder.loadTexts: vasServerOperStatus.setDescription('Indicates the operational status of the VAS sever.')
mplsVpnSoftwareCountersTable = MibTable((1, 3, 6, 1, 4, 1, 5655, 4, 1, 17, 1), )
if mibBuilder.loadTexts: mplsVpnSoftwareCountersTable.setStatus('current')
if mibBuilder.loadTexts: mplsVpnSoftwareCountersTable.setDescription('The MPLS VPN software counters table provides information on various system software counters related to MPLS VPN auto learn.')
mplsVpnSoftwareCountersEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5655, 4, 1, 17, 1, 1), ).setIndexNames((0, "PCUBE-SE-MIB", "pmoduleIndex"))
if mibBuilder.loadTexts: mplsVpnSoftwareCountersEntry.setStatus('current')
if mibBuilder.loadTexts: mplsVpnSoftwareCountersEntry.setDescription('Entry containing information about MPLS VPN auto learn SW counters.')
mplsVpnMaxHWMappings = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 17, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplsVpnMaxHWMappings.setStatus('current')
if mibBuilder.loadTexts: mplsVpnMaxHWMappings.setDescription('The maximum number of MPLS VPN mappings supported by HW (including all kinds of mappings).')
mplsVpnCurrentHWMappings = MibTableColumn((1, 3, 6, 1, 4, 1, 5655, 4, 1, 17, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplsVpnCurrentHWMappings.setStatus('current')
if mibBuilder.loadTexts: mplsVpnCurrentHWMappings.setDescription('The current number of HW MPLS VPN mappings in use.')
pcubeSeEventsGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 3)).setObjects(("PCUBE-SE-MIB", "operationalStatusOperationalTrap"), ("PCUBE-SE-MIB", "operationalStatusWarningTrap"), ("PCUBE-SE-MIB", "operationalStatusFailureTrap"), ("PCUBE-SE-MIB", "systemResetTrap"), ("PCUBE-SE-MIB", "chassisTempAlarmOnTrap"), ("PCUBE-SE-MIB", "chassisTempAlarmOffTrap"), ("PCUBE-SE-MIB", "chassisVoltageAlarmOnTrap"), ("PCUBE-SE-MIB", "chassisFansAlarmOnTrap"), ("PCUBE-SE-MIB", "chassisPowerSupplyAlarmOnTrap"), ("PCUBE-SE-MIB", "rdrActiveConnectionTrap"), ("PCUBE-SE-MIB", "rdrNoActiveConnectionTrap"), ("PCUBE-SE-MIB", "rdrConnectionUpTrap"), ("PCUBE-SE-MIB", "rdrConnectionDownTrap"), ("PCUBE-SE-MIB", "telnetSessionStartedTrap"), ("PCUBE-SE-MIB", "telnetSessionEndedTrap"), ("PCUBE-SE-MIB", "telnetSessionDeniedAccessTrap"), ("PCUBE-SE-MIB", "telnetSessionBadLoginTrap"), ("PCUBE-SE-MIB", "loggerUserLogIsFullTrap"), ("PCUBE-SE-MIB", "sntpClockDriftWarnTrap"), ("PCUBE-SE-MIB", "linkModeBypassTrap"), ("PCUBE-SE-MIB", "linkModeForwardingTrap"), ("PCUBE-SE-MIB", "linkModeCutoffTrap"), ("PCUBE-SE-MIB", "moduleAttackFilterActivatedTrap"), ("PCUBE-SE-MIB", "moduleAttackFilterDeactivatedTrap"), ("PCUBE-SE-MIB", "moduleEmAgentGenericTrap"), ("PCUBE-SE-MIB", "linkModeSniffingTrap"), ("PCUBE-SE-MIB", "moduleRedundancyReadyTrap"), ("PCUBE-SE-MIB", "moduleRedundantConfigurationMismatchTrap"), ("PCUBE-SE-MIB", "moduleLostRedundancyTrap"), ("PCUBE-SE-MIB", "moduleSmConnectionDownTrap"), ("PCUBE-SE-MIB", "moduleSmConnectionUpTrap"), ("PCUBE-SE-MIB", "moduleOperStatusChangeTrap"), ("PCUBE-SE-MIB", "portOperStatusChangeTrap"), ("PCUBE-SE-MIB", "chassisLineFeedAlarmOnTrap"), ("PCUBE-SE-MIB", "rdrFormatterCategoryDiscardingReportsTrap"), ("PCUBE-SE-MIB", "rdrFormatterCategoryStoppedDiscardingReportsTrap"), ("PCUBE-SE-MIB", "sessionStartedTrap"), ("PCUBE-SE-MIB", "sessionEndedTrap"), ("PCUBE-SE-MIB", "sessionDeniedAccessTrap"), ("PCUBE-SE-MIB", "sessionBadLoginTrap"), ("PCUBE-SE-MIB", "illegalSubscriberMappingTrap"), ("PCUBE-SE-MIB", "loggerLineAttackLogFullTrap"), ("PCUBE-SE-MIB", "vasServerOpertionalStatusChangeTrap"), ("PCUBE-SE-MIB", "pullRequestRetryFailedTrap"), ("PCUBE-SE-MIB", "mplsVpnTotalHWMappingsThresholdExceededTrap"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeSeEventsGroup = pcubeSeEventsGroup.setStatus('deprecated')
if mibBuilder.loadTexts: pcubeSeEventsGroup.setDescription('Pcube notifications. Contains deprecated objects.')
pcubeSeEventsGroupRev1 = NotificationGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 4)).setObjects(("PCUBE-SE-MIB", "operationalStatusOperationalTrap"), ("PCUBE-SE-MIB", "operationalStatusWarningTrap"), ("PCUBE-SE-MIB", "operationalStatusFailureTrap"), ("PCUBE-SE-MIB", "systemResetTrap"), ("PCUBE-SE-MIB", "chassisTempAlarmOnTrap"), ("PCUBE-SE-MIB", "chassisTempAlarmOffTrap"), ("PCUBE-SE-MIB", "chassisVoltageAlarmOnTrap"), ("PCUBE-SE-MIB", "chassisFansAlarmOnTrap"), ("PCUBE-SE-MIB", "chassisPowerSupplyAlarmOnTrap"), ("PCUBE-SE-MIB", "rdrActiveConnectionTrap"), ("PCUBE-SE-MIB", "rdrNoActiveConnectionTrap"), ("PCUBE-SE-MIB", "rdrConnectionUpTrap"), ("PCUBE-SE-MIB", "rdrConnectionDownTrap"), ("PCUBE-SE-MIB", "loggerUserLogIsFullTrap"), ("PCUBE-SE-MIB", "sntpClockDriftWarnTrap"), ("PCUBE-SE-MIB", "linkModeBypassTrap"), ("PCUBE-SE-MIB", "linkModeForwardingTrap"), ("PCUBE-SE-MIB", "linkModeCutoffTrap"), ("PCUBE-SE-MIB", "moduleAttackFilterActivatedTrap"), ("PCUBE-SE-MIB", "moduleAttackFilterDeactivatedTrap"), ("PCUBE-SE-MIB", "moduleEmAgentGenericTrap"), ("PCUBE-SE-MIB", "linkModeSniffingTrap"), ("PCUBE-SE-MIB", "moduleRedundancyReadyTrap"), ("PCUBE-SE-MIB", "moduleRedundantConfigurationMismatchTrap"), ("PCUBE-SE-MIB", "moduleLostRedundancyTrap"), ("PCUBE-SE-MIB", "moduleSmConnectionDownTrap"), ("PCUBE-SE-MIB", "moduleSmConnectionUpTrap"), ("PCUBE-SE-MIB", "moduleOperStatusChangeTrap"), ("PCUBE-SE-MIB", "portOperStatusChangeTrap"), ("PCUBE-SE-MIB", "chassisLineFeedAlarmOnTrap"), ("PCUBE-SE-MIB", "rdrFormatterCategoryDiscardingReportsTrap"), ("PCUBE-SE-MIB", "rdrFormatterCategoryStoppedDiscardingReportsTrap"), ("PCUBE-SE-MIB", "sessionStartedTrap"), ("PCUBE-SE-MIB", "sessionEndedTrap"), ("PCUBE-SE-MIB", "sessionDeniedAccessTrap"), ("PCUBE-SE-MIB", "sessionBadLoginTrap"), ("PCUBE-SE-MIB", "illegalSubscriberMappingTrap"), ("PCUBE-SE-MIB", "loggerLineAttackLogFullTrap"), ("PCUBE-SE-MIB", "vasServerOpertionalStatusChangeTrap"), ("PCUBE-SE-MIB", "pullRequestRetryFailedTrap"), ("PCUBE-SE-MIB", "mplsVpnTotalHWMappingsThresholdExceededTrap"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeSeEventsGroupRev1 = pcubeSeEventsGroupRev1.setStatus('current')
if mibBuilder.loadTexts: pcubeSeEventsGroupRev1.setDescription('Pcube notifications.')
pcubeSeEvents = MibIdentifier((1, 3, 6, 1, 4, 1, 5655, 4, 0))
operationalStatusOperationalTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 1)).setObjects(("PCUBE-SE-MIB", "sysOperationalStatus"))
if mibBuilder.loadTexts: operationalStatusOperationalTrap.setStatus('current')
if mibBuilder.loadTexts: operationalStatusOperationalTrap.setDescription("OperationalStatusOperational notification signifies that the agent entity has detected the sysOperationalStatus object in this MIB has changed to 'operational(3)'.")
operationalStatusWarningTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 2)).setObjects(("PCUBE-SE-MIB", "sysOperationalStatus"))
if mibBuilder.loadTexts: operationalStatusWarningTrap.setStatus('current')
if mibBuilder.loadTexts: operationalStatusWarningTrap.setDescription("OperationalStatusWarning notification signifies that the agent entity has detected the sysOperationalStatus object in this MIB has changed to 'warning(4)'.")
operationalStatusFailureTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 3)).setObjects(("PCUBE-SE-MIB", "sysOperationalStatus"))
if mibBuilder.loadTexts: operationalStatusFailureTrap.setStatus('current')
if mibBuilder.loadTexts: operationalStatusFailureTrap.setDescription("OperationalStatusFailure notification signifies that the agent entity has detected the sysOperationalStatus object in this MIB has changed to 'failure(5)'.")
systemResetTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 4))
if mibBuilder.loadTexts: systemResetTrap.setStatus('current')
if mibBuilder.loadTexts: systemResetTrap.setDescription("A systemReset notification signifies that the agent entity is about to reset itself either per user's request or due to a fatal event.")
chassisTempAlarmOnTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 5)).setObjects(("PCUBE-SE-MIB", "pchassisTempAlarm"))
if mibBuilder.loadTexts: chassisTempAlarmOnTrap.setStatus('current')
if mibBuilder.loadTexts: chassisTempAlarmOnTrap.setDescription("A chassisTempAlarmOn notification signifies that the agent entity has detected the chassisTempAlarm object in this MIB has changed to the 'on(3)' state (temperature is too high).")
chassisTempAlarmOffTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 6)).setObjects(("PCUBE-SE-MIB", "pchassisTempAlarm"))
if mibBuilder.loadTexts: chassisTempAlarmOffTrap.setStatus('current')
if mibBuilder.loadTexts: chassisTempAlarmOffTrap.setDescription("A chassisTempAlarmOff notification signifies that the agent entity has detected the chassisTempAlarm object in this MIB has changed to the 'off(2)' state (temperature level is back to normal).")
chassisVoltageAlarmOnTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 7)).setObjects(("PCUBE-SE-MIB", "pchassisVoltageAlarm"))
if mibBuilder.loadTexts: chassisVoltageAlarmOnTrap.setStatus('current')
if mibBuilder.loadTexts: chassisVoltageAlarmOnTrap.setDescription("A chassisVoltageAlarmOn notification signifies that the agent entity has detected the chassisVoltageAlarm object in this MIB has changed to the 'on(3)' state (voltage level is too high).")
chassisFansAlarmOnTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 8)).setObjects(("PCUBE-SE-MIB", "pchassisFansAlarm"))
if mibBuilder.loadTexts: chassisFansAlarmOnTrap.setStatus('current')
if mibBuilder.loadTexts: chassisFansAlarmOnTrap.setDescription("A chassisFanStatusFailure notification signifies that the agent entity has detected the chassisFansAlarm object in this MIB has changed to the 'on(3)' state.")
chassisPowerSupplyAlarmOnTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 9)).setObjects(("PCUBE-SE-MIB", "pchassisPowerSupplyAlarm"))
if mibBuilder.loadTexts: chassisPowerSupplyAlarmOnTrap.setStatus('current')
if mibBuilder.loadTexts: chassisPowerSupplyAlarmOnTrap.setDescription("A chassisPsuStatusFailure notification signifies that the agent entity has detected the chassisPowerSupplyAlarm object in this MIB has changed to the 'on(3)' state.")
rdrActiveConnectionTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 10)).setObjects(("PCUBE-SE-MIB", "rdrFormatterDestIPAddr"), ("PCUBE-SE-MIB", "rdrFormatterDestStatus"))
if mibBuilder.loadTexts: rdrActiveConnectionTrap.setStatus('current')
if mibBuilder.loadTexts: rdrActiveConnectionTrap.setDescription("RdrConnectionDestTypeActive notification signifies that the agent entity has detected the rdrFormatterDestStatus object in this MIB has changed to the 'active(2)' state.")
rdrNoActiveConnectionTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 11))
if mibBuilder.loadTexts: rdrNoActiveConnectionTrap.setStatus('current')
if mibBuilder.loadTexts: rdrNoActiveConnectionTrap.setDescription('A rdrNoActiveConnection notification signifies that the agent entity has detected there is no active connection between the RDR-formatter and any Data Collector.')
rdrConnectionUpTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 12)).setObjects(("PCUBE-SE-MIB", "rdrFormatterDestIPAddr"), ("PCUBE-SE-MIB", "rdrFormatterDestConnectionStatus"))
if mibBuilder.loadTexts: rdrConnectionUpTrap.setStatus('current')
if mibBuilder.loadTexts: rdrConnectionUpTrap.setDescription("RdrConnectionStatusUp notification signifies that the agent entity has detected the rdrFormatterDestConnectionStatus object in this MIB has changed to 'up(2)'.")
rdrConnectionDownTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 13)).setObjects(("PCUBE-SE-MIB", "rdrFormatterDestIPAddr"), ("PCUBE-SE-MIB", "rdrFormatterDestConnectionStatus"))
if mibBuilder.loadTexts: rdrConnectionDownTrap.setStatus('current')
if mibBuilder.loadTexts: rdrConnectionDownTrap.setDescription("RdrConnectionStatusDown notification signifies that the agent entity has detected the rdrFormatterDestConnectionStatus object in this MIB has changed to 'down(3)'.")
telnetSessionStartedTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 14))
if mibBuilder.loadTexts: telnetSessionStartedTrap.setStatus('deprecated')
if mibBuilder.loadTexts: telnetSessionStartedTrap.setDescription('Replaced by the more generic sessionStartedTrap.')
telnetSessionEndedTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 15))
if mibBuilder.loadTexts: telnetSessionEndedTrap.setStatus('deprecated')
if mibBuilder.loadTexts: telnetSessionEndedTrap.setDescription('Replaced by the more generic sessionEndedTrap.')
telnetSessionDeniedAccessTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 16))
if mibBuilder.loadTexts: telnetSessionDeniedAccessTrap.setStatus('deprecated')
if mibBuilder.loadTexts: telnetSessionDeniedAccessTrap.setDescription('Replaced by the more generic sessionDeniedAccessTrap.')
telnetSessionBadLoginTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 17))
if mibBuilder.loadTexts: telnetSessionBadLoginTrap.setStatus('deprecated')
if mibBuilder.loadTexts: telnetSessionBadLoginTrap.setDescription('Replaced by the more generic sessionBadLoginTrap.')
loggerUserLogIsFullTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 18))
if mibBuilder.loadTexts: loggerUserLogIsFullTrap.setStatus('current')
if mibBuilder.loadTexts: loggerUserLogIsFullTrap.setDescription('A loggerUserLogIsFull notification signifies that the agent entity has detected the User log file is full. In such case the agent entity rolls to the next file.')
sntpClockDriftWarnTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 19))
if mibBuilder.loadTexts: sntpClockDriftWarnTrap.setStatus('current')
if mibBuilder.loadTexts: sntpClockDriftWarnTrap.setDescription("An sntpClockDriftWarn notification signifies that the entity's SNTP agent did not receive time update for a long period, this may cause a time drift.")
linkModeBypassTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 20)).setObjects(("PCUBE-SE-MIB", "linkOperMode"))
if mibBuilder.loadTexts: linkModeBypassTrap.setStatus('current')
if mibBuilder.loadTexts: linkModeBypassTrap.setDescription("A linkModeBypass notification signifies that the agent entity has detected that the linkOperMode object in this MIB has changed to 'bypass(2)'.")
linkModeForwardingTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 21)).setObjects(("PCUBE-SE-MIB", "linkOperMode"))
if mibBuilder.loadTexts: linkModeForwardingTrap.setStatus('current')
if mibBuilder.loadTexts: linkModeForwardingTrap.setDescription("A linkModeForwarding notification signifies that the agent entity has detected that the linkOperMode object in this MIB has changed to 'forwarding(3)'.")
linkModeCutoffTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 22)).setObjects(("PCUBE-SE-MIB", "linkOperMode"))
if mibBuilder.loadTexts: linkModeCutoffTrap.setStatus('current')
if mibBuilder.loadTexts: linkModeCutoffTrap.setDescription("A linkModeCutoff notification signifies that the agent entity has detected that the linkOperMode object in this MIB has changed to 'cutoff(4)'.")
pcubeSeEventGenericString1 = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 0, 23), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pcubeSeEventGenericString1.setStatus('current')
if mibBuilder.loadTexts: pcubeSeEventGenericString1.setDescription('Temporary string used for traps. Always returns an empty string.')
pcubeSeEventGenericString2 = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 0, 24), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pcubeSeEventGenericString2.setStatus('current')
if mibBuilder.loadTexts: pcubeSeEventGenericString2.setDescription('Temporary string used for traps. Always returns an empty string.')
moduleAttackFilterActivatedTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 25)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"), ("PCUBE-SE-MIB", "pcubeSeEventGenericString1"))
if mibBuilder.loadTexts: moduleAttackFilterActivatedTrap.setStatus('current')
if mibBuilder.loadTexts: moduleAttackFilterActivatedTrap.setDescription("A moduleAttackFilterActivated notification signifies that the agent entity's attack filter module has activated a filter. The pcubeSeEventGenericString1 is the type of attack-filter, which was activated.")
moduleAttackFilterDeactivatedTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 26)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"), ("PCUBE-SE-MIB", "pcubeSeEventGenericString1"), ("PCUBE-SE-MIB", "pcubeSeEventGenericString2"))
if mibBuilder.loadTexts: moduleAttackFilterDeactivatedTrap.setStatus('current')
if mibBuilder.loadTexts: moduleAttackFilterDeactivatedTrap.setDescription("A portAttackFilterDeactivated notification signifies that the agent entity's attack filter module has removed a filter that was previously activated. The pcubeSeEventGenericString1 is the attack-filter type, which was sent in the corresponding moduleAttackFilterActivatedTrap. the pcubeSeEventGenericString2 is the reason for deactivating the filter.")
moduleEmAgentGenericTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 27)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"), ("PCUBE-SE-MIB", "pcubeSeEventGenericString1"), ("PCUBE-SE-MIB", "pcubeSeEventGenericString2"))
if mibBuilder.loadTexts: moduleEmAgentGenericTrap.setStatus('current')
if mibBuilder.loadTexts: moduleEmAgentGenericTrap.setDescription('A generic notification used by the P-Cube EM agent. pcubeSeEventGenericString1 specifies what notification is it, and pcubeSeEventGenericString2 is the relevant parameter.')
linkModeSniffingTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 28)).setObjects(("PCUBE-SE-MIB", "linkOperMode"))
if mibBuilder.loadTexts: linkModeSniffingTrap.setStatus('current')
if mibBuilder.loadTexts: linkModeSniffingTrap.setDescription("A linkModeSniffing notification signifies that the agent entity has detected that the linkOperMode object in this MIB has changed to 'sniffing(5)'.")
moduleRedundancyReadyTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 29)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"), ("PCUBE-SE-MIB", "pmoduleOperStatus"))
if mibBuilder.loadTexts: moduleRedundancyReadyTrap.setStatus('current')
if mibBuilder.loadTexts: moduleRedundancyReadyTrap.setDescription('A moduleRedundancyReady notification signifies that the module was able to connect and synchronize with a redundant entity, and is now ready to handle fail-over if needed.')
moduleRedundantConfigurationMismatchTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 30)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"))
if mibBuilder.loadTexts: moduleRedundantConfigurationMismatchTrap.setStatus('current')
if mibBuilder.loadTexts: moduleRedundantConfigurationMismatchTrap.setDescription('A moduleRedundantConfigurationMismatch notification signifies that the module was not able to synchronize with a redundant entity, due to a essential configuration parameters that are do not match between the module and the redundant entity.')
moduleLostRedundancyTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 31)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"), ("PCUBE-SE-MIB", "pmoduleOperStatus"))
if mibBuilder.loadTexts: moduleLostRedundancyTrap.setStatus('current')
if mibBuilder.loadTexts: moduleLostRedundancyTrap.setDescription('A moduleLostRedundancy notification signifies that the module has lost the ability to perform the fail-over procedure.')
moduleSmConnectionDownTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 32)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"))
if mibBuilder.loadTexts: moduleSmConnectionDownTrap.setStatus('current')
if mibBuilder.loadTexts: moduleSmConnectionDownTrap.setDescription("A moduleSmConnectionDown notification signifies that the module's virtual connection to the subscriber manager is broken.")
moduleSmConnectionUpTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 33)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"))
if mibBuilder.loadTexts: moduleSmConnectionUpTrap.setStatus('current')
if mibBuilder.loadTexts: moduleSmConnectionUpTrap.setDescription("A moduleSmConnectionUp notification signifies that the module's virtual connection to the subscriber manager is up and working.")
moduleOperStatusChangeTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 34)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"), ("PCUBE-SE-MIB", "pmoduleOperStatus"))
if mibBuilder.loadTexts: moduleOperStatusChangeTrap.setStatus('current')
if mibBuilder.loadTexts: moduleOperStatusChangeTrap.setDescription('A moduleOperStatusChangeTrap notification signifies that the moduleOperStatus has changed its value.')
portOperStatusChangeTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 35)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"), ("PCUBE-SE-MIB", "pportIndex"), ("PCUBE-SE-MIB", "pportOperStatus"))
if mibBuilder.loadTexts: portOperStatusChangeTrap.setStatus('current')
if mibBuilder.loadTexts: portOperStatusChangeTrap.setDescription('A portOperStatusChangeTrap notification signifies that the portOperStatus object of the portIndex has changed its value, i.e., the link was forced down or the force down was released.')
chassisLineFeedAlarmOnTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 36)).setObjects(("PCUBE-SE-MIB", "pchassisLineFeedAlarm"))
if mibBuilder.loadTexts: chassisLineFeedAlarmOnTrap.setStatus('current')
if mibBuilder.loadTexts: chassisLineFeedAlarmOnTrap.setDescription("A chassisLineFeedAlarmOn notification signifies that the agent entity has detected the chassisLineFeed object in this MIB has changed to the 'on(3)' state.")
rdrFormatterCategoryDiscardingReportsTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 37)).setObjects(("PCUBE-SE-MIB", "rdrFormatterCategoryIndex"))
if mibBuilder.loadTexts: rdrFormatterCategoryDiscardingReportsTrap.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryDiscardingReportsTrap.setDescription('rdrCategoryDiscardingReportsTrap notification signifies that the agent entity has detected that reports send to this category are being discarded. The rdrFormatterCategoryNumReportsDiscarded object in this MIB is counting the amount of discarded reports.')
rdrFormatterCategoryStoppedDiscardingReportsTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 38)).setObjects(("PCUBE-SE-MIB", "rdrFormatterCategoryIndex"))
if mibBuilder.loadTexts: rdrFormatterCategoryStoppedDiscardingReportsTrap.setStatus('current')
if mibBuilder.loadTexts: rdrFormatterCategoryStoppedDiscardingReportsTrap.setDescription('rdrCategoryStoppedDiscardingReportsTrap notification signifies that the agent entity has detected that reports send to this category are not being discarded any more. The rdrFormatterCategoryNumReportsDiscarded object in this MIB is counting the amount of discarded reports.')
sessionStartedTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 39)).setObjects(("PCUBE-SE-MIB", "pcubeSeEventGenericString1"))
if mibBuilder.loadTexts: sessionStartedTrap.setStatus('current')
if mibBuilder.loadTexts: sessionStartedTrap.setDescription('A sessionStarted notification signifies that the agent entity has accepted a new session. The pcubeSeEventGenericString1 is the session type (telnet/SSH) and client IP address.')
sessionEndedTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 40)).setObjects(("PCUBE-SE-MIB", "pcubeSeEventGenericString1"))
if mibBuilder.loadTexts: sessionEndedTrap.setStatus('current')
if mibBuilder.loadTexts: sessionEndedTrap.setDescription('A sessionEnded notification signifies that the agent entity has detected end of a session. The pcubeSeEventGenericString1 is the session type (telnet/SSH) and client IP address.')
sessionDeniedAccessTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 41))
if mibBuilder.loadTexts: sessionDeniedAccessTrap.setStatus('current')
if mibBuilder.loadTexts: sessionDeniedAccessTrap.setDescription('A sessionDeniedAccess notification signifies that the agent entity has refused a session from unauthorized source. The pcubeSeEventGenericString1 is the session type (telnet/SSH) and client IP address.')
sessionBadLoginTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 42))
if mibBuilder.loadTexts: sessionBadLoginTrap.setStatus('current')
if mibBuilder.loadTexts: sessionBadLoginTrap.setDescription('A sessionBadLogin notification signifies that the agent entity has detected attempt to login with a wrong password. The pcubeSeEventGenericString1 is the session type (telnet/SSH) and client IP address.')
illegalSubscriberMappingTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 43)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"), ("PCUBE-SE-MIB", "pcubeSeEventGenericString1"))
if mibBuilder.loadTexts: illegalSubscriberMappingTrap.setStatus('current')
if mibBuilder.loadTexts: illegalSubscriberMappingTrap.setDescription('A illegalSubscriberMappingTrap notification signifies that some external entity has attempted to create illegal or inconsistent subscriber mappings. The pcubeSeEventGenericString1 contains a message describing the problem.')
loggerLineAttackLogFullTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 44))
if mibBuilder.loadTexts: loggerLineAttackLogFullTrap.setStatus('current')
if mibBuilder.loadTexts: loggerLineAttackLogFullTrap.setDescription('Signifies that the agent entity has detected the line-attack log file is full. In such case the agent entity rolls to the next file.')
vasServerOpertionalStatusChangeTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 45)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"), ("PCUBE-SE-MIB", "vasServerIndex"), ("PCUBE-SE-MIB", "vasServerId"), ("PCUBE-SE-MIB", "vasServerOperStatus"))
if mibBuilder.loadTexts: vasServerOpertionalStatusChangeTrap.setStatus('current')
if mibBuilder.loadTexts: vasServerOpertionalStatusChangeTrap.setDescription('Signifies that the agent entity has detected that the vas server operational status has changed.')
pullRequestNumber = MibScalar((1, 3, 6, 1, 4, 1, 5655, 4, 0, 46), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pullRequestNumber.setStatus('current')
if mibBuilder.loadTexts: pullRequestNumber.setDescription('Used only for traps to signify the number of pull requests issued so far for the anonymous subscriber given in the pullRequestRetryFailedTrap containing notification. A direct get will always returns 0.')
pullRequestRetryFailedTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 47)).setObjects(("PCUBE-SE-MIB", "pcubeSeEventGenericString1"), ("PCUBE-SE-MIB", "pullRequestNumber"))
if mibBuilder.loadTexts: pullRequestRetryFailedTrap.setStatus('current')
if mibBuilder.loadTexts: pullRequestRetryFailedTrap.setDescription("Signifies that an unknown subscriber wasn't identified after a certain number of pull requests. The value of pcubeSeEventGenericString1 is the subscriber id and the pullRequestNumber is the number of pull requests made on this sub.")
mplsVpnTotalHWMappingsThresholdExceededTrap = NotificationType((1, 3, 6, 1, 4, 1, 5655, 4, 0, 48)).setObjects(("PCUBE-SE-MIB", "mplsVpnCurrentHWMappings"))
if mibBuilder.loadTexts: mplsVpnTotalHWMappingsThresholdExceededTrap.setStatus('current')
if mibBuilder.loadTexts: mplsVpnTotalHWMappingsThresholdExceededTrap.setDescription('Sent when the value of mplsVpnCurrentHWMappings exceeds the allowed threshold.')
pcubeCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 2, 1)).setObjects(("PCUBE-SE-MIB", "pcubeSystemGroup"), ("PCUBE-SE-MIB", "pcubeChassisGroup"), ("PCUBE-SE-MIB", "pcuebModuleGroup"), ("PCUBE-SE-MIB", "pcubeLinkGroup"), ("PCUBE-SE-MIB", "pcubeDiskGroup"), ("PCUBE-SE-MIB", "pcubeRdrFormatterGroup"), ("PCUBE-SE-MIB", "pcubeLoggerGroup"), ("PCUBE-SE-MIB", "pcubeSubscribersGroup"), ("PCUBE-SE-MIB", "pcubeTrafficProcessorGroup"), ("PCUBE-SE-MIB", "pcubePortGroup"), ("PCUBE-SE-MIB", "pcubeTxQueuesGroup"), ("PCUBE-SE-MIB", "pcubeGlobalControllersGroup"), ("PCUBE-SE-MIB", "pcubeApplicationGroup"), ("PCUBE-SE-MIB", "pcubeTrafficCountersGroup"), ("PCUBE-SE-MIB", "pcubeAttackGroup"), ("PCUBE-SE-MIB", "pcubeVasTrafficForwardingGroup"), ("PCUBE-SE-MIB", "pcubeTrapObjectsGroup"), ("PCUBE-SE-MIB", "pcubeMplsVpnAutoLearnGroup"), ("PCUBE-SE-MIB", "pcubeSeEventsGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeCompliance = pcubeCompliance.setStatus('deprecated')
if mibBuilder.loadTexts: pcubeCompliance.setDescription('A compliance statement defined in this MIB module, for SCE SNMP agents. with old deprectated groups. This compliance includes deprecated groups.')
pcubeComplianceRev1 = ModuleCompliance((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 2, 2)).setObjects(("PCUBE-SE-MIB", "pcubeSystemGroup"), ("PCUBE-SE-MIB", "pcubeChassisGroup"), ("PCUBE-SE-MIB", "pcuebModuleGroup"), ("PCUBE-SE-MIB", "pcubeLinkGroup"), ("PCUBE-SE-MIB", "pcubeDiskGroup"), ("PCUBE-SE-MIB", "pcubeRdrFormatterGroup"), ("PCUBE-SE-MIB", "pcubeLoggerGroup"), ("PCUBE-SE-MIB", "pcubeSubscribersGroup"), ("PCUBE-SE-MIB", "pcubeTrafficProcessorGroup"), ("PCUBE-SE-MIB", "pcubePortGroup"), ("PCUBE-SE-MIB", "pcubeTxQueuesGroup"), ("PCUBE-SE-MIB", "pcubeGlobalControllersGroup"), ("PCUBE-SE-MIB", "pcubeApplicationGroup"), ("PCUBE-SE-MIB", "pcubeTrafficCountersGroup"), ("PCUBE-SE-MIB", "pcubeAttackGroup"), ("PCUBE-SE-MIB", "pcubeVasTrafficForwardingGroup"), ("PCUBE-SE-MIB", "pcubeTrapObjectsGroup"), ("PCUBE-SE-MIB", "pcubeMplsVpnAutoLearnGroup"), ("PCUBE-SE-MIB", "pcubeSeEventsGroupRev1"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeComplianceRev1 = pcubeComplianceRev1.setStatus('current')
if mibBuilder.loadTexts: pcubeComplianceRev1.setDescription('A compliance statement defined in this MIB module, for SCE SNMP agents.')
pcubeSystemGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 1)).setObjects(("PCUBE-SE-MIB", "sysOperationalStatus"), ("PCUBE-SE-MIB", "sysFailureRecovery"), ("PCUBE-SE-MIB", "sysVersion"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeSystemGroup = pcubeSystemGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeSystemGroup.setDescription('System related inforamation.')
pcubeChassisGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 2)).setObjects(("PCUBE-SE-MIB", "pchassisSysType"), ("PCUBE-SE-MIB", "pchassisPowerSupplyAlarm"), ("PCUBE-SE-MIB", "pchassisFansAlarm"), ("PCUBE-SE-MIB", "pchassisTempAlarm"), ("PCUBE-SE-MIB", "pchassisVoltageAlarm"), ("PCUBE-SE-MIB", "pchassisNumSlots"), ("PCUBE-SE-MIB", "pchassisSlotConfig"), ("PCUBE-SE-MIB", "pchassisPsuType"), ("PCUBE-SE-MIB", "pchassisLineFeedAlarm"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeChassisGroup = pcubeChassisGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeChassisGroup.setDescription('Chassis related information.')
pcuebModuleGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 3)).setObjects(("PCUBE-SE-MIB", "pmoduleIndex"), ("PCUBE-SE-MIB", "pmoduleType"), ("PCUBE-SE-MIB", "pmoduleNumTrafficProcessors"), ("PCUBE-SE-MIB", "pmoduleSlotNum"), ("PCUBE-SE-MIB", "pmoduleHwVersion"), ("PCUBE-SE-MIB", "pmoduleNumPorts"), ("PCUBE-SE-MIB", "pmoduleNumLinks"), ("PCUBE-SE-MIB", "pmoduleConnectionMode"), ("PCUBE-SE-MIB", "pmoduleSerialNumber"), ("PCUBE-SE-MIB", "pmoduleUpStreamAttackFilteringTime"), ("PCUBE-SE-MIB", "pmoduleUpStreamLastAttackFilteringTime"), ("PCUBE-SE-MIB", "pmoduleDownStreamAttackFilteringTime"), ("PCUBE-SE-MIB", "pmoduleDownStreamLastAttackFilteringTime"), ("PCUBE-SE-MIB", "pmoduleAttackObjectsClearTime"), ("PCUBE-SE-MIB", "pmoduleAdminStatus"), ("PCUBE-SE-MIB", "pmoduleOperStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcuebModuleGroup = pcuebModuleGroup.setStatus('current')
if mibBuilder.loadTexts: pcuebModuleGroup.setDescription('Module related information.')
pcubeLinkGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 4)).setObjects(("PCUBE-SE-MIB", "linkModuleIndex"), ("PCUBE-SE-MIB", "linkIndex"), ("PCUBE-SE-MIB", "linkAdminModeOnActive"), ("PCUBE-SE-MIB", "linkAdminModeOnFailure"), ("PCUBE-SE-MIB", "linkOperMode"), ("PCUBE-SE-MIB", "linkStatusReflectionEnable"), ("PCUBE-SE-MIB", "linkSubscriberSidePortIndex"), ("PCUBE-SE-MIB", "linkNetworkSidePortIndex"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeLinkGroup = pcubeLinkGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeLinkGroup.setDescription('Link related information.')
pcubeDiskGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 5)).setObjects(("PCUBE-SE-MIB", "diskNumUsedBytes"), ("PCUBE-SE-MIB", "diskNumFreeBytes"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeDiskGroup = pcubeDiskGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeDiskGroup.setDescription('Disk related information.')
pcubeRdrFormatterGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 6)).setObjects(("PCUBE-SE-MIB", "rdrFormatterEnable"), ("PCUBE-SE-MIB", "rdrFormatterDestIPAddr"), ("PCUBE-SE-MIB", "rdrFormatterDestPort"), ("PCUBE-SE-MIB", "rdrFormatterDestPriority"), ("PCUBE-SE-MIB", "rdrFormatterDestStatus"), ("PCUBE-SE-MIB", "rdrFormatterDestConnectionStatus"), ("PCUBE-SE-MIB", "rdrFormatterDestNumReportsSent"), ("PCUBE-SE-MIB", "rdrFormatterDestNumReportsDiscarded"), ("PCUBE-SE-MIB", "rdrFormatterDestReportRate"), ("PCUBE-SE-MIB", "rdrFormatterDestReportRatePeak"), ("PCUBE-SE-MIB", "rdrFormatterDestReportRatePeakTime"), ("PCUBE-SE-MIB", "rdrFormatterNumReportsSent"), ("PCUBE-SE-MIB", "rdrFormatterNumReportsDiscarded"), ("PCUBE-SE-MIB", "rdrFormatterClearCountersTime"), ("PCUBE-SE-MIB", "rdrFormatterReportRate"), ("PCUBE-SE-MIB", "rdrFormatterReportRatePeak"), ("PCUBE-SE-MIB", "rdrFormatterReportRatePeakTime"), ("PCUBE-SE-MIB", "rdrFormatterProtocol"), ("PCUBE-SE-MIB", "rdrFormatterForwardingMode"), ("PCUBE-SE-MIB", "rdrFormatterCategoryDestPriority"), ("PCUBE-SE-MIB", "rdrFormatterCategoryDestStatus"), ("PCUBE-SE-MIB", "rdrFormatterCategoryIndex"), ("PCUBE-SE-MIB", "rdrFormatterCategoryName"), ("PCUBE-SE-MIB", "rdrFormatterCategoryNumReportsSent"), ("PCUBE-SE-MIB", "rdrFormatterCategoryNumReportsDiscarded"), ("PCUBE-SE-MIB", "rdrFormatterCategoryReportRate"), ("PCUBE-SE-MIB", "rdrFormatterCategoryReportRatePeak"), ("PCUBE-SE-MIB", "rdrFormatterCategoryReportRatePeakTime"), ("PCUBE-SE-MIB", "rdrFormatterCategoryNumReportsQueued"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeRdrFormatterGroup = pcubeRdrFormatterGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeRdrFormatterGroup.setDescription('RDR-Formatter related information.')
pcubeLoggerGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 7)).setObjects(("PCUBE-SE-MIB", "loggerUserLogEnable"), ("PCUBE-SE-MIB", "loggerUserLogNumInfo"), ("PCUBE-SE-MIB", "loggerUserLogNumWarning"), ("PCUBE-SE-MIB", "loggerUserLogNumError"), ("PCUBE-SE-MIB", "loggerUserLogNumFatal"), ("PCUBE-SE-MIB", "loggerUserLogClearCountersTime"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeLoggerGroup = pcubeLoggerGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeLoggerGroup.setDescription('Logger related information.')
pcubeSubscribersGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 8)).setObjects(("PCUBE-SE-MIB", "subscribersNumIntroduced"), ("PCUBE-SE-MIB", "subscribersNumFree"), ("PCUBE-SE-MIB", "subscribersNumIpAddrMappings"), ("PCUBE-SE-MIB", "subscribersNumIpAddrMappingsFree"), ("PCUBE-SE-MIB", "subscribersNumIpRangeMappings"), ("PCUBE-SE-MIB", "subscribersNumIpRangeMappingsFree"), ("PCUBE-SE-MIB", "subscribersNumVlanMappings"), ("PCUBE-SE-MIB", "subscribersNumVlanMappingsFree"), ("PCUBE-SE-MIB", "subscribersNumActive"), ("PCUBE-SE-MIB", "subscribersNumActivePeak"), ("PCUBE-SE-MIB", "subscribersNumActivePeakTime"), ("PCUBE-SE-MIB", "subscribersNumUpdates"), ("PCUBE-SE-MIB", "subscribersCountersClearTime"), ("PCUBE-SE-MIB", "subscribersNumTpIpRanges"), ("PCUBE-SE-MIB", "subscribersNumTpIpRangesFree"), ("PCUBE-SE-MIB", "subscribersNumAnonymous"), ("PCUBE-SE-MIB", "subscribersNumWithSessions"), ("PCUBE-SE-MIB", "spIndex"), ("PCUBE-SE-MIB", "spName"), ("PCUBE-SE-MIB", "spType"), ("PCUBE-SE-MIB", "spvSubName"), ("PCUBE-SE-MIB", "spvPropertyName"), ("PCUBE-SE-MIB", "spvRowStatus"), ("PCUBE-SE-MIB", "spvPropertyStringValue"), ("PCUBE-SE-MIB", "spvPropertyUintValue"), ("PCUBE-SE-MIB", "spvPropertyCounter64Value"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeSubscribersGroup = pcubeSubscribersGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeSubscribersGroup.setDescription('Subscriber related information.')
pcubeTrafficProcessorGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 9)).setObjects(("PCUBE-SE-MIB", "tpModuleIndex"), ("PCUBE-SE-MIB", "tpIndex"), ("PCUBE-SE-MIB", "tpTotalNumHandledPackets"), ("PCUBE-SE-MIB", "tpTotalNumHandledFlows"), ("PCUBE-SE-MIB", "tpNumActiveFlows"), ("PCUBE-SE-MIB", "tpNumActiveFlowsPeak"), ("PCUBE-SE-MIB", "tpNumActiveFlowsPeakTime"), ("PCUBE-SE-MIB", "tpNumTcpActiveFlows"), ("PCUBE-SE-MIB", "tpNumTcpActiveFlowsPeak"), ("PCUBE-SE-MIB", "tpNumTcpActiveFlowsPeakTime"), ("PCUBE-SE-MIB", "tpNumUdpActiveFlows"), ("PCUBE-SE-MIB", "tpNumUdpActiveFlowsPeak"), ("PCUBE-SE-MIB", "tpNumUdpActiveFlowsPeakTime"), ("PCUBE-SE-MIB", "tpNumNonTcpUdpActiveFlows"), ("PCUBE-SE-MIB", "tpNumNonTcpUdpActiveFlowsPeak"), ("PCUBE-SE-MIB", "tpNumNonTcpUdpActiveFlowsPeakTime"), ("PCUBE-SE-MIB", "tpTotalNumBlockedPackets"), ("PCUBE-SE-MIB", "tpTotalNumBlockedFlows"), ("PCUBE-SE-MIB", "tpTotalNumDiscardedPacketsDueToBwLimit"), ("PCUBE-SE-MIB", "tpTotalNumWredDiscardedPackets"), ("PCUBE-SE-MIB", "tpTotalNumFragments"), ("PCUBE-SE-MIB", "tpTotalNumNonIpPackets"), ("PCUBE-SE-MIB", "tpTotalNumIpCrcErrPackets"), ("PCUBE-SE-MIB", "tpTotalNumIpLengthErrPackets"), ("PCUBE-SE-MIB", "tpTotalNumIpBroadcastPackets"), ("PCUBE-SE-MIB", "tpTotalNumTtlErrPackets"), ("PCUBE-SE-MIB", "tpTotalNumTcpUdpCrcErrPackets"), ("PCUBE-SE-MIB", "tpClearCountersTime"), ("PCUBE-SE-MIB", "tpHandledPacketsRate"), ("PCUBE-SE-MIB", "tpHandledPacketsRatePeak"), ("PCUBE-SE-MIB", "tpHandledPacketsRatePeakTime"), ("PCUBE-SE-MIB", "tpHandledFlowsRate"), ("PCUBE-SE-MIB", "tpHandledFlowsRatePeak"), ("PCUBE-SE-MIB", "tpHandledFlowsRatePeakTime"), ("PCUBE-SE-MIB", "tpCpuUtilization"), ("PCUBE-SE-MIB", "tpCpuUtilizationPeak"), ("PCUBE-SE-MIB", "tpCpuUtilizationPeakTime"), ("PCUBE-SE-MIB", "tpFlowsCapacityUtilization"), ("PCUBE-SE-MIB", "tpFlowsCapacityUtilizationPeak"), ("PCUBE-SE-MIB", "tpFlowsCapacityUtilizationPeakTime"), ("PCUBE-SE-MIB", "tpServiceLoss"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeTrafficProcessorGroup = pcubeTrafficProcessorGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeTrafficProcessorGroup.setDescription('Traffic processors related information.')
pcubePortGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 10)).setObjects(("PCUBE-SE-MIB", "pportModuleIndex"), ("PCUBE-SE-MIB", "pportIndex"), ("PCUBE-SE-MIB", "pportType"), ("PCUBE-SE-MIB", "pportNumTxQueues"), ("PCUBE-SE-MIB", "pportIfIndex"), ("PCUBE-SE-MIB", "pportAdminSpeed"), ("PCUBE-SE-MIB", "pportAdminDuplex"), ("PCUBE-SE-MIB", "pportOperDuplex"), ("PCUBE-SE-MIB", "pportLinkIndex"), ("PCUBE-SE-MIB", "pportOperStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubePortGroup = pcubePortGroup.setStatus('current')
if mibBuilder.loadTexts: pcubePortGroup.setDescription('Ports related information.')
pcubeTxQueuesGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 11)).setObjects(("PCUBE-SE-MIB", "txQueuesModuleIndex"), ("PCUBE-SE-MIB", "txQueuesPortIndex"), ("PCUBE-SE-MIB", "txQueuesQueueIndex"), ("PCUBE-SE-MIB", "txQueuesDescription"), ("PCUBE-SE-MIB", "txQueuesBandwidth"), ("PCUBE-SE-MIB", "txQueuesUtilization"), ("PCUBE-SE-MIB", "txQueuesUtilizationPeak"), ("PCUBE-SE-MIB", "txQueuesUtilizationPeakTime"), ("PCUBE-SE-MIB", "txQueuesClearCountersTime"), ("PCUBE-SE-MIB", "txQueuesDroppedBytes"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeTxQueuesGroup = pcubeTxQueuesGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeTxQueuesGroup.setDescription('Tx queue related information')
pcubeGlobalControllersGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 12)).setObjects(("PCUBE-SE-MIB", "globalControllersModuleIndex"), ("PCUBE-SE-MIB", "globalControllersPortIndex"), ("PCUBE-SE-MIB", "globalControllersIndex"), ("PCUBE-SE-MIB", "globalControllersDescription"), ("PCUBE-SE-MIB", "globalControllersBandwidth"), ("PCUBE-SE-MIB", "globalControllersUtilization"), ("PCUBE-SE-MIB", "globalControllersUtilizationPeak"), ("PCUBE-SE-MIB", "globalControllersUtilizationPeakTime"), ("PCUBE-SE-MIB", "globalControllersClearCountersTime"), ("PCUBE-SE-MIB", "globalControllersDroppedBytes"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeGlobalControllersGroup = pcubeGlobalControllersGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeGlobalControllersGroup.setDescription('Global controllers related information.')
pcubeApplicationGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 13)).setObjects(("PCUBE-SE-MIB", "appName"), ("PCUBE-SE-MIB", "appDescription"), ("PCUBE-SE-MIB", "appVersion"), ("PCUBE-SE-MIB", "apIndex"), ("PCUBE-SE-MIB", "apName"), ("PCUBE-SE-MIB", "apType"), ("PCUBE-SE-MIB", "apvPropertyName"), ("PCUBE-SE-MIB", "apvRowStatus"), ("PCUBE-SE-MIB", "apvPropertyStringValue"), ("PCUBE-SE-MIB", "apvPropertyUintValue"), ("PCUBE-SE-MIB", "apvPropertyCounter64Value"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeApplicationGroup = pcubeApplicationGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeApplicationGroup.setDescription('Application related information.')
pcubeTrafficCountersGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 14)).setObjects(("PCUBE-SE-MIB", "trafficCounterIndex"), ("PCUBE-SE-MIB", "trafficCounterValue"), ("PCUBE-SE-MIB", "trafficCounterName"), ("PCUBE-SE-MIB", "trafficCounterType"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeTrafficCountersGroup = pcubeTrafficCountersGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeTrafficCountersGroup.setDescription('Traffic counter related information.')
pcubeAttackGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 15)).setObjects(("PCUBE-SE-MIB", "attackTypeIndex"), ("PCUBE-SE-MIB", "attackTypeName"), ("PCUBE-SE-MIB", "attackTypeCurrentNumAttacks"), ("PCUBE-SE-MIB", "attackTypeTotalNumAttacks"), ("PCUBE-SE-MIB", "attackTypeTotalNumFlows"), ("PCUBE-SE-MIB", "attackTypeTotalNumSeconds"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeAttackGroup = pcubeAttackGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeAttackGroup.setDescription('Attacks related information.')
pcubeVasTrafficForwardingGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 16)).setObjects(("PCUBE-SE-MIB", "vasServerIndex"), ("PCUBE-SE-MIB", "vasServerId"), ("PCUBE-SE-MIB", "vasServerAdminStatus"), ("PCUBE-SE-MIB", "vasServerOperStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeVasTrafficForwardingGroup = pcubeVasTrafficForwardingGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeVasTrafficForwardingGroup.setDescription('VAS traffic forwarding related information.')
pcubeMplsVpnAutoLearnGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 17)).setObjects(("PCUBE-SE-MIB", "mplsVpnMaxHWMappings"), ("PCUBE-SE-MIB", "mplsVpnCurrentHWMappings"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeMplsVpnAutoLearnGroup = pcubeMplsVpnAutoLearnGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeMplsVpnAutoLearnGroup.setDescription('MPLS VPN auto learning related information.')
pcubeTrapObjectsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 18)).setObjects(("PCUBE-SE-MIB", "pcubeSeEventGenericString1"), ("PCUBE-SE-MIB", "pcubeSeEventGenericString2"), ("PCUBE-SE-MIB", "pullRequestNumber"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcubeTrapObjectsGroup = pcubeTrapObjectsGroup.setStatus('current')
if mibBuilder.loadTexts: pcubeTrapObjectsGroup.setDescription("Notifications' objects group.")
mibBuilder.exportSymbols("PCUBE-SE-MIB", pcubeSEObjs=pcubeSEObjs, appInfoTable=appInfoTable, pcubeTrapObjectsGroup=pcubeTrapObjectsGroup, pcubeCompliance=pcubeCompliance, pullRequestNumber=pullRequestNumber, pcubeTrafficProcessorGroup=pcubeTrafficProcessorGroup, vasServerIndex=vasServerIndex, rdrFormatterDestPriority=rdrFormatterDestPriority, tpHandledFlowsRate=tpHandledFlowsRate, rdrFormatterGrp=rdrFormatterGrp, globalControllersGrp=globalControllersGrp, pmoduleHwVersion=pmoduleHwVersion, attackTypeTotalNumSeconds=attackTypeTotalNumSeconds, spType=spType, rdrFormatterCategoryEntry=rdrFormatterCategoryEntry, rdrFormatterCategoryIndex=rdrFormatterCategoryIndex, tpHandledPacketsRatePeakTime=tpHandledPacketsRatePeakTime, pcubeGlobalControllersGroup=pcubeGlobalControllersGroup, chassisTempAlarmOffTrap=chassisTempAlarmOffTrap, pchassisSlotConfig=pchassisSlotConfig, tpCpuUtilization=tpCpuUtilization, telnetSessionDeniedAccessTrap=telnetSessionDeniedAccessTrap, pcubeSeCompliances=pcubeSeCompliances, sessionDeniedAccessTrap=sessionDeniedAccessTrap, appPropertiesTable=appPropertiesTable, subscribersNumWithSessions=subscribersNumWithSessions, subscribersPropertiesValueTable=subscribersPropertiesValueTable, illegalSubscriberMappingTrap=illegalSubscriberMappingTrap, vasServerId=vasServerId, trafficProcessorGrp=trafficProcessorGrp, rdrNoActiveConnectionTrap=rdrNoActiveConnectionTrap, pportTable=pportTable, linkAdminModeOnActive=linkAdminModeOnActive, vasServerEntry=vasServerEntry, globalControllersEntry=globalControllersEntry, linkSubscriberSidePortIndex=linkSubscriberSidePortIndex, tpFlowsCapacityUtilizationPeak=tpFlowsCapacityUtilizationPeak, rdrFormatterDestNumReportsDiscarded=rdrFormatterDestNumReportsDiscarded, pchassisPsuType=pchassisPsuType, LinkModeType=LinkModeType, trafficCountersEntry=trafficCountersEntry, pcubeMplsVpnAutoLearnGroup=pcubeMplsVpnAutoLearnGroup, pcubeSeMIB=pcubeSeMIB, pportGrp=pportGrp, rdrFormatterNumReportsSent=rdrFormatterNumReportsSent, subscribersNumIpRangeMappingsFree=subscribersNumIpRangeMappingsFree, moduleOperStatusChangeTrap=moduleOperStatusChangeTrap, pcubeSeGroups=pcubeSeGroups, tpFlowsCapacityUtilizationPeakTime=tpFlowsCapacityUtilizationPeakTime, rdrFormatterCategoryDestPriority=rdrFormatterCategoryDestPriority, linkModeBypassTrap=linkModeBypassTrap, moduleLostRedundancyTrap=moduleLostRedundancyTrap, subscribersNumIpAddrMappings=subscribersNumIpAddrMappings, pportEntry=pportEntry, tpTotalNumIpLengthErrPackets=tpTotalNumIpLengthErrPackets, tpTotalNumNonIpPackets=tpTotalNumNonIpPackets, pcubeChassisGroup=pcubeChassisGroup, pmoduleNumLinks=pmoduleNumLinks, subscribersNumTpIpRanges=subscribersNumTpIpRanges, rdrFormatterCategoryName=rdrFormatterCategoryName, telnetSessionStartedTrap=telnetSessionStartedTrap, pcubeSystemGroup=pcubeSystemGroup, appName=appName, pmoduleAdminStatus=pmoduleAdminStatus, pchassisTempAlarm=pchassisTempAlarm, pcubeComplianceRev1=pcubeComplianceRev1, pportNumTxQueues=pportNumTxQueues, rdrFormatterCategoryDestTable=rdrFormatterCategoryDestTable, attackTypeTotalNumAttacks=attackTypeTotalNumAttacks, tpTotalNumDiscardedPacketsDueToBwLimit=tpTotalNumDiscardedPacketsDueToBwLimit, txQueuesBandwidth=txQueuesBandwidth, spvSubName=spvSubName, operationalStatusOperationalTrap=operationalStatusOperationalTrap, txQueuesUtilizationPeakTime=txQueuesUtilizationPeakTime, rdrFormatterCategoryStoppedDiscardingReportsTrap=rdrFormatterCategoryStoppedDiscardingReportsTrap, linkIndex=linkIndex, rdrFormatterCategoryNumReportsQueued=rdrFormatterCategoryNumReportsQueued, tpHandledPacketsRate=tpHandledPacketsRate, attackTypeTotalNumFlows=attackTypeTotalNumFlows, subscribersNumActivePeak=subscribersNumActivePeak, vasServerTable=vasServerTable, subscribersInfoEntry=subscribersInfoEntry, appVersion=appVersion, apIndex=apIndex, moduleEmAgentGenericTrap=moduleEmAgentGenericTrap, tpIndex=tpIndex, appPropertiesValueEntry=appPropertiesValueEntry, pportOperDuplex=pportOperDuplex, pcubeSeEventGenericString2=pcubeSeEventGenericString2, trafficCounterType=trafficCounterType, spIndex=spIndex, attackTypeCurrentNumAttacks=attackTypeCurrentNumAttacks, pchassisNumSlots=pchassisNumSlots, pportType=pportType, mplsVpnSoftwareCountersTable=mplsVpnSoftwareCountersTable, chassisFansAlarmOnTrap=chassisFansAlarmOnTrap, loggerUserLogNumInfo=loggerUserLogNumInfo, linkStatusReflectionEnable=linkStatusReflectionEnable, tpInfoEntry=tpInfoEntry, rdrFormatterDestNumReportsSent=rdrFormatterDestNumReportsSent, tpCpuUtilizationPeak=tpCpuUtilizationPeak, apType=apType, pmoduleGrp=pmoduleGrp, tpNumTcpActiveFlowsPeakTime=tpNumTcpActiveFlowsPeakTime, pportOperStatus=pportOperStatus, rdrConnectionDownTrap=rdrConnectionDownTrap, rdrFormatterProtocol=rdrFormatterProtocol, mplsVpnAutoLearnGrp=mplsVpnAutoLearnGrp, tpNumActiveFlowsPeak=tpNumActiveFlowsPeak, apvPropertyCounter64Value=apvPropertyCounter64Value, subscribersNumIpRangeMappings=subscribersNumIpRangeMappings, pcubeSeEventsGroupRev1=pcubeSeEventsGroupRev1, mplsVpnTotalHWMappingsThresholdExceededTrap=mplsVpnTotalHWMappingsThresholdExceededTrap, pmoduleTable=pmoduleTable, rdrFormatterCategoryTable=rdrFormatterCategoryTable, globalControllersUtilizationPeak=globalControllersUtilizationPeak, loggerUserLogNumWarning=loggerUserLogNumWarning, txQueuesPortIndex=txQueuesPortIndex, rdrFormatterDestTable=rdrFormatterDestTable, subscribersNumActive=subscribersNumActive, rdrFormatterCategoryDestEntry=rdrFormatterCategoryDestEntry, moduleAttackFilterDeactivatedTrap=moduleAttackFilterDeactivatedTrap, tpClearCountersTime=tpClearCountersTime, vasServerOpertionalStatusChangeTrap=vasServerOpertionalStatusChangeTrap, pmoduleAttackObjectsClearTime=pmoduleAttackObjectsClearTime, diskNumFreeBytes=diskNumFreeBytes, pmoduleOperStatus=pmoduleOperStatus, spName=spName, pcubePortGroup=pcubePortGroup, trafficCounterName=trafficCounterName, loggerUserLogClearCountersTime=loggerUserLogClearCountersTime, subscribersInfoTable=subscribersInfoTable, rdrFormatterDestReportRate=rdrFormatterDestReportRate, tpNumActiveFlowsPeakTime=tpNumActiveFlowsPeakTime, operationalStatusFailureTrap=operationalStatusFailureTrap, rdrFormatterReportRate=rdrFormatterReportRate, operationalStatusWarningTrap=operationalStatusWarningTrap, pmoduleUpStreamLastAttackFilteringTime=pmoduleUpStreamLastAttackFilteringTime, linkModuleIndex=linkModuleIndex, rdrFormatterCategoryReportRate=rdrFormatterCategoryReportRate, tpNumActiveFlows=tpNumActiveFlows, pcubeTrafficCountersGroup=pcubeTrafficCountersGroup, trafficCountersGrp=trafficCountersGrp, diskNumUsedBytes=diskNumUsedBytes, tpNumUdpActiveFlowsPeakTime=tpNumUdpActiveFlowsPeakTime, pcubeRdrFormatterGroup=pcubeRdrFormatterGroup, linkTable=linkTable, pportAdminSpeed=pportAdminSpeed, pcubeDiskGroup=pcubeDiskGroup, vasTrafficForwardingGrp=vasTrafficForwardingGrp, tpNumNonTcpUdpActiveFlowsPeakTime=tpNumNonTcpUdpActiveFlowsPeakTime, linkModeCutoffTrap=linkModeCutoffTrap, rdrFormatterDestEntry=rdrFormatterDestEntry, rdrFormatterForwardingMode=rdrFormatterForwardingMode, pchassisSysType=pchassisSysType, pportModuleIndex=pportModuleIndex, sessionBadLoginTrap=sessionBadLoginTrap, pmoduleNumPorts=pmoduleNumPorts, loggerUserLogIsFullTrap=loggerUserLogIsFullTrap, tpServiceLoss=tpServiceLoss, chassisLineFeedAlarmOnTrap=chassisLineFeedAlarmOnTrap, rdrFormatterClearCountersTime=rdrFormatterClearCountersTime, tpFlowsCapacityUtilization=tpFlowsCapacityUtilization, linkOperMode=linkOperMode, mplsVpnCurrentHWMappings=mplsVpnCurrentHWMappings, pmoduleDownStreamAttackFilteringTime=pmoduleDownStreamAttackFilteringTime, txQueuesModuleIndex=txQueuesModuleIndex, loggerUserLogNumError=loggerUserLogNumError, appPropertiesEntry=appPropertiesEntry, tpTotalNumTcpUdpCrcErrPackets=tpTotalNumTcpUdpCrcErrPackets, subscribersGrp=subscribersGrp, trafficCountersTable=trafficCountersTable, attackTypeEntry=attackTypeEntry, tpModuleIndex=tpModuleIndex, rdrFormatterCategoryDiscardingReportsTrap=rdrFormatterCategoryDiscardingReportsTrap, globalControllersBandwidth=globalControllersBandwidth, tpTotalNumIpCrcErrPackets=tpTotalNumIpCrcErrPackets, spvPropertyCounter64Value=spvPropertyCounter64Value, rdrFormatterCategoryReportRatePeakTime=rdrFormatterCategoryReportRatePeakTime, tpTotalNumWredDiscardedPackets=tpTotalNumWredDiscardedPackets, subscribersPropertiesEntry=subscribersPropertiesEntry, txQueuesEntry=txQueuesEntry, subscribersNumVlanMappingsFree=subscribersNumVlanMappingsFree, rdrFormatterCategoryReportRatePeak=rdrFormatterCategoryReportRatePeak, txQueuesDroppedBytes=txQueuesDroppedBytes, pcubeLinkGroup=pcubeLinkGroup, tpNumTcpActiveFlowsPeak=tpNumTcpActiveFlowsPeak, rdrFormatterDestReportRatePeakTime=rdrFormatterDestReportRatePeakTime, portOperStatusChangeTrap=portOperStatusChangeTrap, rdrFormatterReportRatePeak=rdrFormatterReportRatePeak, txQueuesQueueIndex=txQueuesQueueIndex, subscribersNumVlanMappings=subscribersNumVlanMappings, tpNumTcpActiveFlows=tpNumTcpActiveFlows, sessionStartedTrap=sessionStartedTrap, rdrConnectionUpTrap=rdrConnectionUpTrap, txQueuesTable=txQueuesTable, globalControllersModuleIndex=globalControllersModuleIndex, apvRowStatus=apvRowStatus, moduleSmConnectionUpTrap=moduleSmConnectionUpTrap, telnetSessionBadLoginTrap=telnetSessionBadLoginTrap, txQueuesUtilization=txQueuesUtilization, tpTotalNumTtlErrPackets=tpTotalNumTtlErrPackets, chassisPowerSupplyAlarmOnTrap=chassisPowerSupplyAlarmOnTrap, attackTypeName=attackTypeName, appInfoEntry=appInfoEntry, sysVersion=sysVersion, pullRequestRetryFailedTrap=pullRequestRetryFailedTrap, spvPropertyStringValue=spvPropertyStringValue, tpHandledFlowsRatePeak=tpHandledFlowsRatePeak, pcubeApplicationGroup=pcubeApplicationGroup, subscribersNumAnonymous=subscribersNumAnonymous, loggerGrp=loggerGrp, trafficCounterIndex=trafficCounterIndex, rdrFormatterCategoryNumReportsSent=rdrFormatterCategoryNumReportsSent, subscribersNumFree=subscribersNumFree, pcubeAttackGroup=pcubeAttackGroup, globalControllersPortIndex=globalControllersPortIndex, apName=apName, diskGrp=diskGrp, rdrActiveConnectionTrap=rdrActiveConnectionTrap, rdrFormatterDestReportRatePeak=rdrFormatterDestReportRatePeak, globalControllersIndex=globalControllersIndex, linkGrp=linkGrp, globalControllersDroppedBytes=globalControllersDroppedBytes, globalControllersClearCountersTime=globalControllersClearCountersTime, globalControllersUtilizationPeakTime=globalControllersUtilizationPeakTime, apvPropertyName=apvPropertyName, subscribersPropertiesValueEntry=subscribersPropertiesValueEntry, spvIndex=spvIndex, tpTotalNumBlockedFlows=tpTotalNumBlockedFlows, systemGrp=systemGrp, pcuebModuleGroup=pcuebModuleGroup, txQueuesClearCountersTime=txQueuesClearCountersTime, pportLinkIndex=pportLinkIndex, tpTotalNumHandledFlows=tpTotalNumHandledFlows, pcubeSubscribersGroup=pcubeSubscribersGroup, pmoduleUpStreamAttackFilteringTime=pmoduleUpStreamAttackFilteringTime, subscribersNumIpAddrMappingsFree=subscribersNumIpAddrMappingsFree, pchassisPowerSupplyAlarm=pchassisPowerSupplyAlarm, pchassisGrp=pchassisGrp, chassisTempAlarmOnTrap=chassisTempAlarmOnTrap, txQueuesDescription=txQueuesDescription, apvPropertyUintValue=apvPropertyUintValue, rdrFormatterDestPort=rdrFormatterDestPort, moduleRedundantConfigurationMismatchTrap=moduleRedundantConfigurationMismatchTrap, vasServerAdminStatus=vasServerAdminStatus, subscribersCountersClearTime=subscribersCountersClearTime, subscribersNumTpIpRangesFree=subscribersNumTpIpRangesFree, PYSNMP_MODULE_ID=pcubeSeMIB, linkEntry=linkEntry, tpNumUdpActiveFlowsPeak=tpNumUdpActiveFlowsPeak, tpNumNonTcpUdpActiveFlowsPeak=tpNumNonTcpUdpActiveFlowsPeak, pmoduleNumTrafficProcessors=pmoduleNumTrafficProcessors, pchassisFansAlarm=pchassisFansAlarm)
mibBuilder.exportSymbols("PCUBE-SE-MIB", spvPropertyUintValue=spvPropertyUintValue, appDescription=appDescription, attackTypeTable=attackTypeTable, rdrFormatterNumReportsDiscarded=rdrFormatterNumReportsDiscarded, linkModeSniffingTrap=linkModeSniffingTrap, apvIndex=apvIndex, apvPropertyStringValue=apvPropertyStringValue, loggerUserLogNumFatal=loggerUserLogNumFatal, linkModeForwardingTrap=linkModeForwardingTrap, globalControllersDescription=globalControllersDescription, rdrFormatterCategoryNumReportsDiscarded=rdrFormatterCategoryNumReportsDiscarded, subscribersPropertiesTable=subscribersPropertiesTable, pportIndex=pportIndex, spvPropertyName=spvPropertyName, telnetSessionEndedTrap=telnetSessionEndedTrap, rdrFormatterReportRatePeakTime=rdrFormatterReportRatePeakTime, pmoduleDownStreamLastAttackFilteringTime=pmoduleDownStreamLastAttackFilteringTime, sntpClockDriftWarnTrap=sntpClockDriftWarnTrap, systemResetTrap=systemResetTrap, tpTotalNumIpBroadcastPackets=tpTotalNumIpBroadcastPackets, vasServerOperStatus=vasServerOperStatus, globalControllersTable=globalControllersTable, pmoduleSlotNum=pmoduleSlotNum, attackTypeIndex=attackTypeIndex, rdrFormatterDestIPAddr=rdrFormatterDestIPAddr, pcubeSeEvents=pcubeSeEvents, pchassisVoltageAlarm=pchassisVoltageAlarm, tpTotalNumFragments=tpTotalNumFragments, pmoduleEntry=pmoduleEntry, pportAdminDuplex=pportAdminDuplex, pcubeLoggerGroup=pcubeLoggerGroup, moduleRedundancyReadyTrap=moduleRedundancyReadyTrap, pmoduleType=pmoduleType, spvRowStatus=spvRowStatus, sysOperationalStatus=sysOperationalStatus, linkNetworkSidePortIndex=linkNetworkSidePortIndex, pcubeSeEventGenericString1=pcubeSeEventGenericString1, sysFailureRecovery=sysFailureRecovery, sessionEndedTrap=sessionEndedTrap, tpTotalNumBlockedPackets=tpTotalNumBlockedPackets, pmoduleSerialNumber=pmoduleSerialNumber, pmoduleConnectionMode=pmoduleConnectionMode, rdrFormatterDestConnectionStatus=rdrFormatterDestConnectionStatus, tpInfoTable=tpInfoTable, loggerUserLogEnable=loggerUserLogEnable, subscribersNumIntroduced=subscribersNumIntroduced, tpNumUdpActiveFlows=tpNumUdpActiveFlows, moduleSmConnectionDownTrap=moduleSmConnectionDownTrap, rdrFormatterDestStatus=rdrFormatterDestStatus, pchassisLineFeedAlarm=pchassisLineFeedAlarm, tpCpuUtilizationPeakTime=tpCpuUtilizationPeakTime, tpNumNonTcpUdpActiveFlows=tpNumNonTcpUdpActiveFlows, rdrFormatterEnable=rdrFormatterEnable, chassisVoltageAlarmOnTrap=chassisVoltageAlarmOnTrap, tpTotalNumHandledPackets=tpTotalNumHandledPackets, applicationGrp=applicationGrp, linkAdminModeOnFailure=linkAdminModeOnFailure, rdrFormatterCategoryDestStatus=rdrFormatterCategoryDestStatus, subscribersNumActivePeakTime=subscribersNumActivePeakTime, appPropertiesValueTable=appPropertiesValueTable, subscribersNumUpdates=subscribersNumUpdates, tpHandledFlowsRatePeakTime=tpHandledFlowsRatePeakTime, pcubeSeConformance=pcubeSeConformance, moduleAttackFilterActivatedTrap=moduleAttackFilterActivatedTrap, mplsVpnMaxHWMappings=mplsVpnMaxHWMappings, trafficCounterValue=trafficCounterValue, txQueuesUtilizationPeak=txQueuesUtilizationPeak, tpHandledPacketsRatePeak=tpHandledPacketsRatePeak, attackGrp=attackGrp, pcubeVasTrafficForwardingGroup=pcubeVasTrafficForwardingGroup, mplsVpnSoftwareCountersEntry=mplsVpnSoftwareCountersEntry, txQueuesGrp=txQueuesGrp, loggerLineAttackLogFullTrap=loggerLineAttackLogFullTrap, pcubeSeEventsGroup=pcubeSeEventsGroup, globalControllersUtilization=globalControllersUtilization, pportIfIndex=pportIfIndex, pmoduleIndex=pmoduleIndex, pcubeTxQueuesGroup=pcubeTxQueuesGroup)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_intersection, value_range_constraint, value_size_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsUnion')
(pcube_workgroup, pcube_modules) = mibBuilder.importSymbols('PCUBE-SMI', 'pcubeWorkgroup', 'pcubeModules')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(object_group, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'NotificationGroup', 'ModuleCompliance')
(object_identity, unsigned32, iso, counter32, counter64, integer32, module_identity, time_ticks, gauge32, ip_address, mib_identifier, bits, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'Unsigned32', 'iso', 'Counter32', 'Counter64', 'Integer32', 'ModuleIdentity', 'TimeTicks', 'Gauge32', 'IpAddress', 'MibIdentifier', 'Bits', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn')
(textual_convention, row_status, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'RowStatus', 'DisplayString')
pcube_se_mib = module_identity((1, 3, 6, 1, 4, 1, 5655, 2, 3))
pcubeSeMIB.setRevisions(('2006-11-07 00:00', '2006-05-10 00:00', '2006-02-12 00:00', '2005-08-16 00:00', '2004-12-12 00:00', '2004-07-01 00:00', '2003-07-02 00:00', '2003-01-05 00:00'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
pcubeSeMIB.setRevisionsDescriptions(('- Increased the supported range of global controllers (globalControllersIndex) from (1..255) to (1..2147483647) - Improved counter descriptions to reflect the counted layer for the following byte and bandwidth counters: txQueuesBandwidth txQueuesDroppedBytes globalControllersBandwidth globalControllersDroppedBytes ', "MIB revised as a part of integration into Cisco SNMP MIB standard, main changes: changed contaces, added OBJECT-GROUPs, added MODULE-COMPLIANCE, renamed with a prefix 'p' the following tables/objects to avoid conflict with existing Cisco MIbs: moduleGrp, moduleTable, moduleIndex, moduleType, moduleNumTrafficProcessors, moduleSlotNum, moduleHwVersion, moduleNumPorts, moduleNumLinks, moduleConnectionMode, moduleSerialNumber, moduleUpStreamAttackFilteringTime, moduleUpStreamLastAttackFilteringTime, moduleDownStreamAttackFilteringTime, moduleDownStreamLastAttackFilteringTime, moduleAttackObjectsClearTime , moduleAdminStatus, moduleOperStatus, chassisGrp chassisSysType, chassisPowerSupplyAlarm, chassisFansAlarm, chassisTempAlarm, chassisVoltageAlarm, chassisNumSlots, chassisSlotConfig, chassisPsuType, chassisLineFeedAlarm, portGrp, portTable, portModuleIndex, portIndex, portType, portNumTxQueues, portIfIndex, portAdminSpeed, portAdminDuplex, portOperDuplex, portLinkIndex, portOperStatus removed attackTypeTableClearTime counter, renamed Pcube to Cisco and SE to SCE.", 'Updates of OS version 3.0.3: added mplsVpnAutoLearning group containing mplsVpnSoftwareCountersTable and added mplsVpnTotalHWMappingsThresholdExceededTrap.', 'Updates of OS version 3.0.0: added vas group containing vasServerTable and added vasServerOpertionalStatusChangeTrap.', 'Updates of OS version 2.5.5: added rdrFormatterCategoryNumReportsQueued to the rdrFormatterCategoryTable in the RDR-formatter group, added subscribersNumAnonymous and subscribersNumWithSessions to subscriber info,Added the group attackGrp, containing attackTypeTable.', 'Updates of OS version 2.5: added tpServiceLoss to traffic processor group, added droppedBytes to Tx-Queue and global controller, added TpIpRanges to subscriber info,deprecated telnetSession* traps, replaced by session* traps.', 'Updates of OS version 1.5: added entries to the tpTable, added entries to the rdrFormatterGrp and rdrFormatterDestTable,added entries to the portTable and attack filter traps.', 'OS version 1.5 updates.'))
if mibBuilder.loadTexts:
pcubeSeMIB.setLastUpdated('200611070000Z')
if mibBuilder.loadTexts:
pcubeSeMIB.setOrganization('Cisco Systems, Inc.')
if mibBuilder.loadTexts:
pcubeSeMIB.setContactInfo('Cisco Systems Customer Service Postal: 170 W Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS E-mail: cs-sce@cisco.com')
if mibBuilder.loadTexts:
pcubeSeMIB.setDescription("Main SNMP MIB for Cisco's SCE OS products such as SCE2000 and SE100. This MIB provides configuration and runtime status for chassis, control modules, and line modules on the SCOS systems.")
pcube_se_objs = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1))
pcube_se_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1))
pcube_se_groups = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1))
pcube_se_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 2))
system_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 1))
pchassis_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2))
pmodule_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3))
link_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4))
disk_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 5))
rdr_formatter_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6))
logger_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7))
subscribers_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8))
traffic_processor_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9))
pport_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10))
tx_queues_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11))
global_controllers_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12))
application_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13))
traffic_counters_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14))
attack_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15))
vas_traffic_forwarding_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16))
mpls_vpn_auto_learn_grp = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 1, 17))
class Linkmodetype(TextualConvention, Integer32):
description = 'The various modes of a link.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5))
named_values = named_values(('other', 1), ('bypass', 2), ('forwarding', 3), ('cutoff', 4), ('sniffing', 5))
sys_operational_status = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('boot', 2), ('operational', 3), ('warning', 4), ('failure', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysOperationalStatus.setStatus('current')
if mibBuilder.loadTexts:
sysOperationalStatus.setDescription('Indicates the operational status of the system.')
sys_failure_recovery = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('operational', 2), ('nonOperational', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysFailureRecovery.setStatus('current')
if mibBuilder.loadTexts:
sysFailureRecovery.setDescription('Indicates if the system should enter a Failure mode after abnormal boot.')
sys_version = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysVersion.setStatus('current')
if mibBuilder.loadTexts:
sysVersion.setDescription('The system version.')
pchassis_sys_type = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('other', 1), ('sce1000', 2), ('se100', 3), ('sce2000', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pchassisSysType.setStatus('current')
if mibBuilder.loadTexts:
pchassisSysType.setDescription('The chassis system type.')
pchassis_power_supply_alarm = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('off', 2), ('on', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pchassisPowerSupplyAlarm.setStatus('current')
if mibBuilder.loadTexts:
pchassisPowerSupplyAlarm.setDescription("Indicates if the power supply to the chassis is normal. If the status is not 'ok' it means that one or more power supplies are not functional.")
pchassis_fans_alarm = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('off', 2), ('on', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pchassisFansAlarm.setStatus('current')
if mibBuilder.loadTexts:
pchassisFansAlarm.setDescription('Indicates if all the fans on the chassis are functional.')
pchassis_temp_alarm = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('off', 2), ('on', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pchassisTempAlarm.setStatus('current')
if mibBuilder.loadTexts:
pchassisTempAlarm.setDescription('The chassis temperature alarm status.')
pchassis_voltage_alarm = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('off', 2), ('on', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pchassisVoltageAlarm.setStatus('current')
if mibBuilder.loadTexts:
pchassisVoltageAlarm.setDescription("The chassis internal voltage alarm status. If the alarm is 'on' it indicates that the voltage level of one or more HW units is not in the normal range.")
pchassis_num_slots = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pchassisNumSlots.setStatus('current')
if mibBuilder.loadTexts:
pchassisNumSlots.setDescription('Indicates the number of slots in the chassis available for plug-in modules. This number counts slots that are already occupied as well as empty slots.')
pchassis_slot_config = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pchassisSlotConfig.setStatus('current')
if mibBuilder.loadTexts:
pchassisSlotConfig.setDescription('An indication of which slots in the chassis have modules inserted. This is an integer value with bits set to indicate configured modules. It can be interpreted as a sum of f(x) as x goes from 1 to the number of slots, where f(x) = 0 for no module inserted and f(x) = exp(2, x-1) for a module inserted.')
pchassis_psu_type = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('ac', 2), ('dc', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pchassisPsuType.setStatus('current')
if mibBuilder.loadTexts:
pchassisPsuType.setDescription('Indicates the type of the power supplies.')
pchassis_line_feed_alarm = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 2, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('off', 2), ('on', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pchassisLineFeedAlarm.setStatus('current')
if mibBuilder.loadTexts:
pchassisLineFeedAlarm.setDescription("Indicates if the line feed to the chassis is normal. If the status is not 'ok' it means that one or more line feeds are not connected or have no power.")
pmodule_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1))
if mibBuilder.loadTexts:
pmoduleTable.setStatus('current')
if mibBuilder.loadTexts:
pmoduleTable.setDescription('A list of module entries. The number of entries is the number of modules in the chassis.')
pmodule_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'pmoduleIndex'))
if mibBuilder.loadTexts:
pmoduleEntry.setStatus('current')
if mibBuilder.loadTexts:
pmoduleEntry.setDescription('Entry containing information about one module in the chassis.')
pmodule_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleIndex.setStatus('current')
if mibBuilder.loadTexts:
pmoduleIndex.setDescription('A unique value for each module within the chassis.')
pmodule_type = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('other', 1), ('gbe2Module', 2), ('fe2Module', 3), ('gbe4Module', 4), ('fe4Module', 5), ('oc124Module', 6), ('fe8Module', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleType.setStatus('current')
if mibBuilder.loadTexts:
pmoduleType.setDescription('The type of module.')
pmodule_num_traffic_processors = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleNumTrafficProcessors.setStatus('current')
if mibBuilder.loadTexts:
pmoduleNumTrafficProcessors.setDescription('The number of traffic processors supported by this module.')
pmodule_slot_num = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleSlotNum.setStatus('current')
if mibBuilder.loadTexts:
pmoduleSlotNum.setDescription('This value is determined by the chassis slot number where this module is located. Valid entries are 1 to the value of chassisNumSlots.')
pmodule_hw_version = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 5), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleHwVersion.setStatus('current')
if mibBuilder.loadTexts:
pmoduleHwVersion.setDescription('The hardware version of the module.')
pmodule_num_ports = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleNumPorts.setStatus('current')
if mibBuilder.loadTexts:
pmoduleNumPorts.setDescription('The number of ports supported by this module.')
pmodule_num_links = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleNumLinks.setStatus('current')
if mibBuilder.loadTexts:
pmoduleNumLinks.setDescription('The number of links carrying inband traffic that are supported by this module. Link is uniquely defined by the two ports that are at its end-points.')
pmodule_connection_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('inline', 2), ('receiveOnly', 3), ('inlineCascade', 4), ('receiveOnlyCascade', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleConnectionMode.setStatus('current')
if mibBuilder.loadTexts:
pmoduleConnectionMode.setDescription('Indicates the connection mode of a module.')
pmodule_serial_number = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 9), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleSerialNumber.setStatus('current')
if mibBuilder.loadTexts:
pmoduleSerialNumber.setDescription('Indicates the serial number of the module.')
pmodule_up_stream_attack_filtering_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 10), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleUpStreamAttackFilteringTime.setStatus('current')
if mibBuilder.loadTexts:
pmoduleUpStreamAttackFilteringTime.setDescription('Indicates the accumulated time which attack up-stream traffic was filtered.')
pmodule_up_stream_last_attack_filtering_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 11), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleUpStreamLastAttackFilteringTime.setStatus('current')
if mibBuilder.loadTexts:
pmoduleUpStreamLastAttackFilteringTime.setDescription('Indicates the time since the previous attack was filtered in the up-stream traffic.')
pmodule_down_stream_attack_filtering_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 12), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleDownStreamAttackFilteringTime.setStatus('current')
if mibBuilder.loadTexts:
pmoduleDownStreamAttackFilteringTime.setDescription('Indicates the accumulated time which attack down-stream traffic was filtered.')
pmodule_down_stream_last_attack_filtering_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 13), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleDownStreamLastAttackFilteringTime.setStatus('current')
if mibBuilder.loadTexts:
pmoduleDownStreamLastAttackFilteringTime.setDescription('Indicates the time since the previous attack was filtered in the down-stream traffic.')
pmodule_attack_objects_clear_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 14), time_ticks()).setUnits('milliseconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pmoduleAttackObjectsClearTime.setStatus('current')
if mibBuilder.loadTexts:
pmoduleAttackObjectsClearTime.setDescription('Indicates the time since the attack objects were cleared. Writing a 0 to this object causes the counters to be cleared.')
pmodule_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('primary', 2), ('secondary', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleAdminStatus.setStatus('current')
if mibBuilder.loadTexts:
pmoduleAdminStatus.setDescription('Indicates configuration of a module in respect to whether the module should handle traffic.')
pmodule_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 3, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('active', 2), ('standby', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pmoduleOperStatus.setStatus('current')
if mibBuilder.loadTexts:
pmoduleOperStatus.setDescription("Indicates current module's role in respect to whether the module handles traffic.")
link_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1))
if mibBuilder.loadTexts:
linkTable.setStatus('current')
if mibBuilder.loadTexts:
linkTable.setDescription('The Link table provides information regarding the configuration and status of the links that pass through the SE and carry inband traffic. The number of entries in this table is determined by the number of modules in the chassis and the number of links on each module.')
link_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'linkModuleIndex'), (0, 'PCUBE-SE-MIB', 'linkIndex'))
if mibBuilder.loadTexts:
linkEntry.setStatus('current')
if mibBuilder.loadTexts:
linkEntry.setDescription('Entry containing information about the Link.')
link_module_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
linkModuleIndex.setStatus('current')
if mibBuilder.loadTexts:
linkModuleIndex.setDescription('An index value that uniquely identifies the module where this link is located.')
link_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
linkIndex.setStatus('current')
if mibBuilder.loadTexts:
linkIndex.setDescription('An index value that uniquely identifies this link within a module. Valid entries are 1 to the value of moduleNumLinks for this module.')
link_admin_mode_on_active = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 3), link_mode_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
linkAdminModeOnActive.setStatus('current')
if mibBuilder.loadTexts:
linkAdminModeOnActive.setDescription("The desired mode of the link when the module's operating status is Active and the module is not in boot or failure. The possible modes are bypass, forwarding and sniffing. In bypass mode the traffic is forwarded from one port to the other using an internal splitter. In forwarding mode the traffic is forwarded through the internal hardware and software modules of the SE. In sniffing mode the traffic is passed in the same manner as in bypass mode, however a copy of the traffic is made and analyzed internally in the box.")
link_admin_mode_on_failure = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 4), link_mode_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
linkAdminModeOnFailure.setStatus('current')
if mibBuilder.loadTexts:
linkAdminModeOnFailure.setDescription("The desired mode of the link when the system's operational status is Failure. The possible modes are Bypass and Cutoff. In Bypass mode the traffic is forwarded from one port to the other using an internal splitter. In Cutoff mode the traffic is dropped by the SE.")
link_oper_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 5), link_mode_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
linkOperMode.setStatus('current')
if mibBuilder.loadTexts:
linkOperMode.setDescription('The operational mode of the link. In Bypass mode the traffic is forwarded from one port to the other using an internal splitter. In Forwarding mode the traffic is forwarded through the internal software and hardware modules of the SCE. In Sniffing mode the traffic is forwarded in the same manner as in Bypass mode, however the traffic is passed through the internal software and hardware modules of the SCE for analyzing. in Cutoff mode the traffic is dropped by the SCE platform.')
link_status_reflection_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
linkStatusReflectionEnable.setStatus('current')
if mibBuilder.loadTexts:
linkStatusReflectionEnable.setDescription('Indicates if failure of the physical link on one i/f should trigger the failure of the link on the other i/f.')
link_subscriber_side_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
linkSubscriberSidePortIndex.setStatus('current')
if mibBuilder.loadTexts:
linkSubscriberSidePortIndex.setDescription('An index value that uniquely identifies this link with its related port that is connected to the subscriber side.')
link_network_side_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 4, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
linkNetworkSidePortIndex.setStatus('current')
if mibBuilder.loadTexts:
linkNetworkSidePortIndex.setDescription('An index value that uniquely identifies this link with its related port that is connected to the network side.')
disk_num_used_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 5, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setUnits('bytes').setMaxAccess('readonly')
if mibBuilder.loadTexts:
diskNumUsedBytes.setStatus('current')
if mibBuilder.loadTexts:
diskNumUsedBytes.setDescription('The number of used bytes.')
disk_num_free_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 5, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setUnits('bytes').setMaxAccess('readonly')
if mibBuilder.loadTexts:
diskNumFreeBytes.setStatus('current')
if mibBuilder.loadTexts:
diskNumFreeBytes.setDescription('The number of free bytes.')
rdr_formatter_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterEnable.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterEnable.setDescription('Indicates whether the RDR-formatter is enabled or disabled. When the RDR-formatter is enabled, it sends the reports it gets from the traffic processors to the Data Collector as defined in the rdrFormatterDestTable.')
rdr_formatter_dest_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2))
if mibBuilder.loadTexts:
rdrFormatterDestTable.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterDestTable.setDescription('The RDR-formatter destinations table (0 to 3 entries). This table lists the addresses of Data Collectors. If the RDR-formatter is enabled, the destination with the highest priority that a TCP connection to it can be established would receive the reports generated by the traffic processors.')
rdr_formatter_dest_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'rdrFormatterDestIPAddr'), (0, 'PCUBE-SE-MIB', 'rdrFormatterDestPort'))
if mibBuilder.loadTexts:
rdrFormatterDestEntry.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterDestEntry.setDescription('A destination table entry.')
rdr_formatter_dest_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterDestIPAddr.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterDestIPAddr.setDescription('The IP address of a Data Collector.')
rdr_formatter_dest_port = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterDestPort.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterDestPort.setDescription('The TCP port on which the Data Collector listens.')
rdr_formatter_dest_priority = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterDestPriority.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterDestPriority.setDescription('The priority given to the Data Collector. The active Data Collector is the Data Collector with the highest priority and a TCP connection that is up.')
rdr_formatter_dest_status = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('active', 2), ('standby', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterDestStatus.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterDestStatus.setDescription("In 'redundancy(2)' and in 'simpleLoadBalancing(3)' rdrFormatterForwardingMode there can be only one 'active' destination, which is where the reports are currently being sent to. In 'multicast(4)' modes all destinations will receive the active(2) status.")
rdr_formatter_dest_connection_status = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('up', 2), ('down', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterDestConnectionStatus.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterDestConnectionStatus.setDescription('Indicates the status of TCP connection to this destination.')
rdr_formatter_dest_num_reports_sent = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterDestNumReportsSent.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterDestNumReportsSent.setDescription('Indicates the number of reports sent by the RDR-formatter to this destination.')
rdr_formatter_dest_num_reports_discarded = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterDestNumReportsDiscarded.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterDestNumReportsDiscarded.setDescription(' Indicates the number of reports dropped by the RDR-formatter on this destination.')
rdr_formatter_dest_report_rate = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterDestReportRate.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterDestReportRate.setDescription('Indicates the rate of the reports (in reports per second) currently sent to this destination.')
rdr_formatter_dest_report_rate_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 9), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterDestReportRatePeak.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterDestReportRatePeak.setDescription('Indicates the maximum report rate sent to this destination.')
rdr_formatter_dest_report_rate_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 2, 1, 10), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterDestReportRatePeakTime.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterDestReportRatePeakTime.setDescription('Indicates the time since the rdrFormatterDestReportRatePeak value occurred.')
rdr_formatter_num_reports_sent = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterNumReportsSent.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterNumReportsSent.setDescription('Indicates the number of reports sent by the RDR-formatter.')
rdr_formatter_num_reports_discarded = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterNumReportsDiscarded.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterNumReportsDiscarded.setDescription('Indicates the number of reports dropped by the RDR-formatter.')
rdr_formatter_clear_counters_time = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 5), time_ticks()).setUnits('milliseconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rdrFormatterClearCountersTime.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterClearCountersTime.setDescription('The time since RDR-formatter counters were last cleared. Writing a 0 to this object causes the RDR-formatter counters to be cleared.')
rdr_formatter_report_rate = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterReportRate.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterReportRate.setDescription('Indicates the rate of the reports (in reports per second) currently sent to all of the destinations.')
rdr_formatter_report_rate_peak = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterReportRatePeak.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterReportRatePeak.setDescription('Indicates the maximum report rate sent to all of the destinations.')
rdr_formatter_report_rate_peak_time = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 8), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterReportRatePeakTime.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterReportRatePeakTime.setDescription('Indicates the time since the rdrFormatterReportRatePeak value occurred.')
rdr_formatter_protocol = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('rdrv1', 2), ('rdrv2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterProtocol.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterProtocol.setDescription('Indicates the RDR protocol currently in use.')
rdr_formatter_forwarding_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('other', 1), ('redundancy', 2), ('simpleLoadBalancing', 3), ('multicast', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterForwardingMode.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterForwardingMode.setDescription('Indicates the mode of how the RDR formatter sends the reports to its destinations.')
rdr_formatter_category_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11))
if mibBuilder.loadTexts:
rdrFormatterCategoryTable.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryTable.setDescription('The RDR-formatter Category table. Describes the different categories of RDRs and RDR destination groups.')
rdr_formatter_category_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'rdrFormatterCategoryIndex'))
if mibBuilder.loadTexts:
rdrFormatterCategoryEntry.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryEntry.setDescription('A category table entry.')
rdr_formatter_category_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterCategoryIndex.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryIndex.setDescription('The category number.')
rdr_formatter_category_name = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 2), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterCategoryName.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryName.setDescription('The name given to this category.')
rdr_formatter_category_num_reports_sent = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterCategoryNumReportsSent.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryNumReportsSent.setDescription('Indicates the number of reports sent by the RDR-formatter to this category.')
rdr_formatter_category_num_reports_discarded = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterCategoryNumReportsDiscarded.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryNumReportsDiscarded.setDescription('Indicates the number of reports dropped by the RDR-formatter on this category.')
rdr_formatter_category_report_rate = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterCategoryReportRate.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryReportRate.setDescription('Indicates the rate of the reports (in reports per second) currently sent to this category.')
rdr_formatter_category_report_rate_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterCategoryReportRatePeak.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryReportRatePeak.setDescription('Indicates the maximum report rate sent to this category.')
rdr_formatter_category_report_rate_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 7), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterCategoryReportRatePeakTime.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryReportRatePeakTime.setDescription('Indicates the time since the rdrFormatterCategoryReportRatePeak value occurred.')
rdr_formatter_category_num_reports_queued = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 11, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterCategoryNumReportsQueued.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryNumReportsQueued.setDescription('Indicates the amount of pending reports in this category.')
rdr_formatter_category_dest_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 12))
if mibBuilder.loadTexts:
rdrFormatterCategoryDestTable.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryDestTable.setDescription('The RDR-formatter Category destinations table. This table lists the addresses of Data Collectors. If the RDR-formatter is enabled, the destination with the highest priority that a TCP connection to it can be established would receive the reports generated by the traffic processors.')
rdr_formatter_category_dest_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 12, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'rdrFormatterCategoryIndex'), (0, 'PCUBE-SE-MIB', 'rdrFormatterDestIPAddr'), (0, 'PCUBE-SE-MIB', 'rdrFormatterDestPort'))
if mibBuilder.loadTexts:
rdrFormatterCategoryDestEntry.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryDestEntry.setDescription('A destination table entry.')
rdr_formatter_category_dest_priority = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 12, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterCategoryDestPriority.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryDestPriority.setDescription('The priority given to the Data Collector for this category. The active Data Collector is the Data Collector with the highest priority and a TCP connection that is up.')
rdr_formatter_category_dest_status = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 6, 12, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('active', 2), ('standby', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rdrFormatterCategoryDestStatus.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryDestStatus.setDescription("In modes 'redundancy(2)' and in 'simpleLoadBalancing(3)' there can be only one 'active' destination, which is the destination to which reports are being sent. In 'multicast(4)' modes all destination will receive the 'active(2)' status.")
logger_user_log_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
loggerUserLogEnable.setStatus('current')
if mibBuilder.loadTexts:
loggerUserLogEnable.setDescription('Indicates whether the logging of user information is enabled or disabled.')
logger_user_log_num_info = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
loggerUserLogNumInfo.setStatus('current')
if mibBuilder.loadTexts:
loggerUserLogNumInfo.setDescription('Indicates the number of Info messages logged into the user log file since last reboot or last time the counter was cleared.')
logger_user_log_num_warning = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
loggerUserLogNumWarning.setStatus('current')
if mibBuilder.loadTexts:
loggerUserLogNumWarning.setDescription('Indicates the number of Warning messages logged into the user log file since last reboot or last time the counter was cleared.')
logger_user_log_num_error = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
loggerUserLogNumError.setStatus('current')
if mibBuilder.loadTexts:
loggerUserLogNumError.setDescription('Indicates the number of Error messages logged into the user log file since last reboot or last time the counter was cleared.')
logger_user_log_num_fatal = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
loggerUserLogNumFatal.setStatus('current')
if mibBuilder.loadTexts:
loggerUserLogNumFatal.setDescription('Indicates the number of Fatal messages logged into the User-Log since last reboot or last time the counter was cleared.')
logger_user_log_clear_counters_time = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 1, 7, 6), time_ticks()).setUnits('milliseconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
loggerUserLogClearCountersTime.setStatus('current')
if mibBuilder.loadTexts:
loggerUserLogClearCountersTime.setDescription('The time since user log counters were last cleared. Writing a 0 to this object causes the user log counters to be cleared.')
subscribers_info_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1))
if mibBuilder.loadTexts:
subscribersInfoTable.setStatus('current')
if mibBuilder.loadTexts:
subscribersInfoTable.setDescription('The subscribers information table consists of data regarding subscribers management operations performed.')
subscribers_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'pmoduleIndex'))
if mibBuilder.loadTexts:
subscribersInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
subscribersInfoEntry.setDescription('A SubscribersInfoEntry entry.')
subscribers_num_introduced = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumIntroduced.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumIntroduced.setDescription('Indicates the current number of subscribers introduced to the SCE. These subscribers may or may not have IP address or VLAN mappings. Subscribers who do not have mappings of any kind cannot be associated with traffic, thus will be served by the SCE according to the default settings. ')
subscribers_num_free = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumFree.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumFree.setDescription('Indicates the number of subscribers that may be introduced in addition to the subscribers that are already introduced to the SCE (subscribersNumIntroduced).')
subscribers_num_ip_addr_mappings = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumIpAddrMappings.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumIpAddrMappings.setDescription("Indicates the current number of 'IP address to subscriber' mappings.")
subscribers_num_ip_addr_mappings_free = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumIpAddrMappingsFree.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumIpAddrMappingsFree.setDescription("Indicates the number of free 'IP address to subscriber' mappings that may be used for defining new mappings.")
subscribers_num_ip_range_mappings = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumIpRangeMappings.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumIpRangeMappings.setDescription("Indicates the current number of 'IP-range to subscriber' mappings.")
subscribers_num_ip_range_mappings_free = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumIpRangeMappingsFree.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumIpRangeMappingsFree.setDescription("Indicates the number of free 'IP-range to subscriber' mappings that may be used for defining new mappings.")
subscribers_num_vlan_mappings = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumVlanMappings.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumVlanMappings.setDescription('Indicates the current number of VLAN to subscribers mappings.')
subscribers_num_vlan_mappings_free = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumVlanMappingsFree.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumVlanMappingsFree.setDescription("Indicates the number of free 'VLAN to subscriber' mappings that may be used for defining new mappings.")
subscribers_num_active = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 9), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumActive.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumActive.setDescription('Indicates the current number of active subscribers, these subscribers necessarily have an IP address or VLAN mappings that define the traffic that should be associated and served according to the subscriber service agreement.')
subscribers_num_active_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumActivePeak.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumActivePeak.setDescription('Indicates the peak value of subscribersNumActive since the last time it was cleared or the system started.')
subscribers_num_active_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 11), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumActivePeakTime.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumActivePeakTime.setDescription('Indicates the time since the subscribersNumActivePeak value occurred.')
subscribers_num_updates = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 12), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumUpdates.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumUpdates.setDescription('Indicates the accumulated number of subscribers database updates received by the SCE.')
subscribers_counters_clear_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 13), time_ticks()).setUnits('milliseconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
subscribersCountersClearTime.setStatus('current')
if mibBuilder.loadTexts:
subscribersCountersClearTime.setDescription('Indicates the time since the subscribers counters were cleared. Writing a 0 to this object causes the counters to be cleared.')
subscribers_num_tp_ip_ranges = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 14), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumTpIpRanges.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumTpIpRanges.setDescription("Indicates the current number of 'Traffic Processor IP ranges' used.")
subscribers_num_tp_ip_ranges_free = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 15), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumTpIpRangesFree.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumTpIpRangesFree.setDescription("Indicates the number of free 'Traffic Processor IP ranges'.")
subscribers_num_anonymous = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 16), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumAnonymous.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumAnonymous.setDescription('Indicates the current number of anonymous subscribers.')
subscribers_num_with_sessions = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 1, 1, 17), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subscribersNumWithSessions.setStatus('current')
if mibBuilder.loadTexts:
subscribersNumWithSessions.setDescription('Indicates the current number of subscribers with open sessions.')
tp_info_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1))
if mibBuilder.loadTexts:
tpInfoTable.setStatus('current')
if mibBuilder.loadTexts:
tpInfoTable.setDescription('The Traffic Processor Info table consists of data regarding traffic handled by the traffic processors by classification of packets and flows.')
tp_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'tpModuleIndex'), (0, 'PCUBE-SE-MIB', 'tpIndex'))
if mibBuilder.loadTexts:
tpInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
tpInfoEntry.setDescription('A tpInfoTable entry.')
tp_module_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpModuleIndex.setStatus('current')
if mibBuilder.loadTexts:
tpModuleIndex.setDescription('An index value that uniquely identifies the module where this traffic processor is located.')
tp_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpIndex.setStatus('current')
if mibBuilder.loadTexts:
tpIndex.setDescription('An index value that uniquely identifies this traffic processor within a module. The value is determined by the location of the traffic processor on the module. Valid entries are 1 to the value of moduleNumTrafficProcessors for this module.')
tp_total_num_handled_packets = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumHandledPackets.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumHandledPackets.setDescription('Indicates the accumulated number of packets handled by this traffic processor since last reboot or last time this counter was cleared.')
tp_total_num_handled_flows = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumHandledFlows.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumHandledFlows.setDescription('Indicates the accumulated number of flows handled by this traffic Processor since last reboot or last time this counter was cleared.')
tp_num_active_flows = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpNumActiveFlows.setStatus('current')
if mibBuilder.loadTexts:
tpNumActiveFlows.setDescription('Indicates the number of flows currently being handled by this traffic processor.')
tp_num_active_flows_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpNumActiveFlowsPeak.setStatus('current')
if mibBuilder.loadTexts:
tpNumActiveFlowsPeak.setDescription('Indicates the peak value of tpNumActiveFlows since the last time it was cleared or the system started.')
tp_num_active_flows_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 7), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpNumActiveFlowsPeakTime.setStatus('current')
if mibBuilder.loadTexts:
tpNumActiveFlowsPeakTime.setDescription('Indicates the time since the tpNumActiveFlowsPeak value occurred.')
tp_num_tcp_active_flows = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpNumTcpActiveFlows.setStatus('current')
if mibBuilder.loadTexts:
tpNumTcpActiveFlows.setDescription('Indicates the number of TCP flows currently being handled by this traffic processor.')
tp_num_tcp_active_flows_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 9), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpNumTcpActiveFlowsPeak.setStatus('current')
if mibBuilder.loadTexts:
tpNumTcpActiveFlowsPeak.setDescription('Indicates the peak value of tpNumTcpActiveFlows since the last time it was cleared or the system started.')
tp_num_tcp_active_flows_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 10), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpNumTcpActiveFlowsPeakTime.setStatus('current')
if mibBuilder.loadTexts:
tpNumTcpActiveFlowsPeakTime.setDescription('Indicates the time since the tpNumTcpActiveFlowsPeak value occurred.')
tp_num_udp_active_flows = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 11), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpNumUdpActiveFlows.setStatus('current')
if mibBuilder.loadTexts:
tpNumUdpActiveFlows.setDescription('Indicates the number of UDP flows currently being handled by this traffic processor.')
tp_num_udp_active_flows_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 12), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpNumUdpActiveFlowsPeak.setStatus('current')
if mibBuilder.loadTexts:
tpNumUdpActiveFlowsPeak.setDescription('Indicates the peak value of tpNumUdpActiveFlows since the last time it was cleared or the system started.')
tp_num_udp_active_flows_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 13), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpNumUdpActiveFlowsPeakTime.setStatus('current')
if mibBuilder.loadTexts:
tpNumUdpActiveFlowsPeakTime.setDescription('Indicates the time since the tpNumUdpActiveFlowsPeak value occurred.')
tp_num_non_tcp_udp_active_flows = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 14), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpNumNonTcpUdpActiveFlows.setStatus('current')
if mibBuilder.loadTexts:
tpNumNonTcpUdpActiveFlows.setDescription('Indicates the number of non TCP/UDP flows currently being handled by this traffic processor.')
tp_num_non_tcp_udp_active_flows_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 15), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpNumNonTcpUdpActiveFlowsPeak.setStatus('current')
if mibBuilder.loadTexts:
tpNumNonTcpUdpActiveFlowsPeak.setDescription('Indicates the peak value of tpNumNonTcpUdpActiveFlows since the last time it was cleared or the system started.')
tp_num_non_tcp_udp_active_flows_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 16), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpNumNonTcpUdpActiveFlowsPeakTime.setStatus('current')
if mibBuilder.loadTexts:
tpNumNonTcpUdpActiveFlowsPeakTime.setDescription('Indicates the time since the tpNumNonTcpUdpActiveFlowsPeak value occurred.')
tp_total_num_blocked_packets = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 17), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumBlockedPackets.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumBlockedPackets.setDescription('Indicates the accumulated number of packets discarded by this traffic processor according to application blocking rules.')
tp_total_num_blocked_flows = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 18), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumBlockedFlows.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumBlockedFlows.setDescription('Indicates the accumulated number of flows discarded by this traffic processor according to application blocking rules.')
tp_total_num_discarded_packets_due_to_bw_limit = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 19), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumDiscardedPacketsDueToBwLimit.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumDiscardedPacketsDueToBwLimit.setDescription('Indicates the accumulated number of packets discarded by this traffic processor due to subscriber bandwidth limitations.')
tp_total_num_wred_discarded_packets = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 20), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumWredDiscardedPackets.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumWredDiscardedPackets.setDescription('Indicates the accumulated number of packets discarded by this traffic processor due to congestion in the queues.')
tp_total_num_fragments = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 21), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumFragments.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumFragments.setDescription('Indicates the accumulated number of fragmented packets handled by this traffic processor.')
tp_total_num_non_ip_packets = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 22), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumNonIpPackets.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumNonIpPackets.setDescription('Indicates the accumulated number of non IP packets handled by this traffic processor.')
tp_total_num_ip_crc_err_packets = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 23), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumIpCrcErrPackets.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumIpCrcErrPackets.setDescription('Indicates the accumulated number of packets with IP CRC error handled by this traffic processor.')
tp_total_num_ip_length_err_packets = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 24), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumIpLengthErrPackets.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumIpLengthErrPackets.setDescription('Indicates the accumulated number of packets with IP length error handled by this traffic processor.')
tp_total_num_ip_broadcast_packets = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 25), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumIpBroadcastPackets.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumIpBroadcastPackets.setDescription('Indicates the accumulated number of IP broadcast packets handled by this traffic processor.')
tp_total_num_ttl_err_packets = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 26), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumTtlErrPackets.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumTtlErrPackets.setDescription('Indicates the accumulated number of packets with TTL error handled by this traffic processor.')
tp_total_num_tcp_udp_crc_err_packets = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 27), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpTotalNumTcpUdpCrcErrPackets.setStatus('current')
if mibBuilder.loadTexts:
tpTotalNumTcpUdpCrcErrPackets.setDescription('Indicates the accumulated number of TCP/UDP packets with CRC error handled by this traffic processor.')
tp_clear_counters_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 28), time_ticks()).setUnits('milliseconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
tpClearCountersTime.setStatus('current')
if mibBuilder.loadTexts:
tpClearCountersTime.setDescription('Indicates the time since the traffic processor statistics counters were last cleared. Writing a 0 to this object causes the traffic processor counters to be cleared.')
tp_handled_packets_rate = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 29), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpHandledPacketsRate.setStatus('current')
if mibBuilder.loadTexts:
tpHandledPacketsRate.setDescription('Indicates the rate in packets per second of the packets handled by this traffic processor.')
tp_handled_packets_rate_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 30), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpHandledPacketsRatePeak.setStatus('current')
if mibBuilder.loadTexts:
tpHandledPacketsRatePeak.setDescription('Indicates the peak value of tpHandledPacketsRate since the last time it was cleared or the system started.')
tp_handled_packets_rate_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 31), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpHandledPacketsRatePeakTime.setStatus('current')
if mibBuilder.loadTexts:
tpHandledPacketsRatePeakTime.setDescription('Indicates the time since the tpHandledPacketsRatePeak value occurred.')
tp_handled_flows_rate = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 32), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpHandledFlowsRate.setStatus('current')
if mibBuilder.loadTexts:
tpHandledFlowsRate.setDescription('Indicates the rate in flows opening per second of the flows handled by this traffic processor.')
tp_handled_flows_rate_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 33), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpHandledFlowsRatePeak.setStatus('current')
if mibBuilder.loadTexts:
tpHandledFlowsRatePeak.setDescription('Indicates the peak value of tpHandledFlowsRate since the last time it was cleared or the system started.')
tp_handled_flows_rate_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 34), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpHandledFlowsRatePeakTime.setStatus('current')
if mibBuilder.loadTexts:
tpHandledFlowsRatePeakTime.setDescription('Indicates the time since the tpHandledFlowsRatePeakTime value occurred.')
tp_cpu_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpCpuUtilization.setStatus('current')
if mibBuilder.loadTexts:
tpCpuUtilization.setDescription('Indicates the percentage of CPU utilization, updated once every 2 minutes.')
tp_cpu_utilization_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpCpuUtilizationPeak.setStatus('current')
if mibBuilder.loadTexts:
tpCpuUtilizationPeak.setDescription('Indicates the peak value of tpCpuUtilization since the last time it was cleared or the system started.')
tp_cpu_utilization_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 37), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpCpuUtilizationPeakTime.setStatus('current')
if mibBuilder.loadTexts:
tpCpuUtilizationPeakTime.setDescription('Indicates the time since the tpCpuUtilizationPeak value occurred.')
tp_flows_capacity_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 38), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpFlowsCapacityUtilization.setStatus('current')
if mibBuilder.loadTexts:
tpFlowsCapacityUtilization.setDescription('Indicates the percentage of flows capacity utilization.')
tp_flows_capacity_utilization_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpFlowsCapacityUtilizationPeak.setStatus('current')
if mibBuilder.loadTexts:
tpFlowsCapacityUtilizationPeak.setDescription('Indicates the peak value of tpFlowsCapacityUtilization since the last time it was cleared or the system started.')
tp_flows_capacity_utilization_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 40), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpFlowsCapacityUtilizationPeakTime.setStatus('current')
if mibBuilder.loadTexts:
tpFlowsCapacityUtilizationPeakTime.setDescription('Indicates the time since the tpFlowsCapacityUtilizationPeak value occurred.')
tp_service_loss = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 9, 1, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(0, 100000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tpServiceLoss.setStatus('current')
if mibBuilder.loadTexts:
tpServiceLoss.setDescription('Indicates the relative amount of service loss in this traffic Processor, in units of 0.001%, since last reboot or last time this counter was cleared.')
pport_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1))
if mibBuilder.loadTexts:
pportTable.setStatus('current')
if mibBuilder.loadTexts:
pportTable.setDescription('A list of port entries. The number of entries is determined by the number of modules in the chassis and the number of ports on each module.')
pport_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'pportModuleIndex'), (0, 'PCUBE-SE-MIB', 'pportIndex'))
if mibBuilder.loadTexts:
pportEntry.setStatus('current')
if mibBuilder.loadTexts:
pportEntry.setDescription('Entry containing information for a particular port on a module.')
pport_module_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pportModuleIndex.setStatus('current')
if mibBuilder.loadTexts:
pportModuleIndex.setDescription('An index value that uniquely identifies the module where this port is located.')
pport_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pportIndex.setStatus('current')
if mibBuilder.loadTexts:
pportIndex.setDescription('An index value that uniquely identifies this port within a module. The value is determined by the location of the port on the module. Valid entries are 1 to the value of moduleNumPorts for this module.')
pport_type = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 11, 15, 28))).clone(namedValues=named_values(('other', 1), ('e100BaseTX', 11), ('e1000BaseT', 15), ('e1000BaseSX', 28)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pportType.setStatus('current')
if mibBuilder.loadTexts:
pportType.setDescription('The type of physical layer medium dependent interface on the port.')
pport_num_tx_queues = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pportNumTxQueues.setStatus('current')
if mibBuilder.loadTexts:
pportNumTxQueues.setDescription('The number of transmit queues supported by this port.')
pport_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pportIfIndex.setStatus('current')
if mibBuilder.loadTexts:
pportIfIndex.setDescription('The value of the instance of the ifIndex object, defined in MIB-II, for this port.')
pport_admin_speed = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 10000000, 100000000, 1000000000))).clone(namedValues=named_values(('autoNegotiation', 1), ('s10000000', 10000000), ('s100000000', 100000000), ('s1000000000', 1000000000)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pportAdminSpeed.setStatus('current')
if mibBuilder.loadTexts:
pportAdminSpeed.setDescription('The desired speed of the port. The current operational speed of the port can be determined from ifSpeed.')
pport_admin_duplex = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4))).clone(namedValues=named_values(('half', 1), ('full', 2), ('auto', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pportAdminDuplex.setStatus('current')
if mibBuilder.loadTexts:
pportAdminDuplex.setDescription('The desired duplex of the port.')
pport_oper_duplex = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('half', 1), ('full', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pportOperDuplex.setStatus('current')
if mibBuilder.loadTexts:
pportOperDuplex.setDescription('Indicates whether the port is operating in half-duplex or full-duplex.')
pport_link_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(-1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pportLinkIndex.setStatus('current')
if mibBuilder.loadTexts:
pportLinkIndex.setDescription('Indicates the linkIndex of the link that this port belongs to. Value of 0 indicates that this port is not associated with any link. Value of -1 indicates that this port is associated to multiple links.')
pport_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 10, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('up', 2), ('reflectionForcingDown', 3), ('redundancyForcingDown', 4), ('otherDown', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pportOperStatus.setStatus('current')
if mibBuilder.loadTexts:
pportOperStatus.setDescription('Indicates the status of the port and if the port is down indicates the reason.')
tx_queues_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1))
if mibBuilder.loadTexts:
txQueuesTable.setStatus('current')
if mibBuilder.loadTexts:
txQueuesTable.setDescription("This table consists of information on the SCE's transmit queues.")
tx_queues_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'txQueuesModuleIndex'), (0, 'PCUBE-SE-MIB', 'txQueuesPortIndex'), (0, 'PCUBE-SE-MIB', 'txQueuesQueueIndex'))
if mibBuilder.loadTexts:
txQueuesEntry.setStatus('current')
if mibBuilder.loadTexts:
txQueuesEntry.setDescription('A txQueuesTable entry.')
tx_queues_module_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
txQueuesModuleIndex.setStatus('current')
if mibBuilder.loadTexts:
txQueuesModuleIndex.setDescription('An index value that uniquely identifies the module where this queue is located.')
tx_queues_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
txQueuesPortIndex.setStatus('current')
if mibBuilder.loadTexts:
txQueuesPortIndex.setDescription('An index value that uniquely identifies the port where this queue is located.')
tx_queues_queue_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
txQueuesQueueIndex.setStatus('current')
if mibBuilder.loadTexts:
txQueuesQueueIndex.setDescription('An index value that uniquely identifies this queue within a port. The value is determined by the location of the queue on the port. Valid entries are 1 to the value of portNumTxQueues for this module.')
tx_queues_description = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 4), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
txQueuesDescription.setStatus('current')
if mibBuilder.loadTexts:
txQueuesDescription.setDescription('Description of the transmit queue.')
tx_queues_bandwidth = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
txQueuesBandwidth.setStatus('current')
if mibBuilder.loadTexts:
txQueuesBandwidth.setDescription('The bandwidth in L1 kbps configured for this queue.')
tx_queues_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
txQueuesUtilization.setStatus('current')
if mibBuilder.loadTexts:
txQueuesUtilization.setDescription('The percentage of bandwidth utilization relative to the configured rate.')
tx_queues_utilization_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
txQueuesUtilizationPeak.setStatus('current')
if mibBuilder.loadTexts:
txQueuesUtilizationPeak.setDescription('Indicates the peak value of txQueuesUtilization since the last time it was cleared or the system started.')
tx_queues_utilization_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 8), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
txQueuesUtilizationPeakTime.setStatus('current')
if mibBuilder.loadTexts:
txQueuesUtilizationPeakTime.setDescription('Indicates the time since the txQueuesUtilizationPeak value occurred.')
tx_queues_clear_counters_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 9), time_ticks()).setUnits('milliseconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
txQueuesClearCountersTime.setStatus('current')
if mibBuilder.loadTexts:
txQueuesClearCountersTime.setDescription('Indicates the time since the TX queues statistics counters were last cleared. Writing a 0 to this object causes the TX queues counters to be cleared.')
tx_queues_dropped_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 11, 1, 1, 10), counter64()).setUnits('bytes').setMaxAccess('readonly')
if mibBuilder.loadTexts:
txQueuesDroppedBytes.setStatus('current')
if mibBuilder.loadTexts:
txQueuesDroppedBytes.setDescription('Amount of dropped L3 bytes. This is valid only if the system is configured to count dropped bytes per TX queue.')
global_controllers_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1))
if mibBuilder.loadTexts:
globalControllersTable.setStatus('current')
if mibBuilder.loadTexts:
globalControllersTable.setDescription("This table consists of information on the SCE's Global Controllers. note: the globalControllersIndex and the SCE CLI configuration index have a offset of one i.e. 1 in the MIB refers to 0 in the CLI.")
global_controllers_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'globalControllersModuleIndex'), (0, 'PCUBE-SE-MIB', 'globalControllersPortIndex'), (0, 'PCUBE-SE-MIB', 'globalControllersIndex'))
if mibBuilder.loadTexts:
globalControllersEntry.setStatus('current')
if mibBuilder.loadTexts:
globalControllersEntry.setDescription('A globalControllersTable entry.')
global_controllers_module_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
globalControllersModuleIndex.setStatus('current')
if mibBuilder.loadTexts:
globalControllersModuleIndex.setDescription('An index value that uniquely identifies the module where this controller is located.')
global_controllers_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
globalControllersPortIndex.setStatus('current')
if mibBuilder.loadTexts:
globalControllersPortIndex.setDescription('An index value that uniquely identifies the port where this controller is located.')
global_controllers_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
globalControllersIndex.setStatus('current')
if mibBuilder.loadTexts:
globalControllersIndex.setDescription('An index value that uniquely identifies this controller within a port.')
global_controllers_description = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 4), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
globalControllersDescription.setStatus('current')
if mibBuilder.loadTexts:
globalControllersDescription.setDescription('Description of the controller.')
global_controllers_bandwidth = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000000))).setUnits('Kbps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
globalControllersBandwidth.setStatus('current')
if mibBuilder.loadTexts:
globalControllersBandwidth.setDescription('The L1 bandwidth configured for this controller.')
global_controllers_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
globalControllersUtilization.setStatus('current')
if mibBuilder.loadTexts:
globalControllersUtilization.setDescription('The percentage of bandwidth utilization relative to the configured rate.')
global_controllers_utilization_peak = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
globalControllersUtilizationPeak.setStatus('current')
if mibBuilder.loadTexts:
globalControllersUtilizationPeak.setDescription('Indicates the peak value of globalControllersUtilization since the last time it was cleared or the system started.')
global_controllers_utilization_peak_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 8), time_ticks()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
globalControllersUtilizationPeakTime.setStatus('current')
if mibBuilder.loadTexts:
globalControllersUtilizationPeakTime.setDescription('Indicates the time since the globalControllersUtilizationPeak value occurred.')
global_controllers_clear_counters_time = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 9), time_ticks()).setUnits('milliseconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
globalControllersClearCountersTime.setStatus('current')
if mibBuilder.loadTexts:
globalControllersClearCountersTime.setDescription('Indicates the time since the controllers statistics counters were last cleared. Writing a 0 to this object causes the controllers counters to be cleared.')
global_controllers_dropped_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 12, 1, 1, 10), counter64()).setUnits('bytes').setMaxAccess('readonly')
if mibBuilder.loadTexts:
globalControllersDroppedBytes.setStatus('current')
if mibBuilder.loadTexts:
globalControllersDroppedBytes.setDescription('Amount of L3 dropped bytes. This is valid only if the system is configured to count dropped bytes per global controller.')
app_info_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 1))
if mibBuilder.loadTexts:
appInfoTable.setStatus('current')
if mibBuilder.loadTexts:
appInfoTable.setDescription("This table consists of information on the SCE's application.")
app_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 1, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'pmoduleIndex'))
if mibBuilder.loadTexts:
appInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
appInfoEntry.setDescription('A appInfoTable entry.')
app_name = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 1, 1, 1), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
appName.setStatus('current')
if mibBuilder.loadTexts:
appName.setDescription('The application name.')
app_description = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 1, 1, 2), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
appDescription.setStatus('current')
if mibBuilder.loadTexts:
appDescription.setDescription('The application description.')
app_version = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 1, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
appVersion.setStatus('current')
if mibBuilder.loadTexts:
appVersion.setDescription('The application version.')
app_properties_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 2))
if mibBuilder.loadTexts:
appPropertiesTable.setStatus('current')
if mibBuilder.loadTexts:
appPropertiesTable.setDescription('The application properties table provides the list of properties available for the application. The table is cleared when the application is unloaded.')
app_properties_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 2, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'pmoduleIndex'), (0, 'PCUBE-SE-MIB', 'apIndex'))
if mibBuilder.loadTexts:
appPropertiesEntry.setStatus('current')
if mibBuilder.loadTexts:
appPropertiesEntry.setDescription('A appPropertiesTable entry.')
ap_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apIndex.setStatus('current')
if mibBuilder.loadTexts:
apIndex.setDescription('An index value that uniquely identify the property.')
ap_name = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 2, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apName.setStatus('current')
if mibBuilder.loadTexts:
apName.setDescription('Application property name. Property can be either scalar or array type.')
ap_type = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 2, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apType.setStatus('current')
if mibBuilder.loadTexts:
apType.setDescription('Application property type.')
app_properties_value_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3))
if mibBuilder.loadTexts:
appPropertiesValueTable.setStatus('current')
if mibBuilder.loadTexts:
appPropertiesValueTable.setDescription("The applications properties value table is used to provide specific values for the applications properties. An entry must be created by setting the entry's apvRowStatus object with createAndGo (4) before setting the name of the property requested. To specify the property set the apvPropertyName objects. The apvPropertyName must be one of the properties from the appPropertiesTable. To remove an entry set the apvRowStatus object with destroy (6). To poll the application property, poll the apvPropertyStringValue, apvPropertyUintValue, or apvPropertyCounter64Value object. The table is cleared when the application is unloaded.")
app_properties_value_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'pmoduleIndex'), (0, 'PCUBE-SE-MIB', 'apvIndex'))
if mibBuilder.loadTexts:
appPropertiesValueEntry.setStatus('current')
if mibBuilder.loadTexts:
appPropertiesValueEntry.setDescription('A appPropertiesValueTable entry.')
apv_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024)))
if mibBuilder.loadTexts:
apvIndex.setStatus('current')
if mibBuilder.loadTexts:
apvIndex.setDescription('Index to the table.')
apv_property_name = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 128))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
apvPropertyName.setStatus('current')
if mibBuilder.loadTexts:
apvPropertyName.setDescription('A name that uniquely identifies the application property. Array type properties may be accessed each element at a time in C like format, e.g. x[1], or y[1][2].')
apv_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
apvRowStatus.setStatus('current')
if mibBuilder.loadTexts:
apvRowStatus.setDescription('This object controls creation of a table entry.')
apv_property_string_value = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1, 4), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apvPropertyStringValue.setStatus('current')
if mibBuilder.loadTexts:
apvPropertyStringValue.setDescription('The value of the application property in display string format.')
apv_property_uint_value = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apvPropertyUintValue.setStatus('current')
if mibBuilder.loadTexts:
apvPropertyUintValue.setDescription("The value of the application property in unsigned integer. If the property can't be casted to unsigned integer this object returns zero.")
apv_property_counter64_value = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 13, 3, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
apvPropertyCounter64Value.setStatus('current')
if mibBuilder.loadTexts:
apvPropertyCounter64Value.setDescription("The value of the application property in Counter64 format. If the property can't be casted to Counter64, getting this object returns zero.")
subscribers_properties_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 2))
if mibBuilder.loadTexts:
subscribersPropertiesTable.setStatus('current')
if mibBuilder.loadTexts:
subscribersPropertiesTable.setDescription('The subscribers properties table provides the list of properties available for each subscriber.')
subscribers_properties_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 2, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'pmoduleIndex'), (0, 'PCUBE-SE-MIB', 'spIndex'))
if mibBuilder.loadTexts:
subscribersPropertiesEntry.setStatus('current')
if mibBuilder.loadTexts:
subscribersPropertiesEntry.setDescription('A subscribersPropertiesTable entry.')
sp_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
spIndex.setStatus('current')
if mibBuilder.loadTexts:
spIndex.setDescription('An index value that uniquely identify the property.')
sp_name = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 2, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
spName.setStatus('current')
if mibBuilder.loadTexts:
spName.setDescription('Subscriber property name.')
sp_type = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 2, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
spType.setStatus('current')
if mibBuilder.loadTexts:
spType.setDescription('Subscriber application property type in respect to: variable type (integer, boolean, string etc), number of elements (scalar or array) and restrictions if any exist.')
subscribers_properties_value_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3))
if mibBuilder.loadTexts:
subscribersPropertiesValueTable.setStatus('current')
if mibBuilder.loadTexts:
subscribersPropertiesValueTable.setDescription("The subscribers properties value table is used to provide subscriber properties values for subscribers introduced into the SCE. An entry must be created by setting the entry's spvRowStatus object with createAndGo (4) before setting any other of the entry's objects. To specify the subscriber's property set the spvSubName and spvPropertyName objects. The spvPropertyName must be one of the properties from the subscribersPropertiesTable. To remove an entry set the spvRowStatus object with destroy (6). To poll the subscriber property the manager need to poll the spvPropertyStringValue, the spvPropertyUintValue or the spvPropertyCounter64Value objects. The table is cleared when the application is unloaded.")
subscribers_properties_value_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'pmoduleIndex'), (0, 'PCUBE-SE-MIB', 'spvIndex'))
if mibBuilder.loadTexts:
subscribersPropertiesValueEntry.setStatus('current')
if mibBuilder.loadTexts:
subscribersPropertiesValueEntry.setDescription('A subscribersPropertiesValueTable entry.')
spv_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4096)))
if mibBuilder.loadTexts:
spvIndex.setStatus('current')
if mibBuilder.loadTexts:
spvIndex.setDescription('A index to the table.')
spv_sub_name = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 40))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
spvSubName.setStatus('current')
if mibBuilder.loadTexts:
spvSubName.setDescription('A name that uniquely identifies the subscriber.')
spv_property_name = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 3), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 128))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
spvPropertyName.setStatus('current')
if mibBuilder.loadTexts:
spvPropertyName.setDescription('A name that uniquely identifies the subscriber property. Array type properties may be accessed each element at a time in C like format, e.g. x[1], or y[1][2].')
spv_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 4), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
spvRowStatus.setStatus('current')
if mibBuilder.loadTexts:
spvRowStatus.setDescription('This object controls creation of a table entry. Only setting the createAndGo (4) and destroy (6) will change the status of the entry.')
spv_property_string_value = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 5), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
spvPropertyStringValue.setStatus('current')
if mibBuilder.loadTexts:
spvPropertyStringValue.setDescription('The value of the subscriber property in string format.')
spv_property_uint_value = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
spvPropertyUintValue.setStatus('current')
if mibBuilder.loadTexts:
spvPropertyUintValue.setDescription("The value of the subscriber property in unsigned integer. If the property can't be casted to unsigned integer this object returns zero.")
spv_property_counter64_value = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 8, 3, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
spvPropertyCounter64Value.setStatus('current')
if mibBuilder.loadTexts:
spvPropertyCounter64Value.setDescription("The value of the subscriber property in Counter64. If the property can't be casted to Counter64 this object returns zero.")
traffic_counters_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14, 1))
if mibBuilder.loadTexts:
trafficCountersTable.setStatus('current')
if mibBuilder.loadTexts:
trafficCountersTable.setDescription('The Traffic counters table provides information regarding the value of different the traffic counters.')
traffic_counters_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14, 1, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'pmoduleIndex'), (0, 'PCUBE-SE-MIB', 'trafficCounterIndex'))
if mibBuilder.loadTexts:
trafficCountersEntry.setStatus('current')
if mibBuilder.loadTexts:
trafficCountersEntry.setDescription('Entry containing information about a traffic counter.')
traffic_counter_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trafficCounterIndex.setStatus('current')
if mibBuilder.loadTexts:
trafficCounterIndex.setDescription('An index value that uniquely identifies the counter.')
traffic_counter_value = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14, 1, 1, 2), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trafficCounterValue.setStatus('current')
if mibBuilder.loadTexts:
trafficCounterValue.setDescription('A 64 bit counter value.')
traffic_counter_name = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14, 1, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trafficCounterName.setStatus('current')
if mibBuilder.loadTexts:
trafficCounterName.setDescription('The name given to this counter.')
traffic_counter_type = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 14, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('bytes', 2), ('packets', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trafficCounterType.setStatus('current')
if mibBuilder.loadTexts:
trafficCounterType.setDescription("Defines whether there the traffic counters counts by 'packets(3)' or by 'bytes(2)'.")
attack_type_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1))
if mibBuilder.loadTexts:
attackTypeTable.setStatus('current')
if mibBuilder.loadTexts:
attackTypeTable.setDescription('The Attack type table provides information regarding detected attacks, aggregated by attack type.')
attack_type_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'pmoduleIndex'), (0, 'PCUBE-SE-MIB', 'attackTypeIndex'))
if mibBuilder.loadTexts:
attackTypeEntry.setStatus('current')
if mibBuilder.loadTexts:
attackTypeEntry.setDescription('Entry containing aggregated information about attacks of a given type.')
attack_type_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
attackTypeIndex.setStatus('current')
if mibBuilder.loadTexts:
attackTypeIndex.setDescription('An index value that uniquely identifies the attack type.')
attack_type_name = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1, 2), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
attackTypeName.setStatus('current')
if mibBuilder.loadTexts:
attackTypeName.setDescription('The name of this attack type.')
attack_type_current_num_attacks = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
attackTypeCurrentNumAttacks.setStatus('current')
if mibBuilder.loadTexts:
attackTypeCurrentNumAttacks.setDescription('The current amount of attacks detected of this type.')
attack_type_total_num_attacks = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
attackTypeTotalNumAttacks.setStatus('current')
if mibBuilder.loadTexts:
attackTypeTotalNumAttacks.setDescription('The total amount of attacks detected of this type since last clear.')
attack_type_total_num_flows = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
attackTypeTotalNumFlows.setStatus('current')
if mibBuilder.loadTexts:
attackTypeTotalNumFlows.setDescription('The total amount of flows in attacks detected of this type since last clear.')
attack_type_total_num_seconds = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 15, 1, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setUnits('Seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
attackTypeTotalNumSeconds.setStatus('current')
if mibBuilder.loadTexts:
attackTypeTotalNumSeconds.setDescription('The total duration of attacks detected of this type since last clear.')
vas_server_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16, 1))
if mibBuilder.loadTexts:
vasServerTable.setStatus('current')
if mibBuilder.loadTexts:
vasServerTable.setDescription('The VAS server Table provides information on each VAS server operational status.')
vas_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16, 1, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'pmoduleIndex'), (0, 'PCUBE-SE-MIB', 'vasServerIndex'))
if mibBuilder.loadTexts:
vasServerEntry.setStatus('current')
if mibBuilder.loadTexts:
vasServerEntry.setDescription('Entry containing information about VAS server status.')
vas_server_index = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vasServerIndex.setStatus('current')
if mibBuilder.loadTexts:
vasServerIndex.setDescription('An index value that uniquely identifies a VAS server.')
vas_server_id = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vasServerId.setStatus('current')
if mibBuilder.loadTexts:
vasServerId.setDescription('The ID of the VAS server.')
vas_server_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('up', 2), ('down', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vasServerAdminStatus.setStatus('current')
if mibBuilder.loadTexts:
vasServerAdminStatus.setDescription('Indicates only the administrative status of the VAS sever, in order to activate a server it should be also configured with a VLAN and a group.')
vas_server_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 16, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('up', 2), ('down', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vasServerOperStatus.setStatus('current')
if mibBuilder.loadTexts:
vasServerOperStatus.setDescription('Indicates the operational status of the VAS sever.')
mpls_vpn_software_counters_table = mib_table((1, 3, 6, 1, 4, 1, 5655, 4, 1, 17, 1))
if mibBuilder.loadTexts:
mplsVpnSoftwareCountersTable.setStatus('current')
if mibBuilder.loadTexts:
mplsVpnSoftwareCountersTable.setDescription('The MPLS VPN software counters table provides information on various system software counters related to MPLS VPN auto learn.')
mpls_vpn_software_counters_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5655, 4, 1, 17, 1, 1)).setIndexNames((0, 'PCUBE-SE-MIB', 'pmoduleIndex'))
if mibBuilder.loadTexts:
mplsVpnSoftwareCountersEntry.setStatus('current')
if mibBuilder.loadTexts:
mplsVpnSoftwareCountersEntry.setDescription('Entry containing information about MPLS VPN auto learn SW counters.')
mpls_vpn_max_hw_mappings = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 17, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mplsVpnMaxHWMappings.setStatus('current')
if mibBuilder.loadTexts:
mplsVpnMaxHWMappings.setDescription('The maximum number of MPLS VPN mappings supported by HW (including all kinds of mappings).')
mpls_vpn_current_hw_mappings = mib_table_column((1, 3, 6, 1, 4, 1, 5655, 4, 1, 17, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mplsVpnCurrentHWMappings.setStatus('current')
if mibBuilder.loadTexts:
mplsVpnCurrentHWMappings.setDescription('The current number of HW MPLS VPN mappings in use.')
pcube_se_events_group = notification_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 3)).setObjects(('PCUBE-SE-MIB', 'operationalStatusOperationalTrap'), ('PCUBE-SE-MIB', 'operationalStatusWarningTrap'), ('PCUBE-SE-MIB', 'operationalStatusFailureTrap'), ('PCUBE-SE-MIB', 'systemResetTrap'), ('PCUBE-SE-MIB', 'chassisTempAlarmOnTrap'), ('PCUBE-SE-MIB', 'chassisTempAlarmOffTrap'), ('PCUBE-SE-MIB', 'chassisVoltageAlarmOnTrap'), ('PCUBE-SE-MIB', 'chassisFansAlarmOnTrap'), ('PCUBE-SE-MIB', 'chassisPowerSupplyAlarmOnTrap'), ('PCUBE-SE-MIB', 'rdrActiveConnectionTrap'), ('PCUBE-SE-MIB', 'rdrNoActiveConnectionTrap'), ('PCUBE-SE-MIB', 'rdrConnectionUpTrap'), ('PCUBE-SE-MIB', 'rdrConnectionDownTrap'), ('PCUBE-SE-MIB', 'telnetSessionStartedTrap'), ('PCUBE-SE-MIB', 'telnetSessionEndedTrap'), ('PCUBE-SE-MIB', 'telnetSessionDeniedAccessTrap'), ('PCUBE-SE-MIB', 'telnetSessionBadLoginTrap'), ('PCUBE-SE-MIB', 'loggerUserLogIsFullTrap'), ('PCUBE-SE-MIB', 'sntpClockDriftWarnTrap'), ('PCUBE-SE-MIB', 'linkModeBypassTrap'), ('PCUBE-SE-MIB', 'linkModeForwardingTrap'), ('PCUBE-SE-MIB', 'linkModeCutoffTrap'), ('PCUBE-SE-MIB', 'moduleAttackFilterActivatedTrap'), ('PCUBE-SE-MIB', 'moduleAttackFilterDeactivatedTrap'), ('PCUBE-SE-MIB', 'moduleEmAgentGenericTrap'), ('PCUBE-SE-MIB', 'linkModeSniffingTrap'), ('PCUBE-SE-MIB', 'moduleRedundancyReadyTrap'), ('PCUBE-SE-MIB', 'moduleRedundantConfigurationMismatchTrap'), ('PCUBE-SE-MIB', 'moduleLostRedundancyTrap'), ('PCUBE-SE-MIB', 'moduleSmConnectionDownTrap'), ('PCUBE-SE-MIB', 'moduleSmConnectionUpTrap'), ('PCUBE-SE-MIB', 'moduleOperStatusChangeTrap'), ('PCUBE-SE-MIB', 'portOperStatusChangeTrap'), ('PCUBE-SE-MIB', 'chassisLineFeedAlarmOnTrap'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryDiscardingReportsTrap'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryStoppedDiscardingReportsTrap'), ('PCUBE-SE-MIB', 'sessionStartedTrap'), ('PCUBE-SE-MIB', 'sessionEndedTrap'), ('PCUBE-SE-MIB', 'sessionDeniedAccessTrap'), ('PCUBE-SE-MIB', 'sessionBadLoginTrap'), ('PCUBE-SE-MIB', 'illegalSubscriberMappingTrap'), ('PCUBE-SE-MIB', 'loggerLineAttackLogFullTrap'), ('PCUBE-SE-MIB', 'vasServerOpertionalStatusChangeTrap'), ('PCUBE-SE-MIB', 'pullRequestRetryFailedTrap'), ('PCUBE-SE-MIB', 'mplsVpnTotalHWMappingsThresholdExceededTrap'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_se_events_group = pcubeSeEventsGroup.setStatus('deprecated')
if mibBuilder.loadTexts:
pcubeSeEventsGroup.setDescription('Pcube notifications. Contains deprecated objects.')
pcube_se_events_group_rev1 = notification_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 4)).setObjects(('PCUBE-SE-MIB', 'operationalStatusOperationalTrap'), ('PCUBE-SE-MIB', 'operationalStatusWarningTrap'), ('PCUBE-SE-MIB', 'operationalStatusFailureTrap'), ('PCUBE-SE-MIB', 'systemResetTrap'), ('PCUBE-SE-MIB', 'chassisTempAlarmOnTrap'), ('PCUBE-SE-MIB', 'chassisTempAlarmOffTrap'), ('PCUBE-SE-MIB', 'chassisVoltageAlarmOnTrap'), ('PCUBE-SE-MIB', 'chassisFansAlarmOnTrap'), ('PCUBE-SE-MIB', 'chassisPowerSupplyAlarmOnTrap'), ('PCUBE-SE-MIB', 'rdrActiveConnectionTrap'), ('PCUBE-SE-MIB', 'rdrNoActiveConnectionTrap'), ('PCUBE-SE-MIB', 'rdrConnectionUpTrap'), ('PCUBE-SE-MIB', 'rdrConnectionDownTrap'), ('PCUBE-SE-MIB', 'loggerUserLogIsFullTrap'), ('PCUBE-SE-MIB', 'sntpClockDriftWarnTrap'), ('PCUBE-SE-MIB', 'linkModeBypassTrap'), ('PCUBE-SE-MIB', 'linkModeForwardingTrap'), ('PCUBE-SE-MIB', 'linkModeCutoffTrap'), ('PCUBE-SE-MIB', 'moduleAttackFilterActivatedTrap'), ('PCUBE-SE-MIB', 'moduleAttackFilterDeactivatedTrap'), ('PCUBE-SE-MIB', 'moduleEmAgentGenericTrap'), ('PCUBE-SE-MIB', 'linkModeSniffingTrap'), ('PCUBE-SE-MIB', 'moduleRedundancyReadyTrap'), ('PCUBE-SE-MIB', 'moduleRedundantConfigurationMismatchTrap'), ('PCUBE-SE-MIB', 'moduleLostRedundancyTrap'), ('PCUBE-SE-MIB', 'moduleSmConnectionDownTrap'), ('PCUBE-SE-MIB', 'moduleSmConnectionUpTrap'), ('PCUBE-SE-MIB', 'moduleOperStatusChangeTrap'), ('PCUBE-SE-MIB', 'portOperStatusChangeTrap'), ('PCUBE-SE-MIB', 'chassisLineFeedAlarmOnTrap'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryDiscardingReportsTrap'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryStoppedDiscardingReportsTrap'), ('PCUBE-SE-MIB', 'sessionStartedTrap'), ('PCUBE-SE-MIB', 'sessionEndedTrap'), ('PCUBE-SE-MIB', 'sessionDeniedAccessTrap'), ('PCUBE-SE-MIB', 'sessionBadLoginTrap'), ('PCUBE-SE-MIB', 'illegalSubscriberMappingTrap'), ('PCUBE-SE-MIB', 'loggerLineAttackLogFullTrap'), ('PCUBE-SE-MIB', 'vasServerOpertionalStatusChangeTrap'), ('PCUBE-SE-MIB', 'pullRequestRetryFailedTrap'), ('PCUBE-SE-MIB', 'mplsVpnTotalHWMappingsThresholdExceededTrap'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_se_events_group_rev1 = pcubeSeEventsGroupRev1.setStatus('current')
if mibBuilder.loadTexts:
pcubeSeEventsGroupRev1.setDescription('Pcube notifications.')
pcube_se_events = mib_identifier((1, 3, 6, 1, 4, 1, 5655, 4, 0))
operational_status_operational_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 1)).setObjects(('PCUBE-SE-MIB', 'sysOperationalStatus'))
if mibBuilder.loadTexts:
operationalStatusOperationalTrap.setStatus('current')
if mibBuilder.loadTexts:
operationalStatusOperationalTrap.setDescription("OperationalStatusOperational notification signifies that the agent entity has detected the sysOperationalStatus object in this MIB has changed to 'operational(3)'.")
operational_status_warning_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 2)).setObjects(('PCUBE-SE-MIB', 'sysOperationalStatus'))
if mibBuilder.loadTexts:
operationalStatusWarningTrap.setStatus('current')
if mibBuilder.loadTexts:
operationalStatusWarningTrap.setDescription("OperationalStatusWarning notification signifies that the agent entity has detected the sysOperationalStatus object in this MIB has changed to 'warning(4)'.")
operational_status_failure_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 3)).setObjects(('PCUBE-SE-MIB', 'sysOperationalStatus'))
if mibBuilder.loadTexts:
operationalStatusFailureTrap.setStatus('current')
if mibBuilder.loadTexts:
operationalStatusFailureTrap.setDescription("OperationalStatusFailure notification signifies that the agent entity has detected the sysOperationalStatus object in this MIB has changed to 'failure(5)'.")
system_reset_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 4))
if mibBuilder.loadTexts:
systemResetTrap.setStatus('current')
if mibBuilder.loadTexts:
systemResetTrap.setDescription("A systemReset notification signifies that the agent entity is about to reset itself either per user's request or due to a fatal event.")
chassis_temp_alarm_on_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 5)).setObjects(('PCUBE-SE-MIB', 'pchassisTempAlarm'))
if mibBuilder.loadTexts:
chassisTempAlarmOnTrap.setStatus('current')
if mibBuilder.loadTexts:
chassisTempAlarmOnTrap.setDescription("A chassisTempAlarmOn notification signifies that the agent entity has detected the chassisTempAlarm object in this MIB has changed to the 'on(3)' state (temperature is too high).")
chassis_temp_alarm_off_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 6)).setObjects(('PCUBE-SE-MIB', 'pchassisTempAlarm'))
if mibBuilder.loadTexts:
chassisTempAlarmOffTrap.setStatus('current')
if mibBuilder.loadTexts:
chassisTempAlarmOffTrap.setDescription("A chassisTempAlarmOff notification signifies that the agent entity has detected the chassisTempAlarm object in this MIB has changed to the 'off(2)' state (temperature level is back to normal).")
chassis_voltage_alarm_on_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 7)).setObjects(('PCUBE-SE-MIB', 'pchassisVoltageAlarm'))
if mibBuilder.loadTexts:
chassisVoltageAlarmOnTrap.setStatus('current')
if mibBuilder.loadTexts:
chassisVoltageAlarmOnTrap.setDescription("A chassisVoltageAlarmOn notification signifies that the agent entity has detected the chassisVoltageAlarm object in this MIB has changed to the 'on(3)' state (voltage level is too high).")
chassis_fans_alarm_on_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 8)).setObjects(('PCUBE-SE-MIB', 'pchassisFansAlarm'))
if mibBuilder.loadTexts:
chassisFansAlarmOnTrap.setStatus('current')
if mibBuilder.loadTexts:
chassisFansAlarmOnTrap.setDescription("A chassisFanStatusFailure notification signifies that the agent entity has detected the chassisFansAlarm object in this MIB has changed to the 'on(3)' state.")
chassis_power_supply_alarm_on_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 9)).setObjects(('PCUBE-SE-MIB', 'pchassisPowerSupplyAlarm'))
if mibBuilder.loadTexts:
chassisPowerSupplyAlarmOnTrap.setStatus('current')
if mibBuilder.loadTexts:
chassisPowerSupplyAlarmOnTrap.setDescription("A chassisPsuStatusFailure notification signifies that the agent entity has detected the chassisPowerSupplyAlarm object in this MIB has changed to the 'on(3)' state.")
rdr_active_connection_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 10)).setObjects(('PCUBE-SE-MIB', 'rdrFormatterDestIPAddr'), ('PCUBE-SE-MIB', 'rdrFormatterDestStatus'))
if mibBuilder.loadTexts:
rdrActiveConnectionTrap.setStatus('current')
if mibBuilder.loadTexts:
rdrActiveConnectionTrap.setDescription("RdrConnectionDestTypeActive notification signifies that the agent entity has detected the rdrFormatterDestStatus object in this MIB has changed to the 'active(2)' state.")
rdr_no_active_connection_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 11))
if mibBuilder.loadTexts:
rdrNoActiveConnectionTrap.setStatus('current')
if mibBuilder.loadTexts:
rdrNoActiveConnectionTrap.setDescription('A rdrNoActiveConnection notification signifies that the agent entity has detected there is no active connection between the RDR-formatter and any Data Collector.')
rdr_connection_up_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 12)).setObjects(('PCUBE-SE-MIB', 'rdrFormatterDestIPAddr'), ('PCUBE-SE-MIB', 'rdrFormatterDestConnectionStatus'))
if mibBuilder.loadTexts:
rdrConnectionUpTrap.setStatus('current')
if mibBuilder.loadTexts:
rdrConnectionUpTrap.setDescription("RdrConnectionStatusUp notification signifies that the agent entity has detected the rdrFormatterDestConnectionStatus object in this MIB has changed to 'up(2)'.")
rdr_connection_down_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 13)).setObjects(('PCUBE-SE-MIB', 'rdrFormatterDestIPAddr'), ('PCUBE-SE-MIB', 'rdrFormatterDestConnectionStatus'))
if mibBuilder.loadTexts:
rdrConnectionDownTrap.setStatus('current')
if mibBuilder.loadTexts:
rdrConnectionDownTrap.setDescription("RdrConnectionStatusDown notification signifies that the agent entity has detected the rdrFormatterDestConnectionStatus object in this MIB has changed to 'down(3)'.")
telnet_session_started_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 14))
if mibBuilder.loadTexts:
telnetSessionStartedTrap.setStatus('deprecated')
if mibBuilder.loadTexts:
telnetSessionStartedTrap.setDescription('Replaced by the more generic sessionStartedTrap.')
telnet_session_ended_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 15))
if mibBuilder.loadTexts:
telnetSessionEndedTrap.setStatus('deprecated')
if mibBuilder.loadTexts:
telnetSessionEndedTrap.setDescription('Replaced by the more generic sessionEndedTrap.')
telnet_session_denied_access_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 16))
if mibBuilder.loadTexts:
telnetSessionDeniedAccessTrap.setStatus('deprecated')
if mibBuilder.loadTexts:
telnetSessionDeniedAccessTrap.setDescription('Replaced by the more generic sessionDeniedAccessTrap.')
telnet_session_bad_login_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 17))
if mibBuilder.loadTexts:
telnetSessionBadLoginTrap.setStatus('deprecated')
if mibBuilder.loadTexts:
telnetSessionBadLoginTrap.setDescription('Replaced by the more generic sessionBadLoginTrap.')
logger_user_log_is_full_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 18))
if mibBuilder.loadTexts:
loggerUserLogIsFullTrap.setStatus('current')
if mibBuilder.loadTexts:
loggerUserLogIsFullTrap.setDescription('A loggerUserLogIsFull notification signifies that the agent entity has detected the User log file is full. In such case the agent entity rolls to the next file.')
sntp_clock_drift_warn_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 19))
if mibBuilder.loadTexts:
sntpClockDriftWarnTrap.setStatus('current')
if mibBuilder.loadTexts:
sntpClockDriftWarnTrap.setDescription("An sntpClockDriftWarn notification signifies that the entity's SNTP agent did not receive time update for a long period, this may cause a time drift.")
link_mode_bypass_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 20)).setObjects(('PCUBE-SE-MIB', 'linkOperMode'))
if mibBuilder.loadTexts:
linkModeBypassTrap.setStatus('current')
if mibBuilder.loadTexts:
linkModeBypassTrap.setDescription("A linkModeBypass notification signifies that the agent entity has detected that the linkOperMode object in this MIB has changed to 'bypass(2)'.")
link_mode_forwarding_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 21)).setObjects(('PCUBE-SE-MIB', 'linkOperMode'))
if mibBuilder.loadTexts:
linkModeForwardingTrap.setStatus('current')
if mibBuilder.loadTexts:
linkModeForwardingTrap.setDescription("A linkModeForwarding notification signifies that the agent entity has detected that the linkOperMode object in this MIB has changed to 'forwarding(3)'.")
link_mode_cutoff_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 22)).setObjects(('PCUBE-SE-MIB', 'linkOperMode'))
if mibBuilder.loadTexts:
linkModeCutoffTrap.setStatus('current')
if mibBuilder.loadTexts:
linkModeCutoffTrap.setDescription("A linkModeCutoff notification signifies that the agent entity has detected that the linkOperMode object in this MIB has changed to 'cutoff(4)'.")
pcube_se_event_generic_string1 = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 0, 23), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pcubeSeEventGenericString1.setStatus('current')
if mibBuilder.loadTexts:
pcubeSeEventGenericString1.setDescription('Temporary string used for traps. Always returns an empty string.')
pcube_se_event_generic_string2 = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 0, 24), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pcubeSeEventGenericString2.setStatus('current')
if mibBuilder.loadTexts:
pcubeSeEventGenericString2.setDescription('Temporary string used for traps. Always returns an empty string.')
module_attack_filter_activated_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 25)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'), ('PCUBE-SE-MIB', 'pcubeSeEventGenericString1'))
if mibBuilder.loadTexts:
moduleAttackFilterActivatedTrap.setStatus('current')
if mibBuilder.loadTexts:
moduleAttackFilterActivatedTrap.setDescription("A moduleAttackFilterActivated notification signifies that the agent entity's attack filter module has activated a filter. The pcubeSeEventGenericString1 is the type of attack-filter, which was activated.")
module_attack_filter_deactivated_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 26)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'), ('PCUBE-SE-MIB', 'pcubeSeEventGenericString1'), ('PCUBE-SE-MIB', 'pcubeSeEventGenericString2'))
if mibBuilder.loadTexts:
moduleAttackFilterDeactivatedTrap.setStatus('current')
if mibBuilder.loadTexts:
moduleAttackFilterDeactivatedTrap.setDescription("A portAttackFilterDeactivated notification signifies that the agent entity's attack filter module has removed a filter that was previously activated. The pcubeSeEventGenericString1 is the attack-filter type, which was sent in the corresponding moduleAttackFilterActivatedTrap. the pcubeSeEventGenericString2 is the reason for deactivating the filter.")
module_em_agent_generic_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 27)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'), ('PCUBE-SE-MIB', 'pcubeSeEventGenericString1'), ('PCUBE-SE-MIB', 'pcubeSeEventGenericString2'))
if mibBuilder.loadTexts:
moduleEmAgentGenericTrap.setStatus('current')
if mibBuilder.loadTexts:
moduleEmAgentGenericTrap.setDescription('A generic notification used by the P-Cube EM agent. pcubeSeEventGenericString1 specifies what notification is it, and pcubeSeEventGenericString2 is the relevant parameter.')
link_mode_sniffing_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 28)).setObjects(('PCUBE-SE-MIB', 'linkOperMode'))
if mibBuilder.loadTexts:
linkModeSniffingTrap.setStatus('current')
if mibBuilder.loadTexts:
linkModeSniffingTrap.setDescription("A linkModeSniffing notification signifies that the agent entity has detected that the linkOperMode object in this MIB has changed to 'sniffing(5)'.")
module_redundancy_ready_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 29)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'), ('PCUBE-SE-MIB', 'pmoduleOperStatus'))
if mibBuilder.loadTexts:
moduleRedundancyReadyTrap.setStatus('current')
if mibBuilder.loadTexts:
moduleRedundancyReadyTrap.setDescription('A moduleRedundancyReady notification signifies that the module was able to connect and synchronize with a redundant entity, and is now ready to handle fail-over if needed.')
module_redundant_configuration_mismatch_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 30)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'))
if mibBuilder.loadTexts:
moduleRedundantConfigurationMismatchTrap.setStatus('current')
if mibBuilder.loadTexts:
moduleRedundantConfigurationMismatchTrap.setDescription('A moduleRedundantConfigurationMismatch notification signifies that the module was not able to synchronize with a redundant entity, due to a essential configuration parameters that are do not match between the module and the redundant entity.')
module_lost_redundancy_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 31)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'), ('PCUBE-SE-MIB', 'pmoduleOperStatus'))
if mibBuilder.loadTexts:
moduleLostRedundancyTrap.setStatus('current')
if mibBuilder.loadTexts:
moduleLostRedundancyTrap.setDescription('A moduleLostRedundancy notification signifies that the module has lost the ability to perform the fail-over procedure.')
module_sm_connection_down_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 32)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'))
if mibBuilder.loadTexts:
moduleSmConnectionDownTrap.setStatus('current')
if mibBuilder.loadTexts:
moduleSmConnectionDownTrap.setDescription("A moduleSmConnectionDown notification signifies that the module's virtual connection to the subscriber manager is broken.")
module_sm_connection_up_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 33)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'))
if mibBuilder.loadTexts:
moduleSmConnectionUpTrap.setStatus('current')
if mibBuilder.loadTexts:
moduleSmConnectionUpTrap.setDescription("A moduleSmConnectionUp notification signifies that the module's virtual connection to the subscriber manager is up and working.")
module_oper_status_change_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 34)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'), ('PCUBE-SE-MIB', 'pmoduleOperStatus'))
if mibBuilder.loadTexts:
moduleOperStatusChangeTrap.setStatus('current')
if mibBuilder.loadTexts:
moduleOperStatusChangeTrap.setDescription('A moduleOperStatusChangeTrap notification signifies that the moduleOperStatus has changed its value.')
port_oper_status_change_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 35)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'), ('PCUBE-SE-MIB', 'pportIndex'), ('PCUBE-SE-MIB', 'pportOperStatus'))
if mibBuilder.loadTexts:
portOperStatusChangeTrap.setStatus('current')
if mibBuilder.loadTexts:
portOperStatusChangeTrap.setDescription('A portOperStatusChangeTrap notification signifies that the portOperStatus object of the portIndex has changed its value, i.e., the link was forced down or the force down was released.')
chassis_line_feed_alarm_on_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 36)).setObjects(('PCUBE-SE-MIB', 'pchassisLineFeedAlarm'))
if mibBuilder.loadTexts:
chassisLineFeedAlarmOnTrap.setStatus('current')
if mibBuilder.loadTexts:
chassisLineFeedAlarmOnTrap.setDescription("A chassisLineFeedAlarmOn notification signifies that the agent entity has detected the chassisLineFeed object in this MIB has changed to the 'on(3)' state.")
rdr_formatter_category_discarding_reports_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 37)).setObjects(('PCUBE-SE-MIB', 'rdrFormatterCategoryIndex'))
if mibBuilder.loadTexts:
rdrFormatterCategoryDiscardingReportsTrap.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryDiscardingReportsTrap.setDescription('rdrCategoryDiscardingReportsTrap notification signifies that the agent entity has detected that reports send to this category are being discarded. The rdrFormatterCategoryNumReportsDiscarded object in this MIB is counting the amount of discarded reports.')
rdr_formatter_category_stopped_discarding_reports_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 38)).setObjects(('PCUBE-SE-MIB', 'rdrFormatterCategoryIndex'))
if mibBuilder.loadTexts:
rdrFormatterCategoryStoppedDiscardingReportsTrap.setStatus('current')
if mibBuilder.loadTexts:
rdrFormatterCategoryStoppedDiscardingReportsTrap.setDescription('rdrCategoryStoppedDiscardingReportsTrap notification signifies that the agent entity has detected that reports send to this category are not being discarded any more. The rdrFormatterCategoryNumReportsDiscarded object in this MIB is counting the amount of discarded reports.')
session_started_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 39)).setObjects(('PCUBE-SE-MIB', 'pcubeSeEventGenericString1'))
if mibBuilder.loadTexts:
sessionStartedTrap.setStatus('current')
if mibBuilder.loadTexts:
sessionStartedTrap.setDescription('A sessionStarted notification signifies that the agent entity has accepted a new session. The pcubeSeEventGenericString1 is the session type (telnet/SSH) and client IP address.')
session_ended_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 40)).setObjects(('PCUBE-SE-MIB', 'pcubeSeEventGenericString1'))
if mibBuilder.loadTexts:
sessionEndedTrap.setStatus('current')
if mibBuilder.loadTexts:
sessionEndedTrap.setDescription('A sessionEnded notification signifies that the agent entity has detected end of a session. The pcubeSeEventGenericString1 is the session type (telnet/SSH) and client IP address.')
session_denied_access_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 41))
if mibBuilder.loadTexts:
sessionDeniedAccessTrap.setStatus('current')
if mibBuilder.loadTexts:
sessionDeniedAccessTrap.setDescription('A sessionDeniedAccess notification signifies that the agent entity has refused a session from unauthorized source. The pcubeSeEventGenericString1 is the session type (telnet/SSH) and client IP address.')
session_bad_login_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 42))
if mibBuilder.loadTexts:
sessionBadLoginTrap.setStatus('current')
if mibBuilder.loadTexts:
sessionBadLoginTrap.setDescription('A sessionBadLogin notification signifies that the agent entity has detected attempt to login with a wrong password. The pcubeSeEventGenericString1 is the session type (telnet/SSH) and client IP address.')
illegal_subscriber_mapping_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 43)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'), ('PCUBE-SE-MIB', 'pcubeSeEventGenericString1'))
if mibBuilder.loadTexts:
illegalSubscriberMappingTrap.setStatus('current')
if mibBuilder.loadTexts:
illegalSubscriberMappingTrap.setDescription('A illegalSubscriberMappingTrap notification signifies that some external entity has attempted to create illegal or inconsistent subscriber mappings. The pcubeSeEventGenericString1 contains a message describing the problem.')
logger_line_attack_log_full_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 44))
if mibBuilder.loadTexts:
loggerLineAttackLogFullTrap.setStatus('current')
if mibBuilder.loadTexts:
loggerLineAttackLogFullTrap.setDescription('Signifies that the agent entity has detected the line-attack log file is full. In such case the agent entity rolls to the next file.')
vas_server_opertional_status_change_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 45)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'), ('PCUBE-SE-MIB', 'vasServerIndex'), ('PCUBE-SE-MIB', 'vasServerId'), ('PCUBE-SE-MIB', 'vasServerOperStatus'))
if mibBuilder.loadTexts:
vasServerOpertionalStatusChangeTrap.setStatus('current')
if mibBuilder.loadTexts:
vasServerOpertionalStatusChangeTrap.setDescription('Signifies that the agent entity has detected that the vas server operational status has changed.')
pull_request_number = mib_scalar((1, 3, 6, 1, 4, 1, 5655, 4, 0, 46), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pullRequestNumber.setStatus('current')
if mibBuilder.loadTexts:
pullRequestNumber.setDescription('Used only for traps to signify the number of pull requests issued so far for the anonymous subscriber given in the pullRequestRetryFailedTrap containing notification. A direct get will always returns 0.')
pull_request_retry_failed_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 47)).setObjects(('PCUBE-SE-MIB', 'pcubeSeEventGenericString1'), ('PCUBE-SE-MIB', 'pullRequestNumber'))
if mibBuilder.loadTexts:
pullRequestRetryFailedTrap.setStatus('current')
if mibBuilder.loadTexts:
pullRequestRetryFailedTrap.setDescription("Signifies that an unknown subscriber wasn't identified after a certain number of pull requests. The value of pcubeSeEventGenericString1 is the subscriber id and the pullRequestNumber is the number of pull requests made on this sub.")
mpls_vpn_total_hw_mappings_threshold_exceeded_trap = notification_type((1, 3, 6, 1, 4, 1, 5655, 4, 0, 48)).setObjects(('PCUBE-SE-MIB', 'mplsVpnCurrentHWMappings'))
if mibBuilder.loadTexts:
mplsVpnTotalHWMappingsThresholdExceededTrap.setStatus('current')
if mibBuilder.loadTexts:
mplsVpnTotalHWMappingsThresholdExceededTrap.setDescription('Sent when the value of mplsVpnCurrentHWMappings exceeds the allowed threshold.')
pcube_compliance = module_compliance((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 2, 1)).setObjects(('PCUBE-SE-MIB', 'pcubeSystemGroup'), ('PCUBE-SE-MIB', 'pcubeChassisGroup'), ('PCUBE-SE-MIB', 'pcuebModuleGroup'), ('PCUBE-SE-MIB', 'pcubeLinkGroup'), ('PCUBE-SE-MIB', 'pcubeDiskGroup'), ('PCUBE-SE-MIB', 'pcubeRdrFormatterGroup'), ('PCUBE-SE-MIB', 'pcubeLoggerGroup'), ('PCUBE-SE-MIB', 'pcubeSubscribersGroup'), ('PCUBE-SE-MIB', 'pcubeTrafficProcessorGroup'), ('PCUBE-SE-MIB', 'pcubePortGroup'), ('PCUBE-SE-MIB', 'pcubeTxQueuesGroup'), ('PCUBE-SE-MIB', 'pcubeGlobalControllersGroup'), ('PCUBE-SE-MIB', 'pcubeApplicationGroup'), ('PCUBE-SE-MIB', 'pcubeTrafficCountersGroup'), ('PCUBE-SE-MIB', 'pcubeAttackGroup'), ('PCUBE-SE-MIB', 'pcubeVasTrafficForwardingGroup'), ('PCUBE-SE-MIB', 'pcubeTrapObjectsGroup'), ('PCUBE-SE-MIB', 'pcubeMplsVpnAutoLearnGroup'), ('PCUBE-SE-MIB', 'pcubeSeEventsGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_compliance = pcubeCompliance.setStatus('deprecated')
if mibBuilder.loadTexts:
pcubeCompliance.setDescription('A compliance statement defined in this MIB module, for SCE SNMP agents. with old deprectated groups. This compliance includes deprecated groups.')
pcube_compliance_rev1 = module_compliance((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 2, 2)).setObjects(('PCUBE-SE-MIB', 'pcubeSystemGroup'), ('PCUBE-SE-MIB', 'pcubeChassisGroup'), ('PCUBE-SE-MIB', 'pcuebModuleGroup'), ('PCUBE-SE-MIB', 'pcubeLinkGroup'), ('PCUBE-SE-MIB', 'pcubeDiskGroup'), ('PCUBE-SE-MIB', 'pcubeRdrFormatterGroup'), ('PCUBE-SE-MIB', 'pcubeLoggerGroup'), ('PCUBE-SE-MIB', 'pcubeSubscribersGroup'), ('PCUBE-SE-MIB', 'pcubeTrafficProcessorGroup'), ('PCUBE-SE-MIB', 'pcubePortGroup'), ('PCUBE-SE-MIB', 'pcubeTxQueuesGroup'), ('PCUBE-SE-MIB', 'pcubeGlobalControllersGroup'), ('PCUBE-SE-MIB', 'pcubeApplicationGroup'), ('PCUBE-SE-MIB', 'pcubeTrafficCountersGroup'), ('PCUBE-SE-MIB', 'pcubeAttackGroup'), ('PCUBE-SE-MIB', 'pcubeVasTrafficForwardingGroup'), ('PCUBE-SE-MIB', 'pcubeTrapObjectsGroup'), ('PCUBE-SE-MIB', 'pcubeMplsVpnAutoLearnGroup'), ('PCUBE-SE-MIB', 'pcubeSeEventsGroupRev1'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_compliance_rev1 = pcubeComplianceRev1.setStatus('current')
if mibBuilder.loadTexts:
pcubeComplianceRev1.setDescription('A compliance statement defined in this MIB module, for SCE SNMP agents.')
pcube_system_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 1)).setObjects(('PCUBE-SE-MIB', 'sysOperationalStatus'), ('PCUBE-SE-MIB', 'sysFailureRecovery'), ('PCUBE-SE-MIB', 'sysVersion'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_system_group = pcubeSystemGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeSystemGroup.setDescription('System related inforamation.')
pcube_chassis_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 2)).setObjects(('PCUBE-SE-MIB', 'pchassisSysType'), ('PCUBE-SE-MIB', 'pchassisPowerSupplyAlarm'), ('PCUBE-SE-MIB', 'pchassisFansAlarm'), ('PCUBE-SE-MIB', 'pchassisTempAlarm'), ('PCUBE-SE-MIB', 'pchassisVoltageAlarm'), ('PCUBE-SE-MIB', 'pchassisNumSlots'), ('PCUBE-SE-MIB', 'pchassisSlotConfig'), ('PCUBE-SE-MIB', 'pchassisPsuType'), ('PCUBE-SE-MIB', 'pchassisLineFeedAlarm'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_chassis_group = pcubeChassisGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeChassisGroup.setDescription('Chassis related information.')
pcueb_module_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 3)).setObjects(('PCUBE-SE-MIB', 'pmoduleIndex'), ('PCUBE-SE-MIB', 'pmoduleType'), ('PCUBE-SE-MIB', 'pmoduleNumTrafficProcessors'), ('PCUBE-SE-MIB', 'pmoduleSlotNum'), ('PCUBE-SE-MIB', 'pmoduleHwVersion'), ('PCUBE-SE-MIB', 'pmoduleNumPorts'), ('PCUBE-SE-MIB', 'pmoduleNumLinks'), ('PCUBE-SE-MIB', 'pmoduleConnectionMode'), ('PCUBE-SE-MIB', 'pmoduleSerialNumber'), ('PCUBE-SE-MIB', 'pmoduleUpStreamAttackFilteringTime'), ('PCUBE-SE-MIB', 'pmoduleUpStreamLastAttackFilteringTime'), ('PCUBE-SE-MIB', 'pmoduleDownStreamAttackFilteringTime'), ('PCUBE-SE-MIB', 'pmoduleDownStreamLastAttackFilteringTime'), ('PCUBE-SE-MIB', 'pmoduleAttackObjectsClearTime'), ('PCUBE-SE-MIB', 'pmoduleAdminStatus'), ('PCUBE-SE-MIB', 'pmoduleOperStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcueb_module_group = pcuebModuleGroup.setStatus('current')
if mibBuilder.loadTexts:
pcuebModuleGroup.setDescription('Module related information.')
pcube_link_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 4)).setObjects(('PCUBE-SE-MIB', 'linkModuleIndex'), ('PCUBE-SE-MIB', 'linkIndex'), ('PCUBE-SE-MIB', 'linkAdminModeOnActive'), ('PCUBE-SE-MIB', 'linkAdminModeOnFailure'), ('PCUBE-SE-MIB', 'linkOperMode'), ('PCUBE-SE-MIB', 'linkStatusReflectionEnable'), ('PCUBE-SE-MIB', 'linkSubscriberSidePortIndex'), ('PCUBE-SE-MIB', 'linkNetworkSidePortIndex'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_link_group = pcubeLinkGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeLinkGroup.setDescription('Link related information.')
pcube_disk_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 5)).setObjects(('PCUBE-SE-MIB', 'diskNumUsedBytes'), ('PCUBE-SE-MIB', 'diskNumFreeBytes'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_disk_group = pcubeDiskGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeDiskGroup.setDescription('Disk related information.')
pcube_rdr_formatter_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 6)).setObjects(('PCUBE-SE-MIB', 'rdrFormatterEnable'), ('PCUBE-SE-MIB', 'rdrFormatterDestIPAddr'), ('PCUBE-SE-MIB', 'rdrFormatterDestPort'), ('PCUBE-SE-MIB', 'rdrFormatterDestPriority'), ('PCUBE-SE-MIB', 'rdrFormatterDestStatus'), ('PCUBE-SE-MIB', 'rdrFormatterDestConnectionStatus'), ('PCUBE-SE-MIB', 'rdrFormatterDestNumReportsSent'), ('PCUBE-SE-MIB', 'rdrFormatterDestNumReportsDiscarded'), ('PCUBE-SE-MIB', 'rdrFormatterDestReportRate'), ('PCUBE-SE-MIB', 'rdrFormatterDestReportRatePeak'), ('PCUBE-SE-MIB', 'rdrFormatterDestReportRatePeakTime'), ('PCUBE-SE-MIB', 'rdrFormatterNumReportsSent'), ('PCUBE-SE-MIB', 'rdrFormatterNumReportsDiscarded'), ('PCUBE-SE-MIB', 'rdrFormatterClearCountersTime'), ('PCUBE-SE-MIB', 'rdrFormatterReportRate'), ('PCUBE-SE-MIB', 'rdrFormatterReportRatePeak'), ('PCUBE-SE-MIB', 'rdrFormatterReportRatePeakTime'), ('PCUBE-SE-MIB', 'rdrFormatterProtocol'), ('PCUBE-SE-MIB', 'rdrFormatterForwardingMode'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryDestPriority'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryDestStatus'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryIndex'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryName'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryNumReportsSent'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryNumReportsDiscarded'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryReportRate'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryReportRatePeak'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryReportRatePeakTime'), ('PCUBE-SE-MIB', 'rdrFormatterCategoryNumReportsQueued'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_rdr_formatter_group = pcubeRdrFormatterGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeRdrFormatterGroup.setDescription('RDR-Formatter related information.')
pcube_logger_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 7)).setObjects(('PCUBE-SE-MIB', 'loggerUserLogEnable'), ('PCUBE-SE-MIB', 'loggerUserLogNumInfo'), ('PCUBE-SE-MIB', 'loggerUserLogNumWarning'), ('PCUBE-SE-MIB', 'loggerUserLogNumError'), ('PCUBE-SE-MIB', 'loggerUserLogNumFatal'), ('PCUBE-SE-MIB', 'loggerUserLogClearCountersTime'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_logger_group = pcubeLoggerGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeLoggerGroup.setDescription('Logger related information.')
pcube_subscribers_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 8)).setObjects(('PCUBE-SE-MIB', 'subscribersNumIntroduced'), ('PCUBE-SE-MIB', 'subscribersNumFree'), ('PCUBE-SE-MIB', 'subscribersNumIpAddrMappings'), ('PCUBE-SE-MIB', 'subscribersNumIpAddrMappingsFree'), ('PCUBE-SE-MIB', 'subscribersNumIpRangeMappings'), ('PCUBE-SE-MIB', 'subscribersNumIpRangeMappingsFree'), ('PCUBE-SE-MIB', 'subscribersNumVlanMappings'), ('PCUBE-SE-MIB', 'subscribersNumVlanMappingsFree'), ('PCUBE-SE-MIB', 'subscribersNumActive'), ('PCUBE-SE-MIB', 'subscribersNumActivePeak'), ('PCUBE-SE-MIB', 'subscribersNumActivePeakTime'), ('PCUBE-SE-MIB', 'subscribersNumUpdates'), ('PCUBE-SE-MIB', 'subscribersCountersClearTime'), ('PCUBE-SE-MIB', 'subscribersNumTpIpRanges'), ('PCUBE-SE-MIB', 'subscribersNumTpIpRangesFree'), ('PCUBE-SE-MIB', 'subscribersNumAnonymous'), ('PCUBE-SE-MIB', 'subscribersNumWithSessions'), ('PCUBE-SE-MIB', 'spIndex'), ('PCUBE-SE-MIB', 'spName'), ('PCUBE-SE-MIB', 'spType'), ('PCUBE-SE-MIB', 'spvSubName'), ('PCUBE-SE-MIB', 'spvPropertyName'), ('PCUBE-SE-MIB', 'spvRowStatus'), ('PCUBE-SE-MIB', 'spvPropertyStringValue'), ('PCUBE-SE-MIB', 'spvPropertyUintValue'), ('PCUBE-SE-MIB', 'spvPropertyCounter64Value'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_subscribers_group = pcubeSubscribersGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeSubscribersGroup.setDescription('Subscriber related information.')
pcube_traffic_processor_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 9)).setObjects(('PCUBE-SE-MIB', 'tpModuleIndex'), ('PCUBE-SE-MIB', 'tpIndex'), ('PCUBE-SE-MIB', 'tpTotalNumHandledPackets'), ('PCUBE-SE-MIB', 'tpTotalNumHandledFlows'), ('PCUBE-SE-MIB', 'tpNumActiveFlows'), ('PCUBE-SE-MIB', 'tpNumActiveFlowsPeak'), ('PCUBE-SE-MIB', 'tpNumActiveFlowsPeakTime'), ('PCUBE-SE-MIB', 'tpNumTcpActiveFlows'), ('PCUBE-SE-MIB', 'tpNumTcpActiveFlowsPeak'), ('PCUBE-SE-MIB', 'tpNumTcpActiveFlowsPeakTime'), ('PCUBE-SE-MIB', 'tpNumUdpActiveFlows'), ('PCUBE-SE-MIB', 'tpNumUdpActiveFlowsPeak'), ('PCUBE-SE-MIB', 'tpNumUdpActiveFlowsPeakTime'), ('PCUBE-SE-MIB', 'tpNumNonTcpUdpActiveFlows'), ('PCUBE-SE-MIB', 'tpNumNonTcpUdpActiveFlowsPeak'), ('PCUBE-SE-MIB', 'tpNumNonTcpUdpActiveFlowsPeakTime'), ('PCUBE-SE-MIB', 'tpTotalNumBlockedPackets'), ('PCUBE-SE-MIB', 'tpTotalNumBlockedFlows'), ('PCUBE-SE-MIB', 'tpTotalNumDiscardedPacketsDueToBwLimit'), ('PCUBE-SE-MIB', 'tpTotalNumWredDiscardedPackets'), ('PCUBE-SE-MIB', 'tpTotalNumFragments'), ('PCUBE-SE-MIB', 'tpTotalNumNonIpPackets'), ('PCUBE-SE-MIB', 'tpTotalNumIpCrcErrPackets'), ('PCUBE-SE-MIB', 'tpTotalNumIpLengthErrPackets'), ('PCUBE-SE-MIB', 'tpTotalNumIpBroadcastPackets'), ('PCUBE-SE-MIB', 'tpTotalNumTtlErrPackets'), ('PCUBE-SE-MIB', 'tpTotalNumTcpUdpCrcErrPackets'), ('PCUBE-SE-MIB', 'tpClearCountersTime'), ('PCUBE-SE-MIB', 'tpHandledPacketsRate'), ('PCUBE-SE-MIB', 'tpHandledPacketsRatePeak'), ('PCUBE-SE-MIB', 'tpHandledPacketsRatePeakTime'), ('PCUBE-SE-MIB', 'tpHandledFlowsRate'), ('PCUBE-SE-MIB', 'tpHandledFlowsRatePeak'), ('PCUBE-SE-MIB', 'tpHandledFlowsRatePeakTime'), ('PCUBE-SE-MIB', 'tpCpuUtilization'), ('PCUBE-SE-MIB', 'tpCpuUtilizationPeak'), ('PCUBE-SE-MIB', 'tpCpuUtilizationPeakTime'), ('PCUBE-SE-MIB', 'tpFlowsCapacityUtilization'), ('PCUBE-SE-MIB', 'tpFlowsCapacityUtilizationPeak'), ('PCUBE-SE-MIB', 'tpFlowsCapacityUtilizationPeakTime'), ('PCUBE-SE-MIB', 'tpServiceLoss'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_traffic_processor_group = pcubeTrafficProcessorGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeTrafficProcessorGroup.setDescription('Traffic processors related information.')
pcube_port_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 10)).setObjects(('PCUBE-SE-MIB', 'pportModuleIndex'), ('PCUBE-SE-MIB', 'pportIndex'), ('PCUBE-SE-MIB', 'pportType'), ('PCUBE-SE-MIB', 'pportNumTxQueues'), ('PCUBE-SE-MIB', 'pportIfIndex'), ('PCUBE-SE-MIB', 'pportAdminSpeed'), ('PCUBE-SE-MIB', 'pportAdminDuplex'), ('PCUBE-SE-MIB', 'pportOperDuplex'), ('PCUBE-SE-MIB', 'pportLinkIndex'), ('PCUBE-SE-MIB', 'pportOperStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_port_group = pcubePortGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubePortGroup.setDescription('Ports related information.')
pcube_tx_queues_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 11)).setObjects(('PCUBE-SE-MIB', 'txQueuesModuleIndex'), ('PCUBE-SE-MIB', 'txQueuesPortIndex'), ('PCUBE-SE-MIB', 'txQueuesQueueIndex'), ('PCUBE-SE-MIB', 'txQueuesDescription'), ('PCUBE-SE-MIB', 'txQueuesBandwidth'), ('PCUBE-SE-MIB', 'txQueuesUtilization'), ('PCUBE-SE-MIB', 'txQueuesUtilizationPeak'), ('PCUBE-SE-MIB', 'txQueuesUtilizationPeakTime'), ('PCUBE-SE-MIB', 'txQueuesClearCountersTime'), ('PCUBE-SE-MIB', 'txQueuesDroppedBytes'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_tx_queues_group = pcubeTxQueuesGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeTxQueuesGroup.setDescription('Tx queue related information')
pcube_global_controllers_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 12)).setObjects(('PCUBE-SE-MIB', 'globalControllersModuleIndex'), ('PCUBE-SE-MIB', 'globalControllersPortIndex'), ('PCUBE-SE-MIB', 'globalControllersIndex'), ('PCUBE-SE-MIB', 'globalControllersDescription'), ('PCUBE-SE-MIB', 'globalControllersBandwidth'), ('PCUBE-SE-MIB', 'globalControllersUtilization'), ('PCUBE-SE-MIB', 'globalControllersUtilizationPeak'), ('PCUBE-SE-MIB', 'globalControllersUtilizationPeakTime'), ('PCUBE-SE-MIB', 'globalControllersClearCountersTime'), ('PCUBE-SE-MIB', 'globalControllersDroppedBytes'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_global_controllers_group = pcubeGlobalControllersGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeGlobalControllersGroup.setDescription('Global controllers related information.')
pcube_application_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 13)).setObjects(('PCUBE-SE-MIB', 'appName'), ('PCUBE-SE-MIB', 'appDescription'), ('PCUBE-SE-MIB', 'appVersion'), ('PCUBE-SE-MIB', 'apIndex'), ('PCUBE-SE-MIB', 'apName'), ('PCUBE-SE-MIB', 'apType'), ('PCUBE-SE-MIB', 'apvPropertyName'), ('PCUBE-SE-MIB', 'apvRowStatus'), ('PCUBE-SE-MIB', 'apvPropertyStringValue'), ('PCUBE-SE-MIB', 'apvPropertyUintValue'), ('PCUBE-SE-MIB', 'apvPropertyCounter64Value'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_application_group = pcubeApplicationGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeApplicationGroup.setDescription('Application related information.')
pcube_traffic_counters_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 14)).setObjects(('PCUBE-SE-MIB', 'trafficCounterIndex'), ('PCUBE-SE-MIB', 'trafficCounterValue'), ('PCUBE-SE-MIB', 'trafficCounterName'), ('PCUBE-SE-MIB', 'trafficCounterType'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_traffic_counters_group = pcubeTrafficCountersGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeTrafficCountersGroup.setDescription('Traffic counter related information.')
pcube_attack_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 15)).setObjects(('PCUBE-SE-MIB', 'attackTypeIndex'), ('PCUBE-SE-MIB', 'attackTypeName'), ('PCUBE-SE-MIB', 'attackTypeCurrentNumAttacks'), ('PCUBE-SE-MIB', 'attackTypeTotalNumAttacks'), ('PCUBE-SE-MIB', 'attackTypeTotalNumFlows'), ('PCUBE-SE-MIB', 'attackTypeTotalNumSeconds'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_attack_group = pcubeAttackGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeAttackGroup.setDescription('Attacks related information.')
pcube_vas_traffic_forwarding_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 16)).setObjects(('PCUBE-SE-MIB', 'vasServerIndex'), ('PCUBE-SE-MIB', 'vasServerId'), ('PCUBE-SE-MIB', 'vasServerAdminStatus'), ('PCUBE-SE-MIB', 'vasServerOperStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_vas_traffic_forwarding_group = pcubeVasTrafficForwardingGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeVasTrafficForwardingGroup.setDescription('VAS traffic forwarding related information.')
pcube_mpls_vpn_auto_learn_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 17)).setObjects(('PCUBE-SE-MIB', 'mplsVpnMaxHWMappings'), ('PCUBE-SE-MIB', 'mplsVpnCurrentHWMappings'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_mpls_vpn_auto_learn_group = pcubeMplsVpnAutoLearnGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeMplsVpnAutoLearnGroup.setDescription('MPLS VPN auto learning related information.')
pcube_trap_objects_group = object_group((1, 3, 6, 1, 4, 1, 5655, 2, 3, 1, 1, 18)).setObjects(('PCUBE-SE-MIB', 'pcubeSeEventGenericString1'), ('PCUBE-SE-MIB', 'pcubeSeEventGenericString2'), ('PCUBE-SE-MIB', 'pullRequestNumber'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pcube_trap_objects_group = pcubeTrapObjectsGroup.setStatus('current')
if mibBuilder.loadTexts:
pcubeTrapObjectsGroup.setDescription("Notifications' objects group.")
mibBuilder.exportSymbols('PCUBE-SE-MIB', pcubeSEObjs=pcubeSEObjs, appInfoTable=appInfoTable, pcubeTrapObjectsGroup=pcubeTrapObjectsGroup, pcubeCompliance=pcubeCompliance, pullRequestNumber=pullRequestNumber, pcubeTrafficProcessorGroup=pcubeTrafficProcessorGroup, vasServerIndex=vasServerIndex, rdrFormatterDestPriority=rdrFormatterDestPriority, tpHandledFlowsRate=tpHandledFlowsRate, rdrFormatterGrp=rdrFormatterGrp, globalControllersGrp=globalControllersGrp, pmoduleHwVersion=pmoduleHwVersion, attackTypeTotalNumSeconds=attackTypeTotalNumSeconds, spType=spType, rdrFormatterCategoryEntry=rdrFormatterCategoryEntry, rdrFormatterCategoryIndex=rdrFormatterCategoryIndex, tpHandledPacketsRatePeakTime=tpHandledPacketsRatePeakTime, pcubeGlobalControllersGroup=pcubeGlobalControllersGroup, chassisTempAlarmOffTrap=chassisTempAlarmOffTrap, pchassisSlotConfig=pchassisSlotConfig, tpCpuUtilization=tpCpuUtilization, telnetSessionDeniedAccessTrap=telnetSessionDeniedAccessTrap, pcubeSeCompliances=pcubeSeCompliances, sessionDeniedAccessTrap=sessionDeniedAccessTrap, appPropertiesTable=appPropertiesTable, subscribersNumWithSessions=subscribersNumWithSessions, subscribersPropertiesValueTable=subscribersPropertiesValueTable, illegalSubscriberMappingTrap=illegalSubscriberMappingTrap, vasServerId=vasServerId, trafficProcessorGrp=trafficProcessorGrp, rdrNoActiveConnectionTrap=rdrNoActiveConnectionTrap, pportTable=pportTable, linkAdminModeOnActive=linkAdminModeOnActive, vasServerEntry=vasServerEntry, globalControllersEntry=globalControllersEntry, linkSubscriberSidePortIndex=linkSubscriberSidePortIndex, tpFlowsCapacityUtilizationPeak=tpFlowsCapacityUtilizationPeak, rdrFormatterDestNumReportsDiscarded=rdrFormatterDestNumReportsDiscarded, pchassisPsuType=pchassisPsuType, LinkModeType=LinkModeType, trafficCountersEntry=trafficCountersEntry, pcubeMplsVpnAutoLearnGroup=pcubeMplsVpnAutoLearnGroup, pcubeSeMIB=pcubeSeMIB, pportGrp=pportGrp, rdrFormatterNumReportsSent=rdrFormatterNumReportsSent, subscribersNumIpRangeMappingsFree=subscribersNumIpRangeMappingsFree, moduleOperStatusChangeTrap=moduleOperStatusChangeTrap, pcubeSeGroups=pcubeSeGroups, tpFlowsCapacityUtilizationPeakTime=tpFlowsCapacityUtilizationPeakTime, rdrFormatterCategoryDestPriority=rdrFormatterCategoryDestPriority, linkModeBypassTrap=linkModeBypassTrap, moduleLostRedundancyTrap=moduleLostRedundancyTrap, subscribersNumIpAddrMappings=subscribersNumIpAddrMappings, pportEntry=pportEntry, tpTotalNumIpLengthErrPackets=tpTotalNumIpLengthErrPackets, tpTotalNumNonIpPackets=tpTotalNumNonIpPackets, pcubeChassisGroup=pcubeChassisGroup, pmoduleNumLinks=pmoduleNumLinks, subscribersNumTpIpRanges=subscribersNumTpIpRanges, rdrFormatterCategoryName=rdrFormatterCategoryName, telnetSessionStartedTrap=telnetSessionStartedTrap, pcubeSystemGroup=pcubeSystemGroup, appName=appName, pmoduleAdminStatus=pmoduleAdminStatus, pchassisTempAlarm=pchassisTempAlarm, pcubeComplianceRev1=pcubeComplianceRev1, pportNumTxQueues=pportNumTxQueues, rdrFormatterCategoryDestTable=rdrFormatterCategoryDestTable, attackTypeTotalNumAttacks=attackTypeTotalNumAttacks, tpTotalNumDiscardedPacketsDueToBwLimit=tpTotalNumDiscardedPacketsDueToBwLimit, txQueuesBandwidth=txQueuesBandwidth, spvSubName=spvSubName, operationalStatusOperationalTrap=operationalStatusOperationalTrap, txQueuesUtilizationPeakTime=txQueuesUtilizationPeakTime, rdrFormatterCategoryStoppedDiscardingReportsTrap=rdrFormatterCategoryStoppedDiscardingReportsTrap, linkIndex=linkIndex, rdrFormatterCategoryNumReportsQueued=rdrFormatterCategoryNumReportsQueued, tpHandledPacketsRate=tpHandledPacketsRate, attackTypeTotalNumFlows=attackTypeTotalNumFlows, subscribersNumActivePeak=subscribersNumActivePeak, vasServerTable=vasServerTable, subscribersInfoEntry=subscribersInfoEntry, appVersion=appVersion, apIndex=apIndex, moduleEmAgentGenericTrap=moduleEmAgentGenericTrap, tpIndex=tpIndex, appPropertiesValueEntry=appPropertiesValueEntry, pportOperDuplex=pportOperDuplex, pcubeSeEventGenericString2=pcubeSeEventGenericString2, trafficCounterType=trafficCounterType, spIndex=spIndex, attackTypeCurrentNumAttacks=attackTypeCurrentNumAttacks, pchassisNumSlots=pchassisNumSlots, pportType=pportType, mplsVpnSoftwareCountersTable=mplsVpnSoftwareCountersTable, chassisFansAlarmOnTrap=chassisFansAlarmOnTrap, loggerUserLogNumInfo=loggerUserLogNumInfo, linkStatusReflectionEnable=linkStatusReflectionEnable, tpInfoEntry=tpInfoEntry, rdrFormatterDestNumReportsSent=rdrFormatterDestNumReportsSent, tpCpuUtilizationPeak=tpCpuUtilizationPeak, apType=apType, pmoduleGrp=pmoduleGrp, tpNumTcpActiveFlowsPeakTime=tpNumTcpActiveFlowsPeakTime, pportOperStatus=pportOperStatus, rdrConnectionDownTrap=rdrConnectionDownTrap, rdrFormatterProtocol=rdrFormatterProtocol, mplsVpnAutoLearnGrp=mplsVpnAutoLearnGrp, tpNumActiveFlowsPeak=tpNumActiveFlowsPeak, apvPropertyCounter64Value=apvPropertyCounter64Value, subscribersNumIpRangeMappings=subscribersNumIpRangeMappings, pcubeSeEventsGroupRev1=pcubeSeEventsGroupRev1, mplsVpnTotalHWMappingsThresholdExceededTrap=mplsVpnTotalHWMappingsThresholdExceededTrap, pmoduleTable=pmoduleTable, rdrFormatterCategoryTable=rdrFormatterCategoryTable, globalControllersUtilizationPeak=globalControllersUtilizationPeak, loggerUserLogNumWarning=loggerUserLogNumWarning, txQueuesPortIndex=txQueuesPortIndex, rdrFormatterDestTable=rdrFormatterDestTable, subscribersNumActive=subscribersNumActive, rdrFormatterCategoryDestEntry=rdrFormatterCategoryDestEntry, moduleAttackFilterDeactivatedTrap=moduleAttackFilterDeactivatedTrap, tpClearCountersTime=tpClearCountersTime, vasServerOpertionalStatusChangeTrap=vasServerOpertionalStatusChangeTrap, pmoduleAttackObjectsClearTime=pmoduleAttackObjectsClearTime, diskNumFreeBytes=diskNumFreeBytes, pmoduleOperStatus=pmoduleOperStatus, spName=spName, pcubePortGroup=pcubePortGroup, trafficCounterName=trafficCounterName, loggerUserLogClearCountersTime=loggerUserLogClearCountersTime, subscribersInfoTable=subscribersInfoTable, rdrFormatterDestReportRate=rdrFormatterDestReportRate, tpNumActiveFlowsPeakTime=tpNumActiveFlowsPeakTime, operationalStatusFailureTrap=operationalStatusFailureTrap, rdrFormatterReportRate=rdrFormatterReportRate, operationalStatusWarningTrap=operationalStatusWarningTrap, pmoduleUpStreamLastAttackFilteringTime=pmoduleUpStreamLastAttackFilteringTime, linkModuleIndex=linkModuleIndex, rdrFormatterCategoryReportRate=rdrFormatterCategoryReportRate, tpNumActiveFlows=tpNumActiveFlows, pcubeTrafficCountersGroup=pcubeTrafficCountersGroup, trafficCountersGrp=trafficCountersGrp, diskNumUsedBytes=diskNumUsedBytes, tpNumUdpActiveFlowsPeakTime=tpNumUdpActiveFlowsPeakTime, pcubeRdrFormatterGroup=pcubeRdrFormatterGroup, linkTable=linkTable, pportAdminSpeed=pportAdminSpeed, pcubeDiskGroup=pcubeDiskGroup, vasTrafficForwardingGrp=vasTrafficForwardingGrp, tpNumNonTcpUdpActiveFlowsPeakTime=tpNumNonTcpUdpActiveFlowsPeakTime, linkModeCutoffTrap=linkModeCutoffTrap, rdrFormatterDestEntry=rdrFormatterDestEntry, rdrFormatterForwardingMode=rdrFormatterForwardingMode, pchassisSysType=pchassisSysType, pportModuleIndex=pportModuleIndex, sessionBadLoginTrap=sessionBadLoginTrap, pmoduleNumPorts=pmoduleNumPorts, loggerUserLogIsFullTrap=loggerUserLogIsFullTrap, tpServiceLoss=tpServiceLoss, chassisLineFeedAlarmOnTrap=chassisLineFeedAlarmOnTrap, rdrFormatterClearCountersTime=rdrFormatterClearCountersTime, tpFlowsCapacityUtilization=tpFlowsCapacityUtilization, linkOperMode=linkOperMode, mplsVpnCurrentHWMappings=mplsVpnCurrentHWMappings, pmoduleDownStreamAttackFilteringTime=pmoduleDownStreamAttackFilteringTime, txQueuesModuleIndex=txQueuesModuleIndex, loggerUserLogNumError=loggerUserLogNumError, appPropertiesEntry=appPropertiesEntry, tpTotalNumTcpUdpCrcErrPackets=tpTotalNumTcpUdpCrcErrPackets, subscribersGrp=subscribersGrp, trafficCountersTable=trafficCountersTable, attackTypeEntry=attackTypeEntry, tpModuleIndex=tpModuleIndex, rdrFormatterCategoryDiscardingReportsTrap=rdrFormatterCategoryDiscardingReportsTrap, globalControllersBandwidth=globalControllersBandwidth, tpTotalNumIpCrcErrPackets=tpTotalNumIpCrcErrPackets, spvPropertyCounter64Value=spvPropertyCounter64Value, rdrFormatterCategoryReportRatePeakTime=rdrFormatterCategoryReportRatePeakTime, tpTotalNumWredDiscardedPackets=tpTotalNumWredDiscardedPackets, subscribersPropertiesEntry=subscribersPropertiesEntry, txQueuesEntry=txQueuesEntry, subscribersNumVlanMappingsFree=subscribersNumVlanMappingsFree, rdrFormatterCategoryReportRatePeak=rdrFormatterCategoryReportRatePeak, txQueuesDroppedBytes=txQueuesDroppedBytes, pcubeLinkGroup=pcubeLinkGroup, tpNumTcpActiveFlowsPeak=tpNumTcpActiveFlowsPeak, rdrFormatterDestReportRatePeakTime=rdrFormatterDestReportRatePeakTime, portOperStatusChangeTrap=portOperStatusChangeTrap, rdrFormatterReportRatePeak=rdrFormatterReportRatePeak, txQueuesQueueIndex=txQueuesQueueIndex, subscribersNumVlanMappings=subscribersNumVlanMappings, tpNumTcpActiveFlows=tpNumTcpActiveFlows, sessionStartedTrap=sessionStartedTrap, rdrConnectionUpTrap=rdrConnectionUpTrap, txQueuesTable=txQueuesTable, globalControllersModuleIndex=globalControllersModuleIndex, apvRowStatus=apvRowStatus, moduleSmConnectionUpTrap=moduleSmConnectionUpTrap, telnetSessionBadLoginTrap=telnetSessionBadLoginTrap, txQueuesUtilization=txQueuesUtilization, tpTotalNumTtlErrPackets=tpTotalNumTtlErrPackets, chassisPowerSupplyAlarmOnTrap=chassisPowerSupplyAlarmOnTrap, attackTypeName=attackTypeName, appInfoEntry=appInfoEntry, sysVersion=sysVersion, pullRequestRetryFailedTrap=pullRequestRetryFailedTrap, spvPropertyStringValue=spvPropertyStringValue, tpHandledFlowsRatePeak=tpHandledFlowsRatePeak, pcubeApplicationGroup=pcubeApplicationGroup, subscribersNumAnonymous=subscribersNumAnonymous, loggerGrp=loggerGrp, trafficCounterIndex=trafficCounterIndex, rdrFormatterCategoryNumReportsSent=rdrFormatterCategoryNumReportsSent, subscribersNumFree=subscribersNumFree, pcubeAttackGroup=pcubeAttackGroup, globalControllersPortIndex=globalControllersPortIndex, apName=apName, diskGrp=diskGrp, rdrActiveConnectionTrap=rdrActiveConnectionTrap, rdrFormatterDestReportRatePeak=rdrFormatterDestReportRatePeak, globalControllersIndex=globalControllersIndex, linkGrp=linkGrp, globalControllersDroppedBytes=globalControllersDroppedBytes, globalControllersClearCountersTime=globalControllersClearCountersTime, globalControllersUtilizationPeakTime=globalControllersUtilizationPeakTime, apvPropertyName=apvPropertyName, subscribersPropertiesValueEntry=subscribersPropertiesValueEntry, spvIndex=spvIndex, tpTotalNumBlockedFlows=tpTotalNumBlockedFlows, systemGrp=systemGrp, pcuebModuleGroup=pcuebModuleGroup, txQueuesClearCountersTime=txQueuesClearCountersTime, pportLinkIndex=pportLinkIndex, tpTotalNumHandledFlows=tpTotalNumHandledFlows, pcubeSubscribersGroup=pcubeSubscribersGroup, pmoduleUpStreamAttackFilteringTime=pmoduleUpStreamAttackFilteringTime, subscribersNumIpAddrMappingsFree=subscribersNumIpAddrMappingsFree, pchassisPowerSupplyAlarm=pchassisPowerSupplyAlarm, pchassisGrp=pchassisGrp, chassisTempAlarmOnTrap=chassisTempAlarmOnTrap, txQueuesDescription=txQueuesDescription, apvPropertyUintValue=apvPropertyUintValue, rdrFormatterDestPort=rdrFormatterDestPort, moduleRedundantConfigurationMismatchTrap=moduleRedundantConfigurationMismatchTrap, vasServerAdminStatus=vasServerAdminStatus, subscribersCountersClearTime=subscribersCountersClearTime, subscribersNumTpIpRangesFree=subscribersNumTpIpRangesFree, PYSNMP_MODULE_ID=pcubeSeMIB, linkEntry=linkEntry, tpNumUdpActiveFlowsPeak=tpNumUdpActiveFlowsPeak, tpNumNonTcpUdpActiveFlowsPeak=tpNumNonTcpUdpActiveFlowsPeak, pmoduleNumTrafficProcessors=pmoduleNumTrafficProcessors, pchassisFansAlarm=pchassisFansAlarm)
mibBuilder.exportSymbols('PCUBE-SE-MIB', spvPropertyUintValue=spvPropertyUintValue, appDescription=appDescription, attackTypeTable=attackTypeTable, rdrFormatterNumReportsDiscarded=rdrFormatterNumReportsDiscarded, linkModeSniffingTrap=linkModeSniffingTrap, apvIndex=apvIndex, apvPropertyStringValue=apvPropertyStringValue, loggerUserLogNumFatal=loggerUserLogNumFatal, linkModeForwardingTrap=linkModeForwardingTrap, globalControllersDescription=globalControllersDescription, rdrFormatterCategoryNumReportsDiscarded=rdrFormatterCategoryNumReportsDiscarded, subscribersPropertiesTable=subscribersPropertiesTable, pportIndex=pportIndex, spvPropertyName=spvPropertyName, telnetSessionEndedTrap=telnetSessionEndedTrap, rdrFormatterReportRatePeakTime=rdrFormatterReportRatePeakTime, pmoduleDownStreamLastAttackFilteringTime=pmoduleDownStreamLastAttackFilteringTime, sntpClockDriftWarnTrap=sntpClockDriftWarnTrap, systemResetTrap=systemResetTrap, tpTotalNumIpBroadcastPackets=tpTotalNumIpBroadcastPackets, vasServerOperStatus=vasServerOperStatus, globalControllersTable=globalControllersTable, pmoduleSlotNum=pmoduleSlotNum, attackTypeIndex=attackTypeIndex, rdrFormatterDestIPAddr=rdrFormatterDestIPAddr, pcubeSeEvents=pcubeSeEvents, pchassisVoltageAlarm=pchassisVoltageAlarm, tpTotalNumFragments=tpTotalNumFragments, pmoduleEntry=pmoduleEntry, pportAdminDuplex=pportAdminDuplex, pcubeLoggerGroup=pcubeLoggerGroup, moduleRedundancyReadyTrap=moduleRedundancyReadyTrap, pmoduleType=pmoduleType, spvRowStatus=spvRowStatus, sysOperationalStatus=sysOperationalStatus, linkNetworkSidePortIndex=linkNetworkSidePortIndex, pcubeSeEventGenericString1=pcubeSeEventGenericString1, sysFailureRecovery=sysFailureRecovery, sessionEndedTrap=sessionEndedTrap, tpTotalNumBlockedPackets=tpTotalNumBlockedPackets, pmoduleSerialNumber=pmoduleSerialNumber, pmoduleConnectionMode=pmoduleConnectionMode, rdrFormatterDestConnectionStatus=rdrFormatterDestConnectionStatus, tpInfoTable=tpInfoTable, loggerUserLogEnable=loggerUserLogEnable, subscribersNumIntroduced=subscribersNumIntroduced, tpNumUdpActiveFlows=tpNumUdpActiveFlows, moduleSmConnectionDownTrap=moduleSmConnectionDownTrap, rdrFormatterDestStatus=rdrFormatterDestStatus, pchassisLineFeedAlarm=pchassisLineFeedAlarm, tpCpuUtilizationPeakTime=tpCpuUtilizationPeakTime, tpNumNonTcpUdpActiveFlows=tpNumNonTcpUdpActiveFlows, rdrFormatterEnable=rdrFormatterEnable, chassisVoltageAlarmOnTrap=chassisVoltageAlarmOnTrap, tpTotalNumHandledPackets=tpTotalNumHandledPackets, applicationGrp=applicationGrp, linkAdminModeOnFailure=linkAdminModeOnFailure, rdrFormatterCategoryDestStatus=rdrFormatterCategoryDestStatus, subscribersNumActivePeakTime=subscribersNumActivePeakTime, appPropertiesValueTable=appPropertiesValueTable, subscribersNumUpdates=subscribersNumUpdates, tpHandledFlowsRatePeakTime=tpHandledFlowsRatePeakTime, pcubeSeConformance=pcubeSeConformance, moduleAttackFilterActivatedTrap=moduleAttackFilterActivatedTrap, mplsVpnMaxHWMappings=mplsVpnMaxHWMappings, trafficCounterValue=trafficCounterValue, txQueuesUtilizationPeak=txQueuesUtilizationPeak, tpHandledPacketsRatePeak=tpHandledPacketsRatePeak, attackGrp=attackGrp, pcubeVasTrafficForwardingGroup=pcubeVasTrafficForwardingGroup, mplsVpnSoftwareCountersEntry=mplsVpnSoftwareCountersEntry, txQueuesGrp=txQueuesGrp, loggerLineAttackLogFullTrap=loggerLineAttackLogFullTrap, pcubeSeEventsGroup=pcubeSeEventsGroup, globalControllersUtilization=globalControllersUtilization, pportIfIndex=pportIfIndex, pmoduleIndex=pmoduleIndex, pcubeTxQueuesGroup=pcubeTxQueuesGroup) |
MODEL_FOLDER_NAME = 'models'
FASTTEXT_MODEL_NAME = 'fasttext.magnitude'
GLOVE_MODEL_NAME = 'glove.magnitude'
WORD2VEC_MODEL_NAME = 'word2vec.magnitude'
ELMO_MODEL_NAME = 'elmo.magnitude'
BERT_MODEL_NAME = ''
UNIVERSAL_SENTENCE_ENCODER_MODEL_NAME = 'https://tfhub.dev/google/universal-sentence-encoder/1'
DB_STORAGE_TYPE = 'db'
QUEUE_STORAGE_TYPE = 'queue'
INMEMORY_STORAGE_TYPE = 'inmemory'
LOG_FILE_PATH = 'C:\\Users\\rupachak\\Documents\\Github\\IterativeQueryAugment\\logs\\app.log' # Replace your log file path here
| model_folder_name = 'models'
fasttext_model_name = 'fasttext.magnitude'
glove_model_name = 'glove.magnitude'
word2_vec_model_name = 'word2vec.magnitude'
elmo_model_name = 'elmo.magnitude'
bert_model_name = ''
universal_sentence_encoder_model_name = 'https://tfhub.dev/google/universal-sentence-encoder/1'
db_storage_type = 'db'
queue_storage_type = 'queue'
inmemory_storage_type = 'inmemory'
log_file_path = 'C:\\Users\\rupachak\\Documents\\Github\\IterativeQueryAugment\\logs\\app.log' |
def CHECK(UNI, PWI, usernameArray, PasswordArray):
for UN in usernameArray:
if UN == UNI:
for PW in PasswordArray:
if PW == PWI:
if usernameArray.index(UNI) == PasswordArray.index(PWI):
return True
def login(correctMessage, inCorrectMessage, usernameInputPrompt, passwordInputPrompt, usernameArray, PasswordArray):
if CHECK(input(usernameInputPrompt), input(passwordInputPrompt), usernameArray, PasswordArray):
print(correctMessage)
return True
else:
print(inCorrectMessage) | def check(UNI, PWI, usernameArray, PasswordArray):
for un in usernameArray:
if UN == UNI:
for pw in PasswordArray:
if PW == PWI:
if usernameArray.index(UNI) == PasswordArray.index(PWI):
return True
def login(correctMessage, inCorrectMessage, usernameInputPrompt, passwordInputPrompt, usernameArray, PasswordArray):
if check(input(usernameInputPrompt), input(passwordInputPrompt), usernameArray, PasswordArray):
print(correctMessage)
return True
else:
print(inCorrectMessage) |
m = [
'common',
'leap'
]
y = 2024
# outside in
if y%4 ==0:
if y%100 ==0:
if y%400 ==0:
y=1
else:
y=0
else:
y=1
else:
y=0
print(m[y])
# inside out
y=2024
if y%400==0:
y=1
elif y%100==0:
y=0
elif y%4==0:
y=1
else:
y=0
print(m[y])
# from the middle
y=2024
if y%100==0:
if y%400==0:
y=1
else:
y=0
elif y%4==0:
y=1
else:
y=0
print(m[y])
# logical aggregation
# put all the logical condition together
y = 2024
if (y%4 == 0 and y%100 != 0) or y%400==0:
y = 1
else:
y = 0
print(m[y])
########## CODING GOLF ?!
# one-liners
y = 2024
print(['common','leap'][y%4==0 and y%100!=0 or y%400==0])
| m = ['common', 'leap']
y = 2024
if y % 4 == 0:
if y % 100 == 0:
if y % 400 == 0:
y = 1
else:
y = 0
else:
y = 1
else:
y = 0
print(m[y])
y = 2024
if y % 400 == 0:
y = 1
elif y % 100 == 0:
y = 0
elif y % 4 == 0:
y = 1
else:
y = 0
print(m[y])
y = 2024
if y % 100 == 0:
if y % 400 == 0:
y = 1
else:
y = 0
elif y % 4 == 0:
y = 1
else:
y = 0
print(m[y])
y = 2024
if y % 4 == 0 and y % 100 != 0 or y % 400 == 0:
y = 1
else:
y = 0
print(m[y])
y = 2024
print(['common', 'leap'][y % 4 == 0 and y % 100 != 0 or y % 400 == 0]) |
def create_markdown_content(
input_file: str,
import_list: list[str],
global_import_table: dict[str,str],
mermaid_diagrams: list[str],
debug_dump: str,
) -> str:
debug_block = create_markdown_debug_dump_block(debug_content=debug_dump)
import_block = turn_out_the_import_list(
import_list=import_list, global_import_table=global_import_table
)
mermaid_blocks = "\n".join(mermaid_diagrams)
return (
f"# {input_file}\n\n"
f"{import_block}\n"
"---\n"
f"{mermaid_blocks}"
"---\n"
"\n"
f"{debug_block}\n"
)
def turn_out_the_import_list(
import_list: list[str], global_import_table: dict[str,str]
) -> str:
list_str = "### Imports\n\n"
for import_item in import_list:
url = global_import_table[import_item]
if url:
list_str += f" - [{import_item}]({url})\n"
else:
list_str += f" - {import_item}\n"
return list_str
def create_markdown_debug_dump_block(debug_content: str) -> str:
return (
"<details>\n"
"<summary>Debug AST model dump</summary>\n\n"
"```\n"
f"{debug_content}\n"
"```\n"
"</details>\n"
)
| def create_markdown_content(input_file: str, import_list: list[str], global_import_table: dict[str, str], mermaid_diagrams: list[str], debug_dump: str) -> str:
debug_block = create_markdown_debug_dump_block(debug_content=debug_dump)
import_block = turn_out_the_import_list(import_list=import_list, global_import_table=global_import_table)
mermaid_blocks = '\n'.join(mermaid_diagrams)
return f'# {input_file}\n\n{import_block}\n---\n{mermaid_blocks}---\n\n{debug_block}\n'
def turn_out_the_import_list(import_list: list[str], global_import_table: dict[str, str]) -> str:
list_str = '### Imports\n\n'
for import_item in import_list:
url = global_import_table[import_item]
if url:
list_str += f' - [{import_item}]({url})\n'
else:
list_str += f' - {import_item}\n'
return list_str
def create_markdown_debug_dump_block(debug_content: str) -> str:
return f'<details>\n<summary>Debug AST model dump</summary>\n\n```\n{debug_content}\n```\n</details>\n' |
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
# pylint: disable=line-too-long
# pylint: disable=too-many-lines
def maintenance_public_configuration_list(client):
return client.list()
def maintenance_public_configuration_show(client,
resource_name):
return client.get(resource_name=resource_name)
def maintenance_applyupdate_show(client,
resource_group_name,
provider_name,
resource_type,
resource_name,
apply_update_name):
return client.get(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_type=resource_type,
resource_name=resource_name,
apply_update_name=apply_update_name)
def maintenance_applyupdate_create(client,
resource_group_name,
provider_name,
resource_type,
resource_name,
resource_parent_type=None,
resource_parent_name=None):
if resource_group_name and all(v is not None for v in [provider_name, resource_parent_type, resource_parent_name, resource_type, resource_name]):
return client.create_or_update_parent(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_parent_type=resource_parent_type,
resource_parent_name=resource_parent_name,
resource_type=resource_type,
resource_name=resource_name)
return client.create_or_update(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_type=resource_type,
resource_name=resource_name)
def maintenance_applyupdate_update(client,
resource_group_name,
provider_name,
resource_type,
resource_name):
return client.create_or_update(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_type=resource_type,
resource_name=resource_name)
def maintenance_applyupdate_get_parent(client,
resource_group_name,
resource_parent_type,
resource_parent_name,
provider_name,
resource_type,
resource_name,
apply_update_name):
return client.get_parent(resource_group_name=resource_group_name,
resource_parent_type=resource_parent_type,
resource_parent_name=resource_parent_name,
provider_name=provider_name,
resource_type=resource_type,
resource_name=resource_name,
apply_update_name=apply_update_name)
def maintenance_assignment_list(client,
resource_group_name,
provider_name,
resource_type,
resource_name):
return client.list(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_type=resource_type,
resource_name=resource_name)
def maintenance_assignment_create(client,
resource_group_name,
provider_name,
resource_type,
resource_name,
configuration_assignment_name,
resource_parent_type=None,
resource_parent_name=None,
location=None,
maintenance_configuration_id=None,
resource_id=None):
if resource_group_name and all(v is not None for v in [provider_name, resource_parent_type, resource_parent_name, resource_type, resource_name, configuration_assignment_name]):
return client.create_or_update_parent(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_parent_type=resource_parent_type,
resource_parent_name=resource_parent_name,
resource_type=resource_type,
resource_name=resource_name,
configuration_assignment_name=configuration_assignment_name,
location=location,
maintenance_configuration_id=maintenance_configuration_id,
resource_id=resource_id)
return client.create_or_update(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_type=resource_type,
resource_name=resource_name,
configuration_assignment_name=configuration_assignment_name,
location=location,
maintenance_configuration_id=maintenance_configuration_id,
resource_id=resource_id)
def maintenance_assignment_update(client,
resource_group_name,
provider_name,
resource_type,
resource_name,
configuration_assignment_name,
location=None,
maintenance_configuration_id=None,
resource_id=None):
return client.create_or_update(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_type=resource_type,
resource_name=resource_name,
configuration_assignment_name=configuration_assignment_name,
location=location,
maintenance_configuration_id=maintenance_configuration_id,
resource_id=resource_id)
def maintenance_assignment_delete(client,
resource_group_name,
provider_name,
resource_type,
resource_name,
configuration_assignment_name,
resource_parent_type=None,
resource_parent_name=None):
if resource_group_name and all(v is not None for v in [provider_name, resource_parent_type, resource_parent_name, resource_type, resource_name, configuration_assignment_name]):
return client.delete_parent(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_parent_type=resource_parent_type,
resource_parent_name=resource_parent_name,
resource_type=resource_type,
resource_name=resource_name,
configuration_assignment_name=configuration_assignment_name)
return client.delete(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_type=resource_type,
resource_name=resource_name,
configuration_assignment_name=configuration_assignment_name)
def maintenance_assignment_list_parent(client,
resource_group_name,
provider_name,
resource_parent_type,
resource_parent_name,
resource_type,
resource_name):
return client.list_parent(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_parent_type=resource_parent_type,
resource_parent_name=resource_parent_name,
resource_type=resource_type,
resource_name=resource_name)
def maintenance_configuration_list(client):
return client.list()
def maintenance_configuration_show(client,
resource_group_name,
resource_name):
return client.get(resource_group_name=resource_group_name,
resource_name=resource_name)
def maintenance_configuration_create(client,
resource_group_name,
resource_name,
location=None,
tags=None,
namespace=None,
extension_properties=None,
maintenance_scope=None,
visibility=None,
maintenance_window_start_date_time=None,
maintenance_window_expiration_date_time=None,
maintenance_window_duration=None,
maintenance_window_time_zone=None,
maintenance_window_recur_every=None):
return client.create_or_update(resource_group_name=resource_group_name,
resource_name=resource_name,
location=location,
tags=tags,
namespace=namespace,
extension_properties=extension_properties,
maintenance_scope=maintenance_scope,
visibility=visibility,
start_date_time=maintenance_window_start_date_time,
expiration_date_time=maintenance_window_expiration_date_time,
duration=maintenance_window_duration,
time_zone=maintenance_window_time_zone,
recur_every=maintenance_window_recur_every)
def maintenance_configuration_update(client,
resource_group_name,
resource_name,
location=None,
tags=None,
namespace=None,
extension_properties=None,
maintenance_scope=None,
visibility=None,
maintenance_window_start_date_time=None,
maintenance_window_expiration_date_time=None,
maintenance_window_duration=None,
maintenance_window_time_zone=None,
maintenance_window_recur_every=None):
return client.update(resource_group_name=resource_group_name,
resource_name=resource_name,
location=location,
tags=tags,
namespace=namespace,
extension_properties=extension_properties,
maintenance_scope=maintenance_scope,
visibility=visibility,
start_date_time=maintenance_window_start_date_time,
expiration_date_time=maintenance_window_expiration_date_time,
duration=maintenance_window_duration,
time_zone=maintenance_window_time_zone,
recur_every=maintenance_window_recur_every)
def maintenance_configuration_delete(client,
resource_group_name,
resource_name):
return client.delete(resource_group_name=resource_group_name,
resource_name=resource_name)
def maintenance_update_list(client,
resource_group_name,
provider_name,
resource_type,
resource_name):
return client.list(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_type=resource_type,
resource_name=resource_name)
def maintenance_update_list_parent(client,
resource_group_name,
provider_name,
resource_parent_type,
resource_parent_name,
resource_type,
resource_name):
return client.list_parent(resource_group_name=resource_group_name,
provider_name=provider_name,
resource_parent_type=resource_parent_type,
resource_parent_name=resource_parent_name,
resource_type=resource_type,
resource_name=resource_name)
| def maintenance_public_configuration_list(client):
return client.list()
def maintenance_public_configuration_show(client, resource_name):
return client.get(resource_name=resource_name)
def maintenance_applyupdate_show(client, resource_group_name, provider_name, resource_type, resource_name, apply_update_name):
return client.get(resource_group_name=resource_group_name, provider_name=provider_name, resource_type=resource_type, resource_name=resource_name, apply_update_name=apply_update_name)
def maintenance_applyupdate_create(client, resource_group_name, provider_name, resource_type, resource_name, resource_parent_type=None, resource_parent_name=None):
if resource_group_name and all((v is not None for v in [provider_name, resource_parent_type, resource_parent_name, resource_type, resource_name])):
return client.create_or_update_parent(resource_group_name=resource_group_name, provider_name=provider_name, resource_parent_type=resource_parent_type, resource_parent_name=resource_parent_name, resource_type=resource_type, resource_name=resource_name)
return client.create_or_update(resource_group_name=resource_group_name, provider_name=provider_name, resource_type=resource_type, resource_name=resource_name)
def maintenance_applyupdate_update(client, resource_group_name, provider_name, resource_type, resource_name):
return client.create_or_update(resource_group_name=resource_group_name, provider_name=provider_name, resource_type=resource_type, resource_name=resource_name)
def maintenance_applyupdate_get_parent(client, resource_group_name, resource_parent_type, resource_parent_name, provider_name, resource_type, resource_name, apply_update_name):
return client.get_parent(resource_group_name=resource_group_name, resource_parent_type=resource_parent_type, resource_parent_name=resource_parent_name, provider_name=provider_name, resource_type=resource_type, resource_name=resource_name, apply_update_name=apply_update_name)
def maintenance_assignment_list(client, resource_group_name, provider_name, resource_type, resource_name):
return client.list(resource_group_name=resource_group_name, provider_name=provider_name, resource_type=resource_type, resource_name=resource_name)
def maintenance_assignment_create(client, resource_group_name, provider_name, resource_type, resource_name, configuration_assignment_name, resource_parent_type=None, resource_parent_name=None, location=None, maintenance_configuration_id=None, resource_id=None):
if resource_group_name and all((v is not None for v in [provider_name, resource_parent_type, resource_parent_name, resource_type, resource_name, configuration_assignment_name])):
return client.create_or_update_parent(resource_group_name=resource_group_name, provider_name=provider_name, resource_parent_type=resource_parent_type, resource_parent_name=resource_parent_name, resource_type=resource_type, resource_name=resource_name, configuration_assignment_name=configuration_assignment_name, location=location, maintenance_configuration_id=maintenance_configuration_id, resource_id=resource_id)
return client.create_or_update(resource_group_name=resource_group_name, provider_name=provider_name, resource_type=resource_type, resource_name=resource_name, configuration_assignment_name=configuration_assignment_name, location=location, maintenance_configuration_id=maintenance_configuration_id, resource_id=resource_id)
def maintenance_assignment_update(client, resource_group_name, provider_name, resource_type, resource_name, configuration_assignment_name, location=None, maintenance_configuration_id=None, resource_id=None):
return client.create_or_update(resource_group_name=resource_group_name, provider_name=provider_name, resource_type=resource_type, resource_name=resource_name, configuration_assignment_name=configuration_assignment_name, location=location, maintenance_configuration_id=maintenance_configuration_id, resource_id=resource_id)
def maintenance_assignment_delete(client, resource_group_name, provider_name, resource_type, resource_name, configuration_assignment_name, resource_parent_type=None, resource_parent_name=None):
if resource_group_name and all((v is not None for v in [provider_name, resource_parent_type, resource_parent_name, resource_type, resource_name, configuration_assignment_name])):
return client.delete_parent(resource_group_name=resource_group_name, provider_name=provider_name, resource_parent_type=resource_parent_type, resource_parent_name=resource_parent_name, resource_type=resource_type, resource_name=resource_name, configuration_assignment_name=configuration_assignment_name)
return client.delete(resource_group_name=resource_group_name, provider_name=provider_name, resource_type=resource_type, resource_name=resource_name, configuration_assignment_name=configuration_assignment_name)
def maintenance_assignment_list_parent(client, resource_group_name, provider_name, resource_parent_type, resource_parent_name, resource_type, resource_name):
return client.list_parent(resource_group_name=resource_group_name, provider_name=provider_name, resource_parent_type=resource_parent_type, resource_parent_name=resource_parent_name, resource_type=resource_type, resource_name=resource_name)
def maintenance_configuration_list(client):
return client.list()
def maintenance_configuration_show(client, resource_group_name, resource_name):
return client.get(resource_group_name=resource_group_name, resource_name=resource_name)
def maintenance_configuration_create(client, resource_group_name, resource_name, location=None, tags=None, namespace=None, extension_properties=None, maintenance_scope=None, visibility=None, maintenance_window_start_date_time=None, maintenance_window_expiration_date_time=None, maintenance_window_duration=None, maintenance_window_time_zone=None, maintenance_window_recur_every=None):
return client.create_or_update(resource_group_name=resource_group_name, resource_name=resource_name, location=location, tags=tags, namespace=namespace, extension_properties=extension_properties, maintenance_scope=maintenance_scope, visibility=visibility, start_date_time=maintenance_window_start_date_time, expiration_date_time=maintenance_window_expiration_date_time, duration=maintenance_window_duration, time_zone=maintenance_window_time_zone, recur_every=maintenance_window_recur_every)
def maintenance_configuration_update(client, resource_group_name, resource_name, location=None, tags=None, namespace=None, extension_properties=None, maintenance_scope=None, visibility=None, maintenance_window_start_date_time=None, maintenance_window_expiration_date_time=None, maintenance_window_duration=None, maintenance_window_time_zone=None, maintenance_window_recur_every=None):
return client.update(resource_group_name=resource_group_name, resource_name=resource_name, location=location, tags=tags, namespace=namespace, extension_properties=extension_properties, maintenance_scope=maintenance_scope, visibility=visibility, start_date_time=maintenance_window_start_date_time, expiration_date_time=maintenance_window_expiration_date_time, duration=maintenance_window_duration, time_zone=maintenance_window_time_zone, recur_every=maintenance_window_recur_every)
def maintenance_configuration_delete(client, resource_group_name, resource_name):
return client.delete(resource_group_name=resource_group_name, resource_name=resource_name)
def maintenance_update_list(client, resource_group_name, provider_name, resource_type, resource_name):
return client.list(resource_group_name=resource_group_name, provider_name=provider_name, resource_type=resource_type, resource_name=resource_name)
def maintenance_update_list_parent(client, resource_group_name, provider_name, resource_parent_type, resource_parent_name, resource_type, resource_name):
return client.list_parent(resource_group_name=resource_group_name, provider_name=provider_name, resource_parent_type=resource_parent_type, resource_parent_name=resource_parent_name, resource_type=resource_type, resource_name=resource_name) |
class Solution:
def subarraySum(self, nums: List[int], k: int) -> int:
cum_sum = [0]
for num in nums:
cum_sum.append(num+cum_sum[-1])
cum_sum.pop(0)
seen_map = {0:1}
ans = 0
for csum in cum_sum:
if csum-k in seen_map:
ans+=seen_map[csum-k]
seen_map[csum] = seen_map.get(csum,0)+1
return ans
| class Solution:
def subarray_sum(self, nums: List[int], k: int) -> int:
cum_sum = [0]
for num in nums:
cum_sum.append(num + cum_sum[-1])
cum_sum.pop(0)
seen_map = {0: 1}
ans = 0
for csum in cum_sum:
if csum - k in seen_map:
ans += seen_map[csum - k]
seen_map[csum] = seen_map.get(csum, 0) + 1
return ans |
height = float(input("Please enter the height in m: \n"))
weight = float(input("Please enter the weight in kg: \n"))
bmi = weight / height ** 2
print(int(bmi)) | height = float(input('Please enter the height in m: \n'))
weight = float(input('Please enter the weight in kg: \n'))
bmi = weight / height ** 2
print(int(bmi)) |
#The file contains only the CTC function and the proposed model format. (Not the complete code)
def ctc_lambda_func(args):
y_pred, labels, input_length, label_length = args
y_pred = y_pred[:, 2:, :]
return K.ctc_batch_cost(labels, y_pred, input_length, label_length)
def train(img_w, load=False):
# Input Parameters
img_h = 64
# Network parameters
conv_filters = 16
kernel_size = (3, 3)
pool_size = 2
time_dense_size = 32
rnn_size = 512
if K.image_data_format() == 'channels_first':
input_shape = (1, img_w, img_h)
else:
input_shape = (img_w, img_h, 1)
batch_size = 32
downsample_factor = pool_size ** 2
tiger_train = TextImageGenerator('/data/anpr_ocr__train', 'train', img_w, img_h, batch_size, downsample_factor)
tiger_train.build_data()
tiger_val = TextImageGenerator('/data/anpr_ocr__train', 'val', img_w, img_h, batch_size, downsample_factor)
tiger_val.build_data()
act = 'relu'
input_data = Input(name='the_input', shape=input_shape, dtype='float32')
inner = Conv2D(conv_filters, kernel_size, padding='same',
activation=act, kernel_initializer='he_normal',
name='conv1')(input_data)
inner = MaxPooling2D(pool_size=(pool_size, pool_size), name='max1')(inner)
inner = Conv2D(conv_filters, kernel_size, padding='same',
activation=act, kernel_initializer='he_normal',
name='conv2')(inner)
inner = MaxPooling2D(pool_size=(pool_size, pool_size), name='max2')(inner)
conv_to_rnn_dims = (img_w // (pool_size ** 2), (img_h // (pool_size ** 2)) * conv_filters)
inner = Reshape(target_shape=conv_to_rnn_dims, name='reshape')(inner)
# cuts down input size going into RNN:
inner = Dense(time_dense_size, activation=act, name='dense1')(inner)
# Two layers of bidirecitonal GRUs
gru_1 = GRU(rnn_size, return_sequences=True, kernel_initializer='he_normal', name='gru1')(inner)
gru_1b = GRU(rnn_size, return_sequences=True, go_backwards=True, kernel_initializer='he_normal', name='gru1_b')(inner)
gru1_merged = add([gru_1, gru_1b])
gru_2 = GRU(rnn_size, return_sequences=True, kernel_initializer='he_normal', name='gru2')(gru1_merged)
gru_2b = GRU(rnn_size, return_sequences=True, go_backwards=True, kernel_initializer='he_normal', name='gru2_b')(gru1_merged)
# transforms RNN output to character activations:
inner = Dense(tiger_train.get_output_size(), kernel_initializer='he_normal',
name='dense2')(concatenate([gru_2, gru_2b]))
y_pred = Activation('softmax', name='softmax')(inner)
Model(inputs=input_data, outputs=y_pred).summary()
labels = Input(name='the_labels', shape=[tiger_train.max_text_len], dtype='float32')
input_length = Input(name='input_length', shape=[1], dtype='int64')
label_length = Input(name='label_length', shape=[1], dtype='int64')
# Keras doesn't currently support loss funcs with extra parameters
# so CTC loss is implemented in a lambda layer
loss_out = Lambda(ctc_lambda_func, output_shape=(1,), name='ctc')([y_pred, labels, input_length, label_length])
# clipnorm seems to speeds up convergence
sgd = SGD(lr=0.02, decay=1e-6, momentum=0.9, nesterov=True, clipnorm=5)
if load:
model = load_model('./tmp_model.h5', compile=False)
else:
model = Model(inputs=[input_data, labels, input_length, label_length], outputs=loss_out)
# the loss calc occurs elsewhere, so use a dummy lambda func for the loss
model.compile(loss={'ctc': lambda y_true, y_pred: y_pred}, optimizer=sgd)
if not load:
# captures output of softmax so we can decode the output during visualization
test_func = K.function([input_data], [y_pred])
model.fit_generator(generator=tiger_train.next_batch(),
steps_per_epoch=tiger_train.n,
epochs=1,
validation_data=tiger_val.next_batch(),
validation_steps=tiger_val.n)
return model | def ctc_lambda_func(args):
(y_pred, labels, input_length, label_length) = args
y_pred = y_pred[:, 2:, :]
return K.ctc_batch_cost(labels, y_pred, input_length, label_length)
def train(img_w, load=False):
img_h = 64
conv_filters = 16
kernel_size = (3, 3)
pool_size = 2
time_dense_size = 32
rnn_size = 512
if K.image_data_format() == 'channels_first':
input_shape = (1, img_w, img_h)
else:
input_shape = (img_w, img_h, 1)
batch_size = 32
downsample_factor = pool_size ** 2
tiger_train = text_image_generator('/data/anpr_ocr__train', 'train', img_w, img_h, batch_size, downsample_factor)
tiger_train.build_data()
tiger_val = text_image_generator('/data/anpr_ocr__train', 'val', img_w, img_h, batch_size, downsample_factor)
tiger_val.build_data()
act = 'relu'
input_data = input(name='the_input', shape=input_shape, dtype='float32')
inner = conv2_d(conv_filters, kernel_size, padding='same', activation=act, kernel_initializer='he_normal', name='conv1')(input_data)
inner = max_pooling2_d(pool_size=(pool_size, pool_size), name='max1')(inner)
inner = conv2_d(conv_filters, kernel_size, padding='same', activation=act, kernel_initializer='he_normal', name='conv2')(inner)
inner = max_pooling2_d(pool_size=(pool_size, pool_size), name='max2')(inner)
conv_to_rnn_dims = (img_w // pool_size ** 2, img_h // pool_size ** 2 * conv_filters)
inner = reshape(target_shape=conv_to_rnn_dims, name='reshape')(inner)
inner = dense(time_dense_size, activation=act, name='dense1')(inner)
gru_1 = gru(rnn_size, return_sequences=True, kernel_initializer='he_normal', name='gru1')(inner)
gru_1b = gru(rnn_size, return_sequences=True, go_backwards=True, kernel_initializer='he_normal', name='gru1_b')(inner)
gru1_merged = add([gru_1, gru_1b])
gru_2 = gru(rnn_size, return_sequences=True, kernel_initializer='he_normal', name='gru2')(gru1_merged)
gru_2b = gru(rnn_size, return_sequences=True, go_backwards=True, kernel_initializer='he_normal', name='gru2_b')(gru1_merged)
inner = dense(tiger_train.get_output_size(), kernel_initializer='he_normal', name='dense2')(concatenate([gru_2, gru_2b]))
y_pred = activation('softmax', name='softmax')(inner)
model(inputs=input_data, outputs=y_pred).summary()
labels = input(name='the_labels', shape=[tiger_train.max_text_len], dtype='float32')
input_length = input(name='input_length', shape=[1], dtype='int64')
label_length = input(name='label_length', shape=[1], dtype='int64')
loss_out = lambda(ctc_lambda_func, output_shape=(1,), name='ctc')([y_pred, labels, input_length, label_length])
sgd = sgd(lr=0.02, decay=1e-06, momentum=0.9, nesterov=True, clipnorm=5)
if load:
model = load_model('./tmp_model.h5', compile=False)
else:
model = model(inputs=[input_data, labels, input_length, label_length], outputs=loss_out)
model.compile(loss={'ctc': lambda y_true, y_pred: y_pred}, optimizer=sgd)
if not load:
test_func = K.function([input_data], [y_pred])
model.fit_generator(generator=tiger_train.next_batch(), steps_per_epoch=tiger_train.n, epochs=1, validation_data=tiger_val.next_batch(), validation_steps=tiger_val.n)
return model |
# -*- coding: utf-8 -*-
__title__ = 'ahegao'
__description__ = 'Ahegao API wrapper'
__url__ = 'https://github.com/AhegaoTeam/AhegaoAPI'
__version__ = '1.0.1'
__build__ = 11
__author__ = 'SantaSpeen'
__author_email__ = 'admin@ahegao.ovh'
__license__ = "MIT"
__copyright__ = 'Copyright 2022 Ahegao Team'
| __title__ = 'ahegao'
__description__ = 'Ahegao API wrapper'
__url__ = 'https://github.com/AhegaoTeam/AhegaoAPI'
__version__ = '1.0.1'
__build__ = 11
__author__ = 'SantaSpeen'
__author_email__ = 'admin@ahegao.ovh'
__license__ = 'MIT'
__copyright__ = 'Copyright 2022 Ahegao Team' |
# design in each module
class Cube(object):
def __init__(self):
pass
class Rhombic(object):
def __init__(self):
pass
class Sphere(object):
def __init__(self):
pass
| class Cube(object):
def __init__(self):
pass
class Rhombic(object):
def __init__(self):
pass
class Sphere(object):
def __init__(self):
pass |
# write a program to print out all the numbers from 0 to 100 that are divisble by 7
for i in range(0, 101, 7):
print(i)
| for i in range(0, 101, 7):
print(i) |
class Solution:
def solve(self, matrix):
pq = [[0, i] for i in range(len(matrix[0]))]
for r in range(len(matrix)):
new_pq = []
for c in range(len(matrix[0])):
if pq[0][1] == c:
top = heappop(pq)
heappush(new_pq, [pq[0][0]+matrix[r][c], c])
heappush(pq, top)
else:
heappush(new_pq, [pq[0][0]+matrix[r][c], c])
pq = new_pq
return pq[0][0]
| class Solution:
def solve(self, matrix):
pq = [[0, i] for i in range(len(matrix[0]))]
for r in range(len(matrix)):
new_pq = []
for c in range(len(matrix[0])):
if pq[0][1] == c:
top = heappop(pq)
heappush(new_pq, [pq[0][0] + matrix[r][c], c])
heappush(pq, top)
else:
heappush(new_pq, [pq[0][0] + matrix[r][c], c])
pq = new_pq
return pq[0][0] |
def rotate(text, key):
num_letters = 26
key = key % num_letters
l_min = ord('a')
u_min = ord('A')
text = list(
map((lambda s:
s if not s.isalpha()
else chr(l_min + (((ord(s) - l_min) + key) % num_letters))
if s.islower()
else chr(u_min + (((ord(s) - u_min) + key) % num_letters))),
list(text)))
return ''.join(text)
| def rotate(text, key):
num_letters = 26
key = key % num_letters
l_min = ord('a')
u_min = ord('A')
text = list(map(lambda s: s if not s.isalpha() else chr(l_min + (ord(s) - l_min + key) % num_letters) if s.islower() else chr(u_min + (ord(s) - u_min + key) % num_letters), list(text)))
return ''.join(text) |
# coding: utf-8
def sumSquare(n):
'''takes a positive integer n and returns sum of dquares of all the positive integers smaller than n'''
if n < 0:
return 'Needs a positive number. But Negative given'
else:
return sum([x**2 for x in range(1, n)])
print(sumSquare(4))
| def sum_square(n):
"""takes a positive integer n and returns sum of dquares of all the positive integers smaller than n"""
if n < 0:
return 'Needs a positive number. But Negative given'
else:
return sum([x ** 2 for x in range(1, n)])
print(sum_square(4)) |
#
# @lc app=leetcode id=327 lang=python3
#
# [327] Count of Range Sum
#
# https://leetcode.com/problems/count-of-range-sum/description/
#
# algorithms
# Hard (35.94%)
# Likes: 995
# Dislikes: 116
# Total Accepted: 48.9K
# Total Submissions: 135.4K
# Testcase Example: '[-2,5,-1]\n-2\n2'
#
# Given an integer array nums and two integers lower and upper, return the
# number of range sums that lie in [lower, upper] inclusive.
#
# Range sum S(i, j) is defined as the sum of the elements in nums between
# indices i and j inclusive, where i <= j.
#
#
# Example 1:
#
#
# Input: nums = [-2,5,-1], lower = -2, upper = 2
# Output: 3
# Explanation: The three ranges are: [0,0], [2,2], and [0,2] and their
# respective sums are: -2, -1, 2.
#
#
# Example 2:
#
#
# Input: nums = [0], lower = 0, upper = 0
# Output: 1
#
#
#
# Constraints:
#
#
# 1 <= nums.length <= 10^4
# -2^31 <= nums[i] <= 2^31 - 1
# -3 * 10^4 <= lower <= upper <= 3 * 10^4
#
#
#
# Follow up: A naive algorithm of O(n^2) is trivial, Could you do better than
# that?
#
# @lc code=start
class Solution:
def __init__(self):
self.prefix_sum = [0]
self.count = 0
def countRangeSum(self, nums: List[int], lower: int, upper: int) -> int:
running_sum = 0
for i in range(len(nums)):
running_sum += nums[i]
self.prefix_sum.append(running_sum)
self.helper(0, len(nums), lower, upper)
return self.count
def helper(self, start, end, lower, upper):
# sum(i, j) in [lower, upper]
# prefix_sum[j] - prefix_sum[i] >= lower
# prefix_sum[j] - prefix_sum[i] <= upper
# prefix_sum[j] >= prefix_sum[i] + lower
# prefix_sum[j] <= prefix_sum[i] + upper
if start >= end:
return
mid = start + (end - start) // 2
self.helper(start, mid, lower, upper)
self.helper(mid + 1, end, lower, upper)
for i in range(start, mid + 1):
left = bisect_left(self.prefix_sum[mid + 1: end + 1], self.prefix_sum[i] + lower)
right = bisect_right(self.prefix_sum[mid + 1: end + 1], self.prefix_sum[i] + upper)
self.count += right - left
# merge sort
i, j = start, mid + 1
tmp = []
while i <= mid and j <= end:
if self.prefix_sum[i] <= self.prefix_sum[j]:
tmp.append(self.prefix_sum[i])
i += 1
else:
tmp.append(self.prefix_sum[j])
j += 1
if i <= mid:
tmp.extend(self.prefix_sum[i:])
if j <= end:
tmp.extend(self.prefix_sum[j:])
for i in range(end - start + 1):
self.prefix_sum[start + i] = tmp[i]
# @lc code=end
| class Solution:
def __init__(self):
self.prefix_sum = [0]
self.count = 0
def count_range_sum(self, nums: List[int], lower: int, upper: int) -> int:
running_sum = 0
for i in range(len(nums)):
running_sum += nums[i]
self.prefix_sum.append(running_sum)
self.helper(0, len(nums), lower, upper)
return self.count
def helper(self, start, end, lower, upper):
if start >= end:
return
mid = start + (end - start) // 2
self.helper(start, mid, lower, upper)
self.helper(mid + 1, end, lower, upper)
for i in range(start, mid + 1):
left = bisect_left(self.prefix_sum[mid + 1:end + 1], self.prefix_sum[i] + lower)
right = bisect_right(self.prefix_sum[mid + 1:end + 1], self.prefix_sum[i] + upper)
self.count += right - left
(i, j) = (start, mid + 1)
tmp = []
while i <= mid and j <= end:
if self.prefix_sum[i] <= self.prefix_sum[j]:
tmp.append(self.prefix_sum[i])
i += 1
else:
tmp.append(self.prefix_sum[j])
j += 1
if i <= mid:
tmp.extend(self.prefix_sum[i:])
if j <= end:
tmp.extend(self.prefix_sum[j:])
for i in range(end - start + 1):
self.prefix_sum[start + i] = tmp[i] |
# Author: btjanaka (Bryon Tjanaka)
# Problem: (HackerRank) the-minion-game
# Title: The Minion Game
# Link: https://www.hackerrank.com/challenges/the-minion-game/
# Idea: The basic idea is to count all substrings for each player, but we can't
# just list out all the substrings because that is O(n^2), and the string can be
# of length 10^6 here. A more efficient way is to recognize that there are
# len(string) - i substrings that start at any index i (0-based), so if the
# character at index i is a vowel, we count len(string) - i additional
# substrings that start with vowels.
# Difficulty: Medium
# Tags: list, math, string
def minion_game(string):
consonants = 0
vowels = 0
for i in range(len(string)):
score = len(string) - i
if string[i] in "AEIOU":
vowels += score
else:
consonants += score
if consonants > vowels:
print(f"Stuart {consonants}")
elif consonants < vowels:
print(f"Kevin {vowels}")
else:
print("Draw")
if __name__ == '__main__':
s = input()
minion_game(s)
| def minion_game(string):
consonants = 0
vowels = 0
for i in range(len(string)):
score = len(string) - i
if string[i] in 'AEIOU':
vowels += score
else:
consonants += score
if consonants > vowels:
print(f'Stuart {consonants}')
elif consonants < vowels:
print(f'Kevin {vowels}')
else:
print('Draw')
if __name__ == '__main__':
s = input()
minion_game(s) |
class APIException(OSError):
def __init__(self, message = None, url="https://Bungie.net/"):
msg = "There was an error when accessing the Destiny API"
if message is not None:
msg += ": " + message
super().__init__(msg)
self._url = url
self._message = msg
@property
def url(self):
return self._url
@property
def message(self):
return self._message
class GeneralException(Exception):
def __init__(self, message):
super().__init__(message)
class ManifestError(IOError):
def __init__(self, message, SQL=None):
super().__init__(message)
self._SQL = SQL
@property
def SQL(self):
return self._SQL
| class Apiexception(OSError):
def __init__(self, message=None, url='https://Bungie.net/'):
msg = 'There was an error when accessing the Destiny API'
if message is not None:
msg += ': ' + message
super().__init__(msg)
self._url = url
self._message = msg
@property
def url(self):
return self._url
@property
def message(self):
return self._message
class Generalexception(Exception):
def __init__(self, message):
super().__init__(message)
class Manifesterror(IOError):
def __init__(self, message, SQL=None):
super().__init__(message)
self._SQL = SQL
@property
def sql(self):
return self._SQL |
IN_PREFIXES = {
'BA',
'BS',
'BUS MS',
'Certificate',
'Graduate Certificate',
'MA',
'Master of Arts',
'Master\'s',
'MBA/MA',
'ME Certificate',
'ME MD/PhD Program',
'ME Program',
'MS',
'P.B.C.',
'Post Bacc Certificate',
'Post Baccalaureate Certificate',
'Post Master\'s Cert',
'Post-Baccalaureate Certificate',
'Post-Masters Certificate'
}
# the order of this list matters!
# the algorithm removes the *first* matching prefix, so if "MBA" appears before
# "MBA Global", for example, then the major "MBA Global Finance" will become
# "Global Finance" and not "Finance"
SPACE_PREFIXES = [
'BS',
'BUS MBA Global -',
'BUS MBA',
'DRPH-PT,',
'EDU M.Ed.',
'EDU MS',
'EDU PMC',
'EN',
'GC',
'MA',
'MBA Global -',
'MBA',
'MBA/MPH',
'ME MA',
'ME MS',
'ME PhD',
'MED',
'ME',
'MPH,',
'MPH/MSW,',
'MPH-PTIB,',
'MPH-RES,',
'MS,',
'MS'
]
| in_prefixes = {'BA', 'BS', 'BUS MS', 'Certificate', 'Graduate Certificate', 'MA', 'Master of Arts', "Master's", 'MBA/MA', 'ME Certificate', 'ME MD/PhD Program', 'ME Program', 'MS', 'P.B.C.', 'Post Bacc Certificate', 'Post Baccalaureate Certificate', "Post Master's Cert", 'Post-Baccalaureate Certificate', 'Post-Masters Certificate'}
space_prefixes = ['BS', 'BUS MBA Global -', 'BUS MBA', 'DRPH-PT,', 'EDU M.Ed.', 'EDU MS', 'EDU PMC', 'EN', 'GC', 'MA', 'MBA Global -', 'MBA', 'MBA/MPH', 'ME MA', 'ME MS', 'ME PhD', 'MED', 'ME', 'MPH,', 'MPH/MSW,', 'MPH-PTIB,', 'MPH-RES,', 'MS,', 'MS'] |
class Disc:
_instance_count = 0
def __init__(self, name, symbol, code=None):
cls = type(self)
self.code = cls._instance_count if code is None else code
self.name = name
self.symbol = symbol
cls._instance_count += 1 if cls._instance_count < 1000 else 0
def __int__(self):
return self.code
def __repr__(self):
return f'<Disc {self.name!r}, {self.symbol!r}>'
| class Disc:
_instance_count = 0
def __init__(self, name, symbol, code=None):
cls = type(self)
self.code = cls._instance_count if code is None else code
self.name = name
self.symbol = symbol
cls._instance_count += 1 if cls._instance_count < 1000 else 0
def __int__(self):
return self.code
def __repr__(self):
return f'<Disc {self.name!r}, {self.symbol!r}>' |
def list_towers():
raise NotImplementedError
def create_tower(body):
raise NotImplementedError
def get_tower(tower_id):
raise NotImplementedError
def update_tower(tower_id, body):
raise NotImplementedError
def delete_tower(tower_id):
raise NotImplementedError
| def list_towers():
raise NotImplementedError
def create_tower(body):
raise NotImplementedError
def get_tower(tower_id):
raise NotImplementedError
def update_tower(tower_id, body):
raise NotImplementedError
def delete_tower(tower_id):
raise NotImplementedError |
# sample input
array = [ 2, 1, 2, 2, 2, 3, 4, 2 ]
to_move = 2
expected = [4, 1, 3, 2, 2, 2, 2, 2]
# Simple testing function
def test(expected, actual):
if expected == actual:
print('Working')
else:
print('Not working, expected:', expected, 'actual:', actual)
# O(n) solution
def move_element_to_end(array, toMove):
i = 0
swap = len(array) - 1
while i < swap:
while i < swap and array[swap] == toMove:
swap -=1
if array[i] == toMove:
array[i], array[swap] = array[swap], array[i]
i += 1
return array
test(expected, move_element_to_end(array, to_move))
| array = [2, 1, 2, 2, 2, 3, 4, 2]
to_move = 2
expected = [4, 1, 3, 2, 2, 2, 2, 2]
def test(expected, actual):
if expected == actual:
print('Working')
else:
print('Not working, expected:', expected, 'actual:', actual)
def move_element_to_end(array, toMove):
i = 0
swap = len(array) - 1
while i < swap:
while i < swap and array[swap] == toMove:
swap -= 1
if array[i] == toMove:
(array[i], array[swap]) = (array[swap], array[i])
i += 1
return array
test(expected, move_element_to_end(array, to_move)) |
#
# @lc app=leetcode.cn id=72 lang=python3
#
# [72] edit-distance
#
None
# @lc code=end | None |
#
# PySNMP MIB module HM2-NETCONFIG-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HM2-NETCONFIG-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 19:19:02 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint, ValueRangeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsIntersection")
HmEnabledStatus, hm2ConfigurationMibs = mibBuilder.importSymbols("HM2-TC-MIB", "HmEnabledStatus", "hm2ConfigurationMibs")
ifIndex, InterfaceIndex = mibBuilder.importSymbols("IF-MIB", "ifIndex", "InterfaceIndex")
InetAddress, InetAddressType, InetAddressPrefixLength = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddress", "InetAddressType", "InetAddressPrefixLength")
TimeFilter, = mibBuilder.importSymbols("RMON2-MIB", "TimeFilter")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
Counter64, Unsigned32, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter32, MibIdentifier, ModuleIdentity, Gauge32, TimeTicks, iso, Integer32, ObjectIdentity, NotificationType, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "Counter64", "Unsigned32", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter32", "MibIdentifier", "ModuleIdentity", "Gauge32", "TimeTicks", "iso", "Integer32", "ObjectIdentity", "NotificationType", "IpAddress")
MacAddress, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "MacAddress", "TextualConvention", "DisplayString")
hm2NetConfigMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 248, 11, 20))
hm2NetConfigMib.setRevisions(('2011-03-16 00:00',))
if mibBuilder.loadTexts: hm2NetConfigMib.setLastUpdated('201103160000Z')
if mibBuilder.loadTexts: hm2NetConfigMib.setOrganization('Hirschmann Automation and Control GmbH')
hm2NetConfigMibNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 0))
hm2NetConfigMibObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1))
hm2NetStaticGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1))
hm2NetACDGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2))
hm2NetMacGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 3))
hm2NetHiDiscoveryGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 4))
hm2NetMacACDGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 5))
hm2NetOobMgmtGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6))
hm2NetConfigProtocol = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("bootp", 2), ("dhcp", 3))).clone('dhcp')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetConfigProtocol.setStatus('current')
hm2NetLocalIPAddrType = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 2), InetAddressType().clone('ipv4')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetLocalIPAddrType.setStatus('current')
hm2NetLocalIPAddr = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 3), InetAddress().clone(hexValue="00000000")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetLocalIPAddr.setStatus('current')
hm2NetPrefixLength = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 4), InetAddressPrefixLength()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetPrefixLength.setStatus('current')
hm2NetGatewayIPAddrType = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 5), InetAddressType().clone('ipv4')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetGatewayIPAddrType.setStatus('current')
hm2NetGatewayIPAddr = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 6), InetAddress().clone(hexValue="00000000")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetGatewayIPAddr.setStatus('current')
hm2NetVlanID = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4042)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetVlanID.setStatus('current')
hm2NetVlanPriority = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetVlanPriority.setStatus('current')
hm2NetIpDscpPriority = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 63))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetIpDscpPriority.setStatus('current')
hm2NetMgmtPort = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetMgmtPort.setStatus('current')
hm2NetDHCPClientId = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetDHCPClientId.setStatus('current')
hm2NetAction = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 50), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("activate", 2))).clone('other')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetAction.setStatus('current')
hm2NetACDStatus = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 1), HmEnabledStatus().clone('enable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetACDStatus.setStatus('current')
hm2NetACDDetectionMode = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("activeAndPassive", 1), ("activeDetectionOnly", 2), ("passiveDetectionOnly", 3))).clone('activeAndPassive')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetACDDetectionMode.setStatus('current')
hm2NetACDOngoingProbeStatus = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 3), HmEnabledStatus().clone('enable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetACDOngoingProbeStatus.setStatus('current')
hm2NetACDDelay = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(20, 500)).clone(200)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetACDDelay.setStatus('current')
hm2NetACDReleaseDelay = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(3, 3600)).clone(15)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetACDReleaseDelay.setStatus('current')
hm2NetACDMaxProtection = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetACDMaxProtection.setStatus('current')
hm2NetACDProtectInterval = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(20, 10000)).clone(10000)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetACDProtectInterval.setStatus('current')
hm2NetACDFaultState = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetACDFaultState.setStatus('current')
hm2NetACDTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 15), HmEnabledStatus().clone('enable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetACDTrapEnable.setStatus('current')
hm2NetACDAddrTable = MibTable((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20), )
if mibBuilder.loadTexts: hm2NetACDAddrTable.setStatus('current')
hm2NetACDAddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20, 1), ).setIndexNames((0, "HM2-NETCONFIG-MIB", "hm2NetACDTimeMark"))
if mibBuilder.loadTexts: hm2NetACDAddrEntry.setStatus('current')
hm2NetACDTimeMark = MibTableColumn((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20, 1, 1), TimeFilter()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetACDTimeMark.setStatus('current')
hm2NetACDAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20, 1, 3), InetAddressType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetACDAddrType.setStatus('current')
hm2NetACDIPAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20, 1, 5), InetAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetACDIPAddr.setStatus('current')
hm2NetACDMAC = MibTableColumn((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20, 1, 7), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetACDMAC.setStatus('current')
hm2NetACDifIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20, 1, 9), InterfaceIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetACDifIndex.setStatus('current')
hm2NetLocalBurnedInMacAddr = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 3, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetLocalBurnedInMacAddr.setStatus('current')
hm2NetLocalAdminMacAddress = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 3, 2), MacAddress().clone(hexValue="000000000000")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetLocalAdminMacAddress.setStatus('current')
hm2NetMacAddressType = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 3, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("burned-in", 1), ("local", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetMacAddressType.setStatus('current')
hm2NetHiDiscoveryOperation = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 4, 1), HmEnabledStatus().clone('enable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetHiDiscoveryOperation.setStatus('current')
hm2NetHiDiscoveryMode = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 4, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("readWrite", 1), ("readOnly", 2))).clone('readWrite')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetHiDiscoveryMode.setStatus('current')
hm2NetHiDiscoveryBlinking = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 4, 3), HmEnabledStatus().clone('disable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetHiDiscoveryBlinking.setStatus('current')
hm2NetHiDiscoveryProtocol = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 4, 4), Bits().clone(namedValues=NamedValues(("none", 0), ("v1", 1), ("v2", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetHiDiscoveryProtocol.setStatus('current')
hm2NetHiDiscoveryRelay = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 4, 5), HmEnabledStatus().clone('enable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetHiDiscoveryRelay.setStatus('current')
hm2NetMacACDStatus = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 5, 1), HmEnabledStatus().clone('disable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetMacACDStatus.setStatus('current')
hm2NetMacACDConflictAddress = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 5, 2), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetMacACDConflictAddress.setStatus('current')
hm2NetACDNotification = NotificationType((1, 3, 6, 1, 4, 1, 248, 11, 20, 0, 1)).setObjects(("HM2-NETCONFIG-MIB", "hm2NetACDTimeMark"), ("HM2-NETCONFIG-MIB", "hm2NetACDAddrType"), ("HM2-NETCONFIG-MIB", "hm2NetACDIPAddr"), ("HM2-NETCONFIG-MIB", "hm2NetACDMAC"), ("HM2-NETCONFIG-MIB", "hm2NetACDifIndex"))
if mibBuilder.loadTexts: hm2NetACDNotification.setStatus('current')
hm2NetMacACDNotification = NotificationType((1, 3, 6, 1, 4, 1, 248, 11, 20, 0, 2)).setObjects(("IF-MIB", "ifIndex"), ("HM2-NETCONFIG-MIB", "hm2NetMacACDConflictAddress"))
if mibBuilder.loadTexts: hm2NetMacACDNotification.setStatus('current')
hm2NetOobMgmtAdminState = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 1), HmEnabledStatus().clone('enable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetOobMgmtAdminState.setStatus('current')
hm2NetOobMgmtProtocol = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("bootp", 2), ("dhcp", 3))).clone('none')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetOobMgmtProtocol.setStatus('current')
hm2NetOobMgmtIPAddrType = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 3), InetAddressType().clone('ipv4')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetOobMgmtIPAddrType.setStatus('current')
hm2NetOobMgmtIPAddr = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 4), InetAddress().clone(hexValue="00000000")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetOobMgmtIPAddr.setStatus('current')
hm2NetOobMgmtPrefixLength = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 5), InetAddressPrefixLength()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetOobMgmtPrefixLength.setStatus('current')
hm2NetOobMgmtGatewayIPAddrType = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 6), InetAddressType().clone('ipv4')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetOobMgmtGatewayIPAddrType.setStatus('current')
hm2NetOobMgmtGatewayIPAddr = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 7), InetAddress().clone(hexValue="00000000")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetOobMgmtGatewayIPAddr.setStatus('current')
hm2NetOobMgmtMacAddress = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 8), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetOobMgmtMacAddress.setStatus('current')
hm2NetOobMgmtOperState = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hm2NetOobMgmtOperState.setStatus('current')
hm2NetOobMgmtAction = MibScalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 50), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("activate", 2))).clone('other')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hm2NetOobMgmtAction.setStatus('current')
mibBuilder.exportSymbols("HM2-NETCONFIG-MIB", hm2NetACDAddrType=hm2NetACDAddrType, hm2NetOobMgmtGatewayIPAddr=hm2NetOobMgmtGatewayIPAddr, hm2NetMacACDConflictAddress=hm2NetMacACDConflictAddress, hm2NetConfigMibNotifications=hm2NetConfigMibNotifications, hm2NetHiDiscoveryGroup=hm2NetHiDiscoveryGroup, hm2NetHiDiscoveryBlinking=hm2NetHiDiscoveryBlinking, hm2NetOobMgmtProtocol=hm2NetOobMgmtProtocol, hm2NetACDGroup=hm2NetACDGroup, hm2NetOobMgmtAction=hm2NetOobMgmtAction, hm2NetDHCPClientId=hm2NetDHCPClientId, hm2NetACDDetectionMode=hm2NetACDDetectionMode, hm2NetACDNotification=hm2NetACDNotification, hm2NetACDIPAddr=hm2NetACDIPAddr, hm2NetGatewayIPAddr=hm2NetGatewayIPAddr, hm2NetMacGroup=hm2NetMacGroup, hm2NetACDAddrEntry=hm2NetACDAddrEntry, hm2NetACDMaxProtection=hm2NetACDMaxProtection, hm2NetACDFaultState=hm2NetACDFaultState, hm2NetHiDiscoveryRelay=hm2NetHiDiscoveryRelay, hm2NetOobMgmtIPAddr=hm2NetOobMgmtIPAddr, hm2NetHiDiscoveryMode=hm2NetHiDiscoveryMode, hm2NetLocalIPAddrType=hm2NetLocalIPAddrType, hm2NetMgmtPort=hm2NetMgmtPort, hm2NetMacAddressType=hm2NetMacAddressType, hm2NetVlanPriority=hm2NetVlanPriority, hm2NetLocalBurnedInMacAddr=hm2NetLocalBurnedInMacAddr, hm2NetACDTimeMark=hm2NetACDTimeMark, hm2NetACDMAC=hm2NetACDMAC, hm2NetPrefixLength=hm2NetPrefixLength, hm2NetHiDiscoveryProtocol=hm2NetHiDiscoveryProtocol, hm2NetMacACDGroup=hm2NetMacACDGroup, hm2NetOobMgmtGroup=hm2NetOobMgmtGroup, hm2NetConfigMibObjects=hm2NetConfigMibObjects, hm2NetOobMgmtIPAddrType=hm2NetOobMgmtIPAddrType, hm2NetLocalIPAddr=hm2NetLocalIPAddr, hm2NetGatewayIPAddrType=hm2NetGatewayIPAddrType, hm2NetACDReleaseDelay=hm2NetACDReleaseDelay, hm2NetACDOngoingProbeStatus=hm2NetACDOngoingProbeStatus, hm2NetHiDiscoveryOperation=hm2NetHiDiscoveryOperation, hm2NetOobMgmtAdminState=hm2NetOobMgmtAdminState, hm2NetACDProtectInterval=hm2NetACDProtectInterval, hm2NetOobMgmtPrefixLength=hm2NetOobMgmtPrefixLength, hm2NetOobMgmtMacAddress=hm2NetOobMgmtMacAddress, hm2NetACDifIndex=hm2NetACDifIndex, hm2NetACDTrapEnable=hm2NetACDTrapEnable, hm2NetAction=hm2NetAction, hm2NetLocalAdminMacAddress=hm2NetLocalAdminMacAddress, hm2NetOobMgmtGatewayIPAddrType=hm2NetOobMgmtGatewayIPAddrType, hm2NetVlanID=hm2NetVlanID, PYSNMP_MODULE_ID=hm2NetConfigMib, hm2NetStaticGroup=hm2NetStaticGroup, hm2NetACDDelay=hm2NetACDDelay, hm2NetConfigMib=hm2NetConfigMib, hm2NetACDAddrTable=hm2NetACDAddrTable, hm2NetIpDscpPriority=hm2NetIpDscpPriority, hm2NetACDStatus=hm2NetACDStatus, hm2NetMacACDStatus=hm2NetMacACDStatus, hm2NetOobMgmtOperState=hm2NetOobMgmtOperState, hm2NetConfigProtocol=hm2NetConfigProtocol, hm2NetMacACDNotification=hm2NetMacACDNotification)
| (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, single_value_constraint, value_size_constraint, value_range_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsIntersection')
(hm_enabled_status, hm2_configuration_mibs) = mibBuilder.importSymbols('HM2-TC-MIB', 'HmEnabledStatus', 'hm2ConfigurationMibs')
(if_index, interface_index) = mibBuilder.importSymbols('IF-MIB', 'ifIndex', 'InterfaceIndex')
(inet_address, inet_address_type, inet_address_prefix_length) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddress', 'InetAddressType', 'InetAddressPrefixLength')
(time_filter,) = mibBuilder.importSymbols('RMON2-MIB', 'TimeFilter')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(counter64, unsigned32, bits, mib_scalar, mib_table, mib_table_row, mib_table_column, counter32, mib_identifier, module_identity, gauge32, time_ticks, iso, integer32, object_identity, notification_type, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter64', 'Unsigned32', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter32', 'MibIdentifier', 'ModuleIdentity', 'Gauge32', 'TimeTicks', 'iso', 'Integer32', 'ObjectIdentity', 'NotificationType', 'IpAddress')
(mac_address, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'MacAddress', 'TextualConvention', 'DisplayString')
hm2_net_config_mib = module_identity((1, 3, 6, 1, 4, 1, 248, 11, 20))
hm2NetConfigMib.setRevisions(('2011-03-16 00:00',))
if mibBuilder.loadTexts:
hm2NetConfigMib.setLastUpdated('201103160000Z')
if mibBuilder.loadTexts:
hm2NetConfigMib.setOrganization('Hirschmann Automation and Control GmbH')
hm2_net_config_mib_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 0))
hm2_net_config_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1))
hm2_net_static_group = mib_identifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1))
hm2_net_acd_group = mib_identifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2))
hm2_net_mac_group = mib_identifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 3))
hm2_net_hi_discovery_group = mib_identifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 4))
hm2_net_mac_acd_group = mib_identifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 5))
hm2_net_oob_mgmt_group = mib_identifier((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6))
hm2_net_config_protocol = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('bootp', 2), ('dhcp', 3))).clone('dhcp')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetConfigProtocol.setStatus('current')
hm2_net_local_ip_addr_type = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 2), inet_address_type().clone('ipv4')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetLocalIPAddrType.setStatus('current')
hm2_net_local_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 3), inet_address().clone(hexValue='00000000')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetLocalIPAddr.setStatus('current')
hm2_net_prefix_length = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 4), inet_address_prefix_length()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetPrefixLength.setStatus('current')
hm2_net_gateway_ip_addr_type = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 5), inet_address_type().clone('ipv4')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetGatewayIPAddrType.setStatus('current')
hm2_net_gateway_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 6), inet_address().clone(hexValue='00000000')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetGatewayIPAddr.setStatus('current')
hm2_net_vlan_id = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 4042)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetVlanID.setStatus('current')
hm2_net_vlan_priority = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetVlanPriority.setStatus('current')
hm2_net_ip_dscp_priority = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 63))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetIpDscpPriority.setStatus('current')
hm2_net_mgmt_port = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetMgmtPort.setStatus('current')
hm2_net_dhcp_client_id = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetDHCPClientId.setStatus('current')
hm2_net_action = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 1, 50), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('activate', 2))).clone('other')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetAction.setStatus('current')
hm2_net_acd_status = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 1), hm_enabled_status().clone('enable')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetACDStatus.setStatus('current')
hm2_net_acd_detection_mode = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('activeAndPassive', 1), ('activeDetectionOnly', 2), ('passiveDetectionOnly', 3))).clone('activeAndPassive')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetACDDetectionMode.setStatus('current')
hm2_net_acd_ongoing_probe_status = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 3), hm_enabled_status().clone('enable')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetACDOngoingProbeStatus.setStatus('current')
hm2_net_acd_delay = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 5), integer32().subtype(subtypeSpec=value_range_constraint(20, 500)).clone(200)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetACDDelay.setStatus('current')
hm2_net_acd_release_delay = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 7), integer32().subtype(subtypeSpec=value_range_constraint(3, 3600)).clone(15)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetACDReleaseDelay.setStatus('current')
hm2_net_acd_max_protection = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetACDMaxProtection.setStatus('current')
hm2_net_acd_protect_interval = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 11), integer32().subtype(subtypeSpec=value_range_constraint(20, 10000)).clone(10000)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetACDProtectInterval.setStatus('current')
hm2_net_acd_fault_state = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('true', 1), ('false', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetACDFaultState.setStatus('current')
hm2_net_acd_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 15), hm_enabled_status().clone('enable')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetACDTrapEnable.setStatus('current')
hm2_net_acd_addr_table = mib_table((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20))
if mibBuilder.loadTexts:
hm2NetACDAddrTable.setStatus('current')
hm2_net_acd_addr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20, 1)).setIndexNames((0, 'HM2-NETCONFIG-MIB', 'hm2NetACDTimeMark'))
if mibBuilder.loadTexts:
hm2NetACDAddrEntry.setStatus('current')
hm2_net_acd_time_mark = mib_table_column((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20, 1, 1), time_filter()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetACDTimeMark.setStatus('current')
hm2_net_acd_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20, 1, 3), inet_address_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetACDAddrType.setStatus('current')
hm2_net_acdip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20, 1, 5), inet_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetACDIPAddr.setStatus('current')
hm2_net_acdmac = mib_table_column((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20, 1, 7), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetACDMAC.setStatus('current')
hm2_net_ac_dif_index = mib_table_column((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 2, 20, 1, 9), interface_index()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetACDifIndex.setStatus('current')
hm2_net_local_burned_in_mac_addr = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 3, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetLocalBurnedInMacAddr.setStatus('current')
hm2_net_local_admin_mac_address = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 3, 2), mac_address().clone(hexValue='000000000000')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetLocalAdminMacAddress.setStatus('current')
hm2_net_mac_address_type = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 3, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('burned-in', 1), ('local', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetMacAddressType.setStatus('current')
hm2_net_hi_discovery_operation = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 4, 1), hm_enabled_status().clone('enable')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetHiDiscoveryOperation.setStatus('current')
hm2_net_hi_discovery_mode = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 4, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('readWrite', 1), ('readOnly', 2))).clone('readWrite')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetHiDiscoveryMode.setStatus('current')
hm2_net_hi_discovery_blinking = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 4, 3), hm_enabled_status().clone('disable')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetHiDiscoveryBlinking.setStatus('current')
hm2_net_hi_discovery_protocol = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 4, 4), bits().clone(namedValues=named_values(('none', 0), ('v1', 1), ('v2', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetHiDiscoveryProtocol.setStatus('current')
hm2_net_hi_discovery_relay = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 4, 5), hm_enabled_status().clone('enable')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetHiDiscoveryRelay.setStatus('current')
hm2_net_mac_acd_status = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 5, 1), hm_enabled_status().clone('disable')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetMacACDStatus.setStatus('current')
hm2_net_mac_acd_conflict_address = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 5, 2), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetMacACDConflictAddress.setStatus('current')
hm2_net_acd_notification = notification_type((1, 3, 6, 1, 4, 1, 248, 11, 20, 0, 1)).setObjects(('HM2-NETCONFIG-MIB', 'hm2NetACDTimeMark'), ('HM2-NETCONFIG-MIB', 'hm2NetACDAddrType'), ('HM2-NETCONFIG-MIB', 'hm2NetACDIPAddr'), ('HM2-NETCONFIG-MIB', 'hm2NetACDMAC'), ('HM2-NETCONFIG-MIB', 'hm2NetACDifIndex'))
if mibBuilder.loadTexts:
hm2NetACDNotification.setStatus('current')
hm2_net_mac_acd_notification = notification_type((1, 3, 6, 1, 4, 1, 248, 11, 20, 0, 2)).setObjects(('IF-MIB', 'ifIndex'), ('HM2-NETCONFIG-MIB', 'hm2NetMacACDConflictAddress'))
if mibBuilder.loadTexts:
hm2NetMacACDNotification.setStatus('current')
hm2_net_oob_mgmt_admin_state = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 1), hm_enabled_status().clone('enable')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetOobMgmtAdminState.setStatus('current')
hm2_net_oob_mgmt_protocol = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('bootp', 2), ('dhcp', 3))).clone('none')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetOobMgmtProtocol.setStatus('current')
hm2_net_oob_mgmt_ip_addr_type = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 3), inet_address_type().clone('ipv4')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetOobMgmtIPAddrType.setStatus('current')
hm2_net_oob_mgmt_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 4), inet_address().clone(hexValue='00000000')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetOobMgmtIPAddr.setStatus('current')
hm2_net_oob_mgmt_prefix_length = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 5), inet_address_prefix_length()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetOobMgmtPrefixLength.setStatus('current')
hm2_net_oob_mgmt_gateway_ip_addr_type = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 6), inet_address_type().clone('ipv4')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetOobMgmtGatewayIPAddrType.setStatus('current')
hm2_net_oob_mgmt_gateway_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 7), inet_address().clone(hexValue='00000000')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetOobMgmtGatewayIPAddr.setStatus('current')
hm2_net_oob_mgmt_mac_address = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 8), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetOobMgmtMacAddress.setStatus('current')
hm2_net_oob_mgmt_oper_state = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('down', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hm2NetOobMgmtOperState.setStatus('current')
hm2_net_oob_mgmt_action = mib_scalar((1, 3, 6, 1, 4, 1, 248, 11, 20, 1, 6, 50), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('activate', 2))).clone('other')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hm2NetOobMgmtAction.setStatus('current')
mibBuilder.exportSymbols('HM2-NETCONFIG-MIB', hm2NetACDAddrType=hm2NetACDAddrType, hm2NetOobMgmtGatewayIPAddr=hm2NetOobMgmtGatewayIPAddr, hm2NetMacACDConflictAddress=hm2NetMacACDConflictAddress, hm2NetConfigMibNotifications=hm2NetConfigMibNotifications, hm2NetHiDiscoveryGroup=hm2NetHiDiscoveryGroup, hm2NetHiDiscoveryBlinking=hm2NetHiDiscoveryBlinking, hm2NetOobMgmtProtocol=hm2NetOobMgmtProtocol, hm2NetACDGroup=hm2NetACDGroup, hm2NetOobMgmtAction=hm2NetOobMgmtAction, hm2NetDHCPClientId=hm2NetDHCPClientId, hm2NetACDDetectionMode=hm2NetACDDetectionMode, hm2NetACDNotification=hm2NetACDNotification, hm2NetACDIPAddr=hm2NetACDIPAddr, hm2NetGatewayIPAddr=hm2NetGatewayIPAddr, hm2NetMacGroup=hm2NetMacGroup, hm2NetACDAddrEntry=hm2NetACDAddrEntry, hm2NetACDMaxProtection=hm2NetACDMaxProtection, hm2NetACDFaultState=hm2NetACDFaultState, hm2NetHiDiscoveryRelay=hm2NetHiDiscoveryRelay, hm2NetOobMgmtIPAddr=hm2NetOobMgmtIPAddr, hm2NetHiDiscoveryMode=hm2NetHiDiscoveryMode, hm2NetLocalIPAddrType=hm2NetLocalIPAddrType, hm2NetMgmtPort=hm2NetMgmtPort, hm2NetMacAddressType=hm2NetMacAddressType, hm2NetVlanPriority=hm2NetVlanPriority, hm2NetLocalBurnedInMacAddr=hm2NetLocalBurnedInMacAddr, hm2NetACDTimeMark=hm2NetACDTimeMark, hm2NetACDMAC=hm2NetACDMAC, hm2NetPrefixLength=hm2NetPrefixLength, hm2NetHiDiscoveryProtocol=hm2NetHiDiscoveryProtocol, hm2NetMacACDGroup=hm2NetMacACDGroup, hm2NetOobMgmtGroup=hm2NetOobMgmtGroup, hm2NetConfigMibObjects=hm2NetConfigMibObjects, hm2NetOobMgmtIPAddrType=hm2NetOobMgmtIPAddrType, hm2NetLocalIPAddr=hm2NetLocalIPAddr, hm2NetGatewayIPAddrType=hm2NetGatewayIPAddrType, hm2NetACDReleaseDelay=hm2NetACDReleaseDelay, hm2NetACDOngoingProbeStatus=hm2NetACDOngoingProbeStatus, hm2NetHiDiscoveryOperation=hm2NetHiDiscoveryOperation, hm2NetOobMgmtAdminState=hm2NetOobMgmtAdminState, hm2NetACDProtectInterval=hm2NetACDProtectInterval, hm2NetOobMgmtPrefixLength=hm2NetOobMgmtPrefixLength, hm2NetOobMgmtMacAddress=hm2NetOobMgmtMacAddress, hm2NetACDifIndex=hm2NetACDifIndex, hm2NetACDTrapEnable=hm2NetACDTrapEnable, hm2NetAction=hm2NetAction, hm2NetLocalAdminMacAddress=hm2NetLocalAdminMacAddress, hm2NetOobMgmtGatewayIPAddrType=hm2NetOobMgmtGatewayIPAddrType, hm2NetVlanID=hm2NetVlanID, PYSNMP_MODULE_ID=hm2NetConfigMib, hm2NetStaticGroup=hm2NetStaticGroup, hm2NetACDDelay=hm2NetACDDelay, hm2NetConfigMib=hm2NetConfigMib, hm2NetACDAddrTable=hm2NetACDAddrTable, hm2NetIpDscpPriority=hm2NetIpDscpPriority, hm2NetACDStatus=hm2NetACDStatus, hm2NetMacACDStatus=hm2NetMacACDStatus, hm2NetOobMgmtOperState=hm2NetOobMgmtOperState, hm2NetConfigProtocol=hm2NetConfigProtocol, hm2NetMacACDNotification=hm2NetMacACDNotification) |
def binary_search(A, target):
A = str(A)
lo = 0
hi = len(A)
index = None
while lo <= hi:
mid = round(lo + (hi - lo) / 2)
mid_ele = int(A[mid])
if mid_ele == target:
index = mid
break
if mid_ele < target:
lo = mid + 1
else:
hi = mid - 1
if index is not None:
return index
return "Not Found!"
def shipWithinDays(weights, D):
left, right = max(weights), sum(weights)
while left < right:
mid, need, cur = (left + right) / 2, 1, 0
for w in weights:
if cur + w > mid:
need += 1
cur = 0
cur += w
if need > D:
left = mid + 1
else:
right = mid
return round(left)
def binary_search_with_recursion(A, target):
low = A[0]
high = A[-1]
mid = (low + high) // 2
try:
if mid == target:
return A.index(mid)
if mid < target:
return binary_search_with_recursion(A[mid + 1: high], target)
if mid > target:
return binary_search_with_recursion(A[low: mid - 1], target)
except:
return "Not Found!"
if __name__ == "__main__":
# print(binary_search(5567889, 8))
# print(shipWithinDays([3,2,2,4,1,4],3))
print(binary_search_with_recursion([2, 2, 2, 4, 1, 4], 3))
| def binary_search(A, target):
a = str(A)
lo = 0
hi = len(A)
index = None
while lo <= hi:
mid = round(lo + (hi - lo) / 2)
mid_ele = int(A[mid])
if mid_ele == target:
index = mid
break
if mid_ele < target:
lo = mid + 1
else:
hi = mid - 1
if index is not None:
return index
return 'Not Found!'
def ship_within_days(weights, D):
(left, right) = (max(weights), sum(weights))
while left < right:
(mid, need, cur) = ((left + right) / 2, 1, 0)
for w in weights:
if cur + w > mid:
need += 1
cur = 0
cur += w
if need > D:
left = mid + 1
else:
right = mid
return round(left)
def binary_search_with_recursion(A, target):
low = A[0]
high = A[-1]
mid = (low + high) // 2
try:
if mid == target:
return A.index(mid)
if mid < target:
return binary_search_with_recursion(A[mid + 1:high], target)
if mid > target:
return binary_search_with_recursion(A[low:mid - 1], target)
except:
return 'Not Found!'
if __name__ == '__main__':
print(binary_search_with_recursion([2, 2, 2, 4, 1, 4], 3)) |
tree = PipelineElement('DecisionTreeClassifier',
hyperparameters={'criterion': ['gini'],
'min_samples_split': IntegerRange(2, 4)})
svc = PipelineElement('LinearSVC',
hyperparameters={'C': FloatRange(0.5, 25)})
my_pipe += Stack('final_stack', [tree, svc], use_probabilities=True)
my_pipe += PipelineElement('LinearSVC')
my_pipe.fit(X, y) | tree = pipeline_element('DecisionTreeClassifier', hyperparameters={'criterion': ['gini'], 'min_samples_split': integer_range(2, 4)})
svc = pipeline_element('LinearSVC', hyperparameters={'C': float_range(0.5, 25)})
my_pipe += stack('final_stack', [tree, svc], use_probabilities=True)
my_pipe += pipeline_element('LinearSVC')
my_pipe.fit(X, y) |
class Solution:
def assignTasks(self, servers: List[int], tasks: List[int]) -> List[int]:
ans = []
free = [] # (weight, index, freeTime)
used = [] # (freeTime, weight, index)
for i, weight in enumerate(servers):
heapq.heappush(free, (weight, i, 0))
for i, executionTime in enumerate(tasks):
# poll all servers that'll be free at time i
while used and used[0][0] <= i:
curr = heapq.heappop(used)
heapq.heappush(free, (curr[1], curr[2], curr[0]))
if free:
curr = heapq.heappop(free)
ans.append(curr[1])
heapq.heappush(used, (i + executionTime, curr[0], curr[1]))
else:
curr = heapq.heappop(used)
ans.append(curr[2])
heapq.heappush(used, (curr[0] + executionTime, curr[1], curr[2]))
return ans
| class Solution:
def assign_tasks(self, servers: List[int], tasks: List[int]) -> List[int]:
ans = []
free = []
used = []
for (i, weight) in enumerate(servers):
heapq.heappush(free, (weight, i, 0))
for (i, execution_time) in enumerate(tasks):
while used and used[0][0] <= i:
curr = heapq.heappop(used)
heapq.heappush(free, (curr[1], curr[2], curr[0]))
if free:
curr = heapq.heappop(free)
ans.append(curr[1])
heapq.heappush(used, (i + executionTime, curr[0], curr[1]))
else:
curr = heapq.heappop(used)
ans.append(curr[2])
heapq.heappush(used, (curr[0] + executionTime, curr[1], curr[2]))
return ans |
#
# PySNMP MIB module XYLAN-IP-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/XYLAN-IP-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 21:38:41 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ValueRangeConstraint, ConstraintsIntersection, ConstraintsUnion, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsIntersection", "ConstraintsUnion", "SingleValueConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
NotificationType, Gauge32, ObjectIdentity, Unsigned32, ModuleIdentity, MibIdentifier, iso, IpAddress, Counter32, Counter64, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, TimeTicks, Integer32 = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "Gauge32", "ObjectIdentity", "Unsigned32", "ModuleIdentity", "MibIdentifier", "iso", "IpAddress", "Counter32", "Counter64", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "TimeTicks", "Integer32")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
xylanIpArch, = mibBuilder.importSymbols("XYLAN-BASE-MIB", "xylanIpArch")
xylanIpFilterGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 13, 1))
xylanIpMiscGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 13, 2))
xylanIpRipFilterTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1), )
if mibBuilder.loadTexts: xylanIpRipFilterTable.setStatus('mandatory')
xylanIpRipFilterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1), ).setIndexNames((0, "XYLAN-IP-MIB", "xylanIpRipFilterNum"))
if mibBuilder.loadTexts: xylanIpRipFilterEntry.setStatus('mandatory')
xylanIpRipFilterNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xylanIpRipFilterNum.setStatus('mandatory')
xylanIpRipFilterAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("active", 1), ("delete", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanIpRipFilterAdminState.setStatus('mandatory')
xylanIpRipFilterType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("rip-output", 1), ("rip-input", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanIpRipFilterType.setStatus('mandatory')
xylanIpRipFilterNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanIpRipFilterNet.setStatus('mandatory')
xylanIpRipFilterNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanIpRipFilterNetMask.setStatus('mandatory')
xylanIpRipFilterMode = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("allow", 1), ("block", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanIpRipFilterMode.setStatus('mandatory')
xylanIpRipFilterGroupId = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanIpRipFilterGroupId.setStatus('mandatory')
xylanIpRipFilterVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanIpRipFilterVlanId.setStatus('mandatory')
xylanIpRipFilterWanType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("not-used", 1), ("frame-relay", 2), ("ppp", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanIpRipFilterWanType.setStatus('mandatory')
xylanIpRipFilterSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanIpRipFilterSlot.setStatus('mandatory')
xylanIpRipFilterPort = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanIpRipFilterPort.setStatus('mandatory')
xylanIpRipFilterVc = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 12), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanIpRipFilterVc.setStatus('mandatory')
xylanIpRipFilterPeerId = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 13), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanIpRipFilterPeerId.setStatus('mandatory')
xylanIpAssocMacTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1), )
if mibBuilder.loadTexts: xylanIpAssocMacTable.setStatus('mandatory')
xylanIpAssocEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1), ).setIndexNames((0, "XYLAN-IP-MIB", "xylanIpAssocAddr"))
if mibBuilder.loadTexts: xylanIpAssocEntry.setStatus('mandatory')
xylanIpAssocAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xylanIpAssocAddr.setStatus('mandatory')
xylanIpAssocMac = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xylanIpAssocMac.setStatus('mandatory')
xylanIpAssocSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xylanIpAssocSlot.setStatus('mandatory')
xylanIpAssocIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xylanIpAssocIntf.setStatus('mandatory')
xylanIpAssocDupMac = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xylanIpAssocDupMac.setStatus('mandatory')
xylanIpAssocDupSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xylanIpAssocDupSlot.setStatus('mandatory')
xylanIpAssocDupIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xylanIpAssocDupIntf.setStatus('mandatory')
mibBuilder.exportSymbols("XYLAN-IP-MIB", xylanIpAssocEntry=xylanIpAssocEntry, xylanIpRipFilterWanType=xylanIpRipFilterWanType, xylanIpAssocSlot=xylanIpAssocSlot, xylanIpRipFilterPort=xylanIpRipFilterPort, xylanIpRipFilterNum=xylanIpRipFilterNum, xylanIpRipFilterGroupId=xylanIpRipFilterGroupId, xylanIpRipFilterSlot=xylanIpRipFilterSlot, xylanIpRipFilterType=xylanIpRipFilterType, xylanIpRipFilterVc=xylanIpRipFilterVc, xylanIpAssocDupMac=xylanIpAssocDupMac, xylanIpAssocDupIntf=xylanIpAssocDupIntf, xylanIpAssocDupSlot=xylanIpAssocDupSlot, xylanIpRipFilterVlanId=xylanIpRipFilterVlanId, xylanIpFilterGroup=xylanIpFilterGroup, xylanIpRipFilterNetMask=xylanIpRipFilterNetMask, xylanIpRipFilterTable=xylanIpRipFilterTable, xylanIpAssocAddr=xylanIpAssocAddr, xylanIpRipFilterNet=xylanIpRipFilterNet, xylanIpAssocMacTable=xylanIpAssocMacTable, xylanIpAssocIntf=xylanIpAssocIntf, xylanIpRipFilterMode=xylanIpRipFilterMode, xylanIpAssocMac=xylanIpAssocMac, xylanIpRipFilterEntry=xylanIpRipFilterEntry, xylanIpRipFilterPeerId=xylanIpRipFilterPeerId, xylanIpMiscGroup=xylanIpMiscGroup, xylanIpRipFilterAdminState=xylanIpRipFilterAdminState)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, value_range_constraint, constraints_intersection, constraints_union, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsIntersection', 'ConstraintsUnion', 'SingleValueConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(notification_type, gauge32, object_identity, unsigned32, module_identity, mib_identifier, iso, ip_address, counter32, counter64, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, time_ticks, integer32) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'Gauge32', 'ObjectIdentity', 'Unsigned32', 'ModuleIdentity', 'MibIdentifier', 'iso', 'IpAddress', 'Counter32', 'Counter64', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'TimeTicks', 'Integer32')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
(xylan_ip_arch,) = mibBuilder.importSymbols('XYLAN-BASE-MIB', 'xylanIpArch')
xylan_ip_filter_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 13, 1))
xylan_ip_misc_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 13, 2))
xylan_ip_rip_filter_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1))
if mibBuilder.loadTexts:
xylanIpRipFilterTable.setStatus('mandatory')
xylan_ip_rip_filter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1)).setIndexNames((0, 'XYLAN-IP-MIB', 'xylanIpRipFilterNum'))
if mibBuilder.loadTexts:
xylanIpRipFilterEntry.setStatus('mandatory')
xylan_ip_rip_filter_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xylanIpRipFilterNum.setStatus('mandatory')
xylan_ip_rip_filter_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('active', 1), ('delete', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanIpRipFilterAdminState.setStatus('mandatory')
xylan_ip_rip_filter_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('rip-output', 1), ('rip-input', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanIpRipFilterType.setStatus('mandatory')
xylan_ip_rip_filter_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanIpRipFilterNet.setStatus('mandatory')
xylan_ip_rip_filter_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanIpRipFilterNetMask.setStatus('mandatory')
xylan_ip_rip_filter_mode = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('allow', 1), ('block', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanIpRipFilterMode.setStatus('mandatory')
xylan_ip_rip_filter_group_id = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanIpRipFilterGroupId.setStatus('mandatory')
xylan_ip_rip_filter_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanIpRipFilterVlanId.setStatus('mandatory')
xylan_ip_rip_filter_wan_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('not-used', 1), ('frame-relay', 2), ('ppp', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanIpRipFilterWanType.setStatus('mandatory')
xylan_ip_rip_filter_slot = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanIpRipFilterSlot.setStatus('mandatory')
xylan_ip_rip_filter_port = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanIpRipFilterPort.setStatus('mandatory')
xylan_ip_rip_filter_vc = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 12), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanIpRipFilterVc.setStatus('mandatory')
xylan_ip_rip_filter_peer_id = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 1, 1, 1, 13), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanIpRipFilterPeerId.setStatus('mandatory')
xylan_ip_assoc_mac_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1))
if mibBuilder.loadTexts:
xylanIpAssocMacTable.setStatus('mandatory')
xylan_ip_assoc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1)).setIndexNames((0, 'XYLAN-IP-MIB', 'xylanIpAssocAddr'))
if mibBuilder.loadTexts:
xylanIpAssocEntry.setStatus('mandatory')
xylan_ip_assoc_addr = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xylanIpAssocAddr.setStatus('mandatory')
xylan_ip_assoc_mac = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xylanIpAssocMac.setStatus('mandatory')
xylan_ip_assoc_slot = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xylanIpAssocSlot.setStatus('mandatory')
xylan_ip_assoc_intf = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xylanIpAssocIntf.setStatus('mandatory')
xylan_ip_assoc_dup_mac = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xylanIpAssocDupMac.setStatus('mandatory')
xylan_ip_assoc_dup_slot = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xylanIpAssocDupSlot.setStatus('mandatory')
xylan_ip_assoc_dup_intf = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 13, 2, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xylanIpAssocDupIntf.setStatus('mandatory')
mibBuilder.exportSymbols('XYLAN-IP-MIB', xylanIpAssocEntry=xylanIpAssocEntry, xylanIpRipFilterWanType=xylanIpRipFilterWanType, xylanIpAssocSlot=xylanIpAssocSlot, xylanIpRipFilterPort=xylanIpRipFilterPort, xylanIpRipFilterNum=xylanIpRipFilterNum, xylanIpRipFilterGroupId=xylanIpRipFilterGroupId, xylanIpRipFilterSlot=xylanIpRipFilterSlot, xylanIpRipFilterType=xylanIpRipFilterType, xylanIpRipFilterVc=xylanIpRipFilterVc, xylanIpAssocDupMac=xylanIpAssocDupMac, xylanIpAssocDupIntf=xylanIpAssocDupIntf, xylanIpAssocDupSlot=xylanIpAssocDupSlot, xylanIpRipFilterVlanId=xylanIpRipFilterVlanId, xylanIpFilterGroup=xylanIpFilterGroup, xylanIpRipFilterNetMask=xylanIpRipFilterNetMask, xylanIpRipFilterTable=xylanIpRipFilterTable, xylanIpAssocAddr=xylanIpAssocAddr, xylanIpRipFilterNet=xylanIpRipFilterNet, xylanIpAssocMacTable=xylanIpAssocMacTable, xylanIpAssocIntf=xylanIpAssocIntf, xylanIpRipFilterMode=xylanIpRipFilterMode, xylanIpAssocMac=xylanIpAssocMac, xylanIpRipFilterEntry=xylanIpRipFilterEntry, xylanIpRipFilterPeerId=xylanIpRipFilterPeerId, xylanIpMiscGroup=xylanIpMiscGroup, xylanIpRipFilterAdminState=xylanIpRipFilterAdminState) |
class A:
def f(self):
print("f() in A")
class B:
def f(self):
print("f() in B")
class D(A,B):
pass
class E(B,A):
pass
print(D.mro())
print(E.mro())
d = D()
d.f()
e = E()
e.f()
| class A:
def f(self):
print('f() in A')
class B:
def f(self):
print('f() in B')
class D(A, B):
pass
class E(B, A):
pass
print(D.mro())
print(E.mro())
d = d()
d.f()
e = e()
e.f() |
'''
* @Author: csy
* @Date: 2019-04-28 13:50:45
* @Last Modified by: csy
* @Last Modified time: 2019-04-28 13:50:45
'''
digits = list(range(0, 10))
print(digits)
print(min(digits))
print(max(digits))
print(sum(digits))
| """
* @Author: csy
* @Date: 2019-04-28 13:50:45
* @Last Modified by: csy
* @Last Modified time: 2019-04-28 13:50:45
"""
digits = list(range(0, 10))
print(digits)
print(min(digits))
print(max(digits))
print(sum(digits)) |
class constants:
NONE = 0
X = 1
O = 2
class variables:
explored = 0
def print_board(board):
print(simbol(board[0])+"|"+simbol(board[1])+"|"+simbol(board[2]))
print("-----")
print(simbol(board[3])+"|"+simbol(board[4])+"|"+simbol(board[5]))
print("-----")
print(simbol(board[6])+"|"+simbol(board[7])+"|"+simbol(board[8]))
def set_board(map, data):
for y in range(9):
map[y] = constants.X if data[y] == 'X' else constants.O if data[y] == 'O' else constants.NONE
def set_cell(b, y, x, s):
b[y*3+x] = s
def get_cell(b, y, x):
return b[y*3+x]
def simbol(c):
if (c == constants.X):
return 'X'
if (c == constants.O):
return 'O'
return ' '
def legend(c):
if (c == constants.X):
return "X"
if (c == constants.O):
return "O"
return "Nobody"
def game_status(board):
variables.explored += 1
# diags
if (board[0] == constants.X and board[4] == constants.X and board[8] == constants.X):
return constants.X
if (board[2] == constants.X and board[4] == constants.X and board[6] == constants.X):
return constants.X
# horizontal
if (board[0] == constants.X and board[1] == constants.X and board[2] == constants.X):
return constants.X
if (board[3] == constants.X and board[4] == constants.X and board[5] == constants.X):
return constants.X
if (board[6] == constants.X and board[7] == constants.X and board[8] == constants.X):
return constants.X
# vertical
if (board[0] == constants.X and board[3] == constants.X and board[6] == constants.X):
return constants.X
if (board[1] == constants.X and board[4] == constants.X and board[7] == constants.X):
return constants.X
if (board[2] == constants.X and board[5] == constants.X and board[8] == constants.X):
return constants.X
# diags
if (board[0] == constants.O and board[4] == constants.O and board[8] == constants.O):
return constants.O
if (board[2] == constants.O and board[4] == constants.O and board[6] == constants.O):
return constants.O
# horizontal
if (board[0] == constants.O and board[1] == constants.O and board[2] == constants.O):
return constants.O
if (board[3] == constants.O and board[4] == constants.O and board[5] == constants.O):
return constants.O
if (board[6] == constants.O and board[7] == constants.O and board[8] == constants.O):
return constants.O
# vertical
if (board[0] == constants.O and board[3] == constants.O and board[6] == constants.O):
return constants.O
if (board[1] == constants.O and board[4] == constants.O and board[7] == constants.O):
return constants.O
if (board[2] == constants.O and board[5] == constants.O and board[8] == constants.O):
return constants.O
return constants.NONE # tie or unfinished
| class Constants:
none = 0
x = 1
o = 2
class Variables:
explored = 0
def print_board(board):
print(simbol(board[0]) + '|' + simbol(board[1]) + '|' + simbol(board[2]))
print('-----')
print(simbol(board[3]) + '|' + simbol(board[4]) + '|' + simbol(board[5]))
print('-----')
print(simbol(board[6]) + '|' + simbol(board[7]) + '|' + simbol(board[8]))
def set_board(map, data):
for y in range(9):
map[y] = constants.X if data[y] == 'X' else constants.O if data[y] == 'O' else constants.NONE
def set_cell(b, y, x, s):
b[y * 3 + x] = s
def get_cell(b, y, x):
return b[y * 3 + x]
def simbol(c):
if c == constants.X:
return 'X'
if c == constants.O:
return 'O'
return ' '
def legend(c):
if c == constants.X:
return 'X'
if c == constants.O:
return 'O'
return 'Nobody'
def game_status(board):
variables.explored += 1
if board[0] == constants.X and board[4] == constants.X and (board[8] == constants.X):
return constants.X
if board[2] == constants.X and board[4] == constants.X and (board[6] == constants.X):
return constants.X
if board[0] == constants.X and board[1] == constants.X and (board[2] == constants.X):
return constants.X
if board[3] == constants.X and board[4] == constants.X and (board[5] == constants.X):
return constants.X
if board[6] == constants.X and board[7] == constants.X and (board[8] == constants.X):
return constants.X
if board[0] == constants.X and board[3] == constants.X and (board[6] == constants.X):
return constants.X
if board[1] == constants.X and board[4] == constants.X and (board[7] == constants.X):
return constants.X
if board[2] == constants.X and board[5] == constants.X and (board[8] == constants.X):
return constants.X
if board[0] == constants.O and board[4] == constants.O and (board[8] == constants.O):
return constants.O
if board[2] == constants.O and board[4] == constants.O and (board[6] == constants.O):
return constants.O
if board[0] == constants.O and board[1] == constants.O and (board[2] == constants.O):
return constants.O
if board[3] == constants.O and board[4] == constants.O and (board[5] == constants.O):
return constants.O
if board[6] == constants.O and board[7] == constants.O and (board[8] == constants.O):
return constants.O
if board[0] == constants.O and board[3] == constants.O and (board[6] == constants.O):
return constants.O
if board[1] == constants.O and board[4] == constants.O and (board[7] == constants.O):
return constants.O
if board[2] == constants.O and board[5] == constants.O and (board[8] == constants.O):
return constants.O
return constants.NONE |
RequiredKeyIsMissing = \
"No value was found for the required key `{key_name}`"
RequiredKeyIsWrongType = (
"Required key `{key_name}` has the wrong " +
"type of `{invalid_type}`. The value of this key " +
"should have the type `{expected_type}`"
)
DirectiveStructureError = (
"The following directive `{directive}` has an invalid structure. " +
"{problem}. "
)
| required_key_is_missing = 'No value was found for the required key `{key_name}`'
required_key_is_wrong_type = 'Required key `{key_name}` has the wrong ' + 'type of `{invalid_type}`. The value of this key ' + 'should have the type `{expected_type}`'
directive_structure_error = 'The following directive `{directive}` has an invalid structure. ' + '{problem}. ' |
def source():
pass
def sink(x):
pass
def alarm():
x = source()
sink(x)
| def source():
pass
def sink(x):
pass
def alarm():
x = source()
sink(x) |
# from: http://www.rosettacode.org/wiki/Babbage_problem#Python
def main():
print([x for x in range(30000) if (x * x) % 1000000 == 269696][0])
if __name__ == "__main__":
main()
| def main():
print([x for x in range(30000) if x * x % 1000000 == 269696][0])
if __name__ == '__main__':
main() |
def song_decoder(song):
result = song.replace("WUB" , " ")
result = ' '.join(result.split())
return result
| def song_decoder(song):
result = song.replace('WUB', ' ')
result = ' '.join(result.split())
return result |
def print_row(star_count):
for _ in range(star_count, size - 1):
print(' ', end='')
for _ in range(star_count):
print('*', end=' ')
print('*')
size = int(input())
for star_count in range(size):
print_row(star_count)
for star_count in range(size - 2, -1, -1):
print_row(star_count)
| def print_row(star_count):
for _ in range(star_count, size - 1):
print(' ', end='')
for _ in range(star_count):
print('*', end=' ')
print('*')
size = int(input())
for star_count in range(size):
print_row(star_count)
for star_count in range(size - 2, -1, -1):
print_row(star_count) |
def recur_fibo(n):
if n <= 1:
return n
else:
return (recur_fibo(n - 1) + recur_fibo(n - 2))
nterms = int(input('You want output many elements '))
if nterms < 0:
print('Enter the positive number')
else:
print("fibonacci sequence")
for i in range(nterms):
print(recur_fibo(i))
| def recur_fibo(n):
if n <= 1:
return n
else:
return recur_fibo(n - 1) + recur_fibo(n - 2)
nterms = int(input('You want output many elements '))
if nterms < 0:
print('Enter the positive number')
else:
print('fibonacci sequence')
for i in range(nterms):
print(recur_fibo(i)) |
class Solution:
def twoSum(self, numbers: List[int], target: int) -> List[int]:
n = len(numbers)
last_num = None
for i in range(n):
num1 = numbers[i]
if num1 != last_num:
for j in range(i+1, n):
num2 = numbers[j]
sum_ = num1 + num2
if sum_ == target:
return [i+1, j+1]
elif sum_ > target:
break
last_num = num1 | class Solution:
def two_sum(self, numbers: List[int], target: int) -> List[int]:
n = len(numbers)
last_num = None
for i in range(n):
num1 = numbers[i]
if num1 != last_num:
for j in range(i + 1, n):
num2 = numbers[j]
sum_ = num1 + num2
if sum_ == target:
return [i + 1, j + 1]
elif sum_ > target:
break
last_num = num1 |
NInput = int(input())
xcoor = []
ycoor = []
for i in range(NInput):
x, y = map(int, input().split())
xcoor.append(x)
ycoor.append(y)
for i in range(0, len(xcoor)):
minIndex = i
for j in range(i+1, len(xcoor)):
if xcoor[j] < xcoor[minIndex]:
xcoor[j], xcoor[minIndex] = xcoor[minIndex], xcoor[j]
ycoor[j], ycoor[minIndex] = ycoor[minIndex], ycoor[j]
for i in range(0, len(xcoor)):
if i+1 < len(xcoor):
if xcoor[i] == xcoor[i+1]:
if ycoor[i] > ycoor[i+1]:
ycoor[i], ycoor[i+1] = ycoor[i+1], ycoor[i]
for i in range(0, len(xcoor)):
print(xcoor[i], " ", ycoor[i]) | n_input = int(input())
xcoor = []
ycoor = []
for i in range(NInput):
(x, y) = map(int, input().split())
xcoor.append(x)
ycoor.append(y)
for i in range(0, len(xcoor)):
min_index = i
for j in range(i + 1, len(xcoor)):
if xcoor[j] < xcoor[minIndex]:
(xcoor[j], xcoor[minIndex]) = (xcoor[minIndex], xcoor[j])
(ycoor[j], ycoor[minIndex]) = (ycoor[minIndex], ycoor[j])
for i in range(0, len(xcoor)):
if i + 1 < len(xcoor):
if xcoor[i] == xcoor[i + 1]:
if ycoor[i] > ycoor[i + 1]:
(ycoor[i], ycoor[i + 1]) = (ycoor[i + 1], ycoor[i])
for i in range(0, len(xcoor)):
print(xcoor[i], ' ', ycoor[i]) |
# Should only need to modify these paths in this file:
# - BTFM_BASE
# - LSP_DATASET_DIR
# - LSPET_DATASET_DIR
# - COCO_DATASET_DIR
# - MPII_DATASET_DIR
# - TDPW_DATASET_DIR
# - MI3_DATASET_DIR
# - MI3_PP_DATASET_DIR
# - UPI_S1H_DATASET_DIR
# Note that this relies on a filesystem that supports symlinks
# Set up output path
BTFM_BASE='/media/data/btfm'
# Set up other paths in output for preprocessed data
BTFM_PP='/pp'
BTFM_PP_LSP=BTFM_PP+'/lsp'
BTFM_PP_LSPET=BTFM_PP+'/lspet'
BTFM_PP_MPII=BTFM_PP+'/mpii'
BTFM_PP_3DPW=BTFM_PP+'/3dpw'
BTFM_PP_3DPW_SILHOUETTE=BTFM_PP_3DPW+'/silhouette'
BTFM_PP_3DPW_SILHOUETTE_VALID=BTFM_PP_3DPW+'/good_3dpw_annotations.pkl'
BTFM_PP_COCO=BTFM_PP+'/coco'
BTFM_PP_COCO_SILHOUETTE=BTFM_PP_COCO+'/silhouette'
# Pre-processed files
LSP_CSV=BTFM_PP_LSP+'/lsp.csv'
LSPET_CSV=BTFM_PP_LSPET+'/lspet.csv'
MPII_RELEASE_PICKLE=BTFM_PP_MPII+'/mpii-RELEASE.pickle'
# Set up paths to datasets (absolute)
LSP_DATASET_DIR='/media/data/lsp'
LSPET_DATASET_DIR='/media/data/lspet'
COCO_DATASET_DIR='/media/data/coco2017'
MPII_DATASET_DIR='/media/data/mpii'
TDPW_DATASET_DIR='/media/data/3dpw'
MI3_DATASET_DIR='/media/data/mpi_inf_3dhp/mpi_inf_3dhp/download'
MI3_PP_DATASET_DIR='/media/data/mpi_inf_3dhp_pp'
UPI_S1H_DATASET_DIR='/media/data/up/upi-s1h'
SSP3D_DATASET_DIR='/media/data/SSP-3D'
# Other weights
MASK_RCNN_WEIGHTS='/media/data/maskrcnn_weights/mask_rcnn_coco.h5'
# Required preprocessing
# LSP: convertlsp.m to convert joints.mat to lsp.csv
# LSPET: convertlspet.m to convert joints.mat to lspet.csv
# MPII: 1) convertmpii.m to convert mpii_human_pose_v1_u12_1.mat to set of csv files
# 2) Convert output files (RELEASE.txt and *.csv) to pickle with convertmpii.py
# The following paths are all relative, starting from BTFM_BASE
LSP_DIR='/lsp'
LSP_IMG_DIR=LSP_DIR + '/images'
LSPET_DIR='/lspet'
LSPET_IMG_DIR=LSPET_DIR+'/images'
COCO_DIR='/coco2017'
COCO_TRAIN_IMG=COCO_DIR+'/train2017'
COCO_VAL_IMG=COCO_DIR+'/val2017'
COCO_TEST_IMG=COCO_DIR+'/test2017'
COCO_TRAIN_ANNOT=COCO_DIR+'/annotations/person_keypoints_train2017.json'
COCO_VAL_ANNOT=COCO_DIR+'/annotations/person_keypoints_val2017.json'
COCO_TEST_INFO=COCO_DIR+'/annotations/image_info_test2017.json'
# dev is a smaller set
#COCO_TEST_INFO=COCO_DIR+'/annotations/image_info_test-dev2017.json'
MPII_DIR='/mpii'
MPII_IMG_DIR=MPII_DIR+'/images'
TDPW_DIR='/3dpw'
TDPW_IMG_DIR=TDPW_DIR+'/imageFiles'
TDPW_SEQ_DIR=TDPW_DIR+'/sequenceFiles'
TDPW_TRAIN_DIR=TDPW_SEQ_DIR+'/train'
TDPW_VAL_DIR=TDPW_SEQ_DIR+'/validation'
TDPW_TEST_DIR=TDPW_SEQ_DIR+'/test'
MI3_DIR='/mpi_inf_3dhp'
MI3_TEST_DIR=MI3_DIR+'/mpi_inf_3dhp_test_set/mpi_inf_3dhp_test_set'
MI3_PP_DIR='/mi3_pp'
UPI_S1H_DIR='/upi-s1h'
UPI_S1H_MPII=UPI_S1H_DIR+'/data/mpii'
UPI_S1H_MPII_IMG=UPI_S1H_MPII+'/images'
UPI_S1H_MPII_ANNOT=UPI_S1H_MPII+'/correspondences.csv'
SSP3D_DIR='/ssp-3d'
| btfm_base = '/media/data/btfm'
btfm_pp = '/pp'
btfm_pp_lsp = BTFM_PP + '/lsp'
btfm_pp_lspet = BTFM_PP + '/lspet'
btfm_pp_mpii = BTFM_PP + '/mpii'
btfm_pp_3_dpw = BTFM_PP + '/3dpw'
btfm_pp_3_dpw_silhouette = BTFM_PP_3DPW + '/silhouette'
btfm_pp_3_dpw_silhouette_valid = BTFM_PP_3DPW + '/good_3dpw_annotations.pkl'
btfm_pp_coco = BTFM_PP + '/coco'
btfm_pp_coco_silhouette = BTFM_PP_COCO + '/silhouette'
lsp_csv = BTFM_PP_LSP + '/lsp.csv'
lspet_csv = BTFM_PP_LSPET + '/lspet.csv'
mpii_release_pickle = BTFM_PP_MPII + '/mpii-RELEASE.pickle'
lsp_dataset_dir = '/media/data/lsp'
lspet_dataset_dir = '/media/data/lspet'
coco_dataset_dir = '/media/data/coco2017'
mpii_dataset_dir = '/media/data/mpii'
tdpw_dataset_dir = '/media/data/3dpw'
mi3_dataset_dir = '/media/data/mpi_inf_3dhp/mpi_inf_3dhp/download'
mi3_pp_dataset_dir = '/media/data/mpi_inf_3dhp_pp'
upi_s1_h_dataset_dir = '/media/data/up/upi-s1h'
ssp3_d_dataset_dir = '/media/data/SSP-3D'
mask_rcnn_weights = '/media/data/maskrcnn_weights/mask_rcnn_coco.h5'
lsp_dir = '/lsp'
lsp_img_dir = LSP_DIR + '/images'
lspet_dir = '/lspet'
lspet_img_dir = LSPET_DIR + '/images'
coco_dir = '/coco2017'
coco_train_img = COCO_DIR + '/train2017'
coco_val_img = COCO_DIR + '/val2017'
coco_test_img = COCO_DIR + '/test2017'
coco_train_annot = COCO_DIR + '/annotations/person_keypoints_train2017.json'
coco_val_annot = COCO_DIR + '/annotations/person_keypoints_val2017.json'
coco_test_info = COCO_DIR + '/annotations/image_info_test2017.json'
mpii_dir = '/mpii'
mpii_img_dir = MPII_DIR + '/images'
tdpw_dir = '/3dpw'
tdpw_img_dir = TDPW_DIR + '/imageFiles'
tdpw_seq_dir = TDPW_DIR + '/sequenceFiles'
tdpw_train_dir = TDPW_SEQ_DIR + '/train'
tdpw_val_dir = TDPW_SEQ_DIR + '/validation'
tdpw_test_dir = TDPW_SEQ_DIR + '/test'
mi3_dir = '/mpi_inf_3dhp'
mi3_test_dir = MI3_DIR + '/mpi_inf_3dhp_test_set/mpi_inf_3dhp_test_set'
mi3_pp_dir = '/mi3_pp'
upi_s1_h_dir = '/upi-s1h'
upi_s1_h_mpii = UPI_S1H_DIR + '/data/mpii'
upi_s1_h_mpii_img = UPI_S1H_MPII + '/images'
upi_s1_h_mpii_annot = UPI_S1H_MPII + '/correspondences.csv'
ssp3_d_dir = '/ssp-3d' |
class Solution:
def calPoints(self, ops: List[str]) -> int:
array = []
for op in ops:
if op == 'C':
array.pop()
elif op == 'D':
array.append(array[-1]*2)
elif op == "+":
array.append(array[-1] + array[-2])
else:
array.append(int(op))
return sum(array)
| class Solution:
def cal_points(self, ops: List[str]) -> int:
array = []
for op in ops:
if op == 'C':
array.pop()
elif op == 'D':
array.append(array[-1] * 2)
elif op == '+':
array.append(array[-1] + array[-2])
else:
array.append(int(op))
return sum(array) |
# stringparser.py
#
# Ronald Rihoo
def findFirstQuotationMarkFromTheLeft(string):
for i in xrange(len(string) - 1, 0, -1):
if string[i] == '"':
return i
def findFirstQuotationMarkFromTheRight(string):
for i in range(len(string)):
if string[i] == '"':
return i
def splitLeftAspect_toChar(string, fromIndex, char):
string = string[0:fromIndex]
for i in xrange(len(string) - 1, 0, -1):
if string[i] == char:
return string[i:].replace("\\", "")
def splitRightAspect_toChar(string, fromIndex, char):
string = string[fromIndex:]
for i in xrange(len(string)):
if string[i] == char:
return string[:i+1].replace("\\", "")
def splitLeftAspect_toSubstring(string, fromIndex, chars):
string = string[0:fromIndex]
l = len(chars)
for i in xrange(len(string) - 1, 0, -1):
if i < len(string) - l:
if string[i:i+l] == chars:
return string[i:]
def splitRightAspect_toSubstring(string, fromIndex, chars):
string = string[fromIndex:]
l = len(chars)
for i in xrange(len(string)):
if string[i:i+l] == chars:
return string[:i+l]
def getFullQuoteViaKeywordLaterals(string, keyword):
if keyword in string:
i = string.index(keyword)
x = splitLeftAspect_toChar(string, i, '"')
y = splitRightAspect_toChar(string, i, '"')
try: return x + y
except: return "No results"
def removeBackslashes(string):
return string.replace("\\", "")
def getHtmlLinkViaKeywordLaterals(string, keyword):
if keyword in string:
i = string.index(keyword)
y = splitRightAspect_toChar(string, i, '"')
# if string = ...somewebpage.html" <- notice double-quotation mark placement
if (y[len(y)-5:] == '.html'):
x = splitLeftAspect_toChar(string, i, '"')[1:]
# expected: string = somecode"somelink... <- notice double-quotation mark placement
try:
return x + y
except:
# expected: string = somecodehttp://somelink... <- notice no double-quotation mark
try:
x = splitLeftAspect_toSubstring(string, i, 'http')
return x + y
except:
return "Not found."
# if string = ...somewebpage.html > some text ..." <- notice double-quotation mark placement
elif (y[:5] == '.html'):
y = y[:5]
x = splitLeftAspect_toChar(string, i, '"')
# expected: string = somecode"somelink... <- there exists a double-quotation mark
try:
return x[1:] + y
except:
try:
# expected: string = somecodehttp://somelink... <- no double-quotation mark
x = splitLeftAspect_toSubstring(string, i, 'http')
return x + y
except:
return "Not found."
else:
try:
x = splitLeftAspect_toSubstring(string, i, 'http')
y = splitRightAspect_toSubstring(string, i, '.html')
return x + y
except:
return "Not found."
return | def find_first_quotation_mark_from_the_left(string):
for i in xrange(len(string) - 1, 0, -1):
if string[i] == '"':
return i
def find_first_quotation_mark_from_the_right(string):
for i in range(len(string)):
if string[i] == '"':
return i
def split_left_aspect_to_char(string, fromIndex, char):
string = string[0:fromIndex]
for i in xrange(len(string) - 1, 0, -1):
if string[i] == char:
return string[i:].replace('\\', '')
def split_right_aspect_to_char(string, fromIndex, char):
string = string[fromIndex:]
for i in xrange(len(string)):
if string[i] == char:
return string[:i + 1].replace('\\', '')
def split_left_aspect_to_substring(string, fromIndex, chars):
string = string[0:fromIndex]
l = len(chars)
for i in xrange(len(string) - 1, 0, -1):
if i < len(string) - l:
if string[i:i + l] == chars:
return string[i:]
def split_right_aspect_to_substring(string, fromIndex, chars):
string = string[fromIndex:]
l = len(chars)
for i in xrange(len(string)):
if string[i:i + l] == chars:
return string[:i + l]
def get_full_quote_via_keyword_laterals(string, keyword):
if keyword in string:
i = string.index(keyword)
x = split_left_aspect_to_char(string, i, '"')
y = split_right_aspect_to_char(string, i, '"')
try:
return x + y
except:
return 'No results'
def remove_backslashes(string):
return string.replace('\\', '')
def get_html_link_via_keyword_laterals(string, keyword):
if keyword in string:
i = string.index(keyword)
y = split_right_aspect_to_char(string, i, '"')
if y[len(y) - 5:] == '.html':
x = split_left_aspect_to_char(string, i, '"')[1:]
try:
return x + y
except:
try:
x = split_left_aspect_to_substring(string, i, 'http')
return x + y
except:
return 'Not found.'
elif y[:5] == '.html':
y = y[:5]
x = split_left_aspect_to_char(string, i, '"')
try:
return x[1:] + y
except:
try:
x = split_left_aspect_to_substring(string, i, 'http')
return x + y
except:
return 'Not found.'
else:
try:
x = split_left_aspect_to_substring(string, i, 'http')
y = split_right_aspect_to_substring(string, i, '.html')
return x + y
except:
return 'Not found.'
return |
#!/usr/bin/python
# coding=utf-8
class Fibs(object):
def __init__(self):
self.a = 0
self.b = 1
def next(self):
self.a, self.b = self.b, self.a + self.b
return self.a
def __iter__(self):
return self
if __name__ == "__main__":
fibs = Fibs()
for fib in fibs:
if fib > 1000:
break
print(fib)
| class Fibs(object):
def __init__(self):
self.a = 0
self.b = 1
def next(self):
(self.a, self.b) = (self.b, self.a + self.b)
return self.a
def __iter__(self):
return self
if __name__ == '__main__':
fibs = fibs()
for fib in fibs:
if fib > 1000:
break
print(fib) |
# This sample tests that arbitrary expressions (including
# subscripts) work for decorators. This support was added
# in Python 3.9.
my_decorators = (staticmethod, classmethod, property)
class Foo:
# This should generate an error if version < 3.9.
@my_decorators[0]
def my_static_method():
return 3
# This should generate an error if version < 3.9.
@my_decorators[1]
def my_class_method(cls):
return 3
# This should generate an error if version < 3.9.
@my_decorators[2]
def my_property(self):
return 3
Foo.my_static_method()
Foo.my_class_method()
Foo().my_property
| my_decorators = (staticmethod, classmethod, property)
class Foo:
@my_decorators[0]
def my_static_method():
return 3
@my_decorators[1]
def my_class_method(cls):
return 3
@my_decorators[2]
def my_property(self):
return 3
Foo.my_static_method()
Foo.my_class_method()
foo().my_property |
largura=l=int(input("digite a largura: "))
altura=a=int(input("digite a altura: "))
while altura>0:
largura=l
while largura >0:
if (altura==a or altura ==1):
print("#", end="")
else:
if largura==1 or largura ==l:
print("#", end="")
else:
print("", end=" ")
largura-=1
print()
altura-=1
| largura = l = int(input('digite a largura: '))
altura = a = int(input('digite a altura: '))
while altura > 0:
largura = l
while largura > 0:
if altura == a or altura == 1:
print('#', end='')
elif largura == 1 or largura == l:
print('#', end='')
else:
print('', end=' ')
largura -= 1
print()
altura -= 1 |
'''
Author: jianzhnie
Date: 2021-11-08 18:25:03
LastEditTime: 2022-02-25 11:12:28
LastEditors: jianzhnie
Description:
'''
| """
Author: jianzhnie
Date: 2021-11-08 18:25:03
LastEditTime: 2022-02-25 11:12:28
LastEditors: jianzhnie
Description:
""" |
#String Rotation:Assumeyou have a method isSubstringwhich checks if oneword is a substring of another. Given two strings, sl and s2, write code to check if s2 is a rotation of sl using only one call to isSubstring (e.g., "waterbottle" is a rotation of"erbottlewat").
#do special caracters as spaces are in the strign or do they matter A:only letters from a-z
#if the word is terbottlewa erbottlewat
# i dont know how to make it o(n) will use 2 indices and see how far i go
def rotation(str1,str2):# O(n)
ith=0
jth=0
while jth < len(str2): #this is O(n)
if str1[ith]==str2[jth]:
ith+=1
else:
ith=0
jth+=1
return isSubstring(str2[:-ith], str1)
def isSubstring(str1,str2):
return str1 in str2 #this is O(n)
print (rotation("terbottlewa","erbottlewat"))
print (rotation("waterbottle","erbottlewat"))
#lol i did it in O(n) i was considering that the string checks could lead me
#to a different O(n*sub(n)) or something like it
# i think this solution might be faulty
| def rotation(str1, str2):
ith = 0
jth = 0
while jth < len(str2):
if str1[ith] == str2[jth]:
ith += 1
else:
ith = 0
jth += 1
return is_substring(str2[:-ith], str1)
def is_substring(str1, str2):
return str1 in str2
print(rotation('terbottlewa', 'erbottlewat'))
print(rotation('waterbottle', 'erbottlewat')) |
def fromETH(amt, px):
return amt*px
def toETH(amt, px):
return amt/px
def toOVL(amt, px):
return fromETH(amt, px)
def fromOVL(amt, px):
return toETH(amt, px)
def px_from_ret(px0: float, ret: float) -> float:
'''get the new price given a return'''
ret = ret/100
return (ret + 1)*px0
def pnl(amt, ret):
return amt * (1 + ret/100)
def get_imbalance(longs, shorts):
return longs - shorts
def funding(k, imb):
return k*imb
def funding_rate(k, imb, side_oi):
'''side_oi is volume of long or short side'''
return k*imb/side_oi
| def from_eth(amt, px):
return amt * px
def to_eth(amt, px):
return amt / px
def to_ovl(amt, px):
return from_eth(amt, px)
def from_ovl(amt, px):
return to_eth(amt, px)
def px_from_ret(px0: float, ret: float) -> float:
"""get the new price given a return"""
ret = ret / 100
return (ret + 1) * px0
def pnl(amt, ret):
return amt * (1 + ret / 100)
def get_imbalance(longs, shorts):
return longs - shorts
def funding(k, imb):
return k * imb
def funding_rate(k, imb, side_oi):
"""side_oi is volume of long or short side"""
return k * imb / side_oi |
class Results:
def __init__(self, error, error_type, description, sequence, activity=None, activity_class=None):
self.error = error
self.error_type = error_type
self.description = description
self.sequence = sequence
self.activity = activity
self.activity_class = activity_class
| class Results:
def __init__(self, error, error_type, description, sequence, activity=None, activity_class=None):
self.error = error
self.error_type = error_type
self.description = description
self.sequence = sequence
self.activity = activity
self.activity_class = activity_class |
n=3
z=65
for i in range(n):
k=z
for j in range(n-i):
print(' ',end='')
for j in range(2*i+1):
print(chr(k),end='')
k-=1
z=z+2
print()
for i in range(1,n):
c=z-4
for j in range(i):
print(' ',end='')
for j in range((2*n)-2*i-1):
print(chr(c),end='')
c-=1
z=z-2
print()
| n = 3
z = 65
for i in range(n):
k = z
for j in range(n - i):
print(' ', end='')
for j in range(2 * i + 1):
print(chr(k), end='')
k -= 1
z = z + 2
print()
for i in range(1, n):
c = z - 4
for j in range(i):
print(' ', end='')
for j in range(2 * n - 2 * i - 1):
print(chr(c), end='')
c -= 1
z = z - 2
print() |
with open("pos_tweets.txt") as input_file:
text = input_file.read()
text_set = set(text.split(" "))
for word in text_set:
print(word,text.count(word)) | with open('pos_tweets.txt') as input_file:
text = input_file.read()
text_set = set(text.split(' '))
for word in text_set:
print(word, text.count(word)) |
#coding=utf-8
__all__ = ["ModelConfig", "TrainerConfig"]
class ModelConfig(object):
vocab_size = 104810
embedding_dim = 300
embedding_droprate = 0.3
lstm_depth = 3
lstm_hidden_dim = 300
lstm_hidden_droprate = 0.3
passage_indep_embedding_dim = 300
passage_aligned_embedding_dim = 300
beam_size = 32
dict_path = "data/featurized/vocab.txt"
pretrained_emb_path = "data/featurized/embeddings.npy"
class TrainerConfig(object):
learning_rate = 1e-3
l2_decay_rate = 5e-4
gradient_clipping_threshold = 20
data_dir = "data/featurized"
save_dir = "models"
use_gpu = False
trainer_count = 1
train_batch_size = trainer_count * 8
epochs = 20
# This parameter is for debug printing.
# If it set to 0, no information will be printed.
show_parameter_status_period = 0
checkpoint_period = 100
log_period = 5
# This parameter is used to resume training.
# This path can be set to a previously trained model.
init_model_path = None
| __all__ = ['ModelConfig', 'TrainerConfig']
class Modelconfig(object):
vocab_size = 104810
embedding_dim = 300
embedding_droprate = 0.3
lstm_depth = 3
lstm_hidden_dim = 300
lstm_hidden_droprate = 0.3
passage_indep_embedding_dim = 300
passage_aligned_embedding_dim = 300
beam_size = 32
dict_path = 'data/featurized/vocab.txt'
pretrained_emb_path = 'data/featurized/embeddings.npy'
class Trainerconfig(object):
learning_rate = 0.001
l2_decay_rate = 0.0005
gradient_clipping_threshold = 20
data_dir = 'data/featurized'
save_dir = 'models'
use_gpu = False
trainer_count = 1
train_batch_size = trainer_count * 8
epochs = 20
show_parameter_status_period = 0
checkpoint_period = 100
log_period = 5
init_model_path = None |
def cipher():
user_input = input("Please provide a word: ") | def cipher():
user_input = input('Please provide a word: ') |
# -*- coding: utf-8 -*-
usr_number = int(input("Enter a number to calculate: "))
if usr_number > 1:
for n in range(2, usr_number):
if (usr_number % n == 0):
print(f'{n} is not a prime number')
else:
print(f'{n} is a prime number')
| usr_number = int(input('Enter a number to calculate: '))
if usr_number > 1:
for n in range(2, usr_number):
if usr_number % n == 0:
print(f'{n} is not a prime number')
else:
print(f'{n} is a prime number') |
date_fullyear = '[0-9]{4}'
date_mday = '[0-9]{2}'
date_month = '[0-9]{2}'
full_date = f'{date_fullyear}-{date_month}-{date_mday}'
time_hour = '[0-9]{2}'
time_minute = '[0-9]{2}'
time_second = '[0-9]{2}'
time_secfrac = '\\.[0-9]+'
partial_time = f'{time_hour}:{time_minute}:{time_second}({time_secfrac})?'
time_numoffset = f'[+\\-]{time_hour}:{time_minute}'
time_offset = f'([zZ]|{time_numoffset})'
full_time = f'{partial_time}{time_offset}'
date_time = f'{full_date}[tT]{full_time}'
| date_fullyear = '[0-9]{4}'
date_mday = '[0-9]{2}'
date_month = '[0-9]{2}'
full_date = f'{date_fullyear}-{date_month}-{date_mday}'
time_hour = '[0-9]{2}'
time_minute = '[0-9]{2}'
time_second = '[0-9]{2}'
time_secfrac = '\\.[0-9]+'
partial_time = f'{time_hour}:{time_minute}:{time_second}({time_secfrac})?'
time_numoffset = f'[+\\-]{time_hour}:{time_minute}'
time_offset = f'([zZ]|{time_numoffset})'
full_time = f'{partial_time}{time_offset}'
date_time = f'{full_date}[tT]{full_time}' |
__author__ = 'schien'
INSTALLED_APPS += ('storages',)
STATICFILES_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
S3_URL = 'https://%s.s3.amazonaws.com/' % AWS_STORAGE_BUCKET_NAME
STATIC_URL = S3_URL
AWS_LOCATION = '/static'
AWS_HEADERS = { # see http://developer.yahoo.com/performance/rules.html#expires
'Expires': 'Thu, 31 Dec 2099 20:00:00 GMT',
'Cache-Control': 'max-age=94608000',
} | __author__ = 'schien'
installed_apps += ('storages',)
staticfiles_storage = 'storages.backends.s3boto.S3BotoStorage'
s3_url = 'https://%s.s3.amazonaws.com/' % AWS_STORAGE_BUCKET_NAME
static_url = S3_URL
aws_location = '/static'
aws_headers = {'Expires': 'Thu, 31 Dec 2099 20:00:00 GMT', 'Cache-Control': 'max-age=94608000'} |
class SubMerchant:
def __init__(self):
self.cardAcceptorID = None
self.country = None
self.phoneNumber = None
self.address1 = None
self.postalCode = None
self.locality = None
self.name = None
self.administrativeArea = None
self.region = None
self.email = None
def set_card_acceptor_id(self, value):
self.cardAcceptorID = value
def set_country(self, value):
self.country = value
def set_phone_number(self, value):
self.phoneNumber = value
def set_address1(self, value):
self.address1 = value
def set_postal_code(self, value):
self.postalCode = value
def set_locality(self, value):
self.locality = value
def set_name(self, value):
self.name = value
def set_administrative_area(self, value):
self.administrativeArea = value
def set_region(self, value):
self.region = value
def set_email(self, value):
self.email = value
| class Submerchant:
def __init__(self):
self.cardAcceptorID = None
self.country = None
self.phoneNumber = None
self.address1 = None
self.postalCode = None
self.locality = None
self.name = None
self.administrativeArea = None
self.region = None
self.email = None
def set_card_acceptor_id(self, value):
self.cardAcceptorID = value
def set_country(self, value):
self.country = value
def set_phone_number(self, value):
self.phoneNumber = value
def set_address1(self, value):
self.address1 = value
def set_postal_code(self, value):
self.postalCode = value
def set_locality(self, value):
self.locality = value
def set_name(self, value):
self.name = value
def set_administrative_area(self, value):
self.administrativeArea = value
def set_region(self, value):
self.region = value
def set_email(self, value):
self.email = value |
environment = 'MountainCar-v0'
bin_count = 9
goal_positon = 0.5
position_min = -1.2
position_max = 0.6
velocity_min = -0.07
velocity_max = 0.07
num_episodes = 10000
max_steps_in_episode = 200
verbose = 100
learning_rate = 10e-3
eps = 1
discount_factor = 0.9
panelty = -300
test_episodes = 100
bonus = 500
q_table_path="MountainCar-v0.npy" | environment = 'MountainCar-v0'
bin_count = 9
goal_positon = 0.5
position_min = -1.2
position_max = 0.6
velocity_min = -0.07
velocity_max = 0.07
num_episodes = 10000
max_steps_in_episode = 200
verbose = 100
learning_rate = 0.01
eps = 1
discount_factor = 0.9
panelty = -300
test_episodes = 100
bonus = 500
q_table_path = 'MountainCar-v0.npy' |
#!/usr/bin/python
def BubbleSort(val):
for passnum in range(len(val)-1,0,-1):
for i in range(passnum):
if val[i]>val[i+1]:
temp = val[i]
val[i] = val[i+1]
val[i+1] = temp
DaftarAngka = [23,7,32,99,4,15,11,20]
BubbleSort(DaftarAngka)
print(DaftarAngka)
| def bubble_sort(val):
for passnum in range(len(val) - 1, 0, -1):
for i in range(passnum):
if val[i] > val[i + 1]:
temp = val[i]
val[i] = val[i + 1]
val[i + 1] = temp
daftar_angka = [23, 7, 32, 99, 4, 15, 11, 20]
bubble_sort(DaftarAngka)
print(DaftarAngka) |
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF 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.
USER_OWNER_TYPE = "User"
DASHBOARD_OWNER_TYPE = "Dashboard"
NAME_FIELD = "name"
DESCRIPTION_FIELD = "description"
JSON_METADATA_FIELD = "json_metadata"
OWNER_ID_FIELD = "owner_id"
OWNER_TYPE_FIELD = "owner_type"
DASHBOARD_ID_FIELD = "dashboard_id"
OWNER_OBJECT_FIELD = "owner_object"
DASHBOARD_FIELD = "dashboard"
PARAMS_PROPERTY = "params"
FILTER_SET_API_PERMISSIONS_NAME = "FilterSets"
| user_owner_type = 'User'
dashboard_owner_type = 'Dashboard'
name_field = 'name'
description_field = 'description'
json_metadata_field = 'json_metadata'
owner_id_field = 'owner_id'
owner_type_field = 'owner_type'
dashboard_id_field = 'dashboard_id'
owner_object_field = 'owner_object'
dashboard_field = 'dashboard'
params_property = 'params'
filter_set_api_permissions_name = 'FilterSets' |
def paired_digits_count(data, skip):
return sum([int(d) for i, d in enumerate(data) if data[i - skip] == d])
with open("day01.txt") as f:
data = f.readline()
half = int(len(data) / 2)
print("2017 day 1 part 1: %d" % paired_digits_count(data, 1))
print("2017 day 1 part 2: %d" % paired_digits_count(data, half))
| def paired_digits_count(data, skip):
return sum([int(d) for (i, d) in enumerate(data) if data[i - skip] == d])
with open('day01.txt') as f:
data = f.readline()
half = int(len(data) / 2)
print('2017 day 1 part 1: %d' % paired_digits_count(data, 1))
print('2017 day 1 part 2: %d' % paired_digits_count(data, half)) |
# Soultion for Project Euler Problem #8 - https://projecteuler.net/problem=8
# (c) 2017 dpetker
TEST_VAL = '7316717653133062491922511967442657474235534919493496983520312774506326239578318016984801869478851843858615607891129494954595017379583319528532088055111254069874715852386305071569329096329522744304355766896648950445244523161731856403098711121722383113622298934233803081353362766142828064444866452387493035890729629049156044077239071381051585930796086670172427121883998797908792274921901699720888093776657273330010533678812202354218097512545405947522435258490771167055601360483958644670632441572215539753697817977846174064955149290862569321978468622482839722413756570560574902614079729686524145351004748216637048440319989000889524345065854122758866688116427171479924442928230863465674813919123162824586178664583591245665294765456828489128831426076900422421902267105562632111110937054421750694165896040807198403850962455444362981230987879927244284909188845801561660979191338754992005240636899125607176060588611646710940507754100225698315520005593572972571636269561882670428252483600823257530420752963450'
curr_max = 0
def multiply_range(test_str):
curr_prod = 1
for c in test_str:
curr_prod *= int(c)
return curr_prod
for ctr in range(0, len(TEST_VAL) - 13):
temp_prod = multiply_range(TEST_VAL[ctr : ctr + 13])
if temp_prod > curr_max:
curr_max = temp_prod
print('The thirteen adjacent digits in the 1000-digit number that have the greatest product is {}'.format(curr_max))
| test_val = '7316717653133062491922511967442657474235534919493496983520312774506326239578318016984801869478851843858615607891129494954595017379583319528532088055111254069874715852386305071569329096329522744304355766896648950445244523161731856403098711121722383113622298934233803081353362766142828064444866452387493035890729629049156044077239071381051585930796086670172427121883998797908792274921901699720888093776657273330010533678812202354218097512545405947522435258490771167055601360483958644670632441572215539753697817977846174064955149290862569321978468622482839722413756570560574902614079729686524145351004748216637048440319989000889524345065854122758866688116427171479924442928230863465674813919123162824586178664583591245665294765456828489128831426076900422421902267105562632111110937054421750694165896040807198403850962455444362981230987879927244284909188845801561660979191338754992005240636899125607176060588611646710940507754100225698315520005593572972571636269561882670428252483600823257530420752963450'
curr_max = 0
def multiply_range(test_str):
curr_prod = 1
for c in test_str:
curr_prod *= int(c)
return curr_prod
for ctr in range(0, len(TEST_VAL) - 13):
temp_prod = multiply_range(TEST_VAL[ctr:ctr + 13])
if temp_prod > curr_max:
curr_max = temp_prod
print('The thirteen adjacent digits in the 1000-digit number that have the greatest product is {}'.format(curr_max)) |
city = "narva"
estonianPopulation = [
["tallinn", 441000],
["tartu", 94000],
["narva", 58000],
["parnu", 41000]
]
for p in estonianPopulation:
if p[0] == city:
print("Population of " + p[0].capitalize() + ": " + str(p[1]))
break
| city = 'narva'
estonian_population = [['tallinn', 441000], ['tartu', 94000], ['narva', 58000], ['parnu', 41000]]
for p in estonianPopulation:
if p[0] == city:
print('Population of ' + p[0].capitalize() + ': ' + str(p[1]))
break |
def iter_rings(data, pathcodes):
ring = []
# TODO: Do this smartly by finding when pathcodes changes value and do
# smart indexing on data, instead of iterating over each coordinate
for point, code in zip(data, pathcodes):
if code == 'M':
# Emit the path and start a new one
if len(ring):
yield ring
ring = [point]
elif code == 'L':
ring.append(point)
else:
raise ValueError('Unrecognized code: {}'.format(code))
if len(ring):
yield ring
| def iter_rings(data, pathcodes):
ring = []
for (point, code) in zip(data, pathcodes):
if code == 'M':
if len(ring):
yield ring
ring = [point]
elif code == 'L':
ring.append(point)
else:
raise value_error('Unrecognized code: {}'.format(code))
if len(ring):
yield ring |
text = 'hello'
fileName = 'data.txt'
file=open(fileName, 'w')
file.write(text)
file.close()
file = open(fileName, 'r')
input_text = file.readline()
file.close()
print(input_text)
| text = 'hello'
file_name = 'data.txt'
file = open(fileName, 'w')
file.write(text)
file.close()
file = open(fileName, 'r')
input_text = file.readline()
file.close()
print(input_text) |
def sl_a_func():
pass
def sl_a_func2():
pass
class SlAClass():
def __init__(self):
pass
| def sl_a_func():
pass
def sl_a_func2():
pass
class Slaclass:
def __init__(self):
pass |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
def new_tips(argv):
def tips(func):
def nei(a, b):
print("start %s %s" %(argv, func.__name__))
func(a, b)
print("stop")
return nei
return tips
@new_tips('add_modules')
def add(a, b):
print(a + b)
@new_tips('sub_modules')
def sub(a, b):
print(a - b)
print(add(4, 5))
print(add(7, 3)) | def new_tips(argv):
def tips(func):
def nei(a, b):
print('start %s %s' % (argv, func.__name__))
func(a, b)
print('stop')
return nei
return tips
@new_tips('add_modules')
def add(a, b):
print(a + b)
@new_tips('sub_modules')
def sub(a, b):
print(a - b)
print(add(4, 5))
print(add(7, 3)) |
N, M = map(int, input().split())
A = list(map(int, input().split()))
days = N - sum(A)
if days < 0:
print(-1)
else:
print(days) | (n, m) = map(int, input().split())
a = list(map(int, input().split()))
days = N - sum(A)
if days < 0:
print(-1)
else:
print(days) |
a, b = map(int, input().split())
if b >= 45:
print(a, b-45)
elif a != 0 and b < 45:
print(a-1, b+15)
else:
print(23, b+15)
| (a, b) = map(int, input().split())
if b >= 45:
print(a, b - 45)
elif a != 0 and b < 45:
print(a - 1, b + 15)
else:
print(23, b + 15) |
N = int(input())
soma = 0
for k in range(N):
X = int(input())
if X >= 10 and X <= 20: soma+=1
print("%d in" % (soma))
print("%d out" % (abs(N-soma)))
| n = int(input())
soma = 0
for k in range(N):
x = int(input())
if X >= 10 and X <= 20:
soma += 1
print('%d in' % soma)
print('%d out' % abs(N - soma)) |
class ValueType(object):
'''Define _key() and inherit from this class to implement comparison and hashing'''
# def __init__(self, *args, **kwargs): super(ValueType, self).__init__(*args, **kwargs)
def __eq__(self, other): return type(self) == type(other) and self._key() == other._key()
def __ne__(self, other): return type(self) != type(other) or self._key() != other._key()
def __hash__(self): return hash(self._key())
| class Valuetype(object):
"""Define _key() and inherit from this class to implement comparison and hashing"""
def __eq__(self, other):
return type(self) == type(other) and self._key() == other._key()
def __ne__(self, other):
return type(self) != type(other) or self._key() != other._key()
def __hash__(self):
return hash(self._key()) |
#
# PySNMP MIB module CISCO-SRST-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-SRST-MIB
# Produced by pysmi-0.3.4 at Wed May 1 12:12:45 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint")
ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt")
CvE164Address, CountryCode = mibBuilder.importSymbols("CISCO-TC", "CvE164Address", "CountryCode")
InetPortNumber, InetAddress, InetAddressType = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetPortNumber", "InetAddress", "InetAddressType")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup")
ObjectIdentity, IpAddress, Counter64, iso, NotificationType, Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter32, TimeTicks, ModuleIdentity, MibIdentifier, Bits, Unsigned32, Gauge32 = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "IpAddress", "Counter64", "iso", "NotificationType", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter32", "TimeTicks", "ModuleIdentity", "MibIdentifier", "Bits", "Unsigned32", "Gauge32")
TruthValue, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "TextualConvention", "DisplayString")
ciscoSrstMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 441))
ciscoSrstMIB.setRevisions(('2007-02-27 00:00', '2005-06-20 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: ciscoSrstMIB.setRevisionsDescriptions(("[1] Default value for csrstTransferSystem is changed from 'blind' to 'fullConsult'. [2] Added csrstUserLocaleInfoRev1 which is the revised version for csrstUserLocaleInfo. It can support 5 user locale at the same time. [3] csrstConfGroup is deprecated and revised with csrstConfGroupRev1. [4] ciscoSrstMIBCompliance is deprecated and revised with ciscoSrstMIBComplianceRev1.", 'Initial version of this MIB module.',))
if mibBuilder.loadTexts: ciscoSrstMIB.setLastUpdated('200702270000Z')
if mibBuilder.loadTexts: ciscoSrstMIB.setOrganization('Cisco Systems, Inc.')
if mibBuilder.loadTexts: ciscoSrstMIB.setContactInfo(' Cisco Systems Customer Service Postal: 170 W Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS E-mail: cs-ccme-srst@cisco.com')
if mibBuilder.loadTexts: ciscoSrstMIB.setDescription('This MIB allows management of Cisco Survivable Remote Site Telephony (SRST) feature in Cisco IOS. SRST is an optional software feature that provides Cisco CallManager with fallback support for Cisco IP phones attached to a Cisco router on a local network. The CISCO-CCME-MIB provides management of Cisco CallManager Express (CCME) feature in Cisco IOS. CCME is an optional software feature that enables Cisco routers to deliver IP telephony services for small office environment. Ephone, ephoneDN, button association tables are common to both CCME and SRST MIBs and are defined in CISCO-CCME-MIB. Ephone specific notifications which are common to CCME and SRST are also defined in CISCO-CCME-MIB.')
ciscoSrstMIBNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 0))
ciscoSrstMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 1))
ciscoSrstMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 2))
class SrstOperType(TextualConvention, Integer32):
description = 'Operational SRST states. Valid values are : active(1) SRST is active inactive(2) SRST is inactive '
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("active", 1), ("inactive", 2))
csrstGlobal = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 1))
csrstConf = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2))
csrstActiveStats = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 3))
csrstSipConf = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4))
csrstEnabled = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstEnabled.setStatus('current')
if mibBuilder.loadTexts: csrstEnabled.setDescription('Cisco SRST support is enabled or disabled. When enabled, the router is in fallback mode to provide call-handling support to IP phones. If disabled, all of the objects in this group have no significance.')
csrstVersion = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstVersion.setStatus('current')
if mibBuilder.loadTexts: csrstVersion.setDescription('Cisco SRST version.')
csrstIPAddressType = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 3), InetAddressType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstIPAddressType.setStatus('current')
if mibBuilder.loadTexts: csrstIPAddressType.setDescription("Internet address type governing the address type format for one or more InetAddress objects in this MIB. The associated InetAddress objects' description will refer back to this type object as appropriate. ")
csrstIPAddress = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 4), InetAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstIPAddress.setStatus('current')
if mibBuilder.loadTexts: csrstIPAddress.setDescription('Cisco SRST IP address for the router to receive messages from IP phones, typically one of the addresses of an Ethernet port of the router. The type of IP address used here is indicated by the csrstSysIPAddressType object. ')
csrstPortNumber = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 5), InetPortNumber().subtype(subtypeSpec=ValueRangeConstraint(2000, 9999)).clone(2000)).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstPortNumber.setStatus('current')
if mibBuilder.loadTexts: csrstPortNumber.setDescription('This object indicates the TCP port number to use for Skinny Client Control Protocol (SCCP) and is range limited. This port also indicates through which IP phones communicate with SRST. ')
csrstMaxConferences = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstMaxConferences.setStatus('current')
if mibBuilder.loadTexts: csrstMaxConferences.setDescription('Maximum number of simultaneous three-party conference calls configured on the router. Range is IOS version and platform dependent. With SRST Version 3.0 onwards, the following are the maximum values for each platform - Cisco 1751, Cisco 1760, Cisco 2600, Cisco 3640 - 8 conferences. Cisco 3660, Cisco 3725, Cisco 3745 - 16 conferences. Default is half the maximum number of simultaneous three-party conferences for each platform.')
csrstMaxEphones = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 7), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstMaxEphones.setStatus('current')
if mibBuilder.loadTexts: csrstMaxEphones.setDescription('Maximum number of Cisco IP phones configured on the SRST router. Range is IOS version and platform dependent. ')
csrstMaxDN = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 8), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstMaxDN.setStatus('current')
if mibBuilder.loadTexts: csrstMaxDN.setDescription('Maximum number of IP phones extensions (ephone-dns) or directory number configured on this SRST router. Range is IOS version and platform dependent. Default is 0.')
csrstSipPhoneUnRegThreshold = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 9), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: csrstSipPhoneUnRegThreshold.setStatus('current')
if mibBuilder.loadTexts: csrstSipPhoneUnRegThreshold.setDescription('This object indicates a threshold for the number of SIP phones unregistered to SRST. This threshold is changeable by the NMS user. ')
csrstCallFwdNoAnswer = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 10), CvE164Address().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstCallFwdNoAnswer.setReference('ITU-T E.164, Q.931 chapter 4.5.10')
if mibBuilder.loadTexts: csrstCallFwdNoAnswer.setStatus('current')
if mibBuilder.loadTexts: csrstCallFwdNoAnswer.setDescription('Cisco SRST call forwarding number when a Cisco IP phone is not answered. This directory number is a fully qualified E.164 number.')
csrstCallFwdNoAnswerTo = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 11), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstCallFwdNoAnswerTo.setStatus('current')
if mibBuilder.loadTexts: csrstCallFwdNoAnswerTo.setDescription('Timeout in seconds if a Cisco IP phone is not answered, Cisco SRST will call forward to another directory number. ')
csrstCallFwdBusy = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 12), CvE164Address().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstCallFwdBusy.setReference('ITU-T E.164, Q.931 chapter 4.5.10')
if mibBuilder.loadTexts: csrstCallFwdBusy.setStatus('current')
if mibBuilder.loadTexts: csrstCallFwdBusy.setDescription('Cisco SRST call forwarding number when a Cisco IP phone is busy. This directory number is a fully qualified E.164 number.')
csrstMohFilename = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 13), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstMohFilename.setStatus('current')
if mibBuilder.loadTexts: csrstMohFilename.setDescription('Cisco SRST Music-On-Hold is enabled with file on flash, or disabled without a file on flash. MOH is enabled by default.')
csrstMohMulticastAddrType = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 14), InetAddressType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstMohMulticastAddrType.setStatus('current')
if mibBuilder.loadTexts: csrstMohMulticastAddrType.setDescription("Internet address type governing the address type format for one or more InetAddress objects in this MIB. The associated InetAddress objects' description will refer back to this type object as appropriate. ")
csrstMohMulticastAddr = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 15), InetAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstMohMulticastAddr.setStatus('current')
if mibBuilder.loadTexts: csrstMohMulticastAddr.setDescription('This object indicates Cisco SRST Music-On-Hold Multicast IP address. When configured, this feature enables continuous IP multicast output of MOH from a Flash MOH file. This object has no significance if MOH is not configured. Default is the csrstIPAddress object for Cisco SRST. The type of IP address used here is indicated by the csrstMohMulticastAddrType object. ')
csrstMohMulticastPort = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 16), InetPortNumber().subtype(subtypeSpec=ValueRangeConstraint(2000, 9999)).clone(2000)).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstMohMulticastPort.setStatus('current')
if mibBuilder.loadTexts: csrstMohMulticastPort.setDescription('This object indicates Cisco SRST Music-On-Hold Multicast TCP port which is range limited. When configured, this feature enables continuous IP multicast output of MOH from a Flash MOH file. This object has no significance if MOH is not configured. ')
csrstVoiceMailNumber = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 17), CvE164Address().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstVoiceMailNumber.setReference('ITU-T E.164, Q.931 chapter 4.5.10')
if mibBuilder.loadTexts: csrstVoiceMailNumber.setStatus('current')
if mibBuilder.loadTexts: csrstVoiceMailNumber.setDescription("Cisco SRST voice mail number that is speed-dialed when the messages button on a Cisco IP phone is pressed. This voice mail number is a fully qualified E.164 number. If voice-mail number is not configured, this object will have a string length of 2 with the value '**'. ")
csrstSystemMessagePrimary = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 18), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSystemMessagePrimary.setStatus('current')
if mibBuilder.loadTexts: csrstSystemMessagePrimary.setDescription("Cisco SRST system static text message that is displayed on Cisco IP phone during fallback. Length of text string is less than 32 characters. Default message is 'CM Fallback Service Operating'. ")
csrstSystemMessageSecondary = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 19), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSystemMessageSecondary.setStatus('current')
if mibBuilder.loadTexts: csrstSystemMessageSecondary.setDescription("Cisco SRST system message that is displayed on Cisco IP phone that does not support static text message and have a limited display space during fallback. Length of text string is less than 20 characters. Default messages is 'CM Fallback Service'. ")
csrstScriptName = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 20), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstScriptName.setStatus('current')
if mibBuilder.loadTexts: csrstScriptName.setDescription('Cisco SRST session-level IVR application script. This application can be written written in Tool Command Language (TCL) and is applied to all Cisco IP phone lines served by the SRST router. If no application script name is configured, the default built-in IOS application will be applied to all phone lines served by the SRST router and this object will be a zero-length string.')
csrstSecondaryDialTone = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 21), CvE164Address().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSecondaryDialTone.setStatus('current')
if mibBuilder.loadTexts: csrstSecondaryDialTone.setDescription('Cisco SRST secondary dial tone digits. When a Cisco IP phone user dials a PSTN access prefix, defined by the secondary dial tone digits, the secondary dial tone is enabled. ')
csrstTransferSystem = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("blind", 1), ("fullBlind", 2), ("fullConsult", 3), ("localConsult", 4))).clone('fullConsult')).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstTransferSystem.setReference('ITU-T H.450.2 Call Transfers')
if mibBuilder.loadTexts: csrstTransferSystem.setStatus('current')
if mibBuilder.loadTexts: csrstTransferSystem.setDescription('Cisco SRST call transfer method using the ITU-T H.450.2 standard. Default setting is blind. blind - Calls are transferred without consultation using a single phone line and the Cisco proprietary method. fullBlind - Calls are transferred without consultation using H.450.2 standard methods. fullConsult - Calls are transferred using H.450.2 with consultation using the second phone line if available, or the calls fall back to full-blind if the second line is unavailable. localConsult - Calls are transferred with local consultation using the second phone line if available, or the calls fall back to blind for non- local consultation or transfer target. This mode is intended for use primarily in Voice over Frame Relay (VoFR) networks. ')
csrstUserLocaleInfo = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 23), CountryCode().clone('US')).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstUserLocaleInfo.setStatus('deprecated')
if mibBuilder.loadTexts: csrstUserLocaleInfo.setDescription('Cisco SRST language for displays on Cisco IP phone by country. Deprecated and superseded by csrstUserLocaleInfoRev1, as current implementation supports 5 user locales at the same time. ')
csrstDateFormat = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("mmddyy", 1), ("ddmmyy", 2), ("yyddmm", 3), ("yymmdd", 4))).clone('mmddyy')).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstDateFormat.setStatus('current')
if mibBuilder.loadTexts: csrstDateFormat.setDescription('Date display format on Cisco IP phones in the Cisco SRST system. ')
csrstTimeFormat = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("twelveHour", 1), ("twentyFourHour", 2))).clone('twelveHour')).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstTimeFormat.setStatus('current')
if mibBuilder.loadTexts: csrstTimeFormat.setDescription('Time dispay format on Cisco IP phones in the Cisco SRST system. 1 - 12 hour clock. 2 - 24 hour clock. ')
csrstInterdigitTo = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 26), Unsigned32().clone(10)).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstInterdigitTo.setStatus('current')
if mibBuilder.loadTexts: csrstInterdigitTo.setDescription('Cisco SRST interdigit timeout duration in seconds for Cisco IP phones. ')
csrstBusyTo = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 27), Unsigned32().clone(10)).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstBusyTo.setStatus('current')
if mibBuilder.loadTexts: csrstBusyTo.setDescription('Cisco SRST time in seconds before disconnect when destination is busy, without call-forwarding. ')
csrstAlertTo = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 28), Unsigned32().clone(180)).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstAlertTo.setStatus('current')
if mibBuilder.loadTexts: csrstAlertTo.setDescription('Cisco SRST time in seconds before disconnect when call is not answered, without call-forwarding. ')
csrstXlateCalledNumber = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 29), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstXlateCalledNumber.setStatus('current')
if mibBuilder.loadTexts: csrstXlateCalledNumber.setDescription('This object indicates the tag of a corresponding translation rule, which utilizes the number-translation mechanism of the IOS to translate a called number on the Cisco SRST router. ')
csrstXlateCallingNumber = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 30), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstXlateCallingNumber.setStatus('current')
if mibBuilder.loadTexts: csrstXlateCallingNumber.setDescription('This object indicates the tag of a corresponding translation rule, which utilizes the number-translation mechanism of the IOS to translate a calling number on the Cisco SRST router.')
csrstAliasTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31), )
if mibBuilder.loadTexts: csrstAliasTable.setStatus('current')
if mibBuilder.loadTexts: csrstAliasTable.setDescription('A list of alias pattern configured on this SRST router. ')
csrstAliasEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1), ).setIndexNames((0, "CISCO-SRST-MIB", "csrstAliasIndex"))
if mibBuilder.loadTexts: csrstAliasEntry.setStatus('current')
if mibBuilder.loadTexts: csrstAliasEntry.setDescription('Information about a configured alias pattern. There is an entry in this table for each alias pattern configured on this device.')
csrstAliasIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1, 1), Unsigned32())
if mibBuilder.loadTexts: csrstAliasIndex.setStatus('current')
if mibBuilder.loadTexts: csrstAliasIndex.setDescription('An index in sequential order that indicates an alias pattern configured on this SRST router. ')
csrstAliasTag = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstAliasTag.setStatus('current')
if mibBuilder.loadTexts: csrstAliasTag.setDescription('A unique sequence number that indicates a particular alias pattern configured on this SRST router. ')
csrstAliasNumPattern = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1, 3), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstAliasNumPattern.setStatus('current')
if mibBuilder.loadTexts: csrstAliasNumPattern.setDescription('This object indicates the pattern to match the incoming telephone number. It may include wildcards. ')
csrstAliasAltNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1, 4), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstAliasAltNumber.setStatus('current')
if mibBuilder.loadTexts: csrstAliasAltNumber.setDescription('This object indicates the alternate tele- phone number to route incoming calls to match the number pattern. This has to be a valid extension for an IP phone actively registered on the SRST router. ')
csrstAliasPreference = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstAliasPreference.setStatus('current')
if mibBuilder.loadTexts: csrstAliasPreference.setDescription('This object indicates the preference value of the associated dial-peer. A value of 0 has the highest preference. ')
csrstAliasHuntStopEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1, 6), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstAliasHuntStopEnabled.setStatus('current')
if mibBuilder.loadTexts: csrstAliasHuntStopEnabled.setDescription('This object specifies that if hunt stop is enabled, after the caller tried the alternate number according to the alias pattern, it will stop call hunting. If hunt stop is disabled, it will rollover to another directory number if available. ')
csrstAccessCodeTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 32), )
if mibBuilder.loadTexts: csrstAccessCodeTable.setStatus('current')
if mibBuilder.loadTexts: csrstAccessCodeTable.setDescription('A list of access-code to trunk lines configured on this SRST router. ')
csrstAccessCodeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 32, 1), ).setIndexNames((0, "CISCO-SRST-MIB", "csrstAccessCodeType"))
if mibBuilder.loadTexts: csrstAccessCodeEntry.setStatus('current')
if mibBuilder.loadTexts: csrstAccessCodeEntry.setDescription('Information about a configured access-code to trunk lines. There is an entry in this table for each access configured on this device.')
csrstAccessCodeType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 32, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("fxo", 1), ("em", 2), ("bri", 3), ("pri", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstAccessCodeType.setStatus('current')
if mibBuilder.loadTexts: csrstAccessCodeType.setDescription('This object indicates the type of trunk line to which the access-code is applied to. The type of trunk lines can be fxo, e&m, bri, and pri. fxo - Enables a foreign exchange office (FXO) interface. em - Enables an analog ear and mouth (E&M) interface. bri - Enables a BRI interface. pri - Enables a PRI interface. ')
csrstAccessCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 32, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstAccessCode.setStatus('current')
if mibBuilder.loadTexts: csrstAccessCode.setDescription('This object indicates the access-code to be applied to the corresponding trunk line by creating dial-peers. ')
csrstAccessCodeDIDEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 32, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstAccessCodeDIDEnabled.setStatus('current')
if mibBuilder.loadTexts: csrstAccessCodeDIDEnabled.setDescription('This object indicates the direct-inward- dial on a POTS dial-peer is enabled or disabled. ')
csrstLimitDNTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 33), )
if mibBuilder.loadTexts: csrstLimitDNTable.setStatus('current')
if mibBuilder.loadTexts: csrstLimitDNTable.setDescription('A list of configured limit-dn avail- able to each Cisco IP phone type on this SRST router. ')
csrstLimitDNEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 33, 1), ).setIndexNames((0, "CISCO-SRST-MIB", "csrstLimitDNType"))
if mibBuilder.loadTexts: csrstLimitDNEntry.setStatus('current')
if mibBuilder.loadTexts: csrstLimitDNEntry.setDescription('Information about a configured limit-dn. There is an entry in this table for each limit-dn configured for a Cisco phone type on this device. ')
csrstLimitDNType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 33, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ipPhone7910", 1), ("ipPhone7935", 2), ("ipPhone7940", 3), ("ipPhone7960", 4), ("ipPhone7970", 5), ("ipPhone7936", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstLimitDNType.setStatus('current')
if mibBuilder.loadTexts: csrstLimitDNType.setDescription('This object indicates the type of IP phone to which the limit-dn is applied to. ')
csrstLimitDN = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 33, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstLimitDN.setStatus('current')
if mibBuilder.loadTexts: csrstLimitDN.setDescription('This object indicates the maximum number of directory numbers available to each type of IP phone. The current range of maximum lines setting is from 1 to 34. The default is 34. DEFVAL { 34 } ')
csrstNotificationEnabled = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 34), TruthValue().clone('false')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: csrstNotificationEnabled.setStatus('current')
if mibBuilder.loadTexts: csrstNotificationEnabled.setDescription('This variable indicates whether this system produces the SRST notifications. A false value will prevent SRST notifications from being generated by this system. ')
csrstUserLocaleInfoRev1 = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 35), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(14, 64)).clone('US/US/US/US/US')).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstUserLocaleInfoRev1.setStatus('current')
if mibBuilder.loadTexts: csrstUserLocaleInfoRev1.setDescription("Cisco SRST language for displays on Cisco IP phone by country. Every set of character separated by a forward slash ('/') represents one user-locale whose value may be any one of the following languages or one configured by the user. At the same time 5 user locales can be configured. --------------------------- | DE Germany | | DK Denmark | | ES Spain | | FR France | | IT Italy | | JP Japan | | NL Netherlands | | NO Norway | | PT Portugal | | RU Russian Federation | | SE Sweden | | US United States | --------------------------- Example: if csrstUserLocaleInfoRev1 returns 'DE/US/SE/FR/RU' then : UserLocale 1 = DE UserLocale 2 = US UserLocale 3 = SE UserLocale 4 = FR UserLocale 5 = RU ")
csrstSysNotifSeverity = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("clear", 1), ("minor", 2), ("major", 3)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: csrstSysNotifSeverity.setStatus('current')
if mibBuilder.loadTexts: csrstSysNotifSeverity.setDescription("The internally-defined severity of the particular alarm condition, associated with the most recent SNMP notification. A subsequent event in which the alarm condition changes from its failed state back to a 'normal' state has a severity of 'clear'. This severity-level value is supplied with each SRST specific notification. ")
csrstSysNotifReason = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 2, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: csrstSysNotifReason.setStatus('current')
if mibBuilder.loadTexts: csrstSysNotifReason.setDescription('The internally-defined failure cause of the particular alarm condition, associated with the most recent system notification. ')
csrstState = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 3, 1), SrstOperType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstState.setStatus('current')
if mibBuilder.loadTexts: csrstState.setDescription('This object indicates the current state of Cisco SRST feature on this router. Active - At least one IP or SIP phone is registered Inactive - Cisco SRST has no IP or SIP phones registered This object has no significance if csrstEnabled object is disabled. ')
csrstSipPhoneCurrentRegistered = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 3, 2), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipPhoneCurrentRegistered.setStatus('current')
if mibBuilder.loadTexts: csrstSipPhoneCurrentRegistered.setDescription('Total number of SIP phones currently registered to the SRST router. ')
csrstSipCallLegs = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 3, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipCallLegs.setStatus('current')
if mibBuilder.loadTexts: csrstSipCallLegs.setDescription('Total number of SIP call legs routed through the SRST router since going active. This includes incoming and outgoing calls. ')
csrstTotalUpTime = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 3, 4), Counter32()).setUnits('minutes').setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstTotalUpTime.setStatus('current')
if mibBuilder.loadTexts: csrstTotalUpTime.setDescription('Accumulated total number of minutes that router is active in SRST mode. ')
csrstSipRegSrvExpMax = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(600, 86400)).clone(3600)).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipRegSrvExpMax.setStatus('current')
if mibBuilder.loadTexts: csrstSipRegSrvExpMax.setDescription('This object indicates the maximum expiration time for the SIP Registrar Server to timeout on a registration. ')
csrstSipRegSrvExpMin = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(60, 3600)).clone(60)).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipRegSrvExpMin.setStatus('current')
if mibBuilder.loadTexts: csrstSipRegSrvExpMin.setDescription('This object indicates the minimum expiration time for the SIP Registrar Server to timeout on a registration. ')
csrstSipIp2IpGlobalEnabled = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 3), TruthValue().clone('false')).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipIp2IpGlobalEnabled.setStatus('current')
if mibBuilder.loadTexts: csrstSipIp2IpGlobalEnabled.setDescription('This object indicates whether voip calls are re-directed ip to ip globally. ')
csrstSipSend300MultSupport = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("bestMatch", 1), ("longestMatch", 2))).clone('longestMatch')).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipSend300MultSupport.setStatus('current')
if mibBuilder.loadTexts: csrstSipSend300MultSupport.setDescription('This object indicates whether the redirect contact order is best or longest match. This applies globally for SIP. bestMatch - Uses the current system configuration to set the order of contacts. longestMatch - Sets the contact order by using the destination pattern longest match first, and then the second longest match, the third longest match, etc.. ')
csrstSipVoRegPoolTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5), )
if mibBuilder.loadTexts: csrstSipVoRegPoolTable.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegPoolTable.setDescription('This table contains general information about the configured voice register pool for SIP endpoints (dial-peers) on this SRST router. ')
csrstSipVoRegPoolEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1), ).setIndexNames((0, "CISCO-SRST-MIB", "csrstSipVoRegPoolTag"))
if mibBuilder.loadTexts: csrstSipVoRegPoolEntry.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegPoolEntry.setDescription('Information about a configured voice register pool for SIP dial-peers. There is an entry in this table for each voice register pool configured on this device. ')
csrstSipVoRegPoolTag = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 1), Unsigned32())
if mibBuilder.loadTexts: csrstSipVoRegPoolTag.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegPoolTag.setDescription('A unique identifier tag configured for a voice register pool entry. ')
csrstSipNetId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipNetId.setStatus('current')
if mibBuilder.loadTexts: csrstSipNetId.setDescription('This object indicates the network ident- ification information of the SIP voice register pool configured on this router. This object can be the network Id, IP address, or MAC address. ')
csrstSipVoRegPoolIpAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 3), InetAddressType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipVoRegPoolIpAddrType.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegPoolIpAddrType.setDescription("Internet address type governing the address type format for one or more InetAddress objects in this MIB. The associated InetAddress objects' description will refer back to this type object as appropriate. ")
csrstSipNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 4), InetAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipNetMask.setStatus('current')
if mibBuilder.loadTexts: csrstSipNetMask.setDescription('This object indicates the IP subnet configured for the SIP voice register pool. The type of IP subnet used here is indicated by the csrstSipVoRegPoolIpAddrType object. ')
csrstSipProxySrvIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 5), InetAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipProxySrvIpAddr.setStatus('current')
if mibBuilder.loadTexts: csrstSipProxySrvIpAddr.setDescription('This object indicates the IP address of the proxy server configured for the SIP voice register pool. The type of IP address used here is indicated by the csrstSipVoRegPoolIpAddrType object. ')
csrstSipProxySrvPref = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipProxySrvPref.setStatus('current')
if mibBuilder.loadTexts: csrstSipProxySrvPref.setDescription('This object indicates the preference order for creating the VoIP dial peers in the voice register pool. Setting the preference enables the desired dial peer to be selected when multiple dial peers within a hunt group are matched for a dial string. A value of 0 has the highest preference. ')
csrstSipProxySrvMonitor = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("icmp", 1), ("rtr", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipProxySrvMonitor.setStatus('current')
if mibBuilder.loadTexts: csrstSipProxySrvMonitor.setDescription('Cisco SIP SRST monitoring protocol of the proxy server configured for the SIP voice register pool. This monitoring protocol can be ICMP ping or RTR probes. ')
csrstSipProxySrvAltIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 8), InetAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipProxySrvAltIpAddr.setStatus('current')
if mibBuilder.loadTexts: csrstSipProxySrvAltIpAddr.setDescription('Cisco SIP SRST monitoring of an alternate IP address other than the proxy configured for the SIP voice register pool. The type of IP address used here is indicated by the csrstSipVoRegPoolIpAddrType object. ')
csrstSipDefaultPreference = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 9), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipDefaultPreference.setStatus('current')
if mibBuilder.loadTexts: csrstSipDefaultPreference.setDescription('This object indicates the default preference of the proxy dial-peers created in the voice register pool. If csrstSipProxySrvPref object is not set, the default preference is applied to the dial-peers created. A value of 0 has the highest preference. ')
csrstSipVoRegPoolAppl = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 10), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipVoRegPoolAppl.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegPoolAppl.setDescription('Application for the SIP dial-peers configured under voice register pool. ')
csrstSipVoRegNumberListTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6), )
if mibBuilder.loadTexts: csrstSipVoRegNumberListTable.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegNumberListTable.setDescription('This table contains information about the configured number list for the corresponding voice register pool on this SIP SRST router. ')
csrstSipVoRegNumberListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6, 1), ).setIndexNames((0, "CISCO-SRST-MIB", "csrstSipVoRegPoolTag"), (0, "CISCO-SRST-MIB", "csrstSipVoRegNumberListIndex"))
if mibBuilder.loadTexts: csrstSipVoRegNumberListEntry.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegNumberListEntry.setDescription('Information about a configured number list for the corresponding voice register pool. There is an entry in this table for each number list configured on this device. ')
csrstSipVoRegNumberListIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6, 1, 1), Unsigned32())
if mibBuilder.loadTexts: csrstSipVoRegNumberListIndex.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegNumberListIndex.setDescription('A unique sequence number that indicates a number list configured for the corresponding voice register pool on this SRST router. ')
csrstSipVoRegNumberListTag = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipVoRegNumberListTag.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegNumberListTag.setDescription('This object indicates the particular index of the number list configured for the corresponding voice register pool. ')
csrstSipVoRegNumberPattern = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6, 1, 3), CvE164Address().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipVoRegNumberPattern.setReference('ITU-T E.164, Q.931 chapter 4.5.10')
if mibBuilder.loadTexts: csrstSipVoRegNumberPattern.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegNumberPattern.setDescription('This object indicates the number pattern that the registrar permits to handle the register message from the SIP phone. This number pattern is a fully qualified E.164 number.')
csrstSipVoRegNumberPref = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipVoRegNumberPref.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegNumberPref.setDescription('This object indicates the preference of the number pattern configured for the corresponding voice register pool. ')
csrstSipVoRegNumberHuntstopEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipVoRegNumberHuntstopEnabled.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegNumberHuntstopEnabled.setDescription('This object indicates huntstop is enabled (true) or disabled (false) for the number pattern configured for the corresponding voice register pool. If enabled, the incoming call will stop hunting if the dial-peer is busy. If disabled, the incoming call will hunt further for dial-peers. ')
csrstSipEndpointTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7), )
if mibBuilder.loadTexts: csrstSipEndpointTable.setStatus('current')
if mibBuilder.loadTexts: csrstSipEndpointTable.setDescription('This table contains general information about the configured SIP dial-peers (endpoints) on this SIP SRST router. ')
csrstSipEndpointEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7, 1), ).setIndexNames((0, "CISCO-SRST-MIB", "csrstSipEndpointTag"))
if mibBuilder.loadTexts: csrstSipEndpointEntry.setStatus('current')
if mibBuilder.loadTexts: csrstSipEndpointEntry.setDescription('Information about a created SIP endpoint. There is an entry in this table for each SIP endpoint (dial-peer) configured on this device.')
csrstSipEndpointTag = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7, 1, 1), Unsigned32())
if mibBuilder.loadTexts: csrstSipEndpointTag.setStatus('current')
if mibBuilder.loadTexts: csrstSipEndpointTag.setDescription('A unique sequence number that indicates a SIP endpoint configured on this SRST router. ')
csrstSipVoRegPoolEdptTag = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipVoRegPoolEdptTag.setStatus('current')
if mibBuilder.loadTexts: csrstSipVoRegPoolEdptTag.setDescription('This object indicates the voice register pool tag from which the corresponding SIP endpoint (dial-peer) is created. ')
csrstSipEndpointIpAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7, 1, 3), InetAddressType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipEndpointIpAddrType.setStatus('current')
if mibBuilder.loadTexts: csrstSipEndpointIpAddrType.setDescription("Internet address type governing the address type format for one or more InetAddress objects in this MIB. The associated InetAddress objects' description will refer back to this type object as appropriate. ")
csrstSipEndpointIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7, 1, 4), InetAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipEndpointIpAddress.setStatus('current')
if mibBuilder.loadTexts: csrstSipEndpointIpAddress.setDescription('This object indicates the SIP endpoint IP address configured on this router. The type of IP address used here is indicated by the csrstSipEndpointIpAddrType object. ')
csrstSipEndpointDN = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7, 1, 5), CvE164Address().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: csrstSipEndpointDN.setStatus('current')
if mibBuilder.loadTexts: csrstSipEndpointDN.setDescription("This object indicates the SIP phone's DN or line number assigned to the SIP endpoint. ")
csrstStateChange = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 441, 0, 1)).setObjects(("CISCO-SRST-MIB", "csrstSysNotifSeverity"), ("CISCO-SRST-MIB", "csrstState"), ("CISCO-SRST-MIB", "csrstSysNotifReason"))
if mibBuilder.loadTexts: csrstStateChange.setStatus('current')
if mibBuilder.loadTexts: csrstStateChange.setDescription('An SRST up or down state change notification is generated. This indicates one or more phones is registered to the SRST router or none is registered. ')
csrstFailNotif = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 441, 0, 2)).setObjects(("CISCO-SRST-MIB", "csrstSysNotifSeverity"), ("CISCO-SRST-MIB", "csrstSysNotifReason"))
if mibBuilder.loadTexts: csrstFailNotif.setStatus('current')
if mibBuilder.loadTexts: csrstFailNotif.setDescription('A failure notification is generated when the SRST router encounters a catastrophic failure. ')
csrstSipPhoneUnRegThresholdExceed = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 441, 0, 3)).setObjects(("CISCO-SRST-MIB", "csrstSipPhoneUnRegThreshold"), ("CISCO-SRST-MIB", "csrstSipPhoneCurrentRegistered"))
if mibBuilder.loadTexts: csrstSipPhoneUnRegThresholdExceed.setStatus('current')
if mibBuilder.loadTexts: csrstSipPhoneUnRegThresholdExceed.setDescription('A SIP phone unregistration notification is generated when the number of SIP phone unregistrations have exceeded the threshold. The number of currently registered SIP phones is provided here by csrstSipPhoneCurrentRegistered object as a reference such that if csrstSipPhoneCurrentRegistered falls below csrstSipPhoneUnRegThreshold, a notification will be generated to indicate that the number of unregistered SIP phones has crossed the threshold. ')
csrstSipPhoneRegFailed = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 441, 0, 4)).setObjects(("CISCO-SRST-MIB", "csrstSipEndpointIpAddress"))
if mibBuilder.loadTexts: csrstSipPhoneRegFailed.setStatus('current')
if mibBuilder.loadTexts: csrstSipPhoneRegFailed.setDescription('A SIP phone fail registration notification is generated when the SIP phone fails to register. ')
csrstConferenceFailed = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 441, 0, 5)).setObjects(("CISCO-SRST-MIB", "csrstMaxConferences"))
if mibBuilder.loadTexts: csrstConferenceFailed.setStatus('current')
if mibBuilder.loadTexts: csrstConferenceFailed.setDescription('A conference failure notification is generated when the maximum number of conferences are exceeded. ')
ciscoSrstMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 1))
ciscoSrstMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2))
ciscoSrstMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 1, 1)).setObjects(("CISCO-SRST-MIB", "csrstConfGroup"), ("CISCO-SRST-MIB", "csrstNotifInfoGroup"), ("CISCO-SRST-MIB", "csrstSipConfGroup"), ("CISCO-SRST-MIB", "csrstActiveStatsGroup"), ("CISCO-SRST-MIB", "csrstMIBNotifsGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoSrstMIBCompliance = ciscoSrstMIBCompliance.setStatus('deprecated')
if mibBuilder.loadTexts: ciscoSrstMIBCompliance.setDescription('The compliance statement for the Cisco Survivable Remote Site Telephony (SRST) MIB. ')
ciscoSrstMIBComplianceRev1 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 1, 2)).setObjects(("CISCO-SRST-MIB", "csrstNotifInfoGroup"), ("CISCO-SRST-MIB", "csrstSipConfGroup"), ("CISCO-SRST-MIB", "csrstActiveStatsGroup"), ("CISCO-SRST-MIB", "csrstMIBNotifsGroup"), ("CISCO-SRST-MIB", "csrstConfGroupRev1"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoSrstMIBComplianceRev1 = ciscoSrstMIBComplianceRev1.setStatus('current')
if mibBuilder.loadTexts: ciscoSrstMIBComplianceRev1.setDescription('The compliance statement for the Cisco Survivable Remote Site Telephony (SRST) MIB. ')
csrstConfGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 1)).setObjects(("CISCO-SRST-MIB", "csrstEnabled"), ("CISCO-SRST-MIB", "csrstVersion"), ("CISCO-SRST-MIB", "csrstIPAddressType"), ("CISCO-SRST-MIB", "csrstIPAddress"), ("CISCO-SRST-MIB", "csrstPortNumber"), ("CISCO-SRST-MIB", "csrstMaxConferences"), ("CISCO-SRST-MIB", "csrstMaxEphones"), ("CISCO-SRST-MIB", "csrstMaxDN"), ("CISCO-SRST-MIB", "csrstSipPhoneUnRegThreshold"), ("CISCO-SRST-MIB", "csrstCallFwdNoAnswer"), ("CISCO-SRST-MIB", "csrstCallFwdNoAnswerTo"), ("CISCO-SRST-MIB", "csrstCallFwdBusy"), ("CISCO-SRST-MIB", "csrstMohFilename"), ("CISCO-SRST-MIB", "csrstMohMulticastAddrType"), ("CISCO-SRST-MIB", "csrstMohMulticastAddr"), ("CISCO-SRST-MIB", "csrstMohMulticastPort"), ("CISCO-SRST-MIB", "csrstVoiceMailNumber"), ("CISCO-SRST-MIB", "csrstSystemMessagePrimary"), ("CISCO-SRST-MIB", "csrstSystemMessageSecondary"), ("CISCO-SRST-MIB", "csrstScriptName"), ("CISCO-SRST-MIB", "csrstSecondaryDialTone"), ("CISCO-SRST-MIB", "csrstTransferSystem"), ("CISCO-SRST-MIB", "csrstUserLocaleInfo"), ("CISCO-SRST-MIB", "csrstDateFormat"), ("CISCO-SRST-MIB", "csrstTimeFormat"), ("CISCO-SRST-MIB", "csrstInterdigitTo"), ("CISCO-SRST-MIB", "csrstBusyTo"), ("CISCO-SRST-MIB", "csrstAlertTo"), ("CISCO-SRST-MIB", "csrstXlateCalledNumber"), ("CISCO-SRST-MIB", "csrstXlateCallingNumber"), ("CISCO-SRST-MIB", "csrstAliasTag"), ("CISCO-SRST-MIB", "csrstAliasNumPattern"), ("CISCO-SRST-MIB", "csrstAliasAltNumber"), ("CISCO-SRST-MIB", "csrstAliasPreference"), ("CISCO-SRST-MIB", "csrstAliasHuntStopEnabled"), ("CISCO-SRST-MIB", "csrstAccessCodeType"), ("CISCO-SRST-MIB", "csrstAccessCode"), ("CISCO-SRST-MIB", "csrstAccessCodeDIDEnabled"), ("CISCO-SRST-MIB", "csrstLimitDNType"), ("CISCO-SRST-MIB", "csrstLimitDN"), ("CISCO-SRST-MIB", "csrstNotificationEnabled"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
csrstConfGroup = csrstConfGroup.setStatus('deprecated')
if mibBuilder.loadTexts: csrstConfGroup.setDescription('A collection of objects which are used to show the current running configuration of Cisco SRST feature. ')
csrstNotifInfoGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 2)).setObjects(("CISCO-SRST-MIB", "csrstSysNotifSeverity"), ("CISCO-SRST-MIB", "csrstSysNotifReason"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
csrstNotifInfoGroup = csrstNotifInfoGroup.setStatus('current')
if mibBuilder.loadTexts: csrstNotifInfoGroup.setDescription('A collection of objects which are used to show the severity and reason of a notifi- cation. ')
csrstActiveStatsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 3)).setObjects(("CISCO-SRST-MIB", "csrstState"), ("CISCO-SRST-MIB", "csrstSipPhoneCurrentRegistered"), ("CISCO-SRST-MIB", "csrstSipCallLegs"), ("CISCO-SRST-MIB", "csrstTotalUpTime"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
csrstActiveStatsGroup = csrstActiveStatsGroup.setStatus('current')
if mibBuilder.loadTexts: csrstActiveStatsGroup.setDescription('A collection of objects which are used to show the activity status of Cisco SRST or SIP SRST feature. ')
csrstSipConfGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 4)).setObjects(("CISCO-SRST-MIB", "csrstSipRegSrvExpMax"), ("CISCO-SRST-MIB", "csrstSipRegSrvExpMin"), ("CISCO-SRST-MIB", "csrstSipIp2IpGlobalEnabled"), ("CISCO-SRST-MIB", "csrstSipSend300MultSupport"), ("CISCO-SRST-MIB", "csrstSipNetId"), ("CISCO-SRST-MIB", "csrstSipVoRegPoolIpAddrType"), ("CISCO-SRST-MIB", "csrstSipNetMask"), ("CISCO-SRST-MIB", "csrstSipProxySrvIpAddr"), ("CISCO-SRST-MIB", "csrstSipProxySrvPref"), ("CISCO-SRST-MIB", "csrstSipProxySrvMonitor"), ("CISCO-SRST-MIB", "csrstSipProxySrvAltIpAddr"), ("CISCO-SRST-MIB", "csrstSipDefaultPreference"), ("CISCO-SRST-MIB", "csrstSipVoRegPoolAppl"), ("CISCO-SRST-MIB", "csrstSipVoRegNumberListTag"), ("CISCO-SRST-MIB", "csrstSipVoRegNumberPattern"), ("CISCO-SRST-MIB", "csrstSipVoRegNumberPref"), ("CISCO-SRST-MIB", "csrstSipVoRegNumberHuntstopEnabled"), ("CISCO-SRST-MIB", "csrstSipVoRegPoolEdptTag"), ("CISCO-SRST-MIB", "csrstSipEndpointIpAddrType"), ("CISCO-SRST-MIB", "csrstSipEndpointIpAddress"), ("CISCO-SRST-MIB", "csrstSipEndpointDN"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
csrstSipConfGroup = csrstSipConfGroup.setStatus('current')
if mibBuilder.loadTexts: csrstSipConfGroup.setDescription('A collection of objects which are used to show the current running configuration of Cisco SIP SRST feature. ')
csrstMIBNotifsGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 5)).setObjects(("CISCO-SRST-MIB", "csrstStateChange"), ("CISCO-SRST-MIB", "csrstFailNotif"), ("CISCO-SRST-MIB", "csrstSipPhoneUnRegThresholdExceed"), ("CISCO-SRST-MIB", "csrstSipPhoneRegFailed"), ("CISCO-SRST-MIB", "csrstConferenceFailed"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
csrstMIBNotifsGroup = csrstMIBNotifsGroup.setStatus('current')
if mibBuilder.loadTexts: csrstMIBNotifsGroup.setDescription('A collection of notifications for Cisco SRST or SIP SRST feature. ')
csrstConfGroupRev1 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 6)).setObjects(("CISCO-SRST-MIB", "csrstEnabled"), ("CISCO-SRST-MIB", "csrstVersion"), ("CISCO-SRST-MIB", "csrstIPAddressType"), ("CISCO-SRST-MIB", "csrstIPAddress"), ("CISCO-SRST-MIB", "csrstPortNumber"), ("CISCO-SRST-MIB", "csrstMaxConferences"), ("CISCO-SRST-MIB", "csrstMaxEphones"), ("CISCO-SRST-MIB", "csrstMaxDN"), ("CISCO-SRST-MIB", "csrstSipPhoneUnRegThreshold"), ("CISCO-SRST-MIB", "csrstCallFwdNoAnswer"), ("CISCO-SRST-MIB", "csrstCallFwdNoAnswerTo"), ("CISCO-SRST-MIB", "csrstCallFwdBusy"), ("CISCO-SRST-MIB", "csrstMohFilename"), ("CISCO-SRST-MIB", "csrstMohMulticastAddrType"), ("CISCO-SRST-MIB", "csrstMohMulticastAddr"), ("CISCO-SRST-MIB", "csrstMohMulticastPort"), ("CISCO-SRST-MIB", "csrstVoiceMailNumber"), ("CISCO-SRST-MIB", "csrstSystemMessagePrimary"), ("CISCO-SRST-MIB", "csrstSystemMessageSecondary"), ("CISCO-SRST-MIB", "csrstScriptName"), ("CISCO-SRST-MIB", "csrstSecondaryDialTone"), ("CISCO-SRST-MIB", "csrstTransferSystem"), ("CISCO-SRST-MIB", "csrstDateFormat"), ("CISCO-SRST-MIB", "csrstTimeFormat"), ("CISCO-SRST-MIB", "csrstInterdigitTo"), ("CISCO-SRST-MIB", "csrstBusyTo"), ("CISCO-SRST-MIB", "csrstAlertTo"), ("CISCO-SRST-MIB", "csrstXlateCalledNumber"), ("CISCO-SRST-MIB", "csrstXlateCallingNumber"), ("CISCO-SRST-MIB", "csrstAliasTag"), ("CISCO-SRST-MIB", "csrstAliasNumPattern"), ("CISCO-SRST-MIB", "csrstAliasAltNumber"), ("CISCO-SRST-MIB", "csrstAliasPreference"), ("CISCO-SRST-MIB", "csrstAliasHuntStopEnabled"), ("CISCO-SRST-MIB", "csrstAccessCodeType"), ("CISCO-SRST-MIB", "csrstAccessCode"), ("CISCO-SRST-MIB", "csrstAccessCodeDIDEnabled"), ("CISCO-SRST-MIB", "csrstLimitDNType"), ("CISCO-SRST-MIB", "csrstLimitDN"), ("CISCO-SRST-MIB", "csrstNotificationEnabled"), ("CISCO-SRST-MIB", "csrstUserLocaleInfoRev1"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
csrstConfGroupRev1 = csrstConfGroupRev1.setStatus('current')
if mibBuilder.loadTexts: csrstConfGroupRev1.setDescription('A collection of objects which are used to show the current running configuration of Cisco SRST feature. ')
mibBuilder.exportSymbols("CISCO-SRST-MIB", ciscoSrstMIBNotifications=ciscoSrstMIBNotifications, csrstBusyTo=csrstBusyTo, csrstXlateCalledNumber=csrstXlateCalledNumber, csrstSysNotifSeverity=csrstSysNotifSeverity, csrstConfGroupRev1=csrstConfGroupRev1, csrstSipEndpointEntry=csrstSipEndpointEntry, csrstAliasNumPattern=csrstAliasNumPattern, csrstMohMulticastPort=csrstMohMulticastPort, csrstMaxEphones=csrstMaxEphones, csrstTotalUpTime=csrstTotalUpTime, csrstMaxDN=csrstMaxDN, csrstSipVoRegNumberHuntstopEnabled=csrstSipVoRegNumberHuntstopEnabled, csrstMIBNotifsGroup=csrstMIBNotifsGroup, csrstVersion=csrstVersion, csrstSipEndpointIpAddrType=csrstSipEndpointIpAddrType, csrstSipRegSrvExpMin=csrstSipRegSrvExpMin, csrstSipVoRegNumberPref=csrstSipVoRegNumberPref, csrstLimitDNEntry=csrstLimitDNEntry, csrstAliasHuntStopEnabled=csrstAliasHuntStopEnabled, csrstTransferSystem=csrstTransferSystem, ciscoSrstMIBObjects=ciscoSrstMIBObjects, csrstEnabled=csrstEnabled, csrstAccessCodeDIDEnabled=csrstAccessCodeDIDEnabled, ciscoSrstMIBGroups=ciscoSrstMIBGroups, csrstSipPhoneUnRegThreshold=csrstSipPhoneUnRegThreshold, csrstPortNumber=csrstPortNumber, csrstCallFwdBusy=csrstCallFwdBusy, csrstGlobal=csrstGlobal, csrstActiveStatsGroup=csrstActiveStatsGroup, csrstSipPhoneUnRegThresholdExceed=csrstSipPhoneUnRegThresholdExceed, csrstIPAddressType=csrstIPAddressType, csrstAccessCodeTable=csrstAccessCodeTable, csrstSipPhoneCurrentRegistered=csrstSipPhoneCurrentRegistered, SrstOperType=SrstOperType, csrstSipVoRegPoolEntry=csrstSipVoRegPoolEntry, csrstState=csrstState, csrstNotifInfoGroup=csrstNotifInfoGroup, csrstInterdigitTo=csrstInterdigitTo, csrstAccessCodeType=csrstAccessCodeType, csrstSipEndpointIpAddress=csrstSipEndpointIpAddress, csrstIPAddress=csrstIPAddress, csrstAlertTo=csrstAlertTo, csrstSipConfGroup=csrstSipConfGroup, csrstSipConf=csrstSipConf, csrstStateChange=csrstStateChange, csrstSysNotifReason=csrstSysNotifReason, csrstSipCallLegs=csrstSipCallLegs, csrstSecondaryDialTone=csrstSecondaryDialTone, csrstSipSend300MultSupport=csrstSipSend300MultSupport, csrstSipVoRegNumberListTable=csrstSipVoRegNumberListTable, csrstSipPhoneRegFailed=csrstSipPhoneRegFailed, csrstSipVoRegPoolEdptTag=csrstSipVoRegPoolEdptTag, csrstSipEndpointTable=csrstSipEndpointTable, csrstSipProxySrvIpAddr=csrstSipProxySrvIpAddr, csrstUserLocaleInfoRev1=csrstUserLocaleInfoRev1, csrstAliasAltNumber=csrstAliasAltNumber, csrstSipVoRegPoolIpAddrType=csrstSipVoRegPoolIpAddrType, csrstAliasIndex=csrstAliasIndex, csrstSipEndpointDN=csrstSipEndpointDN, csrstSipProxySrvAltIpAddr=csrstSipProxySrvAltIpAddr, csrstSipVoRegPoolTable=csrstSipVoRegPoolTable, csrstActiveStats=csrstActiveStats, csrstConf=csrstConf, ciscoSrstMIBConformance=ciscoSrstMIBConformance, csrstVoiceMailNumber=csrstVoiceMailNumber, csrstSipProxySrvPref=csrstSipProxySrvPref, csrstSipRegSrvExpMax=csrstSipRegSrvExpMax, ciscoSrstMIBCompliances=ciscoSrstMIBCompliances, csrstDateFormat=csrstDateFormat, ciscoSrstMIBCompliance=ciscoSrstMIBCompliance, csrstSipNetMask=csrstSipNetMask, csrstConfGroup=csrstConfGroup, csrstSystemMessageSecondary=csrstSystemMessageSecondary, csrstLimitDNTable=csrstLimitDNTable, csrstSipVoRegNumberListEntry=csrstSipVoRegNumberListEntry, csrstCallFwdNoAnswer=csrstCallFwdNoAnswer, csrstAliasTable=csrstAliasTable, csrstScriptName=csrstScriptName, csrstAliasEntry=csrstAliasEntry, csrstMohMulticastAddrType=csrstMohMulticastAddrType, csrstMohFilename=csrstMohFilename, csrstSipProxySrvMonitor=csrstSipProxySrvMonitor, csrstSipVoRegNumberListIndex=csrstSipVoRegNumberListIndex, ciscoSrstMIBComplianceRev1=ciscoSrstMIBComplianceRev1, csrstMaxConferences=csrstMaxConferences, csrstLimitDNType=csrstLimitDNType, csrstSystemMessagePrimary=csrstSystemMessagePrimary, csrstSipIp2IpGlobalEnabled=csrstSipIp2IpGlobalEnabled, csrstAccessCode=csrstAccessCode, ciscoSrstMIB=ciscoSrstMIB, csrstAliasTag=csrstAliasTag, csrstConferenceFailed=csrstConferenceFailed, csrstSipEndpointTag=csrstSipEndpointTag, csrstAccessCodeEntry=csrstAccessCodeEntry, csrstXlateCallingNumber=csrstXlateCallingNumber, csrstMohMulticastAddr=csrstMohMulticastAddr, csrstSipVoRegPoolAppl=csrstSipVoRegPoolAppl, csrstSipVoRegPoolTag=csrstSipVoRegPoolTag, csrstFailNotif=csrstFailNotif, csrstAliasPreference=csrstAliasPreference, csrstSipVoRegNumberPattern=csrstSipVoRegNumberPattern, csrstLimitDN=csrstLimitDN, csrstSipNetId=csrstSipNetId, csrstSipDefaultPreference=csrstSipDefaultPreference, csrstCallFwdNoAnswerTo=csrstCallFwdNoAnswerTo, csrstUserLocaleInfo=csrstUserLocaleInfo, csrstTimeFormat=csrstTimeFormat, csrstNotificationEnabled=csrstNotificationEnabled, csrstSipVoRegNumberListTag=csrstSipVoRegNumberListTag, PYSNMP_MODULE_ID=ciscoSrstMIB)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_size_constraint, constraints_union, constraints_intersection, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint')
(cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt')
(cv_e164_address, country_code) = mibBuilder.importSymbols('CISCO-TC', 'CvE164Address', 'CountryCode')
(inet_port_number, inet_address, inet_address_type) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetPortNumber', 'InetAddress', 'InetAddressType')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(module_compliance, notification_group, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup', 'ObjectGroup')
(object_identity, ip_address, counter64, iso, notification_type, integer32, mib_scalar, mib_table, mib_table_row, mib_table_column, counter32, time_ticks, module_identity, mib_identifier, bits, unsigned32, gauge32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'IpAddress', 'Counter64', 'iso', 'NotificationType', 'Integer32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter32', 'TimeTicks', 'ModuleIdentity', 'MibIdentifier', 'Bits', 'Unsigned32', 'Gauge32')
(truth_value, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'TextualConvention', 'DisplayString')
cisco_srst_mib = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 441))
ciscoSrstMIB.setRevisions(('2007-02-27 00:00', '2005-06-20 00:00'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
ciscoSrstMIB.setRevisionsDescriptions(("[1] Default value for csrstTransferSystem is changed from 'blind' to 'fullConsult'. [2] Added csrstUserLocaleInfoRev1 which is the revised version for csrstUserLocaleInfo. It can support 5 user locale at the same time. [3] csrstConfGroup is deprecated and revised with csrstConfGroupRev1. [4] ciscoSrstMIBCompliance is deprecated and revised with ciscoSrstMIBComplianceRev1.", 'Initial version of this MIB module.'))
if mibBuilder.loadTexts:
ciscoSrstMIB.setLastUpdated('200702270000Z')
if mibBuilder.loadTexts:
ciscoSrstMIB.setOrganization('Cisco Systems, Inc.')
if mibBuilder.loadTexts:
ciscoSrstMIB.setContactInfo(' Cisco Systems Customer Service Postal: 170 W Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS E-mail: cs-ccme-srst@cisco.com')
if mibBuilder.loadTexts:
ciscoSrstMIB.setDescription('This MIB allows management of Cisco Survivable Remote Site Telephony (SRST) feature in Cisco IOS. SRST is an optional software feature that provides Cisco CallManager with fallback support for Cisco IP phones attached to a Cisco router on a local network. The CISCO-CCME-MIB provides management of Cisco CallManager Express (CCME) feature in Cisco IOS. CCME is an optional software feature that enables Cisco routers to deliver IP telephony services for small office environment. Ephone, ephoneDN, button association tables are common to both CCME and SRST MIBs and are defined in CISCO-CCME-MIB. Ephone specific notifications which are common to CCME and SRST are also defined in CISCO-CCME-MIB.')
cisco_srst_mib_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 0))
cisco_srst_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 1))
cisco_srst_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 2))
class Srstopertype(TextualConvention, Integer32):
description = 'Operational SRST states. Valid values are : active(1) SRST is active inactive(2) SRST is inactive '
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('active', 1), ('inactive', 2))
csrst_global = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 1))
csrst_conf = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2))
csrst_active_stats = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 3))
csrst_sip_conf = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4))
csrst_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 1), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstEnabled.setStatus('current')
if mibBuilder.loadTexts:
csrstEnabled.setDescription('Cisco SRST support is enabled or disabled. When enabled, the router is in fallback mode to provide call-handling support to IP phones. If disabled, all of the objects in this group have no significance.')
csrst_version = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstVersion.setStatus('current')
if mibBuilder.loadTexts:
csrstVersion.setDescription('Cisco SRST version.')
csrst_ip_address_type = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 3), inet_address_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstIPAddressType.setStatus('current')
if mibBuilder.loadTexts:
csrstIPAddressType.setDescription("Internet address type governing the address type format for one or more InetAddress objects in this MIB. The associated InetAddress objects' description will refer back to this type object as appropriate. ")
csrst_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 4), inet_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstIPAddress.setStatus('current')
if mibBuilder.loadTexts:
csrstIPAddress.setDescription('Cisco SRST IP address for the router to receive messages from IP phones, typically one of the addresses of an Ethernet port of the router. The type of IP address used here is indicated by the csrstSysIPAddressType object. ')
csrst_port_number = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 5), inet_port_number().subtype(subtypeSpec=value_range_constraint(2000, 9999)).clone(2000)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstPortNumber.setStatus('current')
if mibBuilder.loadTexts:
csrstPortNumber.setDescription('This object indicates the TCP port number to use for Skinny Client Control Protocol (SCCP) and is range limited. This port also indicates through which IP phones communicate with SRST. ')
csrst_max_conferences = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 6), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstMaxConferences.setStatus('current')
if mibBuilder.loadTexts:
csrstMaxConferences.setDescription('Maximum number of simultaneous three-party conference calls configured on the router. Range is IOS version and platform dependent. With SRST Version 3.0 onwards, the following are the maximum values for each platform - Cisco 1751, Cisco 1760, Cisco 2600, Cisco 3640 - 8 conferences. Cisco 3660, Cisco 3725, Cisco 3745 - 16 conferences. Default is half the maximum number of simultaneous three-party conferences for each platform.')
csrst_max_ephones = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 7), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstMaxEphones.setStatus('current')
if mibBuilder.loadTexts:
csrstMaxEphones.setDescription('Maximum number of Cisco IP phones configured on the SRST router. Range is IOS version and platform dependent. ')
csrst_max_dn = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 8), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstMaxDN.setStatus('current')
if mibBuilder.loadTexts:
csrstMaxDN.setDescription('Maximum number of IP phones extensions (ephone-dns) or directory number configured on this SRST router. Range is IOS version and platform dependent. Default is 0.')
csrst_sip_phone_un_reg_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 9), unsigned32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
csrstSipPhoneUnRegThreshold.setStatus('current')
if mibBuilder.loadTexts:
csrstSipPhoneUnRegThreshold.setDescription('This object indicates a threshold for the number of SIP phones unregistered to SRST. This threshold is changeable by the NMS user. ')
csrst_call_fwd_no_answer = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 10), cv_e164_address().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstCallFwdNoAnswer.setReference('ITU-T E.164, Q.931 chapter 4.5.10')
if mibBuilder.loadTexts:
csrstCallFwdNoAnswer.setStatus('current')
if mibBuilder.loadTexts:
csrstCallFwdNoAnswer.setDescription('Cisco SRST call forwarding number when a Cisco IP phone is not answered. This directory number is a fully qualified E.164 number.')
csrst_call_fwd_no_answer_to = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 11), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstCallFwdNoAnswerTo.setStatus('current')
if mibBuilder.loadTexts:
csrstCallFwdNoAnswerTo.setDescription('Timeout in seconds if a Cisco IP phone is not answered, Cisco SRST will call forward to another directory number. ')
csrst_call_fwd_busy = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 12), cv_e164_address().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstCallFwdBusy.setReference('ITU-T E.164, Q.931 chapter 4.5.10')
if mibBuilder.loadTexts:
csrstCallFwdBusy.setStatus('current')
if mibBuilder.loadTexts:
csrstCallFwdBusy.setDescription('Cisco SRST call forwarding number when a Cisco IP phone is busy. This directory number is a fully qualified E.164 number.')
csrst_moh_filename = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 13), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstMohFilename.setStatus('current')
if mibBuilder.loadTexts:
csrstMohFilename.setDescription('Cisco SRST Music-On-Hold is enabled with file on flash, or disabled without a file on flash. MOH is enabled by default.')
csrst_moh_multicast_addr_type = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 14), inet_address_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstMohMulticastAddrType.setStatus('current')
if mibBuilder.loadTexts:
csrstMohMulticastAddrType.setDescription("Internet address type governing the address type format for one or more InetAddress objects in this MIB. The associated InetAddress objects' description will refer back to this type object as appropriate. ")
csrst_moh_multicast_addr = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 15), inet_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstMohMulticastAddr.setStatus('current')
if mibBuilder.loadTexts:
csrstMohMulticastAddr.setDescription('This object indicates Cisco SRST Music-On-Hold Multicast IP address. When configured, this feature enables continuous IP multicast output of MOH from a Flash MOH file. This object has no significance if MOH is not configured. Default is the csrstIPAddress object for Cisco SRST. The type of IP address used here is indicated by the csrstMohMulticastAddrType object. ')
csrst_moh_multicast_port = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 16), inet_port_number().subtype(subtypeSpec=value_range_constraint(2000, 9999)).clone(2000)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstMohMulticastPort.setStatus('current')
if mibBuilder.loadTexts:
csrstMohMulticastPort.setDescription('This object indicates Cisco SRST Music-On-Hold Multicast TCP port which is range limited. When configured, this feature enables continuous IP multicast output of MOH from a Flash MOH file. This object has no significance if MOH is not configured. ')
csrst_voice_mail_number = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 17), cv_e164_address().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstVoiceMailNumber.setReference('ITU-T E.164, Q.931 chapter 4.5.10')
if mibBuilder.loadTexts:
csrstVoiceMailNumber.setStatus('current')
if mibBuilder.loadTexts:
csrstVoiceMailNumber.setDescription("Cisco SRST voice mail number that is speed-dialed when the messages button on a Cisco IP phone is pressed. This voice mail number is a fully qualified E.164 number. If voice-mail number is not configured, this object will have a string length of 2 with the value '**'. ")
csrst_system_message_primary = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 18), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSystemMessagePrimary.setStatus('current')
if mibBuilder.loadTexts:
csrstSystemMessagePrimary.setDescription("Cisco SRST system static text message that is displayed on Cisco IP phone during fallback. Length of text string is less than 32 characters. Default message is 'CM Fallback Service Operating'. ")
csrst_system_message_secondary = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 19), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSystemMessageSecondary.setStatus('current')
if mibBuilder.loadTexts:
csrstSystemMessageSecondary.setDescription("Cisco SRST system message that is displayed on Cisco IP phone that does not support static text message and have a limited display space during fallback. Length of text string is less than 20 characters. Default messages is 'CM Fallback Service'. ")
csrst_script_name = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 20), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstScriptName.setStatus('current')
if mibBuilder.loadTexts:
csrstScriptName.setDescription('Cisco SRST session-level IVR application script. This application can be written written in Tool Command Language (TCL) and is applied to all Cisco IP phone lines served by the SRST router. If no application script name is configured, the default built-in IOS application will be applied to all phone lines served by the SRST router and this object will be a zero-length string.')
csrst_secondary_dial_tone = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 21), cv_e164_address().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSecondaryDialTone.setStatus('current')
if mibBuilder.loadTexts:
csrstSecondaryDialTone.setDescription('Cisco SRST secondary dial tone digits. When a Cisco IP phone user dials a PSTN access prefix, defined by the secondary dial tone digits, the secondary dial tone is enabled. ')
csrst_transfer_system = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('blind', 1), ('fullBlind', 2), ('fullConsult', 3), ('localConsult', 4))).clone('fullConsult')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstTransferSystem.setReference('ITU-T H.450.2 Call Transfers')
if mibBuilder.loadTexts:
csrstTransferSystem.setStatus('current')
if mibBuilder.loadTexts:
csrstTransferSystem.setDescription('Cisco SRST call transfer method using the ITU-T H.450.2 standard. Default setting is blind. blind - Calls are transferred without consultation using a single phone line and the Cisco proprietary method. fullBlind - Calls are transferred without consultation using H.450.2 standard methods. fullConsult - Calls are transferred using H.450.2 with consultation using the second phone line if available, or the calls fall back to full-blind if the second line is unavailable. localConsult - Calls are transferred with local consultation using the second phone line if available, or the calls fall back to blind for non- local consultation or transfer target. This mode is intended for use primarily in Voice over Frame Relay (VoFR) networks. ')
csrst_user_locale_info = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 23), country_code().clone('US')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstUserLocaleInfo.setStatus('deprecated')
if mibBuilder.loadTexts:
csrstUserLocaleInfo.setDescription('Cisco SRST language for displays on Cisco IP phone by country. Deprecated and superseded by csrstUserLocaleInfoRev1, as current implementation supports 5 user locales at the same time. ')
csrst_date_format = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('mmddyy', 1), ('ddmmyy', 2), ('yyddmm', 3), ('yymmdd', 4))).clone('mmddyy')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstDateFormat.setStatus('current')
if mibBuilder.loadTexts:
csrstDateFormat.setDescription('Date display format on Cisco IP phones in the Cisco SRST system. ')
csrst_time_format = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('twelveHour', 1), ('twentyFourHour', 2))).clone('twelveHour')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstTimeFormat.setStatus('current')
if mibBuilder.loadTexts:
csrstTimeFormat.setDescription('Time dispay format on Cisco IP phones in the Cisco SRST system. 1 - 12 hour clock. 2 - 24 hour clock. ')
csrst_interdigit_to = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 26), unsigned32().clone(10)).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstInterdigitTo.setStatus('current')
if mibBuilder.loadTexts:
csrstInterdigitTo.setDescription('Cisco SRST interdigit timeout duration in seconds for Cisco IP phones. ')
csrst_busy_to = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 27), unsigned32().clone(10)).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstBusyTo.setStatus('current')
if mibBuilder.loadTexts:
csrstBusyTo.setDescription('Cisco SRST time in seconds before disconnect when destination is busy, without call-forwarding. ')
csrst_alert_to = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 28), unsigned32().clone(180)).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstAlertTo.setStatus('current')
if mibBuilder.loadTexts:
csrstAlertTo.setDescription('Cisco SRST time in seconds before disconnect when call is not answered, without call-forwarding. ')
csrst_xlate_called_number = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 29), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstXlateCalledNumber.setStatus('current')
if mibBuilder.loadTexts:
csrstXlateCalledNumber.setDescription('This object indicates the tag of a corresponding translation rule, which utilizes the number-translation mechanism of the IOS to translate a called number on the Cisco SRST router. ')
csrst_xlate_calling_number = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 30), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstXlateCallingNumber.setStatus('current')
if mibBuilder.loadTexts:
csrstXlateCallingNumber.setDescription('This object indicates the tag of a corresponding translation rule, which utilizes the number-translation mechanism of the IOS to translate a calling number on the Cisco SRST router.')
csrst_alias_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31))
if mibBuilder.loadTexts:
csrstAliasTable.setStatus('current')
if mibBuilder.loadTexts:
csrstAliasTable.setDescription('A list of alias pattern configured on this SRST router. ')
csrst_alias_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1)).setIndexNames((0, 'CISCO-SRST-MIB', 'csrstAliasIndex'))
if mibBuilder.loadTexts:
csrstAliasEntry.setStatus('current')
if mibBuilder.loadTexts:
csrstAliasEntry.setDescription('Information about a configured alias pattern. There is an entry in this table for each alias pattern configured on this device.')
csrst_alias_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1, 1), unsigned32())
if mibBuilder.loadTexts:
csrstAliasIndex.setStatus('current')
if mibBuilder.loadTexts:
csrstAliasIndex.setDescription('An index in sequential order that indicates an alias pattern configured on this SRST router. ')
csrst_alias_tag = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstAliasTag.setStatus('current')
if mibBuilder.loadTexts:
csrstAliasTag.setDescription('A unique sequence number that indicates a particular alias pattern configured on this SRST router. ')
csrst_alias_num_pattern = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1, 3), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstAliasNumPattern.setStatus('current')
if mibBuilder.loadTexts:
csrstAliasNumPattern.setDescription('This object indicates the pattern to match the incoming telephone number. It may include wildcards. ')
csrst_alias_alt_number = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1, 4), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstAliasAltNumber.setStatus('current')
if mibBuilder.loadTexts:
csrstAliasAltNumber.setDescription('This object indicates the alternate tele- phone number to route incoming calls to match the number pattern. This has to be a valid extension for an IP phone actively registered on the SRST router. ')
csrst_alias_preference = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstAliasPreference.setStatus('current')
if mibBuilder.loadTexts:
csrstAliasPreference.setDescription('This object indicates the preference value of the associated dial-peer. A value of 0 has the highest preference. ')
csrst_alias_hunt_stop_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 31, 1, 6), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstAliasHuntStopEnabled.setStatus('current')
if mibBuilder.loadTexts:
csrstAliasHuntStopEnabled.setDescription('This object specifies that if hunt stop is enabled, after the caller tried the alternate number according to the alias pattern, it will stop call hunting. If hunt stop is disabled, it will rollover to another directory number if available. ')
csrst_access_code_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 32))
if mibBuilder.loadTexts:
csrstAccessCodeTable.setStatus('current')
if mibBuilder.loadTexts:
csrstAccessCodeTable.setDescription('A list of access-code to trunk lines configured on this SRST router. ')
csrst_access_code_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 32, 1)).setIndexNames((0, 'CISCO-SRST-MIB', 'csrstAccessCodeType'))
if mibBuilder.loadTexts:
csrstAccessCodeEntry.setStatus('current')
if mibBuilder.loadTexts:
csrstAccessCodeEntry.setDescription('Information about a configured access-code to trunk lines. There is an entry in this table for each access configured on this device.')
csrst_access_code_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 32, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('fxo', 1), ('em', 2), ('bri', 3), ('pri', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstAccessCodeType.setStatus('current')
if mibBuilder.loadTexts:
csrstAccessCodeType.setDescription('This object indicates the type of trunk line to which the access-code is applied to. The type of trunk lines can be fxo, e&m, bri, and pri. fxo - Enables a foreign exchange office (FXO) interface. em - Enables an analog ear and mouth (E&M) interface. bri - Enables a BRI interface. pri - Enables a PRI interface. ')
csrst_access_code = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 32, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstAccessCode.setStatus('current')
if mibBuilder.loadTexts:
csrstAccessCode.setDescription('This object indicates the access-code to be applied to the corresponding trunk line by creating dial-peers. ')
csrst_access_code_did_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 32, 1, 3), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstAccessCodeDIDEnabled.setStatus('current')
if mibBuilder.loadTexts:
csrstAccessCodeDIDEnabled.setDescription('This object indicates the direct-inward- dial on a POTS dial-peer is enabled or disabled. ')
csrst_limit_dn_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 33))
if mibBuilder.loadTexts:
csrstLimitDNTable.setStatus('current')
if mibBuilder.loadTexts:
csrstLimitDNTable.setDescription('A list of configured limit-dn avail- able to each Cisco IP phone type on this SRST router. ')
csrst_limit_dn_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 33, 1)).setIndexNames((0, 'CISCO-SRST-MIB', 'csrstLimitDNType'))
if mibBuilder.loadTexts:
csrstLimitDNEntry.setStatus('current')
if mibBuilder.loadTexts:
csrstLimitDNEntry.setDescription('Information about a configured limit-dn. There is an entry in this table for each limit-dn configured for a Cisco phone type on this device. ')
csrst_limit_dn_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 33, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('ipPhone7910', 1), ('ipPhone7935', 2), ('ipPhone7940', 3), ('ipPhone7960', 4), ('ipPhone7970', 5), ('ipPhone7936', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstLimitDNType.setStatus('current')
if mibBuilder.loadTexts:
csrstLimitDNType.setDescription('This object indicates the type of IP phone to which the limit-dn is applied to. ')
csrst_limit_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 33, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstLimitDN.setStatus('current')
if mibBuilder.loadTexts:
csrstLimitDN.setDescription('This object indicates the maximum number of directory numbers available to each type of IP phone. The current range of maximum lines setting is from 1 to 34. The default is 34. DEFVAL { 34 } ')
csrst_notification_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 34), truth_value().clone('false')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
csrstNotificationEnabled.setStatus('current')
if mibBuilder.loadTexts:
csrstNotificationEnabled.setDescription('This variable indicates whether this system produces the SRST notifications. A false value will prevent SRST notifications from being generated by this system. ')
csrst_user_locale_info_rev1 = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 2, 35), display_string().subtype(subtypeSpec=value_size_constraint(14, 64)).clone('US/US/US/US/US')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstUserLocaleInfoRev1.setStatus('current')
if mibBuilder.loadTexts:
csrstUserLocaleInfoRev1.setDescription("Cisco SRST language for displays on Cisco IP phone by country. Every set of character separated by a forward slash ('/') represents one user-locale whose value may be any one of the following languages or one configured by the user. At the same time 5 user locales can be configured. --------------------------- | DE Germany | | DK Denmark | | ES Spain | | FR France | | IT Italy | | JP Japan | | NL Netherlands | | NO Norway | | PT Portugal | | RU Russian Federation | | SE Sweden | | US United States | --------------------------- Example: if csrstUserLocaleInfoRev1 returns 'DE/US/SE/FR/RU' then : UserLocale 1 = DE UserLocale 2 = US UserLocale 3 = SE UserLocale 4 = FR UserLocale 5 = RU ")
csrst_sys_notif_severity = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('clear', 1), ('minor', 2), ('major', 3)))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
csrstSysNotifSeverity.setStatus('current')
if mibBuilder.loadTexts:
csrstSysNotifSeverity.setDescription("The internally-defined severity of the particular alarm condition, associated with the most recent SNMP notification. A subsequent event in which the alarm condition changes from its failed state back to a 'normal' state has a severity of 'clear'. This severity-level value is supplied with each SRST specific notification. ")
csrst_sys_notif_reason = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 2, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
csrstSysNotifReason.setStatus('current')
if mibBuilder.loadTexts:
csrstSysNotifReason.setDescription('The internally-defined failure cause of the particular alarm condition, associated with the most recent system notification. ')
csrst_state = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 3, 1), srst_oper_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstState.setStatus('current')
if mibBuilder.loadTexts:
csrstState.setDescription('This object indicates the current state of Cisco SRST feature on this router. Active - At least one IP or SIP phone is registered Inactive - Cisco SRST has no IP or SIP phones registered This object has no significance if csrstEnabled object is disabled. ')
csrst_sip_phone_current_registered = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 3, 2), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipPhoneCurrentRegistered.setStatus('current')
if mibBuilder.loadTexts:
csrstSipPhoneCurrentRegistered.setDescription('Total number of SIP phones currently registered to the SRST router. ')
csrst_sip_call_legs = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 3, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipCallLegs.setStatus('current')
if mibBuilder.loadTexts:
csrstSipCallLegs.setDescription('Total number of SIP call legs routed through the SRST router since going active. This includes incoming and outgoing calls. ')
csrst_total_up_time = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 3, 4), counter32()).setUnits('minutes').setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstTotalUpTime.setStatus('current')
if mibBuilder.loadTexts:
csrstTotalUpTime.setDescription('Accumulated total number of minutes that router is active in SRST mode. ')
csrst_sip_reg_srv_exp_max = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 1), integer32().subtype(subtypeSpec=value_range_constraint(600, 86400)).clone(3600)).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipRegSrvExpMax.setStatus('current')
if mibBuilder.loadTexts:
csrstSipRegSrvExpMax.setDescription('This object indicates the maximum expiration time for the SIP Registrar Server to timeout on a registration. ')
csrst_sip_reg_srv_exp_min = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(60, 3600)).clone(60)).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipRegSrvExpMin.setStatus('current')
if mibBuilder.loadTexts:
csrstSipRegSrvExpMin.setDescription('This object indicates the minimum expiration time for the SIP Registrar Server to timeout on a registration. ')
csrst_sip_ip2_ip_global_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 3), truth_value().clone('false')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipIp2IpGlobalEnabled.setStatus('current')
if mibBuilder.loadTexts:
csrstSipIp2IpGlobalEnabled.setDescription('This object indicates whether voip calls are re-directed ip to ip globally. ')
csrst_sip_send300_mult_support = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('bestMatch', 1), ('longestMatch', 2))).clone('longestMatch')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipSend300MultSupport.setStatus('current')
if mibBuilder.loadTexts:
csrstSipSend300MultSupport.setDescription('This object indicates whether the redirect contact order is best or longest match. This applies globally for SIP. bestMatch - Uses the current system configuration to set the order of contacts. longestMatch - Sets the contact order by using the destination pattern longest match first, and then the second longest match, the third longest match, etc.. ')
csrst_sip_vo_reg_pool_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5))
if mibBuilder.loadTexts:
csrstSipVoRegPoolTable.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegPoolTable.setDescription('This table contains general information about the configured voice register pool for SIP endpoints (dial-peers) on this SRST router. ')
csrst_sip_vo_reg_pool_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1)).setIndexNames((0, 'CISCO-SRST-MIB', 'csrstSipVoRegPoolTag'))
if mibBuilder.loadTexts:
csrstSipVoRegPoolEntry.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegPoolEntry.setDescription('Information about a configured voice register pool for SIP dial-peers. There is an entry in this table for each voice register pool configured on this device. ')
csrst_sip_vo_reg_pool_tag = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 1), unsigned32())
if mibBuilder.loadTexts:
csrstSipVoRegPoolTag.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegPoolTag.setDescription('A unique identifier tag configured for a voice register pool entry. ')
csrst_sip_net_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipNetId.setStatus('current')
if mibBuilder.loadTexts:
csrstSipNetId.setDescription('This object indicates the network ident- ification information of the SIP voice register pool configured on this router. This object can be the network Id, IP address, or MAC address. ')
csrst_sip_vo_reg_pool_ip_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 3), inet_address_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipVoRegPoolIpAddrType.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegPoolIpAddrType.setDescription("Internet address type governing the address type format for one or more InetAddress objects in this MIB. The associated InetAddress objects' description will refer back to this type object as appropriate. ")
csrst_sip_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 4), inet_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipNetMask.setStatus('current')
if mibBuilder.loadTexts:
csrstSipNetMask.setDescription('This object indicates the IP subnet configured for the SIP voice register pool. The type of IP subnet used here is indicated by the csrstSipVoRegPoolIpAddrType object. ')
csrst_sip_proxy_srv_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 5), inet_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipProxySrvIpAddr.setStatus('current')
if mibBuilder.loadTexts:
csrstSipProxySrvIpAddr.setDescription('This object indicates the IP address of the proxy server configured for the SIP voice register pool. The type of IP address used here is indicated by the csrstSipVoRegPoolIpAddrType object. ')
csrst_sip_proxy_srv_pref = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 6), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipProxySrvPref.setStatus('current')
if mibBuilder.loadTexts:
csrstSipProxySrvPref.setDescription('This object indicates the preference order for creating the VoIP dial peers in the voice register pool. Setting the preference enables the desired dial peer to be selected when multiple dial peers within a hunt group are matched for a dial string. A value of 0 has the highest preference. ')
csrst_sip_proxy_srv_monitor = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('icmp', 1), ('rtr', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipProxySrvMonitor.setStatus('current')
if mibBuilder.loadTexts:
csrstSipProxySrvMonitor.setDescription('Cisco SIP SRST monitoring protocol of the proxy server configured for the SIP voice register pool. This monitoring protocol can be ICMP ping or RTR probes. ')
csrst_sip_proxy_srv_alt_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 8), inet_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipProxySrvAltIpAddr.setStatus('current')
if mibBuilder.loadTexts:
csrstSipProxySrvAltIpAddr.setDescription('Cisco SIP SRST monitoring of an alternate IP address other than the proxy configured for the SIP voice register pool. The type of IP address used here is indicated by the csrstSipVoRegPoolIpAddrType object. ')
csrst_sip_default_preference = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 9), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipDefaultPreference.setStatus('current')
if mibBuilder.loadTexts:
csrstSipDefaultPreference.setDescription('This object indicates the default preference of the proxy dial-peers created in the voice register pool. If csrstSipProxySrvPref object is not set, the default preference is applied to the dial-peers created. A value of 0 has the highest preference. ')
csrst_sip_vo_reg_pool_appl = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 5, 1, 10), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipVoRegPoolAppl.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegPoolAppl.setDescription('Application for the SIP dial-peers configured under voice register pool. ')
csrst_sip_vo_reg_number_list_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6))
if mibBuilder.loadTexts:
csrstSipVoRegNumberListTable.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegNumberListTable.setDescription('This table contains information about the configured number list for the corresponding voice register pool on this SIP SRST router. ')
csrst_sip_vo_reg_number_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6, 1)).setIndexNames((0, 'CISCO-SRST-MIB', 'csrstSipVoRegPoolTag'), (0, 'CISCO-SRST-MIB', 'csrstSipVoRegNumberListIndex'))
if mibBuilder.loadTexts:
csrstSipVoRegNumberListEntry.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegNumberListEntry.setDescription('Information about a configured number list for the corresponding voice register pool. There is an entry in this table for each number list configured on this device. ')
csrst_sip_vo_reg_number_list_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6, 1, 1), unsigned32())
if mibBuilder.loadTexts:
csrstSipVoRegNumberListIndex.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegNumberListIndex.setDescription('A unique sequence number that indicates a number list configured for the corresponding voice register pool on this SRST router. ')
csrst_sip_vo_reg_number_list_tag = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipVoRegNumberListTag.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegNumberListTag.setDescription('This object indicates the particular index of the number list configured for the corresponding voice register pool. ')
csrst_sip_vo_reg_number_pattern = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6, 1, 3), cv_e164_address().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipVoRegNumberPattern.setReference('ITU-T E.164, Q.931 chapter 4.5.10')
if mibBuilder.loadTexts:
csrstSipVoRegNumberPattern.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegNumberPattern.setDescription('This object indicates the number pattern that the registrar permits to handle the register message from the SIP phone. This number pattern is a fully qualified E.164 number.')
csrst_sip_vo_reg_number_pref = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipVoRegNumberPref.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegNumberPref.setDescription('This object indicates the preference of the number pattern configured for the corresponding voice register pool. ')
csrst_sip_vo_reg_number_huntstop_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 6, 1, 5), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipVoRegNumberHuntstopEnabled.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegNumberHuntstopEnabled.setDescription('This object indicates huntstop is enabled (true) or disabled (false) for the number pattern configured for the corresponding voice register pool. If enabled, the incoming call will stop hunting if the dial-peer is busy. If disabled, the incoming call will hunt further for dial-peers. ')
csrst_sip_endpoint_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7))
if mibBuilder.loadTexts:
csrstSipEndpointTable.setStatus('current')
if mibBuilder.loadTexts:
csrstSipEndpointTable.setDescription('This table contains general information about the configured SIP dial-peers (endpoints) on this SIP SRST router. ')
csrst_sip_endpoint_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7, 1)).setIndexNames((0, 'CISCO-SRST-MIB', 'csrstSipEndpointTag'))
if mibBuilder.loadTexts:
csrstSipEndpointEntry.setStatus('current')
if mibBuilder.loadTexts:
csrstSipEndpointEntry.setDescription('Information about a created SIP endpoint. There is an entry in this table for each SIP endpoint (dial-peer) configured on this device.')
csrst_sip_endpoint_tag = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7, 1, 1), unsigned32())
if mibBuilder.loadTexts:
csrstSipEndpointTag.setStatus('current')
if mibBuilder.loadTexts:
csrstSipEndpointTag.setDescription('A unique sequence number that indicates a SIP endpoint configured on this SRST router. ')
csrst_sip_vo_reg_pool_edpt_tag = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipVoRegPoolEdptTag.setStatus('current')
if mibBuilder.loadTexts:
csrstSipVoRegPoolEdptTag.setDescription('This object indicates the voice register pool tag from which the corresponding SIP endpoint (dial-peer) is created. ')
csrst_sip_endpoint_ip_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7, 1, 3), inet_address_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipEndpointIpAddrType.setStatus('current')
if mibBuilder.loadTexts:
csrstSipEndpointIpAddrType.setDescription("Internet address type governing the address type format for one or more InetAddress objects in this MIB. The associated InetAddress objects' description will refer back to this type object as appropriate. ")
csrst_sip_endpoint_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7, 1, 4), inet_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipEndpointIpAddress.setStatus('current')
if mibBuilder.loadTexts:
csrstSipEndpointIpAddress.setDescription('This object indicates the SIP endpoint IP address configured on this router. The type of IP address used here is indicated by the csrstSipEndpointIpAddrType object. ')
csrst_sip_endpoint_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 441, 1, 4, 7, 1, 5), cv_e164_address().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
csrstSipEndpointDN.setStatus('current')
if mibBuilder.loadTexts:
csrstSipEndpointDN.setDescription("This object indicates the SIP phone's DN or line number assigned to the SIP endpoint. ")
csrst_state_change = notification_type((1, 3, 6, 1, 4, 1, 9, 9, 441, 0, 1)).setObjects(('CISCO-SRST-MIB', 'csrstSysNotifSeverity'), ('CISCO-SRST-MIB', 'csrstState'), ('CISCO-SRST-MIB', 'csrstSysNotifReason'))
if mibBuilder.loadTexts:
csrstStateChange.setStatus('current')
if mibBuilder.loadTexts:
csrstStateChange.setDescription('An SRST up or down state change notification is generated. This indicates one or more phones is registered to the SRST router or none is registered. ')
csrst_fail_notif = notification_type((1, 3, 6, 1, 4, 1, 9, 9, 441, 0, 2)).setObjects(('CISCO-SRST-MIB', 'csrstSysNotifSeverity'), ('CISCO-SRST-MIB', 'csrstSysNotifReason'))
if mibBuilder.loadTexts:
csrstFailNotif.setStatus('current')
if mibBuilder.loadTexts:
csrstFailNotif.setDescription('A failure notification is generated when the SRST router encounters a catastrophic failure. ')
csrst_sip_phone_un_reg_threshold_exceed = notification_type((1, 3, 6, 1, 4, 1, 9, 9, 441, 0, 3)).setObjects(('CISCO-SRST-MIB', 'csrstSipPhoneUnRegThreshold'), ('CISCO-SRST-MIB', 'csrstSipPhoneCurrentRegistered'))
if mibBuilder.loadTexts:
csrstSipPhoneUnRegThresholdExceed.setStatus('current')
if mibBuilder.loadTexts:
csrstSipPhoneUnRegThresholdExceed.setDescription('A SIP phone unregistration notification is generated when the number of SIP phone unregistrations have exceeded the threshold. The number of currently registered SIP phones is provided here by csrstSipPhoneCurrentRegistered object as a reference such that if csrstSipPhoneCurrentRegistered falls below csrstSipPhoneUnRegThreshold, a notification will be generated to indicate that the number of unregistered SIP phones has crossed the threshold. ')
csrst_sip_phone_reg_failed = notification_type((1, 3, 6, 1, 4, 1, 9, 9, 441, 0, 4)).setObjects(('CISCO-SRST-MIB', 'csrstSipEndpointIpAddress'))
if mibBuilder.loadTexts:
csrstSipPhoneRegFailed.setStatus('current')
if mibBuilder.loadTexts:
csrstSipPhoneRegFailed.setDescription('A SIP phone fail registration notification is generated when the SIP phone fails to register. ')
csrst_conference_failed = notification_type((1, 3, 6, 1, 4, 1, 9, 9, 441, 0, 5)).setObjects(('CISCO-SRST-MIB', 'csrstMaxConferences'))
if mibBuilder.loadTexts:
csrstConferenceFailed.setStatus('current')
if mibBuilder.loadTexts:
csrstConferenceFailed.setDescription('A conference failure notification is generated when the maximum number of conferences are exceeded. ')
cisco_srst_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 1))
cisco_srst_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2))
cisco_srst_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 1, 1)).setObjects(('CISCO-SRST-MIB', 'csrstConfGroup'), ('CISCO-SRST-MIB', 'csrstNotifInfoGroup'), ('CISCO-SRST-MIB', 'csrstSipConfGroup'), ('CISCO-SRST-MIB', 'csrstActiveStatsGroup'), ('CISCO-SRST-MIB', 'csrstMIBNotifsGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_srst_mib_compliance = ciscoSrstMIBCompliance.setStatus('deprecated')
if mibBuilder.loadTexts:
ciscoSrstMIBCompliance.setDescription('The compliance statement for the Cisco Survivable Remote Site Telephony (SRST) MIB. ')
cisco_srst_mib_compliance_rev1 = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 1, 2)).setObjects(('CISCO-SRST-MIB', 'csrstNotifInfoGroup'), ('CISCO-SRST-MIB', 'csrstSipConfGroup'), ('CISCO-SRST-MIB', 'csrstActiveStatsGroup'), ('CISCO-SRST-MIB', 'csrstMIBNotifsGroup'), ('CISCO-SRST-MIB', 'csrstConfGroupRev1'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_srst_mib_compliance_rev1 = ciscoSrstMIBComplianceRev1.setStatus('current')
if mibBuilder.loadTexts:
ciscoSrstMIBComplianceRev1.setDescription('The compliance statement for the Cisco Survivable Remote Site Telephony (SRST) MIB. ')
csrst_conf_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 1)).setObjects(('CISCO-SRST-MIB', 'csrstEnabled'), ('CISCO-SRST-MIB', 'csrstVersion'), ('CISCO-SRST-MIB', 'csrstIPAddressType'), ('CISCO-SRST-MIB', 'csrstIPAddress'), ('CISCO-SRST-MIB', 'csrstPortNumber'), ('CISCO-SRST-MIB', 'csrstMaxConferences'), ('CISCO-SRST-MIB', 'csrstMaxEphones'), ('CISCO-SRST-MIB', 'csrstMaxDN'), ('CISCO-SRST-MIB', 'csrstSipPhoneUnRegThreshold'), ('CISCO-SRST-MIB', 'csrstCallFwdNoAnswer'), ('CISCO-SRST-MIB', 'csrstCallFwdNoAnswerTo'), ('CISCO-SRST-MIB', 'csrstCallFwdBusy'), ('CISCO-SRST-MIB', 'csrstMohFilename'), ('CISCO-SRST-MIB', 'csrstMohMulticastAddrType'), ('CISCO-SRST-MIB', 'csrstMohMulticastAddr'), ('CISCO-SRST-MIB', 'csrstMohMulticastPort'), ('CISCO-SRST-MIB', 'csrstVoiceMailNumber'), ('CISCO-SRST-MIB', 'csrstSystemMessagePrimary'), ('CISCO-SRST-MIB', 'csrstSystemMessageSecondary'), ('CISCO-SRST-MIB', 'csrstScriptName'), ('CISCO-SRST-MIB', 'csrstSecondaryDialTone'), ('CISCO-SRST-MIB', 'csrstTransferSystem'), ('CISCO-SRST-MIB', 'csrstUserLocaleInfo'), ('CISCO-SRST-MIB', 'csrstDateFormat'), ('CISCO-SRST-MIB', 'csrstTimeFormat'), ('CISCO-SRST-MIB', 'csrstInterdigitTo'), ('CISCO-SRST-MIB', 'csrstBusyTo'), ('CISCO-SRST-MIB', 'csrstAlertTo'), ('CISCO-SRST-MIB', 'csrstXlateCalledNumber'), ('CISCO-SRST-MIB', 'csrstXlateCallingNumber'), ('CISCO-SRST-MIB', 'csrstAliasTag'), ('CISCO-SRST-MIB', 'csrstAliasNumPattern'), ('CISCO-SRST-MIB', 'csrstAliasAltNumber'), ('CISCO-SRST-MIB', 'csrstAliasPreference'), ('CISCO-SRST-MIB', 'csrstAliasHuntStopEnabled'), ('CISCO-SRST-MIB', 'csrstAccessCodeType'), ('CISCO-SRST-MIB', 'csrstAccessCode'), ('CISCO-SRST-MIB', 'csrstAccessCodeDIDEnabled'), ('CISCO-SRST-MIB', 'csrstLimitDNType'), ('CISCO-SRST-MIB', 'csrstLimitDN'), ('CISCO-SRST-MIB', 'csrstNotificationEnabled'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
csrst_conf_group = csrstConfGroup.setStatus('deprecated')
if mibBuilder.loadTexts:
csrstConfGroup.setDescription('A collection of objects which are used to show the current running configuration of Cisco SRST feature. ')
csrst_notif_info_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 2)).setObjects(('CISCO-SRST-MIB', 'csrstSysNotifSeverity'), ('CISCO-SRST-MIB', 'csrstSysNotifReason'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
csrst_notif_info_group = csrstNotifInfoGroup.setStatus('current')
if mibBuilder.loadTexts:
csrstNotifInfoGroup.setDescription('A collection of objects which are used to show the severity and reason of a notifi- cation. ')
csrst_active_stats_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 3)).setObjects(('CISCO-SRST-MIB', 'csrstState'), ('CISCO-SRST-MIB', 'csrstSipPhoneCurrentRegistered'), ('CISCO-SRST-MIB', 'csrstSipCallLegs'), ('CISCO-SRST-MIB', 'csrstTotalUpTime'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
csrst_active_stats_group = csrstActiveStatsGroup.setStatus('current')
if mibBuilder.loadTexts:
csrstActiveStatsGroup.setDescription('A collection of objects which are used to show the activity status of Cisco SRST or SIP SRST feature. ')
csrst_sip_conf_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 4)).setObjects(('CISCO-SRST-MIB', 'csrstSipRegSrvExpMax'), ('CISCO-SRST-MIB', 'csrstSipRegSrvExpMin'), ('CISCO-SRST-MIB', 'csrstSipIp2IpGlobalEnabled'), ('CISCO-SRST-MIB', 'csrstSipSend300MultSupport'), ('CISCO-SRST-MIB', 'csrstSipNetId'), ('CISCO-SRST-MIB', 'csrstSipVoRegPoolIpAddrType'), ('CISCO-SRST-MIB', 'csrstSipNetMask'), ('CISCO-SRST-MIB', 'csrstSipProxySrvIpAddr'), ('CISCO-SRST-MIB', 'csrstSipProxySrvPref'), ('CISCO-SRST-MIB', 'csrstSipProxySrvMonitor'), ('CISCO-SRST-MIB', 'csrstSipProxySrvAltIpAddr'), ('CISCO-SRST-MIB', 'csrstSipDefaultPreference'), ('CISCO-SRST-MIB', 'csrstSipVoRegPoolAppl'), ('CISCO-SRST-MIB', 'csrstSipVoRegNumberListTag'), ('CISCO-SRST-MIB', 'csrstSipVoRegNumberPattern'), ('CISCO-SRST-MIB', 'csrstSipVoRegNumberPref'), ('CISCO-SRST-MIB', 'csrstSipVoRegNumberHuntstopEnabled'), ('CISCO-SRST-MIB', 'csrstSipVoRegPoolEdptTag'), ('CISCO-SRST-MIB', 'csrstSipEndpointIpAddrType'), ('CISCO-SRST-MIB', 'csrstSipEndpointIpAddress'), ('CISCO-SRST-MIB', 'csrstSipEndpointDN'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
csrst_sip_conf_group = csrstSipConfGroup.setStatus('current')
if mibBuilder.loadTexts:
csrstSipConfGroup.setDescription('A collection of objects which are used to show the current running configuration of Cisco SIP SRST feature. ')
csrst_mib_notifs_group = notification_group((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 5)).setObjects(('CISCO-SRST-MIB', 'csrstStateChange'), ('CISCO-SRST-MIB', 'csrstFailNotif'), ('CISCO-SRST-MIB', 'csrstSipPhoneUnRegThresholdExceed'), ('CISCO-SRST-MIB', 'csrstSipPhoneRegFailed'), ('CISCO-SRST-MIB', 'csrstConferenceFailed'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
csrst_mib_notifs_group = csrstMIBNotifsGroup.setStatus('current')
if mibBuilder.loadTexts:
csrstMIBNotifsGroup.setDescription('A collection of notifications for Cisco SRST or SIP SRST feature. ')
csrst_conf_group_rev1 = object_group((1, 3, 6, 1, 4, 1, 9, 9, 441, 2, 2, 6)).setObjects(('CISCO-SRST-MIB', 'csrstEnabled'), ('CISCO-SRST-MIB', 'csrstVersion'), ('CISCO-SRST-MIB', 'csrstIPAddressType'), ('CISCO-SRST-MIB', 'csrstIPAddress'), ('CISCO-SRST-MIB', 'csrstPortNumber'), ('CISCO-SRST-MIB', 'csrstMaxConferences'), ('CISCO-SRST-MIB', 'csrstMaxEphones'), ('CISCO-SRST-MIB', 'csrstMaxDN'), ('CISCO-SRST-MIB', 'csrstSipPhoneUnRegThreshold'), ('CISCO-SRST-MIB', 'csrstCallFwdNoAnswer'), ('CISCO-SRST-MIB', 'csrstCallFwdNoAnswerTo'), ('CISCO-SRST-MIB', 'csrstCallFwdBusy'), ('CISCO-SRST-MIB', 'csrstMohFilename'), ('CISCO-SRST-MIB', 'csrstMohMulticastAddrType'), ('CISCO-SRST-MIB', 'csrstMohMulticastAddr'), ('CISCO-SRST-MIB', 'csrstMohMulticastPort'), ('CISCO-SRST-MIB', 'csrstVoiceMailNumber'), ('CISCO-SRST-MIB', 'csrstSystemMessagePrimary'), ('CISCO-SRST-MIB', 'csrstSystemMessageSecondary'), ('CISCO-SRST-MIB', 'csrstScriptName'), ('CISCO-SRST-MIB', 'csrstSecondaryDialTone'), ('CISCO-SRST-MIB', 'csrstTransferSystem'), ('CISCO-SRST-MIB', 'csrstDateFormat'), ('CISCO-SRST-MIB', 'csrstTimeFormat'), ('CISCO-SRST-MIB', 'csrstInterdigitTo'), ('CISCO-SRST-MIB', 'csrstBusyTo'), ('CISCO-SRST-MIB', 'csrstAlertTo'), ('CISCO-SRST-MIB', 'csrstXlateCalledNumber'), ('CISCO-SRST-MIB', 'csrstXlateCallingNumber'), ('CISCO-SRST-MIB', 'csrstAliasTag'), ('CISCO-SRST-MIB', 'csrstAliasNumPattern'), ('CISCO-SRST-MIB', 'csrstAliasAltNumber'), ('CISCO-SRST-MIB', 'csrstAliasPreference'), ('CISCO-SRST-MIB', 'csrstAliasHuntStopEnabled'), ('CISCO-SRST-MIB', 'csrstAccessCodeType'), ('CISCO-SRST-MIB', 'csrstAccessCode'), ('CISCO-SRST-MIB', 'csrstAccessCodeDIDEnabled'), ('CISCO-SRST-MIB', 'csrstLimitDNType'), ('CISCO-SRST-MIB', 'csrstLimitDN'), ('CISCO-SRST-MIB', 'csrstNotificationEnabled'), ('CISCO-SRST-MIB', 'csrstUserLocaleInfoRev1'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
csrst_conf_group_rev1 = csrstConfGroupRev1.setStatus('current')
if mibBuilder.loadTexts:
csrstConfGroupRev1.setDescription('A collection of objects which are used to show the current running configuration of Cisco SRST feature. ')
mibBuilder.exportSymbols('CISCO-SRST-MIB', ciscoSrstMIBNotifications=ciscoSrstMIBNotifications, csrstBusyTo=csrstBusyTo, csrstXlateCalledNumber=csrstXlateCalledNumber, csrstSysNotifSeverity=csrstSysNotifSeverity, csrstConfGroupRev1=csrstConfGroupRev1, csrstSipEndpointEntry=csrstSipEndpointEntry, csrstAliasNumPattern=csrstAliasNumPattern, csrstMohMulticastPort=csrstMohMulticastPort, csrstMaxEphones=csrstMaxEphones, csrstTotalUpTime=csrstTotalUpTime, csrstMaxDN=csrstMaxDN, csrstSipVoRegNumberHuntstopEnabled=csrstSipVoRegNumberHuntstopEnabled, csrstMIBNotifsGroup=csrstMIBNotifsGroup, csrstVersion=csrstVersion, csrstSipEndpointIpAddrType=csrstSipEndpointIpAddrType, csrstSipRegSrvExpMin=csrstSipRegSrvExpMin, csrstSipVoRegNumberPref=csrstSipVoRegNumberPref, csrstLimitDNEntry=csrstLimitDNEntry, csrstAliasHuntStopEnabled=csrstAliasHuntStopEnabled, csrstTransferSystem=csrstTransferSystem, ciscoSrstMIBObjects=ciscoSrstMIBObjects, csrstEnabled=csrstEnabled, csrstAccessCodeDIDEnabled=csrstAccessCodeDIDEnabled, ciscoSrstMIBGroups=ciscoSrstMIBGroups, csrstSipPhoneUnRegThreshold=csrstSipPhoneUnRegThreshold, csrstPortNumber=csrstPortNumber, csrstCallFwdBusy=csrstCallFwdBusy, csrstGlobal=csrstGlobal, csrstActiveStatsGroup=csrstActiveStatsGroup, csrstSipPhoneUnRegThresholdExceed=csrstSipPhoneUnRegThresholdExceed, csrstIPAddressType=csrstIPAddressType, csrstAccessCodeTable=csrstAccessCodeTable, csrstSipPhoneCurrentRegistered=csrstSipPhoneCurrentRegistered, SrstOperType=SrstOperType, csrstSipVoRegPoolEntry=csrstSipVoRegPoolEntry, csrstState=csrstState, csrstNotifInfoGroup=csrstNotifInfoGroup, csrstInterdigitTo=csrstInterdigitTo, csrstAccessCodeType=csrstAccessCodeType, csrstSipEndpointIpAddress=csrstSipEndpointIpAddress, csrstIPAddress=csrstIPAddress, csrstAlertTo=csrstAlertTo, csrstSipConfGroup=csrstSipConfGroup, csrstSipConf=csrstSipConf, csrstStateChange=csrstStateChange, csrstSysNotifReason=csrstSysNotifReason, csrstSipCallLegs=csrstSipCallLegs, csrstSecondaryDialTone=csrstSecondaryDialTone, csrstSipSend300MultSupport=csrstSipSend300MultSupport, csrstSipVoRegNumberListTable=csrstSipVoRegNumberListTable, csrstSipPhoneRegFailed=csrstSipPhoneRegFailed, csrstSipVoRegPoolEdptTag=csrstSipVoRegPoolEdptTag, csrstSipEndpointTable=csrstSipEndpointTable, csrstSipProxySrvIpAddr=csrstSipProxySrvIpAddr, csrstUserLocaleInfoRev1=csrstUserLocaleInfoRev1, csrstAliasAltNumber=csrstAliasAltNumber, csrstSipVoRegPoolIpAddrType=csrstSipVoRegPoolIpAddrType, csrstAliasIndex=csrstAliasIndex, csrstSipEndpointDN=csrstSipEndpointDN, csrstSipProxySrvAltIpAddr=csrstSipProxySrvAltIpAddr, csrstSipVoRegPoolTable=csrstSipVoRegPoolTable, csrstActiveStats=csrstActiveStats, csrstConf=csrstConf, ciscoSrstMIBConformance=ciscoSrstMIBConformance, csrstVoiceMailNumber=csrstVoiceMailNumber, csrstSipProxySrvPref=csrstSipProxySrvPref, csrstSipRegSrvExpMax=csrstSipRegSrvExpMax, ciscoSrstMIBCompliances=ciscoSrstMIBCompliances, csrstDateFormat=csrstDateFormat, ciscoSrstMIBCompliance=ciscoSrstMIBCompliance, csrstSipNetMask=csrstSipNetMask, csrstConfGroup=csrstConfGroup, csrstSystemMessageSecondary=csrstSystemMessageSecondary, csrstLimitDNTable=csrstLimitDNTable, csrstSipVoRegNumberListEntry=csrstSipVoRegNumberListEntry, csrstCallFwdNoAnswer=csrstCallFwdNoAnswer, csrstAliasTable=csrstAliasTable, csrstScriptName=csrstScriptName, csrstAliasEntry=csrstAliasEntry, csrstMohMulticastAddrType=csrstMohMulticastAddrType, csrstMohFilename=csrstMohFilename, csrstSipProxySrvMonitor=csrstSipProxySrvMonitor, csrstSipVoRegNumberListIndex=csrstSipVoRegNumberListIndex, ciscoSrstMIBComplianceRev1=ciscoSrstMIBComplianceRev1, csrstMaxConferences=csrstMaxConferences, csrstLimitDNType=csrstLimitDNType, csrstSystemMessagePrimary=csrstSystemMessagePrimary, csrstSipIp2IpGlobalEnabled=csrstSipIp2IpGlobalEnabled, csrstAccessCode=csrstAccessCode, ciscoSrstMIB=ciscoSrstMIB, csrstAliasTag=csrstAliasTag, csrstConferenceFailed=csrstConferenceFailed, csrstSipEndpointTag=csrstSipEndpointTag, csrstAccessCodeEntry=csrstAccessCodeEntry, csrstXlateCallingNumber=csrstXlateCallingNumber, csrstMohMulticastAddr=csrstMohMulticastAddr, csrstSipVoRegPoolAppl=csrstSipVoRegPoolAppl, csrstSipVoRegPoolTag=csrstSipVoRegPoolTag, csrstFailNotif=csrstFailNotif, csrstAliasPreference=csrstAliasPreference, csrstSipVoRegNumberPattern=csrstSipVoRegNumberPattern, csrstLimitDN=csrstLimitDN, csrstSipNetId=csrstSipNetId, csrstSipDefaultPreference=csrstSipDefaultPreference, csrstCallFwdNoAnswerTo=csrstCallFwdNoAnswerTo, csrstUserLocaleInfo=csrstUserLocaleInfo, csrstTimeFormat=csrstTimeFormat, csrstNotificationEnabled=csrstNotificationEnabled, csrstSipVoRegNumberListTag=csrstSipVoRegNumberListTag, PYSNMP_MODULE_ID=ciscoSrstMIB) |
# bootstrap glyph icon
ICON_TYPE_GLYPH = 'glyph'
# image relative to Flask static folder
ICON_TYPE_IMAGE = 'image'
# external image
ICON_TYPE_IMAGE_URL = 'image-url'
| icon_type_glyph = 'glyph'
icon_type_image = 'image'
icon_type_image_url = 'image-url' |
array = []
while True:
line = input()
if "DEBUG" == line:
break
array += list(map(int, filter(None, line.split(" "))))
for i in range(len(array) - 6):
if array[i] == 32656 and array[i + 1] == 19759 and array[i + 2] == 32763:
n = array[i + 4]
start = i + 6
end = start + n
sequence = array[start:end]
print("".join(list(map(chr, sequence))))
| array = []
while True:
line = input()
if 'DEBUG' == line:
break
array += list(map(int, filter(None, line.split(' '))))
for i in range(len(array) - 6):
if array[i] == 32656 and array[i + 1] == 19759 and (array[i + 2] == 32763):
n = array[i + 4]
start = i + 6
end = start + n
sequence = array[start:end]
print(''.join(list(map(chr, sequence)))) |
pens_pack_price = 5.80
markers_pack_price = 7.20
whiteboard_cleaner_per_liter_price = 1.20
amount_pen_packs = int(input("Enter the amount of pen packs: "))
amount_marker_packs = int(input("Enter the amount of marker packs: "))
whiteboard_cleaner_liters = int(input("Enter the ampunt of liters of whiteboard cleaner: "))
discount = int(input("Enter the amount of discount: "))
total_price_pen_packs = amount_pen_packs * pens_pack_price
total_price_marker_packs = amount_marker_packs * markers_pack_price
total_price_whiteboard_cleaner = whiteboard_cleaner_liters * whiteboard_cleaner_per_liter_price
total_price_products = total_price_pen_packs + total_price_marker_packs + total_price_whiteboard_cleaner
total_price_with_discount = total_price_products - (total_price_products * discount / 100)
print(f"{total_price_with_discount:.2f}") | pens_pack_price = 5.8
markers_pack_price = 7.2
whiteboard_cleaner_per_liter_price = 1.2
amount_pen_packs = int(input('Enter the amount of pen packs: '))
amount_marker_packs = int(input('Enter the amount of marker packs: '))
whiteboard_cleaner_liters = int(input('Enter the ampunt of liters of whiteboard cleaner: '))
discount = int(input('Enter the amount of discount: '))
total_price_pen_packs = amount_pen_packs * pens_pack_price
total_price_marker_packs = amount_marker_packs * markers_pack_price
total_price_whiteboard_cleaner = whiteboard_cleaner_liters * whiteboard_cleaner_per_liter_price
total_price_products = total_price_pen_packs + total_price_marker_packs + total_price_whiteboard_cleaner
total_price_with_discount = total_price_products - total_price_products * discount / 100
print(f'{total_price_with_discount:.2f}') |
def configure(self):
#Add Components
compress = self.add('compress', CompressionSystem())
mission = self.add('mission', Mission())
pod = self.add('pod', Pod())
flow_limit = self.add('flow_limit', TubeLimitFlow())
tube_wall_temp = self.add('tube_wall_temp', TubeWallTemp())
#Boundary Input Connections
#Hyperloop -> Compress
self.connect('Mach_pod_max', 'compress.Mach_pod_max')
self.connect('Mach_c1_in','compress.Mach_c1_in') #Design Variable
#Hyperloop -> Mission
self.connect('tube_length', 'mission.tube_length')
self.connect('pwr_marg','mission.pwr_marg')
#Hyperloop -> Pod
#...
#Inter-component Connections
#Compress -> Mission
self.connect('compress.speed_max', 'mission.speed_max')
#Compress -> Pod
self.connect('compress.area_c1_in', 'pod.area_inlet_out')
self.connect('compress.area_inlet_in', 'pod.area_inlet_in')
#.. Add Boundary outputs...so on and so forth | def configure(self):
compress = self.add('compress', compression_system())
mission = self.add('mission', mission())
pod = self.add('pod', pod())
flow_limit = self.add('flow_limit', tube_limit_flow())
tube_wall_temp = self.add('tube_wall_temp', tube_wall_temp())
self.connect('Mach_pod_max', 'compress.Mach_pod_max')
self.connect('Mach_c1_in', 'compress.Mach_c1_in')
self.connect('tube_length', 'mission.tube_length')
self.connect('pwr_marg', 'mission.pwr_marg')
self.connect('compress.speed_max', 'mission.speed_max')
self.connect('compress.area_c1_in', 'pod.area_inlet_out')
self.connect('compress.area_inlet_in', 'pod.area_inlet_in') |
n, d = [int(i) for i in input().split()]
A = {}
C = {}
shoots = 0
def rangeD(e1, s2, e2):
tmp = min(e1, e2) - s2+1
return(tmp if tmp >= 0 else -1)
for _ in range(n):
s, e, t, num = [i for i in input().split()]
s, e, num = int(s), int(e), int(num)
shoots += (e-s+1)*num
if (t == "A"):
if num in A:
A[num] = max(A[num], e)
else:
A[num] = e
elif (t == "C"):
if num in C:
C[num] = min(C[num], s)
else:
C[num] = s
print(shoots, end = ' ')
maxVal = 0
for a in A:
for c in C:
if (a > c):
tmp = rangeD(A[a], C[c], d)
if not tmp == -1:
maxVal = max(maxVal, tmp*(a-c))
print(shoots+maxVal)
| (n, d) = [int(i) for i in input().split()]
a = {}
c = {}
shoots = 0
def range_d(e1, s2, e2):
tmp = min(e1, e2) - s2 + 1
return tmp if tmp >= 0 else -1
for _ in range(n):
(s, e, t, num) = [i for i in input().split()]
(s, e, num) = (int(s), int(e), int(num))
shoots += (e - s + 1) * num
if t == 'A':
if num in A:
A[num] = max(A[num], e)
else:
A[num] = e
elif t == 'C':
if num in C:
C[num] = min(C[num], s)
else:
C[num] = s
print(shoots, end=' ')
max_val = 0
for a in A:
for c in C:
if a > c:
tmp = range_d(A[a], C[c], d)
if not tmp == -1:
max_val = max(maxVal, tmp * (a - c))
print(shoots + maxVal) |
name = input("Please enter your name: ")
if name == 'Bob':
print("You are a part of the top 1 percent!")
elif name == 'Alice':
print("You are a part of the top 1 percent!")
else:
print("Go away filthy peasent")
| name = input('Please enter your name: ')
if name == 'Bob':
print('You are a part of the top 1 percent!')
elif name == 'Alice':
print('You are a part of the top 1 percent!')
else:
print('Go away filthy peasent') |
## Integer Type
num = 3
# type()
print(type(num)) # <class 'int'>
## Float Type
num = 3.14156
print(type(num)) # <class 'float'>
### Arithmetics operator
# Addition : 3 + 2 ==> 5
# Subtraction : 3 - 2 ==> 1
# Multiplication : 3 * 10 ==> 30
# Division : 3 / 2 ==> 1.5
# Floor Division: : 3 // 2 ==> 1
# Exponent : 2 ** 3 ==> 8
# Modulus : 3 % 2 ==> 1
print(3 + 2) # 5
print(3 - 2) # 1
print(3 * 2) # 6
print(3 / 2) # 1.5
print(3 // 2) # 1
print(3 ** 2) # 9
print(3 % 2) # 1
print(4 % 2) # 0
print(5 % 2) # 1
## abs() => return positive value
print(abs(-3)) # 3
## round(float_value)
print(round(3.75)) # 4
print(round(3.45)) # 3
## round(float_value, digit )
'''
Help on built-in function round in module builtins:
round(number, ndigits=None)
Round a number to a given precision in decimal digits.
The return value is an integer if ndigits is omitted or None. Otherwise
the return value has the same type as the number. ndigits may be negative.
'''
print(round(3.456)) # 3
print(round(3.456, 1)) # 3.5
print(round(3.456, 2)) # 3.46
print(round(3.456, 3)) # 3.456
## Comparison Operators
# Equal : 3 == 2 ==> False
# Not Equal : 3 != 2 ==> True
# Greater Than : 3 > 2 ==> True
# Less Than : 3 < 2 ==> False
# Greater or Equal : 3 >= 2 ==> True
# Less or Equal : 3 <= 2 ==> False
print(3 == 2) # False
print(3 != 2) # True
print(3 > 2) # True
print(3 < 2) # False
print(3 >= 2) # True
print(3 <= 2) # False
## Work with something look like a number but it is actually a string
num_1 = '100'
num_2 = '200'
print(num_1 + num_2) # 100200 # string_concatenate
## so we need casting
num_1 = int('100')
num_2 = int('200')
print(num_1 + num_2) # 300 | num = 3
print(type(num))
num = 3.14156
print(type(num))
print(3 + 2)
print(3 - 2)
print(3 * 2)
print(3 / 2)
print(3 // 2)
print(3 ** 2)
print(3 % 2)
print(4 % 2)
print(5 % 2)
print(abs(-3))
print(round(3.75))
print(round(3.45))
'\nHelp on built-in function round in module builtins:\n\nround(number, ndigits=None)\n Round a number to a given precision in decimal digits.\n \n The return value is an integer if ndigits is omitted or None. Otherwise\n the return value has the same type as the number. ndigits may be negative.\n'
print(round(3.456))
print(round(3.456, 1))
print(round(3.456, 2))
print(round(3.456, 3))
print(3 == 2)
print(3 != 2)
print(3 > 2)
print(3 < 2)
print(3 >= 2)
print(3 <= 2)
num_1 = '100'
num_2 = '200'
print(num_1 + num_2)
num_1 = int('100')
num_2 = int('200')
print(num_1 + num_2) |
my_list = ["a", "b", "c", "d", "e"]
item_count = len(my_list)
print(f"My list has {item_count} items:")
for i in my_list:
print(i) | my_list = ['a', 'b', 'c', 'd', 'e']
item_count = len(my_list)
print(f'My list has {item_count} items:')
for i in my_list:
print(i) |
class Solution:
def isMajorityElement(self, nums: List[int], target: int) -> bool:
'''
T: O(log n) and S: O(1)
'''
def binarySearch(nums, target, side):
index = -1
lo, hi = 0, len(nums) - 1
while lo <= hi:
mid = lo + (hi - lo) // 2
if nums[mid] == target:
index = mid
if side == 'left':
hi = mid - 1
elif side == 'right':
lo = mid + 1
else:
raise ValueError('Give correct side name: "left" or "right"')
elif nums[mid] > target:
hi = mid - 1
else:
lo = mid + 1
return index
left = binarySearch(nums, target, side='left')
right = binarySearch(nums, target, side='right')
if left == -1 or right == -1:
return False
return (right - left + 1) > len(nums) // 2
| class Solution:
def is_majority_element(self, nums: List[int], target: int) -> bool:
"""
T: O(log n) and S: O(1)
"""
def binary_search(nums, target, side):
index = -1
(lo, hi) = (0, len(nums) - 1)
while lo <= hi:
mid = lo + (hi - lo) // 2
if nums[mid] == target:
index = mid
if side == 'left':
hi = mid - 1
elif side == 'right':
lo = mid + 1
else:
raise value_error('Give correct side name: "left" or "right"')
elif nums[mid] > target:
hi = mid - 1
else:
lo = mid + 1
return index
left = binary_search(nums, target, side='left')
right = binary_search(nums, target, side='right')
if left == -1 or right == -1:
return False
return right - left + 1 > len(nums) // 2 |
class Solution:
def majorityElement(self, nums: List[int]) -> int:
result, count = nums[0], 1
for num in nums:
if result == num:
count += 1
else:
if count == 1:
result = num
else:
count -= 1
return result
| class Solution:
def majority_element(self, nums: List[int]) -> int:
(result, count) = (nums[0], 1)
for num in nums:
if result == num:
count += 1
elif count == 1:
result = num
else:
count -= 1
return result |
#
# PySNMP MIB module ENTERASYS-THREAT-NOTIFICATION-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ENTERASYS-THREAT-NOTIFICATION-MIB
# Produced by pysmi-0.3.4 at Wed May 1 13:04:45 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, SingleValueConstraint, ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "SingleValueConstraint", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint")
etsysModules, = mibBuilder.importSymbols("ENTERASYS-MIB-NAMES", "etsysModules")
InterfaceIndex, = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex")
InetAddressType, InetAddress = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressType", "InetAddress")
ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup")
ObjectIdentity, Unsigned32, Bits, NotificationType, ModuleIdentity, iso, Counter32, Counter64, MibIdentifier, IpAddress, Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "Unsigned32", "Bits", "NotificationType", "ModuleIdentity", "iso", "Counter32", "Counter64", "MibIdentifier", "IpAddress", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "TimeTicks")
MacAddress, DateAndTime, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "MacAddress", "DateAndTime", "TextualConvention", "DisplayString")
etsysThreatNotificationMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45))
etsysThreatNotificationMIB.setRevisions(('2005-09-14 13:14', '2005-02-11 15:14', '2004-07-19 17:58', '2004-03-10 15:47',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: etsysThreatNotificationMIB.setRevisionsDescriptions(('Added the etsysThreatResponseNotificationMessage notification.', 'Added the etsysThreatNotificationIncidentID object and the etsysThreatUndoNotificationMessage notification.', 'Added the etsysThreatNotificationInitiatorMacAddress object and the etsysThreatNotificationInformationMessage4 notification.', 'The initial version of this MIB module.',))
if mibBuilder.loadTexts: etsysThreatNotificationMIB.setLastUpdated('200509141314Z')
if mibBuilder.loadTexts: etsysThreatNotificationMIB.setOrganization('Enterasys Networks, Inc')
if mibBuilder.loadTexts: etsysThreatNotificationMIB.setContactInfo('Postal: Enterasys Networks 50 Minuteman Rd. Andover, MA 01810-1008 USA Phone: +1 978 684 1000 E-mail: support@enterasys.com WWW: http://www.enterasys.com')
if mibBuilder.loadTexts: etsysThreatNotificationMIB.setDescription("This MIB module defines the portion of the SNMP enterprise MIBs under Enterasys Networks' enterprise OID pertaining to the Threat Notification feature.")
etsysThreatNotificationObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1))
etsysThreatNotificationNotificationBranch = MibIdentifier((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0))
etsysThreatNotificationSystemBranch = MibIdentifier((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1))
etsysThreatNotificationSenderID = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationSenderID.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationSenderID.setDescription("A name that identifies a sender or group of senders. ie. 'Dragon IDS', ACME IDS', 'VIRUS SCAN', 'DRAGON1', 'DRAGON2'")
etsysThreatNotificationSenderName = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationSenderName.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationSenderName.setDescription('The name of the sensor that discovered the threat.')
etsysThreatNotificationThreatCategory = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationThreatCategory.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationThreatCategory.setDescription('A name that identifies a group of threat types.')
etsysThreatNotificationThreatName = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationThreatName.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationThreatName.setDescription('The name of the signature that detected the threat.')
etsysThreatNotificationDeviceAddressType = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 5), InetAddressType()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationDeviceAddressType.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationDeviceAddressType.setDescription('The address type of the device where the initiator of the threat was detected.')
etsysThreatNotificationDeviceAddress = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 6), InetAddress()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationDeviceAddress.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationDeviceAddress.setDescription('The address of the device where the initiator of the threat was detected.')
etsysThreatNotificationDeviceIfIndex = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 7), InterfaceIndex()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationDeviceIfIndex.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationDeviceIfIndex.setDescription('The interface where the initiator was detected.')
etsysThreatNotificationInitiatorAddressType = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 8), InetAddressType()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationInitiatorAddressType.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationInitiatorAddressType.setDescription('The address type of the endstation that initiated the threat.')
etsysThreatNotificationInitiatorAddress = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 9), InetAddress()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationInitiatorAddress.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationInitiatorAddress.setDescription('The address of the endstation that initiated the threat.')
etsysThreatNotificationTargetAddressType = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 10), InetAddressType()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationTargetAddressType.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationTargetAddressType.setDescription('The address type of the endstation that is threatened.')
etsysThreatNotificationTargetAddress = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 11), InetAddress()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationTargetAddress.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationTargetAddress.setDescription('The address of the endstation that is threatened.')
etsysThreatNotificationConsolidatedData = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 1024))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationConsolidatedData.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationConsolidatedData.setDescription("The purpose of this object is to support devices that can only send single varbind notification messages and should only be used in conjunction with etsysThreatNotificationInformationMessage3. The data should be encoded in the following format: object1='data' object2='data' object3='data' ... Here is an example: etsysThreatNotificationSenderID='dragon' etsysThreatNotificationSenderName='dragon' etsysThreatNotificationThreatCategory='ATTACKS' etsysThreatNotificationThreatName='HOST:APACHE:ETC-PASSWD' etsysThreatNotificationInitiatorAddress='1.1.1.1' etsysThreatNotificationTargetAddress='2.2.2.2' ")
etsysThreatNotificationInitiatorMacAddress = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 13), MacAddress()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationInitiatorMacAddress.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationInitiatorMacAddress.setDescription('The MAC address of the endstation that is threatened.')
etsysThreatNotificationIncidentID = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 14), Integer32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationIncidentID.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationIncidentID.setDescription('The incident ID of an event. Used by etsysThreatUndoNotificationMessage to undo an action.')
etsysThreatNotificationStatus = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 15), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationStatus.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationStatus.setDescription('The status of an event. Used by etsysThreatResponseNotificationMessage.')
etsysThreatNotificationDetails = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 16), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationDetails.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationDetails.setDescription('The details of an event. Used by etsysThreatResponseNotificationMessage.')
etsysThreatNotificationAction = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 17), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationAction.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationAction.setDescription('The action taken in response to an incident. Used by etsysThreatResponseNotificationMessage.')
etsysThreatNotificationRuleName = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 18), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationRuleName.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationRuleName.setDescription('The name of the rule that was applied to this incident. Used by etsysThreatResponseNotificationMessage.')
etsysThreatNotificationDateTime = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 19), DateAndTime()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationDateTime.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationDateTime.setDescription('The date and time the incident was received. Used by etsysThreatResponseNotificationMessage.')
etsysThreatNotificationLastUpdated = MibScalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 20), DateAndTime()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: etsysThreatNotificationLastUpdated.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationLastUpdated.setDescription('The date and time the event was last updated. Used by etsysThreatResponseNotificationMessage.')
etsysThreatNotificationInformationMessage1 = NotificationType((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0, 1)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationSenderID"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationSenderName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationThreatCategory"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationThreatName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationTargetAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationTargetAddress"))
if mibBuilder.loadTexts: etsysThreatNotificationInformationMessage1.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationInformationMessage1.setDescription('An etsysThreatNotificationInformationMessage1 indicates that a potential threat has been identified. This trap should be generated when the IP address of the source of the threat is known, but not the device and interface. (etsysThreatNotificationSenderName and etsysThreatNotificationTargetAddress are optional objects)')
etsysThreatNotificationInformationMessage2 = NotificationType((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0, 2)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationSenderID"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationSenderName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationThreatCategory"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationThreatName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceIfIndex"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationTargetAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationTargetAddress"))
if mibBuilder.loadTexts: etsysThreatNotificationInformationMessage2.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationInformationMessage2.setDescription('An etsysThreatNotificationInformationMessage2 indicates that a potential threat has been identified. This trap should be generated when the device and interface of the threat is known, but the IP address of the source may or may not be known. (etsysThreatNotificationSenderName, etsysThreatNotificationInitiatorAddress and etsysThreatNotificationTargetAddress are optional objects)')
etsysThreatNotificationInformationMessage3 = NotificationType((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0, 3)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationConsolidatedData"))
if mibBuilder.loadTexts: etsysThreatNotificationInformationMessage3.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationInformationMessage3.setDescription('The purpose of etsysThreatNotificationInformationMessage3 is to support devices that can only send single varbind notifications. See etsysThreatNotificationConsolidatedData for more details.')
etsysThreatNotificationInformationMessage4 = NotificationType((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0, 4)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationSenderID"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationSenderName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationThreatCategory"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationThreatName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceIfIndex"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorMacAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationTargetAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationTargetAddress"))
if mibBuilder.loadTexts: etsysThreatNotificationInformationMessage4.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationInformationMessage4.setDescription('An etsysThreatNotificationInformationMessage4 indicates that a potential threat has been identified. This trap should be generated when the device and interface of the threat is known, but the IP address of the source may or may not be known. (etsysThreatNotificationSenderName, etsysThreatNotificationInitiatorAddress and etsysThreatNotificationTargetAddress are optional objects)')
etsysThreatUndoNotificationMessage = NotificationType((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0, 5)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationIncidentID"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceIfIndex"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorMacAddress"))
if mibBuilder.loadTexts: etsysThreatUndoNotificationMessage.setStatus('current')
if mibBuilder.loadTexts: etsysThreatUndoNotificationMessage.setDescription('An etsysThreatUndoNotificationMessage indicates that a potential threat that had been identified has been resolved. When this message is received, if a user was quarantined, the action should be undone.')
etsysThreatResponseNotificationMessage = NotificationType((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0, 6)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationIncidentID"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationStatus"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDateTime"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationSenderID"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationSenderName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationThreatCategory"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationThreatName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorMacAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceIfIndex"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationRuleName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationAction"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDetails"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationLastUpdated"))
if mibBuilder.loadTexts: etsysThreatResponseNotificationMessage.setStatus('current')
if mibBuilder.loadTexts: etsysThreatResponseNotificationMessage.setDescription('An etsysThreatResponseNotificationMessage indicates that a potential threat that had been identified has been acted upon. When this message is received, a user was either quarantined, or the action was undone.')
etsysThreatNotificationConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2))
etsysThreatNotificationGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1))
etsysThreatNotificationCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 2))
etsysThreatNotificationMessage1SystemGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 1)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationSenderID"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationSenderName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationThreatCategory"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationThreatName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationTargetAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationTargetAddress"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatNotificationMessage1SystemGroup = etsysThreatNotificationMessage1SystemGroup.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationMessage1SystemGroup.setDescription('A collection of objects required for etsysThreatNotificationMessage1 providing information about possible threats on a network.')
etsysThreatNotificationMessage2SystemGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 2)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceIfIndex"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatNotificationMessage2SystemGroup = etsysThreatNotificationMessage2SystemGroup.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationMessage2SystemGroup.setDescription('A collection of objects required for etsysThreatNotificationMessage2 providing information about possible threats on a network.')
etsysThreatNotificationMessage3SystemGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 3)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationConsolidatedData"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatNotificationMessage3SystemGroup = etsysThreatNotificationMessage3SystemGroup.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationMessage3SystemGroup.setDescription('A collection of objects required for etsysThreatNotificationMessage3 providing information about possible threats on a network.')
etsysThreatNotificationMessage1Group = NotificationGroup((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 4)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInformationMessage1"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatNotificationMessage1Group = etsysThreatNotificationMessage1Group.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationMessage1Group.setDescription('A collection of notifications used to alert a management application of possible threats on a network.')
etsysThreatNotificationMessage2Group = NotificationGroup((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 5)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInformationMessage2"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatNotificationMessage2Group = etsysThreatNotificationMessage2Group.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationMessage2Group.setDescription('A collection of notifications used to alert a management application of possible threats on a network.')
etsysThreatNotificationMessage3Group = NotificationGroup((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 6)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInformationMessage3"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatNotificationMessage3Group = etsysThreatNotificationMessage3Group.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationMessage3Group.setDescription('A collection of notifications used to alert a management application of possible threats on a network.')
etsysThreatNotificationMessage4SystemGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 7)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceIfIndex"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorMacAddress"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatNotificationMessage4SystemGroup = etsysThreatNotificationMessage4SystemGroup.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationMessage4SystemGroup.setDescription('A collection of objects required for etsysThreatNotificationMessage4 providing information about possible threats on a network.')
etsysThreatNotificationMessage4Group = NotificationGroup((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 8)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInformationMessage4"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatNotificationMessage4Group = etsysThreatNotificationMessage4Group.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationMessage4Group.setDescription('A collection of notifications used to alert a management application of possible threats on a network.')
etsysThreatUndoNotificationMessageSystemGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 9)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationIncidentID"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceIfIndex"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorMacAddress"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatUndoNotificationMessageSystemGroup = etsysThreatUndoNotificationMessageSystemGroup.setStatus('current')
if mibBuilder.loadTexts: etsysThreatUndoNotificationMessageSystemGroup.setDescription('A collection of objects required for etsysThreatUndoNotificationMessage providing information about possible threats on a network.')
etsysThreatUndoNotificationMessageGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 10)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatUndoNotificationMessage"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatUndoNotificationMessageGroup = etsysThreatUndoNotificationMessageGroup.setStatus('current')
if mibBuilder.loadTexts: etsysThreatUndoNotificationMessageGroup.setDescription('A collection of notifications used to alert a management application of possible threats on a network.')
etsysThreatResponseNotificationMessageSystemGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 11)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationIncidentID"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationStatus"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDateTime"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationSenderID"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationSenderName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationThreatCategory"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationThreatName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationInitiatorMacAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddressType"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceAddress"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDeviceIfIndex"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationRuleName"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationAction"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationDetails"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationLastUpdated"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatResponseNotificationMessageSystemGroup = etsysThreatResponseNotificationMessageSystemGroup.setStatus('current')
if mibBuilder.loadTexts: etsysThreatResponseNotificationMessageSystemGroup.setDescription('A collection of objects required for etsysThreatResponseNotificationMessage providing information about possible threats on a network.')
etsysThreatResponseNotificationMessageGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 12)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatResponseNotificationMessage"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatResponseNotificationMessageGroup = etsysThreatResponseNotificationMessageGroup.setStatus('current')
if mibBuilder.loadTexts: etsysThreatResponseNotificationMessageGroup.setDescription('A collection of notifications used to alert a management application of possible threats on a network.')
etsysThreatNotificationCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 2, 1)).setObjects(("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationMessage1SystemGroup"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationMessage2SystemGroup"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationMessage3SystemGroup"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationMessage4SystemGroup"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationMessage1Group"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationMessage2Group"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationMessage3Group"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatNotificationMessage4Group"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatUndoNotificationMessageSystemGroup"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatUndoNotificationMessageGroup"), ("ENTERASYS-THREAT-NOTIFICATION-MIB", "etsysThreatResponseNotificationMessageGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsysThreatNotificationCompliance = etsysThreatNotificationCompliance.setStatus('current')
if mibBuilder.loadTexts: etsysThreatNotificationCompliance.setDescription('The compliance statement for devices that support threat notifications.')
mibBuilder.exportSymbols("ENTERASYS-THREAT-NOTIFICATION-MIB", etsysThreatNotificationInitiatorAddress=etsysThreatNotificationInitiatorAddress, etsysThreatNotificationThreatCategory=etsysThreatNotificationThreatCategory, etsysThreatNotificationDeviceAddressType=etsysThreatNotificationDeviceAddressType, etsysThreatNotificationMessage1Group=etsysThreatNotificationMessage1Group, etsysThreatNotificationInformationMessage2=etsysThreatNotificationInformationMessage2, etsysThreatNotificationStatus=etsysThreatNotificationStatus, etsysThreatNotificationDateTime=etsysThreatNotificationDateTime, etsysThreatNotificationInformationMessage3=etsysThreatNotificationInformationMessage3, etsysThreatNotificationGroups=etsysThreatNotificationGroups, etsysThreatResponseNotificationMessage=etsysThreatResponseNotificationMessage, etsysThreatNotificationConsolidatedData=etsysThreatNotificationConsolidatedData, etsysThreatNotificationMessage4Group=etsysThreatNotificationMessage4Group, etsysThreatNotificationInformationMessage1=etsysThreatNotificationInformationMessage1, etsysThreatNotificationAction=etsysThreatNotificationAction, etsysThreatNotificationSenderID=etsysThreatNotificationSenderID, etsysThreatNotificationMessage2Group=etsysThreatNotificationMessage2Group, etsysThreatUndoNotificationMessage=etsysThreatUndoNotificationMessage, etsysThreatNotificationTargetAddress=etsysThreatNotificationTargetAddress, etsysThreatNotificationDeviceAddress=etsysThreatNotificationDeviceAddress, etsysThreatNotificationRuleName=etsysThreatNotificationRuleName, etsysThreatNotificationCompliances=etsysThreatNotificationCompliances, etsysThreatNotificationMessage1SystemGroup=etsysThreatNotificationMessage1SystemGroup, etsysThreatUndoNotificationMessageSystemGroup=etsysThreatUndoNotificationMessageSystemGroup, etsysThreatNotificationSystemBranch=etsysThreatNotificationSystemBranch, etsysThreatNotificationTargetAddressType=etsysThreatNotificationTargetAddressType, etsysThreatNotificationObjects=etsysThreatNotificationObjects, etsysThreatNotificationMessage4SystemGroup=etsysThreatNotificationMessage4SystemGroup, etsysThreatNotificationCompliance=etsysThreatNotificationCompliance, etsysThreatNotificationInitiatorMacAddress=etsysThreatNotificationInitiatorMacAddress, etsysThreatResponseNotificationMessageGroup=etsysThreatResponseNotificationMessageGroup, etsysThreatNotificationSenderName=etsysThreatNotificationSenderName, etsysThreatNotificationDetails=etsysThreatNotificationDetails, etsysThreatUndoNotificationMessageGroup=etsysThreatUndoNotificationMessageGroup, etsysThreatNotificationLastUpdated=etsysThreatNotificationLastUpdated, etsysThreatNotificationNotificationBranch=etsysThreatNotificationNotificationBranch, etsysThreatNotificationDeviceIfIndex=etsysThreatNotificationDeviceIfIndex, etsysThreatNotificationMIB=etsysThreatNotificationMIB, etsysThreatNotificationMessage2SystemGroup=etsysThreatNotificationMessage2SystemGroup, etsysThreatResponseNotificationMessageSystemGroup=etsysThreatResponseNotificationMessageSystemGroup, etsysThreatNotificationMessage3SystemGroup=etsysThreatNotificationMessage3SystemGroup, etsysThreatNotificationConformance=etsysThreatNotificationConformance, etsysThreatNotificationInitiatorAddressType=etsysThreatNotificationInitiatorAddressType, etsysThreatNotificationMessage3Group=etsysThreatNotificationMessage3Group, etsysThreatNotificationInformationMessage4=etsysThreatNotificationInformationMessage4, etsysThreatNotificationIncidentID=etsysThreatNotificationIncidentID, etsysThreatNotificationThreatName=etsysThreatNotificationThreatName, PYSNMP_MODULE_ID=etsysThreatNotificationMIB)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, single_value_constraint, constraints_union, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueRangeConstraint', 'ValueSizeConstraint')
(etsys_modules,) = mibBuilder.importSymbols('ENTERASYS-MIB-NAMES', 'etsysModules')
(interface_index,) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndex')
(inet_address_type, inet_address) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressType', 'InetAddress')
(module_compliance, notification_group, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup', 'ObjectGroup')
(object_identity, unsigned32, bits, notification_type, module_identity, iso, counter32, counter64, mib_identifier, ip_address, integer32, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, time_ticks) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'Unsigned32', 'Bits', 'NotificationType', 'ModuleIdentity', 'iso', 'Counter32', 'Counter64', 'MibIdentifier', 'IpAddress', 'Integer32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'TimeTicks')
(mac_address, date_and_time, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'MacAddress', 'DateAndTime', 'TextualConvention', 'DisplayString')
etsys_threat_notification_mib = module_identity((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45))
etsysThreatNotificationMIB.setRevisions(('2005-09-14 13:14', '2005-02-11 15:14', '2004-07-19 17:58', '2004-03-10 15:47'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
etsysThreatNotificationMIB.setRevisionsDescriptions(('Added the etsysThreatResponseNotificationMessage notification.', 'Added the etsysThreatNotificationIncidentID object and the etsysThreatUndoNotificationMessage notification.', 'Added the etsysThreatNotificationInitiatorMacAddress object and the etsysThreatNotificationInformationMessage4 notification.', 'The initial version of this MIB module.'))
if mibBuilder.loadTexts:
etsysThreatNotificationMIB.setLastUpdated('200509141314Z')
if mibBuilder.loadTexts:
etsysThreatNotificationMIB.setOrganization('Enterasys Networks, Inc')
if mibBuilder.loadTexts:
etsysThreatNotificationMIB.setContactInfo('Postal: Enterasys Networks 50 Minuteman Rd. Andover, MA 01810-1008 USA Phone: +1 978 684 1000 E-mail: support@enterasys.com WWW: http://www.enterasys.com')
if mibBuilder.loadTexts:
etsysThreatNotificationMIB.setDescription("This MIB module defines the portion of the SNMP enterprise MIBs under Enterasys Networks' enterprise OID pertaining to the Threat Notification feature.")
etsys_threat_notification_objects = mib_identifier((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1))
etsys_threat_notification_notification_branch = mib_identifier((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0))
etsys_threat_notification_system_branch = mib_identifier((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1))
etsys_threat_notification_sender_id = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationSenderID.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationSenderID.setDescription("A name that identifies a sender or group of senders. ie. 'Dragon IDS', ACME IDS', 'VIRUS SCAN', 'DRAGON1', 'DRAGON2'")
etsys_threat_notification_sender_name = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationSenderName.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationSenderName.setDescription('The name of the sensor that discovered the threat.')
etsys_threat_notification_threat_category = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationThreatCategory.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationThreatCategory.setDescription('A name that identifies a group of threat types.')
etsys_threat_notification_threat_name = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationThreatName.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationThreatName.setDescription('The name of the signature that detected the threat.')
etsys_threat_notification_device_address_type = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 5), inet_address_type()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationDeviceAddressType.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationDeviceAddressType.setDescription('The address type of the device where the initiator of the threat was detected.')
etsys_threat_notification_device_address = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 6), inet_address()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationDeviceAddress.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationDeviceAddress.setDescription('The address of the device where the initiator of the threat was detected.')
etsys_threat_notification_device_if_index = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 7), interface_index()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationDeviceIfIndex.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationDeviceIfIndex.setDescription('The interface where the initiator was detected.')
etsys_threat_notification_initiator_address_type = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 8), inet_address_type()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationInitiatorAddressType.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationInitiatorAddressType.setDescription('The address type of the endstation that initiated the threat.')
etsys_threat_notification_initiator_address = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 9), inet_address()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationInitiatorAddress.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationInitiatorAddress.setDescription('The address of the endstation that initiated the threat.')
etsys_threat_notification_target_address_type = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 10), inet_address_type()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationTargetAddressType.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationTargetAddressType.setDescription('The address type of the endstation that is threatened.')
etsys_threat_notification_target_address = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 11), inet_address()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationTargetAddress.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationTargetAddress.setDescription('The address of the endstation that is threatened.')
etsys_threat_notification_consolidated_data = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 1024))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationConsolidatedData.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationConsolidatedData.setDescription("The purpose of this object is to support devices that can only send single varbind notification messages and should only be used in conjunction with etsysThreatNotificationInformationMessage3. The data should be encoded in the following format: object1='data' object2='data' object3='data' ... Here is an example: etsysThreatNotificationSenderID='dragon' etsysThreatNotificationSenderName='dragon' etsysThreatNotificationThreatCategory='ATTACKS' etsysThreatNotificationThreatName='HOST:APACHE:ETC-PASSWD' etsysThreatNotificationInitiatorAddress='1.1.1.1' etsysThreatNotificationTargetAddress='2.2.2.2' ")
etsys_threat_notification_initiator_mac_address = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 13), mac_address()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationInitiatorMacAddress.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationInitiatorMacAddress.setDescription('The MAC address of the endstation that is threatened.')
etsys_threat_notification_incident_id = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 14), integer32()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationIncidentID.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationIncidentID.setDescription('The incident ID of an event. Used by etsysThreatUndoNotificationMessage to undo an action.')
etsys_threat_notification_status = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 15), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationStatus.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationStatus.setDescription('The status of an event. Used by etsysThreatResponseNotificationMessage.')
etsys_threat_notification_details = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 16), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationDetails.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationDetails.setDescription('The details of an event. Used by etsysThreatResponseNotificationMessage.')
etsys_threat_notification_action = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 17), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationAction.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationAction.setDescription('The action taken in response to an incident. Used by etsysThreatResponseNotificationMessage.')
etsys_threat_notification_rule_name = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 18), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationRuleName.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationRuleName.setDescription('The name of the rule that was applied to this incident. Used by etsysThreatResponseNotificationMessage.')
etsys_threat_notification_date_time = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 19), date_and_time()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationDateTime.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationDateTime.setDescription('The date and time the incident was received. Used by etsysThreatResponseNotificationMessage.')
etsys_threat_notification_last_updated = mib_scalar((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 1, 20), date_and_time()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
etsysThreatNotificationLastUpdated.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationLastUpdated.setDescription('The date and time the event was last updated. Used by etsysThreatResponseNotificationMessage.')
etsys_threat_notification_information_message1 = notification_type((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0, 1)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationSenderID'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationSenderName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationThreatCategory'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationThreatName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationTargetAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationTargetAddress'))
if mibBuilder.loadTexts:
etsysThreatNotificationInformationMessage1.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationInformationMessage1.setDescription('An etsysThreatNotificationInformationMessage1 indicates that a potential threat has been identified. This trap should be generated when the IP address of the source of the threat is known, but not the device and interface. (etsysThreatNotificationSenderName and etsysThreatNotificationTargetAddress are optional objects)')
etsys_threat_notification_information_message2 = notification_type((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0, 2)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationSenderID'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationSenderName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationThreatCategory'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationThreatName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceIfIndex'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationTargetAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationTargetAddress'))
if mibBuilder.loadTexts:
etsysThreatNotificationInformationMessage2.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationInformationMessage2.setDescription('An etsysThreatNotificationInformationMessage2 indicates that a potential threat has been identified. This trap should be generated when the device and interface of the threat is known, but the IP address of the source may or may not be known. (etsysThreatNotificationSenderName, etsysThreatNotificationInitiatorAddress and etsysThreatNotificationTargetAddress are optional objects)')
etsys_threat_notification_information_message3 = notification_type((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0, 3)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationConsolidatedData'))
if mibBuilder.loadTexts:
etsysThreatNotificationInformationMessage3.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationInformationMessage3.setDescription('The purpose of etsysThreatNotificationInformationMessage3 is to support devices that can only send single varbind notifications. See etsysThreatNotificationConsolidatedData for more details.')
etsys_threat_notification_information_message4 = notification_type((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0, 4)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationSenderID'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationSenderName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationThreatCategory'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationThreatName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceIfIndex'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorMacAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationTargetAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationTargetAddress'))
if mibBuilder.loadTexts:
etsysThreatNotificationInformationMessage4.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationInformationMessage4.setDescription('An etsysThreatNotificationInformationMessage4 indicates that a potential threat has been identified. This trap should be generated when the device and interface of the threat is known, but the IP address of the source may or may not be known. (etsysThreatNotificationSenderName, etsysThreatNotificationInitiatorAddress and etsysThreatNotificationTargetAddress are optional objects)')
etsys_threat_undo_notification_message = notification_type((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0, 5)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationIncidentID'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceIfIndex'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorMacAddress'))
if mibBuilder.loadTexts:
etsysThreatUndoNotificationMessage.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatUndoNotificationMessage.setDescription('An etsysThreatUndoNotificationMessage indicates that a potential threat that had been identified has been resolved. When this message is received, if a user was quarantined, the action should be undone.')
etsys_threat_response_notification_message = notification_type((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 1, 0, 6)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationIncidentID'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationStatus'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDateTime'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationSenderID'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationSenderName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationThreatCategory'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationThreatName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorMacAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceIfIndex'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationRuleName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationAction'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDetails'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationLastUpdated'))
if mibBuilder.loadTexts:
etsysThreatResponseNotificationMessage.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatResponseNotificationMessage.setDescription('An etsysThreatResponseNotificationMessage indicates that a potential threat that had been identified has been acted upon. When this message is received, a user was either quarantined, or the action was undone.')
etsys_threat_notification_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2))
etsys_threat_notification_groups = mib_identifier((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1))
etsys_threat_notification_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 2))
etsys_threat_notification_message1_system_group = object_group((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 1)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationSenderID'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationSenderName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationThreatCategory'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationThreatName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationTargetAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationTargetAddress'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_notification_message1_system_group = etsysThreatNotificationMessage1SystemGroup.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationMessage1SystemGroup.setDescription('A collection of objects required for etsysThreatNotificationMessage1 providing information about possible threats on a network.')
etsys_threat_notification_message2_system_group = object_group((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 2)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceIfIndex'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_notification_message2_system_group = etsysThreatNotificationMessage2SystemGroup.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationMessage2SystemGroup.setDescription('A collection of objects required for etsysThreatNotificationMessage2 providing information about possible threats on a network.')
etsys_threat_notification_message3_system_group = object_group((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 3)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationConsolidatedData'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_notification_message3_system_group = etsysThreatNotificationMessage3SystemGroup.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationMessage3SystemGroup.setDescription('A collection of objects required for etsysThreatNotificationMessage3 providing information about possible threats on a network.')
etsys_threat_notification_message1_group = notification_group((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 4)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInformationMessage1'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_notification_message1_group = etsysThreatNotificationMessage1Group.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationMessage1Group.setDescription('A collection of notifications used to alert a management application of possible threats on a network.')
etsys_threat_notification_message2_group = notification_group((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 5)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInformationMessage2'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_notification_message2_group = etsysThreatNotificationMessage2Group.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationMessage2Group.setDescription('A collection of notifications used to alert a management application of possible threats on a network.')
etsys_threat_notification_message3_group = notification_group((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 6)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInformationMessage3'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_notification_message3_group = etsysThreatNotificationMessage3Group.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationMessage3Group.setDescription('A collection of notifications used to alert a management application of possible threats on a network.')
etsys_threat_notification_message4_system_group = object_group((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 7)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceIfIndex'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorMacAddress'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_notification_message4_system_group = etsysThreatNotificationMessage4SystemGroup.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationMessage4SystemGroup.setDescription('A collection of objects required for etsysThreatNotificationMessage4 providing information about possible threats on a network.')
etsys_threat_notification_message4_group = notification_group((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 8)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInformationMessage4'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_notification_message4_group = etsysThreatNotificationMessage4Group.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationMessage4Group.setDescription('A collection of notifications used to alert a management application of possible threats on a network.')
etsys_threat_undo_notification_message_system_group = object_group((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 9)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationIncidentID'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceIfIndex'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorMacAddress'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_undo_notification_message_system_group = etsysThreatUndoNotificationMessageSystemGroup.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatUndoNotificationMessageSystemGroup.setDescription('A collection of objects required for etsysThreatUndoNotificationMessage providing information about possible threats on a network.')
etsys_threat_undo_notification_message_group = notification_group((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 10)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatUndoNotificationMessage'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_undo_notification_message_group = etsysThreatUndoNotificationMessageGroup.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatUndoNotificationMessageGroup.setDescription('A collection of notifications used to alert a management application of possible threats on a network.')
etsys_threat_response_notification_message_system_group = object_group((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 11)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationIncidentID'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationStatus'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDateTime'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationSenderID'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationSenderName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationThreatCategory'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationThreatName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationInitiatorMacAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddressType'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceAddress'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDeviceIfIndex'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationRuleName'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationAction'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationDetails'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationLastUpdated'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_response_notification_message_system_group = etsysThreatResponseNotificationMessageSystemGroup.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatResponseNotificationMessageSystemGroup.setDescription('A collection of objects required for etsysThreatResponseNotificationMessage providing information about possible threats on a network.')
etsys_threat_response_notification_message_group = notification_group((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 1, 12)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatResponseNotificationMessage'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_response_notification_message_group = etsysThreatResponseNotificationMessageGroup.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatResponseNotificationMessageGroup.setDescription('A collection of notifications used to alert a management application of possible threats on a network.')
etsys_threat_notification_compliance = module_compliance((1, 3, 6, 1, 4, 1, 5624, 1, 2, 45, 2, 2, 1)).setObjects(('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationMessage1SystemGroup'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationMessage2SystemGroup'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationMessage3SystemGroup'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationMessage4SystemGroup'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationMessage1Group'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationMessage2Group'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationMessage3Group'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatNotificationMessage4Group'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatUndoNotificationMessageSystemGroup'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatUndoNotificationMessageGroup'), ('ENTERASYS-THREAT-NOTIFICATION-MIB', 'etsysThreatResponseNotificationMessageGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
etsys_threat_notification_compliance = etsysThreatNotificationCompliance.setStatus('current')
if mibBuilder.loadTexts:
etsysThreatNotificationCompliance.setDescription('The compliance statement for devices that support threat notifications.')
mibBuilder.exportSymbols('ENTERASYS-THREAT-NOTIFICATION-MIB', etsysThreatNotificationInitiatorAddress=etsysThreatNotificationInitiatorAddress, etsysThreatNotificationThreatCategory=etsysThreatNotificationThreatCategory, etsysThreatNotificationDeviceAddressType=etsysThreatNotificationDeviceAddressType, etsysThreatNotificationMessage1Group=etsysThreatNotificationMessage1Group, etsysThreatNotificationInformationMessage2=etsysThreatNotificationInformationMessage2, etsysThreatNotificationStatus=etsysThreatNotificationStatus, etsysThreatNotificationDateTime=etsysThreatNotificationDateTime, etsysThreatNotificationInformationMessage3=etsysThreatNotificationInformationMessage3, etsysThreatNotificationGroups=etsysThreatNotificationGroups, etsysThreatResponseNotificationMessage=etsysThreatResponseNotificationMessage, etsysThreatNotificationConsolidatedData=etsysThreatNotificationConsolidatedData, etsysThreatNotificationMessage4Group=etsysThreatNotificationMessage4Group, etsysThreatNotificationInformationMessage1=etsysThreatNotificationInformationMessage1, etsysThreatNotificationAction=etsysThreatNotificationAction, etsysThreatNotificationSenderID=etsysThreatNotificationSenderID, etsysThreatNotificationMessage2Group=etsysThreatNotificationMessage2Group, etsysThreatUndoNotificationMessage=etsysThreatUndoNotificationMessage, etsysThreatNotificationTargetAddress=etsysThreatNotificationTargetAddress, etsysThreatNotificationDeviceAddress=etsysThreatNotificationDeviceAddress, etsysThreatNotificationRuleName=etsysThreatNotificationRuleName, etsysThreatNotificationCompliances=etsysThreatNotificationCompliances, etsysThreatNotificationMessage1SystemGroup=etsysThreatNotificationMessage1SystemGroup, etsysThreatUndoNotificationMessageSystemGroup=etsysThreatUndoNotificationMessageSystemGroup, etsysThreatNotificationSystemBranch=etsysThreatNotificationSystemBranch, etsysThreatNotificationTargetAddressType=etsysThreatNotificationTargetAddressType, etsysThreatNotificationObjects=etsysThreatNotificationObjects, etsysThreatNotificationMessage4SystemGroup=etsysThreatNotificationMessage4SystemGroup, etsysThreatNotificationCompliance=etsysThreatNotificationCompliance, etsysThreatNotificationInitiatorMacAddress=etsysThreatNotificationInitiatorMacAddress, etsysThreatResponseNotificationMessageGroup=etsysThreatResponseNotificationMessageGroup, etsysThreatNotificationSenderName=etsysThreatNotificationSenderName, etsysThreatNotificationDetails=etsysThreatNotificationDetails, etsysThreatUndoNotificationMessageGroup=etsysThreatUndoNotificationMessageGroup, etsysThreatNotificationLastUpdated=etsysThreatNotificationLastUpdated, etsysThreatNotificationNotificationBranch=etsysThreatNotificationNotificationBranch, etsysThreatNotificationDeviceIfIndex=etsysThreatNotificationDeviceIfIndex, etsysThreatNotificationMIB=etsysThreatNotificationMIB, etsysThreatNotificationMessage2SystemGroup=etsysThreatNotificationMessage2SystemGroup, etsysThreatResponseNotificationMessageSystemGroup=etsysThreatResponseNotificationMessageSystemGroup, etsysThreatNotificationMessage3SystemGroup=etsysThreatNotificationMessage3SystemGroup, etsysThreatNotificationConformance=etsysThreatNotificationConformance, etsysThreatNotificationInitiatorAddressType=etsysThreatNotificationInitiatorAddressType, etsysThreatNotificationMessage3Group=etsysThreatNotificationMessage3Group, etsysThreatNotificationInformationMessage4=etsysThreatNotificationInformationMessage4, etsysThreatNotificationIncidentID=etsysThreatNotificationIncidentID, etsysThreatNotificationThreatName=etsysThreatNotificationThreatName, PYSNMP_MODULE_ID=etsysThreatNotificationMIB) |
def quick_sort(items):
if len(items) > 1:
pivot_index = 0
smaller_items = []
larger_items = []
for i, val in enumerate(items):
if i != pivot_index:
if val < items[pivot_index]:
smaller_items.append(val)
else:
larger_items.append(val)
quick_sort(smaller_items)
quick_sort(larger_items)
items[:] = (smaller_items+
[items[pivot_index]]+larger_items)
def f(n): #quick_sort sort worst case
quick_sort(range(n,0,-1)) | def quick_sort(items):
if len(items) > 1:
pivot_index = 0
smaller_items = []
larger_items = []
for (i, val) in enumerate(items):
if i != pivot_index:
if val < items[pivot_index]:
smaller_items.append(val)
else:
larger_items.append(val)
quick_sort(smaller_items)
quick_sort(larger_items)
items[:] = smaller_items + [items[pivot_index]] + larger_items
def f(n):
quick_sort(range(n, 0, -1)) |
'''
#params: 9104483
[1] train-result=0.4161, valid-result=0.4865 [62.0 s]
[2] train-result=0.5830, valid-result=0.5648 [67.0 s]
[3] train-result=0.6017, valid-result=0.5805 [67.7 s]
[4] train-result=0.6100, valid-result=0.5874 [73.3 s]
[5] train-result=0.6135, valid-result=0.5911 [66.8 s]
[6] train-result=0.6151, valid-result=0.5925 [75.0 s]
[7] train-result=0.6159, valid-result=0.5928 [61.3 s]
[8] train-result=0.6182, valid-result=0.5936 [54.1 s]
[9] train-result=0.6205, valid-result=0.5954 [57.8 s]
[10] train-result=0.6244, valid-result=0.5982 [53.6 s]
[11] train-result=0.6288, valid-result=0.6014 [57.9 s]
[12] train-result=0.6337, valid-result=0.6048 [59.7 s]
[13] train-result=0.6388, valid-result=0.6080 [60.6 s]
[14] train-result=0.6424, valid-result=0.6103 [62.0 s]
[15] train-result=0.6502, valid-result=0.6152 [60.1 s]
loss_type: mse
#params: 9104483
[1] train-result=0.4295, valid-result=0.4837 [69.2 s]
[2] train-result=0.5957, valid-result=0.5753 [59.7 s]
[3] train-result=0.6080, valid-result=0.5857 [67.5 s]
[4] train-result=0.6119, valid-result=0.5884 [58.9 s]
[5] train-result=0.6130, valid-result=0.5891 [59.7 s]
[6] train-result=0.6145, valid-result=0.5900 [55.2 s]
[7] train-result=0.6149, valid-result=0.5900 [57.1 s]
[8] train-result=0.6162, valid-result=0.5910 [55.3 s]
[9] train-result=0.6181, valid-result=0.5926 [57.5 s]
[10] train-result=0.6222, valid-result=0.5956 [56.6 s]
[11] train-result=0.6266, valid-result=0.5983 [54.8 s]
[12] train-result=0.6333, valid-result=0.6030 [56.9 s]
[13] train-result=0.6371, valid-result=0.6060 [59.3 s]
[14] train-result=0.6465, valid-result=0.6114 [55.2 s]
[15] train-result=0.6542, valid-result=0.6164 [72.1 s]
loss_type: mse
#params: 9104483
[1] train-result=0.4421, valid-result=0.4958 [64.7 s]
[2] train-result=0.5886, valid-result=0.5707 [62.8 s]
[3] train-result=0.6054, valid-result=0.5848 [55.7 s]
[4] train-result=0.6114, valid-result=0.5894 [58.7 s]
[5] train-result=0.6131, valid-result=0.5905 [54.4 s]
[6] train-result=0.6140, valid-result=0.5909 [55.4 s]
[7] train-result=0.6146, valid-result=0.5910 [55.6 s]
[8] train-result=0.6153, valid-result=0.5916 [56.9 s]
[9] train-result=0.6166, valid-result=0.5922 [55.2 s]
[10] train-result=0.6175, valid-result=0.5931 [55.2 s]
[11] train-result=0.6203, valid-result=0.5948 [56.5 s]
[12] train-result=0.6239, valid-result=0.5973 [55.6 s]
[13] train-result=0.6280, valid-result=0.5996 [55.3 s]
[14] train-result=0.6347, valid-result=0.6039 [56.7 s]
[15] train-result=0.6400, valid-result=0.6069 [60.3 s]
DeepFM: 0.61286 (0.00420)
loss_type: mse
#params: 9104451
[1] train-result=0.5965, valid-result=0.5804 [40.9 s]
[2] train-result=0.6099, valid-result=0.5899 [52.4 s]
[3] train-result=0.6127, valid-result=0.5910 [43.3 s]
[4] train-result=0.6138, valid-result=0.5915 [40.9 s]
[5] train-result=0.6145, valid-result=0.5917 [43.3 s]
[6] train-result=0.6152, valid-result=0.5923 [39.4 s]
[7] train-result=0.6164, valid-result=0.5932 [39.3 s]
[8] train-result=0.6172, valid-result=0.5937 [40.5 s]
[9] train-result=0.6183, valid-result=0.5943 [41.3 s]
[10] train-result=0.6196, valid-result=0.5950 [39.7 s]
[11] train-result=0.6211, valid-result=0.5963 [40.1 s]
[12] train-result=0.6237, valid-result=0.5984 [41.4 s]
[13] train-result=0.6266, valid-result=0.6000 [39.6 s]
[14] train-result=0.6291, valid-result=0.6018 [41.3 s]
[15] train-result=0.6340, valid-result=0.6048 [44.0 s]
loss_type: mse
#params: 9104451
[1] train-result=0.5979, valid-result=0.5790 [40.4 s]
[2] train-result=0.6105, valid-result=0.5883 [40.8 s]
[3] train-result=0.6131, valid-result=0.5899 [44.7 s]
[4] train-result=0.6144, valid-result=0.5904 [45.9 s]
[5] train-result=0.6154, valid-result=0.5910 [40.0 s]
[6] train-result=0.6155, valid-result=0.5914 [45.2 s]
[7] train-result=0.6159, valid-result=0.5914 [41.0 s]
[8] train-result=0.6164, valid-result=0.5917 [40.3 s]
[9] train-result=0.6173, valid-result=0.5924 [40.3 s]
[10] train-result=0.6178, valid-result=0.5926 [42.8 s]
[11] train-result=0.6191, valid-result=0.5939 [40.3 s]
[12] train-result=0.6207, valid-result=0.5948 [40.7 s]
[13] train-result=0.6226, valid-result=0.5959 [42.1 s]
[14] train-result=0.6248, valid-result=0.5973 [41.3 s]
[15] train-result=0.6285, valid-result=0.5995 [40.2 s]
loss_type: mse
#params: 9104451
[1] train-result=0.5973, valid-result=0.5806 [42.2 s]
[2] train-result=0.6105, valid-result=0.5897 [40.4 s]
[3] train-result=0.6128, valid-result=0.5907 [40.5 s]
[4] train-result=0.6135, valid-result=0.5910 [44.8 s]
[5] train-result=0.6145, valid-result=0.5915 [55.9 s]
[6] train-result=0.6153, valid-result=0.5915 [52.3 s]
[7] train-result=0.6157, valid-result=0.5920 [61.5 s]
[8] train-result=0.6168, valid-result=0.5927 [43.7 s]
[9] train-result=0.6175, valid-result=0.5934 [40.2 s]
[10] train-result=0.6178, valid-result=0.5934 [42.0 s]
[11] train-result=0.6193, valid-result=0.5946 [39.6 s]
[12] train-result=0.6208, valid-result=0.5957 [39.6 s]
[13] train-result=0.6221, valid-result=0.5968 [47.1 s]
[14] train-result=0.6243, valid-result=0.5981 [43.0 s]
[15] train-result=0.6267, valid-result=0.5997 [39.6 s]
FM: 0.60133 (0.00242)
loss_type: mse
#params: 9104425
[1] train-result=0.1648, valid-result=0.1745 [57.5 s]
[2] train-result=0.4155, valid-result=0.4452 [59.1 s]
[3] train-result=0.4935, valid-result=0.4979 [65.0 s]
[4] train-result=0.5237, valid-result=0.5180 [52.8 s]
[5] train-result=0.5327, valid-result=0.5296 [50.7 s]
[6] train-result=0.5493, valid-result=0.5416 [60.6 s]
[7] train-result=0.5597, valid-result=0.5475 [52.9 s]
[8] train-result=0.5666, valid-result=0.5524 [62.7 s]
[9] train-result=0.5747, valid-result=0.5564 [102.9 s]
[10] train-result=0.5836, valid-result=0.5637 [69.1 s]
[11] train-result=0.5908, valid-result=0.5681 [55.8 s]
[12] train-result=0.5961, valid-result=0.5709 [53.2 s]
[13] train-result=0.5980, valid-result=0.5725 [63.2 s]
[14] train-result=0.6051, valid-result=0.5776 [50.6 s]
[15] train-result=0.6061, valid-result=0.5790 [52.0 s]
loss_type: mse
#params: 9104425
[1] train-result=0.0640, valid-result=0.1002 [56.9 s]
[2] train-result=0.2638, valid-result=0.2888 [57.5 s]
[3] train-result=0.3377, valid-result=0.3526 [53.8 s]
[4] train-result=0.3828, valid-result=0.3819 [63.9 s]
[5] train-result=0.3974, valid-result=0.3974 [53.9 s]
[6] train-result=0.4353, valid-result=0.4229 [54.9 s]
[7] train-result=0.4431, valid-result=0.4328 [59.3 s]
[8] train-result=0.4642, valid-result=0.4464 [54.6 s]
[9] train-result=0.4857, valid-result=0.4684 [83.4 s]
[10] train-result=0.4965, valid-result=0.4776 [60.9 s]
[11] train-result=0.5191, valid-result=0.4969 [57.4 s]
[12] train-result=0.5353, valid-result=0.5143 [54.1 s]
[13] train-result=0.5505, valid-result=0.5262 [52.7 s]
[14] train-result=0.5683, valid-result=0.5394 [54.1 s]
[15] train-result=0.5769, valid-result=0.5476 [51.4 s]
loss_type: mse
#params: 9104425
[1] train-result=0.1098, valid-result=0.1489 [53.3 s]
[2] train-result=0.3042, valid-result=0.3648 [59.7 s]
[3] train-result=0.3580, valid-result=0.3976 [56.5 s]
[4] train-result=0.3922, valid-result=0.4159 [52.9 s]
[5] train-result=0.4178, valid-result=0.4300 [59.8 s]
[6] train-result=0.4278, valid-result=0.4370 [51.2 s]
[7] train-result=0.4512, valid-result=0.4546 [51.2 s]
[8] train-result=0.4678, valid-result=0.4655 [53.1 s]
[9] train-result=0.4870, valid-result=0.4765 [50.5 s]
[10] train-result=0.5119, valid-result=0.4918 [51.5 s]
[11] train-result=0.5314, valid-result=0.5102 [52.9 s]
[12] train-result=0.5468, valid-result=0.5204 [50.8 s]
[13] train-result=0.5627, valid-result=0.5342 [53.7 s]
[14] train-result=0.5693, valid-result=0.5408 [50.7 s]
[15] train-result=0.5882, valid-result=0.5570 [54.7 s]
DNN: 0.56009 (0.01382)
''' | """
#params: 9104483
[1] train-result=0.4161, valid-result=0.4865 [62.0 s]
[2] train-result=0.5830, valid-result=0.5648 [67.0 s]
[3] train-result=0.6017, valid-result=0.5805 [67.7 s]
[4] train-result=0.6100, valid-result=0.5874 [73.3 s]
[5] train-result=0.6135, valid-result=0.5911 [66.8 s]
[6] train-result=0.6151, valid-result=0.5925 [75.0 s]
[7] train-result=0.6159, valid-result=0.5928 [61.3 s]
[8] train-result=0.6182, valid-result=0.5936 [54.1 s]
[9] train-result=0.6205, valid-result=0.5954 [57.8 s]
[10] train-result=0.6244, valid-result=0.5982 [53.6 s]
[11] train-result=0.6288, valid-result=0.6014 [57.9 s]
[12] train-result=0.6337, valid-result=0.6048 [59.7 s]
[13] train-result=0.6388, valid-result=0.6080 [60.6 s]
[14] train-result=0.6424, valid-result=0.6103 [62.0 s]
[15] train-result=0.6502, valid-result=0.6152 [60.1 s]
loss_type: mse
#params: 9104483
[1] train-result=0.4295, valid-result=0.4837 [69.2 s]
[2] train-result=0.5957, valid-result=0.5753 [59.7 s]
[3] train-result=0.6080, valid-result=0.5857 [67.5 s]
[4] train-result=0.6119, valid-result=0.5884 [58.9 s]
[5] train-result=0.6130, valid-result=0.5891 [59.7 s]
[6] train-result=0.6145, valid-result=0.5900 [55.2 s]
[7] train-result=0.6149, valid-result=0.5900 [57.1 s]
[8] train-result=0.6162, valid-result=0.5910 [55.3 s]
[9] train-result=0.6181, valid-result=0.5926 [57.5 s]
[10] train-result=0.6222, valid-result=0.5956 [56.6 s]
[11] train-result=0.6266, valid-result=0.5983 [54.8 s]
[12] train-result=0.6333, valid-result=0.6030 [56.9 s]
[13] train-result=0.6371, valid-result=0.6060 [59.3 s]
[14] train-result=0.6465, valid-result=0.6114 [55.2 s]
[15] train-result=0.6542, valid-result=0.6164 [72.1 s]
loss_type: mse
#params: 9104483
[1] train-result=0.4421, valid-result=0.4958 [64.7 s]
[2] train-result=0.5886, valid-result=0.5707 [62.8 s]
[3] train-result=0.6054, valid-result=0.5848 [55.7 s]
[4] train-result=0.6114, valid-result=0.5894 [58.7 s]
[5] train-result=0.6131, valid-result=0.5905 [54.4 s]
[6] train-result=0.6140, valid-result=0.5909 [55.4 s]
[7] train-result=0.6146, valid-result=0.5910 [55.6 s]
[8] train-result=0.6153, valid-result=0.5916 [56.9 s]
[9] train-result=0.6166, valid-result=0.5922 [55.2 s]
[10] train-result=0.6175, valid-result=0.5931 [55.2 s]
[11] train-result=0.6203, valid-result=0.5948 [56.5 s]
[12] train-result=0.6239, valid-result=0.5973 [55.6 s]
[13] train-result=0.6280, valid-result=0.5996 [55.3 s]
[14] train-result=0.6347, valid-result=0.6039 [56.7 s]
[15] train-result=0.6400, valid-result=0.6069 [60.3 s]
DeepFM: 0.61286 (0.00420)
loss_type: mse
#params: 9104451
[1] train-result=0.5965, valid-result=0.5804 [40.9 s]
[2] train-result=0.6099, valid-result=0.5899 [52.4 s]
[3] train-result=0.6127, valid-result=0.5910 [43.3 s]
[4] train-result=0.6138, valid-result=0.5915 [40.9 s]
[5] train-result=0.6145, valid-result=0.5917 [43.3 s]
[6] train-result=0.6152, valid-result=0.5923 [39.4 s]
[7] train-result=0.6164, valid-result=0.5932 [39.3 s]
[8] train-result=0.6172, valid-result=0.5937 [40.5 s]
[9] train-result=0.6183, valid-result=0.5943 [41.3 s]
[10] train-result=0.6196, valid-result=0.5950 [39.7 s]
[11] train-result=0.6211, valid-result=0.5963 [40.1 s]
[12] train-result=0.6237, valid-result=0.5984 [41.4 s]
[13] train-result=0.6266, valid-result=0.6000 [39.6 s]
[14] train-result=0.6291, valid-result=0.6018 [41.3 s]
[15] train-result=0.6340, valid-result=0.6048 [44.0 s]
loss_type: mse
#params: 9104451
[1] train-result=0.5979, valid-result=0.5790 [40.4 s]
[2] train-result=0.6105, valid-result=0.5883 [40.8 s]
[3] train-result=0.6131, valid-result=0.5899 [44.7 s]
[4] train-result=0.6144, valid-result=0.5904 [45.9 s]
[5] train-result=0.6154, valid-result=0.5910 [40.0 s]
[6] train-result=0.6155, valid-result=0.5914 [45.2 s]
[7] train-result=0.6159, valid-result=0.5914 [41.0 s]
[8] train-result=0.6164, valid-result=0.5917 [40.3 s]
[9] train-result=0.6173, valid-result=0.5924 [40.3 s]
[10] train-result=0.6178, valid-result=0.5926 [42.8 s]
[11] train-result=0.6191, valid-result=0.5939 [40.3 s]
[12] train-result=0.6207, valid-result=0.5948 [40.7 s]
[13] train-result=0.6226, valid-result=0.5959 [42.1 s]
[14] train-result=0.6248, valid-result=0.5973 [41.3 s]
[15] train-result=0.6285, valid-result=0.5995 [40.2 s]
loss_type: mse
#params: 9104451
[1] train-result=0.5973, valid-result=0.5806 [42.2 s]
[2] train-result=0.6105, valid-result=0.5897 [40.4 s]
[3] train-result=0.6128, valid-result=0.5907 [40.5 s]
[4] train-result=0.6135, valid-result=0.5910 [44.8 s]
[5] train-result=0.6145, valid-result=0.5915 [55.9 s]
[6] train-result=0.6153, valid-result=0.5915 [52.3 s]
[7] train-result=0.6157, valid-result=0.5920 [61.5 s]
[8] train-result=0.6168, valid-result=0.5927 [43.7 s]
[9] train-result=0.6175, valid-result=0.5934 [40.2 s]
[10] train-result=0.6178, valid-result=0.5934 [42.0 s]
[11] train-result=0.6193, valid-result=0.5946 [39.6 s]
[12] train-result=0.6208, valid-result=0.5957 [39.6 s]
[13] train-result=0.6221, valid-result=0.5968 [47.1 s]
[14] train-result=0.6243, valid-result=0.5981 [43.0 s]
[15] train-result=0.6267, valid-result=0.5997 [39.6 s]
FM: 0.60133 (0.00242)
loss_type: mse
#params: 9104425
[1] train-result=0.1648, valid-result=0.1745 [57.5 s]
[2] train-result=0.4155, valid-result=0.4452 [59.1 s]
[3] train-result=0.4935, valid-result=0.4979 [65.0 s]
[4] train-result=0.5237, valid-result=0.5180 [52.8 s]
[5] train-result=0.5327, valid-result=0.5296 [50.7 s]
[6] train-result=0.5493, valid-result=0.5416 [60.6 s]
[7] train-result=0.5597, valid-result=0.5475 [52.9 s]
[8] train-result=0.5666, valid-result=0.5524 [62.7 s]
[9] train-result=0.5747, valid-result=0.5564 [102.9 s]
[10] train-result=0.5836, valid-result=0.5637 [69.1 s]
[11] train-result=0.5908, valid-result=0.5681 [55.8 s]
[12] train-result=0.5961, valid-result=0.5709 [53.2 s]
[13] train-result=0.5980, valid-result=0.5725 [63.2 s]
[14] train-result=0.6051, valid-result=0.5776 [50.6 s]
[15] train-result=0.6061, valid-result=0.5790 [52.0 s]
loss_type: mse
#params: 9104425
[1] train-result=0.0640, valid-result=0.1002 [56.9 s]
[2] train-result=0.2638, valid-result=0.2888 [57.5 s]
[3] train-result=0.3377, valid-result=0.3526 [53.8 s]
[4] train-result=0.3828, valid-result=0.3819 [63.9 s]
[5] train-result=0.3974, valid-result=0.3974 [53.9 s]
[6] train-result=0.4353, valid-result=0.4229 [54.9 s]
[7] train-result=0.4431, valid-result=0.4328 [59.3 s]
[8] train-result=0.4642, valid-result=0.4464 [54.6 s]
[9] train-result=0.4857, valid-result=0.4684 [83.4 s]
[10] train-result=0.4965, valid-result=0.4776 [60.9 s]
[11] train-result=0.5191, valid-result=0.4969 [57.4 s]
[12] train-result=0.5353, valid-result=0.5143 [54.1 s]
[13] train-result=0.5505, valid-result=0.5262 [52.7 s]
[14] train-result=0.5683, valid-result=0.5394 [54.1 s]
[15] train-result=0.5769, valid-result=0.5476 [51.4 s]
loss_type: mse
#params: 9104425
[1] train-result=0.1098, valid-result=0.1489 [53.3 s]
[2] train-result=0.3042, valid-result=0.3648 [59.7 s]
[3] train-result=0.3580, valid-result=0.3976 [56.5 s]
[4] train-result=0.3922, valid-result=0.4159 [52.9 s]
[5] train-result=0.4178, valid-result=0.4300 [59.8 s]
[6] train-result=0.4278, valid-result=0.4370 [51.2 s]
[7] train-result=0.4512, valid-result=0.4546 [51.2 s]
[8] train-result=0.4678, valid-result=0.4655 [53.1 s]
[9] train-result=0.4870, valid-result=0.4765 [50.5 s]
[10] train-result=0.5119, valid-result=0.4918 [51.5 s]
[11] train-result=0.5314, valid-result=0.5102 [52.9 s]
[12] train-result=0.5468, valid-result=0.5204 [50.8 s]
[13] train-result=0.5627, valid-result=0.5342 [53.7 s]
[14] train-result=0.5693, valid-result=0.5408 [50.7 s]
[15] train-result=0.5882, valid-result=0.5570 [54.7 s]
DNN: 0.56009 (0.01382)
""" |
def search(min_, max_, els, dec, inc):
for c in els:
if c == dec:
max_ = (min_+max_)/2
elif c == inc:
min_ = (min_+max_)/2
return min_
def getid(card):
l = search(0, 128, card[:7], 'F', 'B')
c = search(0, 8, card[7:], 'L', 'R')
return l, c
with open('input.txt', 'r') as file:
cards = file.read().split('\n')
plane = [[0]*8 for __ in range(128)]
for card in cards:
l, c = map(int, getid(card))
plane[l][c] = 1
for i, l in enumerate(plane):
for j, c in enumerate(l):
if not c:
print(i,j, i*8+j) | def search(min_, max_, els, dec, inc):
for c in els:
if c == dec:
max_ = (min_ + max_) / 2
elif c == inc:
min_ = (min_ + max_) / 2
return min_
def getid(card):
l = search(0, 128, card[:7], 'F', 'B')
c = search(0, 8, card[7:], 'L', 'R')
return (l, c)
with open('input.txt', 'r') as file:
cards = file.read().split('\n')
plane = [[0] * 8 for __ in range(128)]
for card in cards:
(l, c) = map(int, getid(card))
plane[l][c] = 1
for (i, l) in enumerate(plane):
for (j, c) in enumerate(l):
if not c:
print(i, j, i * 8 + j) |
# Binary search recursive version
def rec_binary_search(arr, ele):
if len(arr) == 0:
return False
else:
mid = int(len(arr)/2)
if arr[mid] == ele:
return True
else:
if ele < arr[mid]:
return rec_binary_search(arr[:mid], ele)
else:
return rec_binary_search(arr[mid+1:], ele)
# Binary search iteration version
def binary_search(arr, ele):
first = 0
last = len(arr)-1
found = False
while first <= last and not found:
mid = int((first+last)/2)
if arr[mid] == ele:
found = True
else:
if ele < arr[mid]:
last = int(mid-1)
else:
first = int(mid+1)
return found
| def rec_binary_search(arr, ele):
if len(arr) == 0:
return False
else:
mid = int(len(arr) / 2)
if arr[mid] == ele:
return True
elif ele < arr[mid]:
return rec_binary_search(arr[:mid], ele)
else:
return rec_binary_search(arr[mid + 1:], ele)
def binary_search(arr, ele):
first = 0
last = len(arr) - 1
found = False
while first <= last and (not found):
mid = int((first + last) / 2)
if arr[mid] == ele:
found = True
elif ele < arr[mid]:
last = int(mid - 1)
else:
first = int(mid + 1)
return found |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.