content
stringlengths 7
1.05M
| fixed_cases
stringlengths 1
1.28M
|
---|---|
class VarDecl:
def __init__(self, name: str, type: str):
self._name = name
self._type = type
def name(self) -> str:
return self._name
def type(self) -> str:
return self._type
| class Vardecl:
def __init__(self, name: str, type: str):
self._name = name
self._type = type
def name(self) -> str:
return self._name
def type(self) -> str:
return self._type |
# Exercise 01.2
# Author: Leonardo Ferreira Santos
arguments = input('Say something: ')
print('Number of characters: ', arguments.__sizeof__() - 25) # "-25" is necessary because this function always implements "25".
print('Reversed: ', arguments[::-1])
| arguments = input('Say something: ')
print('Number of characters: ', arguments.__sizeof__() - 25)
print('Reversed: ', arguments[::-1]) |
class Matrix:
def __init__(self, *rows):
self.matrix = [row for row in rows]
def __repr__(self):
matrix_repr = ""
for i, row in enumerate(self.matrix):
row_repr = " ".join(f"{n:6.2f}" for n in row[:-1])
row_repr = f"{i}: {row_repr} | {row[-1]:6.2f}"
matrix_repr += f"{row_repr} \n"
return matrix_repr
def scale(self, row, scalar):
self.matrix[row] = [scalar * n for n in self.matrix[row]]
def row_addition(self, source, destination, scalar=1):
s = self.matrix[source]
d = self.matrix[destination]
self.matrix[destination] = [i + scalar * j for i, j in zip(d, s)]
def swap(self, r1, r2):
self.matrix[r1], self.matrix[r2] = self.matrix[r2], self.matrix[r1]
| class Matrix:
def __init__(self, *rows):
self.matrix = [row for row in rows]
def __repr__(self):
matrix_repr = ''
for (i, row) in enumerate(self.matrix):
row_repr = ' '.join((f'{n:6.2f}' for n in row[:-1]))
row_repr = f'{i}: {row_repr} | {row[-1]:6.2f}'
matrix_repr += f'{row_repr} \n'
return matrix_repr
def scale(self, row, scalar):
self.matrix[row] = [scalar * n for n in self.matrix[row]]
def row_addition(self, source, destination, scalar=1):
s = self.matrix[source]
d = self.matrix[destination]
self.matrix[destination] = [i + scalar * j for (i, j) in zip(d, s)]
def swap(self, r1, r2):
(self.matrix[r1], self.matrix[r2]) = (self.matrix[r2], self.matrix[r1]) |
# C++ | General
multiple_files = True
no_spaces = False
type_name = "Pixel"
# C++ | Names
name_camelCase = True
name_lower = False
# Other
out_filename = "Out.cpp" # Only works when multiple_files is on
multiple_files_extension = ".h" | multiple_files = True
no_spaces = False
type_name = 'Pixel'
name_camel_case = True
name_lower = False
out_filename = 'Out.cpp'
multiple_files_extension = '.h' |
#!/usr/bin/env python
# encoding: utf-8
def run(whatweb, pluginname):
whatweb.recog_from_content(pluginname, "shopex")
| def run(whatweb, pluginname):
whatweb.recog_from_content(pluginname, 'shopex') |
#
# PySNMP MIB module CISCO-UNIFIED-COMPUTING-DOMAIN-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-UNIFIED-COMPUTING-DOMAIN-MIB
# Produced by pysmi-0.3.4 at Wed May 1 12:15:25 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, ConstraintsIntersection, ValueRangeConstraint, ConstraintsUnion, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsIntersection", "ValueRangeConstraint", "ConstraintsUnion", "SingleValueConstraint")
ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt")
CiscoNetworkAddress, CiscoAlarmSeverity, CiscoInetAddressMask, Unsigned64, TimeIntervalSec = mibBuilder.importSymbols("CISCO-TC", "CiscoNetworkAddress", "CiscoAlarmSeverity", "CiscoInetAddressMask", "Unsigned64", "TimeIntervalSec")
CucsManagedObjectId, CucsManagedObjectDn, ciscoUnifiedComputingMIBObjects = mibBuilder.importSymbols("CISCO-UNIFIED-COMPUTING-MIB", "CucsManagedObjectId", "CucsManagedObjectDn", "ciscoUnifiedComputingMIBObjects")
CucsDomainFunctionalState, CucsDomainFeatureType = mibBuilder.importSymbols("CISCO-UNIFIED-COMPUTING-TC-MIB", "CucsDomainFunctionalState", "CucsDomainFeatureType")
InetAddressIPv4, InetAddressIPv6 = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressIPv4", "InetAddressIPv6")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
NotificationType, iso, ModuleIdentity, Counter32, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, IpAddress, TimeTicks, Unsigned32, Integer32, Gauge32, MibIdentifier, Counter64 = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "iso", "ModuleIdentity", "Counter32", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "IpAddress", "TimeTicks", "Unsigned32", "Integer32", "Gauge32", "MibIdentifier", "Counter64")
TimeInterval, RowPointer, TruthValue, DateAndTime, MacAddress, TextualConvention, DisplayString, TimeStamp = mibBuilder.importSymbols("SNMPv2-TC", "TimeInterval", "RowPointer", "TruthValue", "DateAndTime", "MacAddress", "TextualConvention", "DisplayString", "TimeStamp")
cucsDomainObjects = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74))
if mibBuilder.loadTexts: cucsDomainObjects.setLastUpdated('201601180000Z')
if mibBuilder.loadTexts: cucsDomainObjects.setOrganization('Cisco Systems Inc.')
if mibBuilder.loadTexts: cucsDomainObjects.setContactInfo('Cisco Systems Customer Service Postal: 170 W Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553 -NETS E-mail: [email protected], [email protected]')
if mibBuilder.loadTexts: cucsDomainObjects.setDescription('MIB representation of the Cisco Unified Computing System DOMAIN management information model package')
cucsDomainEnvironmentFeatureTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1), )
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureTable.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureTable.setDescription('Cisco UCS domain:EnvironmentFeature managed object table')
cucsDomainEnvironmentFeatureEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", "cucsDomainEnvironmentFeatureInstanceId"))
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureEntry.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureEntry.setDescription('Entry for the cucsDomainEnvironmentFeatureTable table.')
cucsDomainEnvironmentFeatureInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 1), CucsManagedObjectId())
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureInstanceId.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureInstanceId.setDescription('Instance identifier of the managed object.')
cucsDomainEnvironmentFeatureDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureDn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureDn.setDescription('Cisco UCS domain:EnvironmentFeature:dn managed object property')
cucsDomainEnvironmentFeatureRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureRn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureRn.setDescription('Cisco UCS domain:EnvironmentFeature:rn managed object property')
cucsDomainEnvironmentFeatureFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 4), Unsigned64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureFltAggr.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureFltAggr.setDescription('Cisco UCS domain:EnvironmentFeature:fltAggr managed object property')
cucsDomainEnvironmentFeatureFunctionalState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 5), CucsDomainFunctionalState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureFunctionalState.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureFunctionalState.setDescription('Cisco UCS domain:EnvironmentFeature:functionalState managed object property')
cucsDomainEnvironmentFeatureName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 6), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureName.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureName.setDescription('Cisco UCS domain:EnvironmentFeature:name managed object property')
cucsDomainEnvironmentFeatureType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 7), CucsDomainFeatureType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureType.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureType.setDescription('Cisco UCS domain:EnvironmentFeature:type managed object property')
cucsDomainEnvironmentFeatureContTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 9), )
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureContTable.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureContTable.setDescription('Cisco UCS domain:EnvironmentFeatureCont managed object table')
cucsDomainEnvironmentFeatureContEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 9, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", "cucsDomainEnvironmentFeatureContInstanceId"))
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureContEntry.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureContEntry.setDescription('Entry for the cucsDomainEnvironmentFeatureContTable table.')
cucsDomainEnvironmentFeatureContInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 9, 1, 1), CucsManagedObjectId())
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureContInstanceId.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureContInstanceId.setDescription('Instance identifier of the managed object.')
cucsDomainEnvironmentFeatureContDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 9, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureContDn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureContDn.setDescription('Cisco UCS domain:EnvironmentFeatureCont:dn managed object property')
cucsDomainEnvironmentFeatureContRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 9, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureContRn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureContRn.setDescription('Cisco UCS domain:EnvironmentFeatureCont:rn managed object property')
cucsDomainEnvironmentFeatureContFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 9, 1, 4), Unsigned64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureContFltAggr.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentFeatureContFltAggr.setDescription('Cisco UCS domain:EnvironmentFeatureCont:fltAggr managed object property')
cucsDomainEnvironmentParamTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2), )
if mibBuilder.loadTexts: cucsDomainEnvironmentParamTable.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentParamTable.setDescription('Cisco UCS domain:EnvironmentParam managed object table')
cucsDomainEnvironmentParamEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", "cucsDomainEnvironmentParamInstanceId"))
if mibBuilder.loadTexts: cucsDomainEnvironmentParamEntry.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentParamEntry.setDescription('Entry for the cucsDomainEnvironmentParamTable table.')
cucsDomainEnvironmentParamInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1, 1), CucsManagedObjectId())
if mibBuilder.loadTexts: cucsDomainEnvironmentParamInstanceId.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentParamInstanceId.setDescription('Instance identifier of the managed object.')
cucsDomainEnvironmentParamDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentParamDn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentParamDn.setDescription('Cisco UCS domain:EnvironmentParam:dn managed object property')
cucsDomainEnvironmentParamRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentParamRn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentParamRn.setDescription('Cisco UCS domain:EnvironmentParam:rn managed object property')
cucsDomainEnvironmentParamFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1, 4), Unsigned64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentParamFltAggr.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentParamFltAggr.setDescription('Cisco UCS domain:EnvironmentParam:fltAggr managed object property')
cucsDomainEnvironmentParamName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1, 5), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentParamName.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentParamName.setDescription('Cisco UCS domain:EnvironmentParam:name managed object property')
cucsDomainEnvironmentParamValue = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1, 6), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainEnvironmentParamValue.setStatus('current')
if mibBuilder.loadTexts: cucsDomainEnvironmentParamValue.setDescription('Cisco UCS domain:EnvironmentParam:value managed object property')
cucsDomainNetworkFeatureTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3), )
if mibBuilder.loadTexts: cucsDomainNetworkFeatureTable.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureTable.setDescription('Cisco UCS domain:NetworkFeature managed object table')
cucsDomainNetworkFeatureEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", "cucsDomainNetworkFeatureInstanceId"))
if mibBuilder.loadTexts: cucsDomainNetworkFeatureEntry.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureEntry.setDescription('Entry for the cucsDomainNetworkFeatureTable table.')
cucsDomainNetworkFeatureInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 1), CucsManagedObjectId())
if mibBuilder.loadTexts: cucsDomainNetworkFeatureInstanceId.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureInstanceId.setDescription('Instance identifier of the managed object.')
cucsDomainNetworkFeatureDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkFeatureDn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureDn.setDescription('Cisco UCS domain:NetworkFeature:dn managed object property')
cucsDomainNetworkFeatureRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkFeatureRn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureRn.setDescription('Cisco UCS domain:NetworkFeature:rn managed object property')
cucsDomainNetworkFeatureFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 4), Unsigned64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkFeatureFltAggr.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureFltAggr.setDescription('Cisco UCS domain:NetworkFeature:fltAggr managed object property')
cucsDomainNetworkFeatureFunctionalState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 5), CucsDomainFunctionalState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkFeatureFunctionalState.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureFunctionalState.setDescription('Cisco UCS domain:NetworkFeature:functionalState managed object property')
cucsDomainNetworkFeatureName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 6), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkFeatureName.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureName.setDescription('Cisco UCS domain:NetworkFeature:name managed object property')
cucsDomainNetworkFeatureType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 7), CucsDomainFeatureType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkFeatureType.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureType.setDescription('Cisco UCS domain:NetworkFeature:type managed object property')
cucsDomainNetworkFeatureContTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 10), )
if mibBuilder.loadTexts: cucsDomainNetworkFeatureContTable.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureContTable.setDescription('Cisco UCS domain:NetworkFeatureCont managed object table')
cucsDomainNetworkFeatureContEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 10, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", "cucsDomainNetworkFeatureContInstanceId"))
if mibBuilder.loadTexts: cucsDomainNetworkFeatureContEntry.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureContEntry.setDescription('Entry for the cucsDomainNetworkFeatureContTable table.')
cucsDomainNetworkFeatureContInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 10, 1, 1), CucsManagedObjectId())
if mibBuilder.loadTexts: cucsDomainNetworkFeatureContInstanceId.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureContInstanceId.setDescription('Instance identifier of the managed object.')
cucsDomainNetworkFeatureContDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 10, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkFeatureContDn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureContDn.setDescription('Cisco UCS domain:NetworkFeatureCont:dn managed object property')
cucsDomainNetworkFeatureContRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 10, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkFeatureContRn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureContRn.setDescription('Cisco UCS domain:NetworkFeatureCont:rn managed object property')
cucsDomainNetworkFeatureContFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 10, 1, 4), Unsigned64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkFeatureContFltAggr.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkFeatureContFltAggr.setDescription('Cisco UCS domain:NetworkFeatureCont:fltAggr managed object property')
cucsDomainNetworkParamTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4), )
if mibBuilder.loadTexts: cucsDomainNetworkParamTable.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkParamTable.setDescription('Cisco UCS domain:NetworkParam managed object table')
cucsDomainNetworkParamEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", "cucsDomainNetworkParamInstanceId"))
if mibBuilder.loadTexts: cucsDomainNetworkParamEntry.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkParamEntry.setDescription('Entry for the cucsDomainNetworkParamTable table.')
cucsDomainNetworkParamInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1, 1), CucsManagedObjectId())
if mibBuilder.loadTexts: cucsDomainNetworkParamInstanceId.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkParamInstanceId.setDescription('Instance identifier of the managed object.')
cucsDomainNetworkParamDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkParamDn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkParamDn.setDescription('Cisco UCS domain:NetworkParam:dn managed object property')
cucsDomainNetworkParamRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkParamRn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkParamRn.setDescription('Cisco UCS domain:NetworkParam:rn managed object property')
cucsDomainNetworkParamFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1, 4), Unsigned64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkParamFltAggr.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkParamFltAggr.setDescription('Cisco UCS domain:NetworkParam:fltAggr managed object property')
cucsDomainNetworkParamName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1, 5), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkParamName.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkParamName.setDescription('Cisco UCS domain:NetworkParam:name managed object property')
cucsDomainNetworkParamValue = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1, 6), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainNetworkParamValue.setStatus('current')
if mibBuilder.loadTexts: cucsDomainNetworkParamValue.setDescription('Cisco UCS domain:NetworkParam:value managed object property')
cucsDomainServerFeatureTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5), )
if mibBuilder.loadTexts: cucsDomainServerFeatureTable.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureTable.setDescription('Cisco UCS domain:ServerFeature managed object table')
cucsDomainServerFeatureEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", "cucsDomainServerFeatureInstanceId"))
if mibBuilder.loadTexts: cucsDomainServerFeatureEntry.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureEntry.setDescription('Entry for the cucsDomainServerFeatureTable table.')
cucsDomainServerFeatureInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 1), CucsManagedObjectId())
if mibBuilder.loadTexts: cucsDomainServerFeatureInstanceId.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureInstanceId.setDescription('Instance identifier of the managed object.')
cucsDomainServerFeatureDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerFeatureDn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureDn.setDescription('Cisco UCS domain:ServerFeature:dn managed object property')
cucsDomainServerFeatureRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerFeatureRn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureRn.setDescription('Cisco UCS domain:ServerFeature:rn managed object property')
cucsDomainServerFeatureFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 4), Unsigned64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerFeatureFltAggr.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureFltAggr.setDescription('Cisco UCS domain:ServerFeature:fltAggr managed object property')
cucsDomainServerFeatureFunctionalState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 5), CucsDomainFunctionalState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerFeatureFunctionalState.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureFunctionalState.setDescription('Cisco UCS domain:ServerFeature:functionalState managed object property')
cucsDomainServerFeatureName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 6), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerFeatureName.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureName.setDescription('Cisco UCS domain:ServerFeature:name managed object property')
cucsDomainServerFeatureType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 7), CucsDomainFeatureType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerFeatureType.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureType.setDescription('Cisco UCS domain:ServerFeature:type managed object property')
cucsDomainServerFeatureContTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 11), )
if mibBuilder.loadTexts: cucsDomainServerFeatureContTable.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureContTable.setDescription('Cisco UCS domain:ServerFeatureCont managed object table')
cucsDomainServerFeatureContEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 11, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", "cucsDomainServerFeatureContInstanceId"))
if mibBuilder.loadTexts: cucsDomainServerFeatureContEntry.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureContEntry.setDescription('Entry for the cucsDomainServerFeatureContTable table.')
cucsDomainServerFeatureContInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 11, 1, 1), CucsManagedObjectId())
if mibBuilder.loadTexts: cucsDomainServerFeatureContInstanceId.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureContInstanceId.setDescription('Instance identifier of the managed object.')
cucsDomainServerFeatureContDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 11, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerFeatureContDn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureContDn.setDescription('Cisco UCS domain:ServerFeatureCont:dn managed object property')
cucsDomainServerFeatureContRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 11, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerFeatureContRn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureContRn.setDescription('Cisco UCS domain:ServerFeatureCont:rn managed object property')
cucsDomainServerFeatureContFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 11, 1, 4), Unsigned64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerFeatureContFltAggr.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerFeatureContFltAggr.setDescription('Cisco UCS domain:ServerFeatureCont:fltAggr managed object property')
cucsDomainServerParamTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6), )
if mibBuilder.loadTexts: cucsDomainServerParamTable.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerParamTable.setDescription('Cisco UCS domain:ServerParam managed object table')
cucsDomainServerParamEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", "cucsDomainServerParamInstanceId"))
if mibBuilder.loadTexts: cucsDomainServerParamEntry.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerParamEntry.setDescription('Entry for the cucsDomainServerParamTable table.')
cucsDomainServerParamInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1, 1), CucsManagedObjectId())
if mibBuilder.loadTexts: cucsDomainServerParamInstanceId.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerParamInstanceId.setDescription('Instance identifier of the managed object.')
cucsDomainServerParamDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerParamDn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerParamDn.setDescription('Cisco UCS domain:ServerParam:dn managed object property')
cucsDomainServerParamRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerParamRn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerParamRn.setDescription('Cisco UCS domain:ServerParam:rn managed object property')
cucsDomainServerParamFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1, 4), Unsigned64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerParamFltAggr.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerParamFltAggr.setDescription('Cisco UCS domain:ServerParam:fltAggr managed object property')
cucsDomainServerParamName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1, 5), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerParamName.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerParamName.setDescription('Cisco UCS domain:ServerParam:name managed object property')
cucsDomainServerParamValue = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1, 6), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainServerParamValue.setStatus('current')
if mibBuilder.loadTexts: cucsDomainServerParamValue.setDescription('Cisco UCS domain:ServerParam:value managed object property')
cucsDomainStorageFeatureTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7), )
if mibBuilder.loadTexts: cucsDomainStorageFeatureTable.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureTable.setDescription('Cisco UCS domain:StorageFeature managed object table')
cucsDomainStorageFeatureEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", "cucsDomainStorageFeatureInstanceId"))
if mibBuilder.loadTexts: cucsDomainStorageFeatureEntry.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureEntry.setDescription('Entry for the cucsDomainStorageFeatureTable table.')
cucsDomainStorageFeatureInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 1), CucsManagedObjectId())
if mibBuilder.loadTexts: cucsDomainStorageFeatureInstanceId.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureInstanceId.setDescription('Instance identifier of the managed object.')
cucsDomainStorageFeatureDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageFeatureDn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureDn.setDescription('Cisco UCS domain:StorageFeature:dn managed object property')
cucsDomainStorageFeatureRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageFeatureRn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureRn.setDescription('Cisco UCS domain:StorageFeature:rn managed object property')
cucsDomainStorageFeatureFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 4), Unsigned64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageFeatureFltAggr.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureFltAggr.setDescription('Cisco UCS domain:StorageFeature:fltAggr managed object property')
cucsDomainStorageFeatureFunctionalState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 5), CucsDomainFunctionalState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageFeatureFunctionalState.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureFunctionalState.setDescription('Cisco UCS domain:StorageFeature:functionalState managed object property')
cucsDomainStorageFeatureName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 6), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageFeatureName.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureName.setDescription('Cisco UCS domain:StorageFeature:name managed object property')
cucsDomainStorageFeatureType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 7), CucsDomainFeatureType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageFeatureType.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureType.setDescription('Cisco UCS domain:StorageFeature:type managed object property')
cucsDomainStorageFeatureContTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 12), )
if mibBuilder.loadTexts: cucsDomainStorageFeatureContTable.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureContTable.setDescription('Cisco UCS domain:StorageFeatureCont managed object table')
cucsDomainStorageFeatureContEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 12, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", "cucsDomainStorageFeatureContInstanceId"))
if mibBuilder.loadTexts: cucsDomainStorageFeatureContEntry.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureContEntry.setDescription('Entry for the cucsDomainStorageFeatureContTable table.')
cucsDomainStorageFeatureContInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 12, 1, 1), CucsManagedObjectId())
if mibBuilder.loadTexts: cucsDomainStorageFeatureContInstanceId.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureContInstanceId.setDescription('Instance identifier of the managed object.')
cucsDomainStorageFeatureContDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 12, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageFeatureContDn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureContDn.setDescription('Cisco UCS domain:StorageFeatureCont:dn managed object property')
cucsDomainStorageFeatureContRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 12, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageFeatureContRn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureContRn.setDescription('Cisco UCS domain:StorageFeatureCont:rn managed object property')
cucsDomainStorageFeatureContFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 12, 1, 4), Unsigned64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageFeatureContFltAggr.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageFeatureContFltAggr.setDescription('Cisco UCS domain:StorageFeatureCont:fltAggr managed object property')
cucsDomainStorageParamTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8), )
if mibBuilder.loadTexts: cucsDomainStorageParamTable.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageParamTable.setDescription('Cisco UCS domain:StorageParam managed object table')
cucsDomainStorageParamEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", "cucsDomainStorageParamInstanceId"))
if mibBuilder.loadTexts: cucsDomainStorageParamEntry.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageParamEntry.setDescription('Entry for the cucsDomainStorageParamTable table.')
cucsDomainStorageParamInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1, 1), CucsManagedObjectId())
if mibBuilder.loadTexts: cucsDomainStorageParamInstanceId.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageParamInstanceId.setDescription('Instance identifier of the managed object.')
cucsDomainStorageParamDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageParamDn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageParamDn.setDescription('Cisco UCS domain:StorageParam:dn managed object property')
cucsDomainStorageParamRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageParamRn.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageParamRn.setDescription('Cisco UCS domain:StorageParam:rn managed object property')
cucsDomainStorageParamFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1, 4), Unsigned64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageParamFltAggr.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageParamFltAggr.setDescription('Cisco UCS domain:StorageParam:fltAggr managed object property')
cucsDomainStorageParamName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1, 5), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageParamName.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageParamName.setDescription('Cisco UCS domain:StorageParam:name managed object property')
cucsDomainStorageParamValue = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1, 6), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cucsDomainStorageParamValue.setStatus('current')
if mibBuilder.loadTexts: cucsDomainStorageParamValue.setDescription('Cisco UCS domain:StorageParam:value managed object property')
mibBuilder.exportSymbols("CISCO-UNIFIED-COMPUTING-DOMAIN-MIB", cucsDomainServerFeatureContDn=cucsDomainServerFeatureContDn, cucsDomainServerParamValue=cucsDomainServerParamValue, cucsDomainNetworkFeatureContInstanceId=cucsDomainNetworkFeatureContInstanceId, cucsDomainStorageParamTable=cucsDomainStorageParamTable, cucsDomainStorageParamRn=cucsDomainStorageParamRn, cucsDomainNetworkParamDn=cucsDomainNetworkParamDn, cucsDomainEnvironmentParamValue=cucsDomainEnvironmentParamValue, cucsDomainServerParamDn=cucsDomainServerParamDn, cucsDomainStorageFeatureName=cucsDomainStorageFeatureName, cucsDomainEnvironmentFeatureContEntry=cucsDomainEnvironmentFeatureContEntry, cucsDomainServerParamName=cucsDomainServerParamName, cucsDomainServerParamFltAggr=cucsDomainServerParamFltAggr, cucsDomainNetworkFeatureName=cucsDomainNetworkFeatureName, cucsDomainEnvironmentFeatureFunctionalState=cucsDomainEnvironmentFeatureFunctionalState, cucsDomainNetworkParamValue=cucsDomainNetworkParamValue, cucsDomainStorageFeatureContFltAggr=cucsDomainStorageFeatureContFltAggr, cucsDomainStorageFeatureContEntry=cucsDomainStorageFeatureContEntry, cucsDomainStorageParamFltAggr=cucsDomainStorageParamFltAggr, cucsDomainStorageFeatureRn=cucsDomainStorageFeatureRn, cucsDomainNetworkParamFltAggr=cucsDomainNetworkParamFltAggr, cucsDomainEnvironmentParamName=cucsDomainEnvironmentParamName, cucsDomainEnvironmentFeatureEntry=cucsDomainEnvironmentFeatureEntry, cucsDomainNetworkFeatureContEntry=cucsDomainNetworkFeatureContEntry, cucsDomainServerFeatureDn=cucsDomainServerFeatureDn, cucsDomainServerFeatureContEntry=cucsDomainServerFeatureContEntry, cucsDomainEnvironmentFeatureTable=cucsDomainEnvironmentFeatureTable, cucsDomainServerFeatureContInstanceId=cucsDomainServerFeatureContInstanceId, cucsDomainEnvironmentFeatureContRn=cucsDomainEnvironmentFeatureContRn, cucsDomainNetworkParamName=cucsDomainNetworkParamName, cucsDomainStorageParamEntry=cucsDomainStorageParamEntry, cucsDomainNetworkParamEntry=cucsDomainNetworkParamEntry, cucsDomainServerParamEntry=cucsDomainServerParamEntry, cucsDomainNetworkFeatureRn=cucsDomainNetworkFeatureRn, cucsDomainStorageFeatureDn=cucsDomainStorageFeatureDn, cucsDomainNetworkFeatureContFltAggr=cucsDomainNetworkFeatureContFltAggr, cucsDomainStorageFeatureContTable=cucsDomainStorageFeatureContTable, cucsDomainEnvironmentFeatureType=cucsDomainEnvironmentFeatureType, cucsDomainNetworkFeatureContTable=cucsDomainNetworkFeatureContTable, cucsDomainNetworkFeatureDn=cucsDomainNetworkFeatureDn, cucsDomainEnvironmentParamInstanceId=cucsDomainEnvironmentParamInstanceId, cucsDomainNetworkParamInstanceId=cucsDomainNetworkParamInstanceId, cucsDomainEnvironmentParamDn=cucsDomainEnvironmentParamDn, cucsDomainNetworkParamTable=cucsDomainNetworkParamTable, cucsDomainServerFeatureContFltAggr=cucsDomainServerFeatureContFltAggr, cucsDomainStorageFeatureFunctionalState=cucsDomainStorageFeatureFunctionalState, cucsDomainNetworkFeatureContRn=cucsDomainNetworkFeatureContRn, cucsDomainEnvironmentParamFltAggr=cucsDomainEnvironmentParamFltAggr, cucsDomainServerParamInstanceId=cucsDomainServerParamInstanceId, cucsDomainServerFeatureContRn=cucsDomainServerFeatureContRn, cucsDomainServerParamTable=cucsDomainServerParamTable, cucsDomainStorageParamValue=cucsDomainStorageParamValue, cucsDomainNetworkFeatureFltAggr=cucsDomainNetworkFeatureFltAggr, cucsDomainServerFeatureInstanceId=cucsDomainServerFeatureInstanceId, cucsDomainNetworkFeatureEntry=cucsDomainNetworkFeatureEntry, cucsDomainEnvironmentFeatureFltAggr=cucsDomainEnvironmentFeatureFltAggr, cucsDomainEnvironmentFeatureDn=cucsDomainEnvironmentFeatureDn, cucsDomainEnvironmentParamEntry=cucsDomainEnvironmentParamEntry, cucsDomainNetworkFeatureInstanceId=cucsDomainNetworkFeatureInstanceId, cucsDomainNetworkFeatureType=cucsDomainNetworkFeatureType, cucsDomainNetworkFeatureTable=cucsDomainNetworkFeatureTable, cucsDomainEnvironmentFeatureContInstanceId=cucsDomainEnvironmentFeatureContInstanceId, cucsDomainStorageParamInstanceId=cucsDomainStorageParamInstanceId, cucsDomainServerFeatureEntry=cucsDomainServerFeatureEntry, cucsDomainNetworkFeatureContDn=cucsDomainNetworkFeatureContDn, cucsDomainServerFeatureTable=cucsDomainServerFeatureTable, cucsDomainStorageFeatureFltAggr=cucsDomainStorageFeatureFltAggr, cucsDomainServerFeatureRn=cucsDomainServerFeatureRn, cucsDomainEnvironmentParamRn=cucsDomainEnvironmentParamRn, cucsDomainServerFeatureName=cucsDomainServerFeatureName, cucsDomainNetworkParamRn=cucsDomainNetworkParamRn, cucsDomainNetworkFeatureFunctionalState=cucsDomainNetworkFeatureFunctionalState, cucsDomainServerFeatureFunctionalState=cucsDomainServerFeatureFunctionalState, cucsDomainServerParamRn=cucsDomainServerParamRn, cucsDomainEnvironmentFeatureInstanceId=cucsDomainEnvironmentFeatureInstanceId, cucsDomainStorageFeatureContDn=cucsDomainStorageFeatureContDn, PYSNMP_MODULE_ID=cucsDomainObjects, cucsDomainStorageFeatureContRn=cucsDomainStorageFeatureContRn, cucsDomainStorageFeatureContInstanceId=cucsDomainStorageFeatureContInstanceId, cucsDomainEnvironmentFeatureContTable=cucsDomainEnvironmentFeatureContTable, cucsDomainObjects=cucsDomainObjects, cucsDomainStorageFeatureEntry=cucsDomainStorageFeatureEntry, cucsDomainServerFeatureContTable=cucsDomainServerFeatureContTable, cucsDomainEnvironmentFeatureContFltAggr=cucsDomainEnvironmentFeatureContFltAggr, cucsDomainStorageFeatureInstanceId=cucsDomainStorageFeatureInstanceId, cucsDomainEnvironmentFeatureContDn=cucsDomainEnvironmentFeatureContDn, cucsDomainStorageParamName=cucsDomainStorageParamName, cucsDomainServerFeatureType=cucsDomainServerFeatureType, cucsDomainStorageFeatureTable=cucsDomainStorageFeatureTable, cucsDomainEnvironmentFeatureName=cucsDomainEnvironmentFeatureName, cucsDomainEnvironmentFeatureRn=cucsDomainEnvironmentFeatureRn, cucsDomainStorageParamDn=cucsDomainStorageParamDn, cucsDomainEnvironmentParamTable=cucsDomainEnvironmentParamTable, cucsDomainStorageFeatureType=cucsDomainStorageFeatureType, cucsDomainServerFeatureFltAggr=cucsDomainServerFeatureFltAggr)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, constraints_intersection, value_range_constraint, constraints_union, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ConstraintsUnion', 'SingleValueConstraint')
(cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt')
(cisco_network_address, cisco_alarm_severity, cisco_inet_address_mask, unsigned64, time_interval_sec) = mibBuilder.importSymbols('CISCO-TC', 'CiscoNetworkAddress', 'CiscoAlarmSeverity', 'CiscoInetAddressMask', 'Unsigned64', 'TimeIntervalSec')
(cucs_managed_object_id, cucs_managed_object_dn, cisco_unified_computing_mib_objects) = mibBuilder.importSymbols('CISCO-UNIFIED-COMPUTING-MIB', 'CucsManagedObjectId', 'CucsManagedObjectDn', 'ciscoUnifiedComputingMIBObjects')
(cucs_domain_functional_state, cucs_domain_feature_type) = mibBuilder.importSymbols('CISCO-UNIFIED-COMPUTING-TC-MIB', 'CucsDomainFunctionalState', 'CucsDomainFeatureType')
(inet_address_i_pv4, inet_address_i_pv6) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressIPv4', 'InetAddressIPv6')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(notification_type, iso, module_identity, counter32, bits, mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity, ip_address, time_ticks, unsigned32, integer32, gauge32, mib_identifier, counter64) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'iso', 'ModuleIdentity', 'Counter32', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity', 'IpAddress', 'TimeTicks', 'Unsigned32', 'Integer32', 'Gauge32', 'MibIdentifier', 'Counter64')
(time_interval, row_pointer, truth_value, date_and_time, mac_address, textual_convention, display_string, time_stamp) = mibBuilder.importSymbols('SNMPv2-TC', 'TimeInterval', 'RowPointer', 'TruthValue', 'DateAndTime', 'MacAddress', 'TextualConvention', 'DisplayString', 'TimeStamp')
cucs_domain_objects = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74))
if mibBuilder.loadTexts:
cucsDomainObjects.setLastUpdated('201601180000Z')
if mibBuilder.loadTexts:
cucsDomainObjects.setOrganization('Cisco Systems Inc.')
if mibBuilder.loadTexts:
cucsDomainObjects.setContactInfo('Cisco Systems Customer Service Postal: 170 W Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553 -NETS E-mail: [email protected], [email protected]')
if mibBuilder.loadTexts:
cucsDomainObjects.setDescription('MIB representation of the Cisco Unified Computing System DOMAIN management information model package')
cucs_domain_environment_feature_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1))
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureTable.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureTable.setDescription('Cisco UCS domain:EnvironmentFeature managed object table')
cucs_domain_environment_feature_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', 'cucsDomainEnvironmentFeatureInstanceId'))
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureEntry.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureEntry.setDescription('Entry for the cucsDomainEnvironmentFeatureTable table.')
cucs_domain_environment_feature_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 1), cucs_managed_object_id())
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureInstanceId.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureInstanceId.setDescription('Instance identifier of the managed object.')
cucs_domain_environment_feature_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureDn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureDn.setDescription('Cisco UCS domain:EnvironmentFeature:dn managed object property')
cucs_domain_environment_feature_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureRn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureRn.setDescription('Cisco UCS domain:EnvironmentFeature:rn managed object property')
cucs_domain_environment_feature_flt_aggr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 4), unsigned64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureFltAggr.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureFltAggr.setDescription('Cisco UCS domain:EnvironmentFeature:fltAggr managed object property')
cucs_domain_environment_feature_functional_state = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 5), cucs_domain_functional_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureFunctionalState.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureFunctionalState.setDescription('Cisco UCS domain:EnvironmentFeature:functionalState managed object property')
cucs_domain_environment_feature_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 6), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureName.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureName.setDescription('Cisco UCS domain:EnvironmentFeature:name managed object property')
cucs_domain_environment_feature_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 1, 1, 7), cucs_domain_feature_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureType.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureType.setDescription('Cisco UCS domain:EnvironmentFeature:type managed object property')
cucs_domain_environment_feature_cont_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 9))
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureContTable.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureContTable.setDescription('Cisco UCS domain:EnvironmentFeatureCont managed object table')
cucs_domain_environment_feature_cont_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 9, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', 'cucsDomainEnvironmentFeatureContInstanceId'))
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureContEntry.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureContEntry.setDescription('Entry for the cucsDomainEnvironmentFeatureContTable table.')
cucs_domain_environment_feature_cont_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 9, 1, 1), cucs_managed_object_id())
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureContInstanceId.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureContInstanceId.setDescription('Instance identifier of the managed object.')
cucs_domain_environment_feature_cont_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 9, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureContDn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureContDn.setDescription('Cisco UCS domain:EnvironmentFeatureCont:dn managed object property')
cucs_domain_environment_feature_cont_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 9, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureContRn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureContRn.setDescription('Cisco UCS domain:EnvironmentFeatureCont:rn managed object property')
cucs_domain_environment_feature_cont_flt_aggr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 9, 1, 4), unsigned64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureContFltAggr.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentFeatureContFltAggr.setDescription('Cisco UCS domain:EnvironmentFeatureCont:fltAggr managed object property')
cucs_domain_environment_param_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2))
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamTable.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamTable.setDescription('Cisco UCS domain:EnvironmentParam managed object table')
cucs_domain_environment_param_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', 'cucsDomainEnvironmentParamInstanceId'))
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamEntry.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamEntry.setDescription('Entry for the cucsDomainEnvironmentParamTable table.')
cucs_domain_environment_param_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1, 1), cucs_managed_object_id())
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamInstanceId.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamInstanceId.setDescription('Instance identifier of the managed object.')
cucs_domain_environment_param_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamDn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamDn.setDescription('Cisco UCS domain:EnvironmentParam:dn managed object property')
cucs_domain_environment_param_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamRn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamRn.setDescription('Cisco UCS domain:EnvironmentParam:rn managed object property')
cucs_domain_environment_param_flt_aggr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1, 4), unsigned64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamFltAggr.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamFltAggr.setDescription('Cisco UCS domain:EnvironmentParam:fltAggr managed object property')
cucs_domain_environment_param_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1, 5), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamName.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamName.setDescription('Cisco UCS domain:EnvironmentParam:name managed object property')
cucs_domain_environment_param_value = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 2, 1, 6), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamValue.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainEnvironmentParamValue.setDescription('Cisco UCS domain:EnvironmentParam:value managed object property')
cucs_domain_network_feature_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3))
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureTable.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureTable.setDescription('Cisco UCS domain:NetworkFeature managed object table')
cucs_domain_network_feature_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', 'cucsDomainNetworkFeatureInstanceId'))
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureEntry.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureEntry.setDescription('Entry for the cucsDomainNetworkFeatureTable table.')
cucs_domain_network_feature_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 1), cucs_managed_object_id())
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureInstanceId.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureInstanceId.setDescription('Instance identifier of the managed object.')
cucs_domain_network_feature_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureDn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureDn.setDescription('Cisco UCS domain:NetworkFeature:dn managed object property')
cucs_domain_network_feature_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureRn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureRn.setDescription('Cisco UCS domain:NetworkFeature:rn managed object property')
cucs_domain_network_feature_flt_aggr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 4), unsigned64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureFltAggr.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureFltAggr.setDescription('Cisco UCS domain:NetworkFeature:fltAggr managed object property')
cucs_domain_network_feature_functional_state = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 5), cucs_domain_functional_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureFunctionalState.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureFunctionalState.setDescription('Cisco UCS domain:NetworkFeature:functionalState managed object property')
cucs_domain_network_feature_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 6), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureName.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureName.setDescription('Cisco UCS domain:NetworkFeature:name managed object property')
cucs_domain_network_feature_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 3, 1, 7), cucs_domain_feature_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureType.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureType.setDescription('Cisco UCS domain:NetworkFeature:type managed object property')
cucs_domain_network_feature_cont_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 10))
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureContTable.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureContTable.setDescription('Cisco UCS domain:NetworkFeatureCont managed object table')
cucs_domain_network_feature_cont_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 10, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', 'cucsDomainNetworkFeatureContInstanceId'))
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureContEntry.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureContEntry.setDescription('Entry for the cucsDomainNetworkFeatureContTable table.')
cucs_domain_network_feature_cont_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 10, 1, 1), cucs_managed_object_id())
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureContInstanceId.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureContInstanceId.setDescription('Instance identifier of the managed object.')
cucs_domain_network_feature_cont_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 10, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureContDn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureContDn.setDescription('Cisco UCS domain:NetworkFeatureCont:dn managed object property')
cucs_domain_network_feature_cont_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 10, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureContRn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureContRn.setDescription('Cisco UCS domain:NetworkFeatureCont:rn managed object property')
cucs_domain_network_feature_cont_flt_aggr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 10, 1, 4), unsigned64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureContFltAggr.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkFeatureContFltAggr.setDescription('Cisco UCS domain:NetworkFeatureCont:fltAggr managed object property')
cucs_domain_network_param_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4))
if mibBuilder.loadTexts:
cucsDomainNetworkParamTable.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkParamTable.setDescription('Cisco UCS domain:NetworkParam managed object table')
cucs_domain_network_param_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', 'cucsDomainNetworkParamInstanceId'))
if mibBuilder.loadTexts:
cucsDomainNetworkParamEntry.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkParamEntry.setDescription('Entry for the cucsDomainNetworkParamTable table.')
cucs_domain_network_param_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1, 1), cucs_managed_object_id())
if mibBuilder.loadTexts:
cucsDomainNetworkParamInstanceId.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkParamInstanceId.setDescription('Instance identifier of the managed object.')
cucs_domain_network_param_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkParamDn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkParamDn.setDescription('Cisco UCS domain:NetworkParam:dn managed object property')
cucs_domain_network_param_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkParamRn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkParamRn.setDescription('Cisco UCS domain:NetworkParam:rn managed object property')
cucs_domain_network_param_flt_aggr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1, 4), unsigned64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkParamFltAggr.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkParamFltAggr.setDescription('Cisco UCS domain:NetworkParam:fltAggr managed object property')
cucs_domain_network_param_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1, 5), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkParamName.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkParamName.setDescription('Cisco UCS domain:NetworkParam:name managed object property')
cucs_domain_network_param_value = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 4, 1, 6), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainNetworkParamValue.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainNetworkParamValue.setDescription('Cisco UCS domain:NetworkParam:value managed object property')
cucs_domain_server_feature_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5))
if mibBuilder.loadTexts:
cucsDomainServerFeatureTable.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureTable.setDescription('Cisco UCS domain:ServerFeature managed object table')
cucs_domain_server_feature_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', 'cucsDomainServerFeatureInstanceId'))
if mibBuilder.loadTexts:
cucsDomainServerFeatureEntry.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureEntry.setDescription('Entry for the cucsDomainServerFeatureTable table.')
cucs_domain_server_feature_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 1), cucs_managed_object_id())
if mibBuilder.loadTexts:
cucsDomainServerFeatureInstanceId.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureInstanceId.setDescription('Instance identifier of the managed object.')
cucs_domain_server_feature_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerFeatureDn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureDn.setDescription('Cisco UCS domain:ServerFeature:dn managed object property')
cucs_domain_server_feature_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerFeatureRn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureRn.setDescription('Cisco UCS domain:ServerFeature:rn managed object property')
cucs_domain_server_feature_flt_aggr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 4), unsigned64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerFeatureFltAggr.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureFltAggr.setDescription('Cisco UCS domain:ServerFeature:fltAggr managed object property')
cucs_domain_server_feature_functional_state = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 5), cucs_domain_functional_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerFeatureFunctionalState.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureFunctionalState.setDescription('Cisco UCS domain:ServerFeature:functionalState managed object property')
cucs_domain_server_feature_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 6), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerFeatureName.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureName.setDescription('Cisco UCS domain:ServerFeature:name managed object property')
cucs_domain_server_feature_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 5, 1, 7), cucs_domain_feature_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerFeatureType.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureType.setDescription('Cisco UCS domain:ServerFeature:type managed object property')
cucs_domain_server_feature_cont_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 11))
if mibBuilder.loadTexts:
cucsDomainServerFeatureContTable.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureContTable.setDescription('Cisco UCS domain:ServerFeatureCont managed object table')
cucs_domain_server_feature_cont_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 11, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', 'cucsDomainServerFeatureContInstanceId'))
if mibBuilder.loadTexts:
cucsDomainServerFeatureContEntry.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureContEntry.setDescription('Entry for the cucsDomainServerFeatureContTable table.')
cucs_domain_server_feature_cont_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 11, 1, 1), cucs_managed_object_id())
if mibBuilder.loadTexts:
cucsDomainServerFeatureContInstanceId.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureContInstanceId.setDescription('Instance identifier of the managed object.')
cucs_domain_server_feature_cont_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 11, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerFeatureContDn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureContDn.setDescription('Cisco UCS domain:ServerFeatureCont:dn managed object property')
cucs_domain_server_feature_cont_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 11, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerFeatureContRn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureContRn.setDescription('Cisco UCS domain:ServerFeatureCont:rn managed object property')
cucs_domain_server_feature_cont_flt_aggr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 11, 1, 4), unsigned64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerFeatureContFltAggr.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerFeatureContFltAggr.setDescription('Cisco UCS domain:ServerFeatureCont:fltAggr managed object property')
cucs_domain_server_param_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6))
if mibBuilder.loadTexts:
cucsDomainServerParamTable.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerParamTable.setDescription('Cisco UCS domain:ServerParam managed object table')
cucs_domain_server_param_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', 'cucsDomainServerParamInstanceId'))
if mibBuilder.loadTexts:
cucsDomainServerParamEntry.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerParamEntry.setDescription('Entry for the cucsDomainServerParamTable table.')
cucs_domain_server_param_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1, 1), cucs_managed_object_id())
if mibBuilder.loadTexts:
cucsDomainServerParamInstanceId.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerParamInstanceId.setDescription('Instance identifier of the managed object.')
cucs_domain_server_param_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerParamDn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerParamDn.setDescription('Cisco UCS domain:ServerParam:dn managed object property')
cucs_domain_server_param_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerParamRn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerParamRn.setDescription('Cisco UCS domain:ServerParam:rn managed object property')
cucs_domain_server_param_flt_aggr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1, 4), unsigned64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerParamFltAggr.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerParamFltAggr.setDescription('Cisco UCS domain:ServerParam:fltAggr managed object property')
cucs_domain_server_param_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1, 5), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerParamName.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerParamName.setDescription('Cisco UCS domain:ServerParam:name managed object property')
cucs_domain_server_param_value = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 6, 1, 6), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainServerParamValue.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainServerParamValue.setDescription('Cisco UCS domain:ServerParam:value managed object property')
cucs_domain_storage_feature_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7))
if mibBuilder.loadTexts:
cucsDomainStorageFeatureTable.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureTable.setDescription('Cisco UCS domain:StorageFeature managed object table')
cucs_domain_storage_feature_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', 'cucsDomainStorageFeatureInstanceId'))
if mibBuilder.loadTexts:
cucsDomainStorageFeatureEntry.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureEntry.setDescription('Entry for the cucsDomainStorageFeatureTable table.')
cucs_domain_storage_feature_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 1), cucs_managed_object_id())
if mibBuilder.loadTexts:
cucsDomainStorageFeatureInstanceId.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureInstanceId.setDescription('Instance identifier of the managed object.')
cucs_domain_storage_feature_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureDn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureDn.setDescription('Cisco UCS domain:StorageFeature:dn managed object property')
cucs_domain_storage_feature_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureRn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureRn.setDescription('Cisco UCS domain:StorageFeature:rn managed object property')
cucs_domain_storage_feature_flt_aggr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 4), unsigned64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureFltAggr.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureFltAggr.setDescription('Cisco UCS domain:StorageFeature:fltAggr managed object property')
cucs_domain_storage_feature_functional_state = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 5), cucs_domain_functional_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureFunctionalState.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureFunctionalState.setDescription('Cisco UCS domain:StorageFeature:functionalState managed object property')
cucs_domain_storage_feature_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 6), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureName.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureName.setDescription('Cisco UCS domain:StorageFeature:name managed object property')
cucs_domain_storage_feature_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 7, 1, 7), cucs_domain_feature_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureType.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureType.setDescription('Cisco UCS domain:StorageFeature:type managed object property')
cucs_domain_storage_feature_cont_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 12))
if mibBuilder.loadTexts:
cucsDomainStorageFeatureContTable.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureContTable.setDescription('Cisco UCS domain:StorageFeatureCont managed object table')
cucs_domain_storage_feature_cont_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 12, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', 'cucsDomainStorageFeatureContInstanceId'))
if mibBuilder.loadTexts:
cucsDomainStorageFeatureContEntry.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureContEntry.setDescription('Entry for the cucsDomainStorageFeatureContTable table.')
cucs_domain_storage_feature_cont_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 12, 1, 1), cucs_managed_object_id())
if mibBuilder.loadTexts:
cucsDomainStorageFeatureContInstanceId.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureContInstanceId.setDescription('Instance identifier of the managed object.')
cucs_domain_storage_feature_cont_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 12, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureContDn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureContDn.setDescription('Cisco UCS domain:StorageFeatureCont:dn managed object property')
cucs_domain_storage_feature_cont_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 12, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureContRn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureContRn.setDescription('Cisco UCS domain:StorageFeatureCont:rn managed object property')
cucs_domain_storage_feature_cont_flt_aggr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 12, 1, 4), unsigned64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureContFltAggr.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageFeatureContFltAggr.setDescription('Cisco UCS domain:StorageFeatureCont:fltAggr managed object property')
cucs_domain_storage_param_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8))
if mibBuilder.loadTexts:
cucsDomainStorageParamTable.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageParamTable.setDescription('Cisco UCS domain:StorageParam managed object table')
cucs_domain_storage_param_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', 'cucsDomainStorageParamInstanceId'))
if mibBuilder.loadTexts:
cucsDomainStorageParamEntry.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageParamEntry.setDescription('Entry for the cucsDomainStorageParamTable table.')
cucs_domain_storage_param_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1, 1), cucs_managed_object_id())
if mibBuilder.loadTexts:
cucsDomainStorageParamInstanceId.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageParamInstanceId.setDescription('Instance identifier of the managed object.')
cucs_domain_storage_param_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageParamDn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageParamDn.setDescription('Cisco UCS domain:StorageParam:dn managed object property')
cucs_domain_storage_param_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageParamRn.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageParamRn.setDescription('Cisco UCS domain:StorageParam:rn managed object property')
cucs_domain_storage_param_flt_aggr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1, 4), unsigned64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageParamFltAggr.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageParamFltAggr.setDescription('Cisco UCS domain:StorageParam:fltAggr managed object property')
cucs_domain_storage_param_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1, 5), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageParamName.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageParamName.setDescription('Cisco UCS domain:StorageParam:name managed object property')
cucs_domain_storage_param_value = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 74, 8, 1, 6), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cucsDomainStorageParamValue.setStatus('current')
if mibBuilder.loadTexts:
cucsDomainStorageParamValue.setDescription('Cisco UCS domain:StorageParam:value managed object property')
mibBuilder.exportSymbols('CISCO-UNIFIED-COMPUTING-DOMAIN-MIB', cucsDomainServerFeatureContDn=cucsDomainServerFeatureContDn, cucsDomainServerParamValue=cucsDomainServerParamValue, cucsDomainNetworkFeatureContInstanceId=cucsDomainNetworkFeatureContInstanceId, cucsDomainStorageParamTable=cucsDomainStorageParamTable, cucsDomainStorageParamRn=cucsDomainStorageParamRn, cucsDomainNetworkParamDn=cucsDomainNetworkParamDn, cucsDomainEnvironmentParamValue=cucsDomainEnvironmentParamValue, cucsDomainServerParamDn=cucsDomainServerParamDn, cucsDomainStorageFeatureName=cucsDomainStorageFeatureName, cucsDomainEnvironmentFeatureContEntry=cucsDomainEnvironmentFeatureContEntry, cucsDomainServerParamName=cucsDomainServerParamName, cucsDomainServerParamFltAggr=cucsDomainServerParamFltAggr, cucsDomainNetworkFeatureName=cucsDomainNetworkFeatureName, cucsDomainEnvironmentFeatureFunctionalState=cucsDomainEnvironmentFeatureFunctionalState, cucsDomainNetworkParamValue=cucsDomainNetworkParamValue, cucsDomainStorageFeatureContFltAggr=cucsDomainStorageFeatureContFltAggr, cucsDomainStorageFeatureContEntry=cucsDomainStorageFeatureContEntry, cucsDomainStorageParamFltAggr=cucsDomainStorageParamFltAggr, cucsDomainStorageFeatureRn=cucsDomainStorageFeatureRn, cucsDomainNetworkParamFltAggr=cucsDomainNetworkParamFltAggr, cucsDomainEnvironmentParamName=cucsDomainEnvironmentParamName, cucsDomainEnvironmentFeatureEntry=cucsDomainEnvironmentFeatureEntry, cucsDomainNetworkFeatureContEntry=cucsDomainNetworkFeatureContEntry, cucsDomainServerFeatureDn=cucsDomainServerFeatureDn, cucsDomainServerFeatureContEntry=cucsDomainServerFeatureContEntry, cucsDomainEnvironmentFeatureTable=cucsDomainEnvironmentFeatureTable, cucsDomainServerFeatureContInstanceId=cucsDomainServerFeatureContInstanceId, cucsDomainEnvironmentFeatureContRn=cucsDomainEnvironmentFeatureContRn, cucsDomainNetworkParamName=cucsDomainNetworkParamName, cucsDomainStorageParamEntry=cucsDomainStorageParamEntry, cucsDomainNetworkParamEntry=cucsDomainNetworkParamEntry, cucsDomainServerParamEntry=cucsDomainServerParamEntry, cucsDomainNetworkFeatureRn=cucsDomainNetworkFeatureRn, cucsDomainStorageFeatureDn=cucsDomainStorageFeatureDn, cucsDomainNetworkFeatureContFltAggr=cucsDomainNetworkFeatureContFltAggr, cucsDomainStorageFeatureContTable=cucsDomainStorageFeatureContTable, cucsDomainEnvironmentFeatureType=cucsDomainEnvironmentFeatureType, cucsDomainNetworkFeatureContTable=cucsDomainNetworkFeatureContTable, cucsDomainNetworkFeatureDn=cucsDomainNetworkFeatureDn, cucsDomainEnvironmentParamInstanceId=cucsDomainEnvironmentParamInstanceId, cucsDomainNetworkParamInstanceId=cucsDomainNetworkParamInstanceId, cucsDomainEnvironmentParamDn=cucsDomainEnvironmentParamDn, cucsDomainNetworkParamTable=cucsDomainNetworkParamTable, cucsDomainServerFeatureContFltAggr=cucsDomainServerFeatureContFltAggr, cucsDomainStorageFeatureFunctionalState=cucsDomainStorageFeatureFunctionalState, cucsDomainNetworkFeatureContRn=cucsDomainNetworkFeatureContRn, cucsDomainEnvironmentParamFltAggr=cucsDomainEnvironmentParamFltAggr, cucsDomainServerParamInstanceId=cucsDomainServerParamInstanceId, cucsDomainServerFeatureContRn=cucsDomainServerFeatureContRn, cucsDomainServerParamTable=cucsDomainServerParamTable, cucsDomainStorageParamValue=cucsDomainStorageParamValue, cucsDomainNetworkFeatureFltAggr=cucsDomainNetworkFeatureFltAggr, cucsDomainServerFeatureInstanceId=cucsDomainServerFeatureInstanceId, cucsDomainNetworkFeatureEntry=cucsDomainNetworkFeatureEntry, cucsDomainEnvironmentFeatureFltAggr=cucsDomainEnvironmentFeatureFltAggr, cucsDomainEnvironmentFeatureDn=cucsDomainEnvironmentFeatureDn, cucsDomainEnvironmentParamEntry=cucsDomainEnvironmentParamEntry, cucsDomainNetworkFeatureInstanceId=cucsDomainNetworkFeatureInstanceId, cucsDomainNetworkFeatureType=cucsDomainNetworkFeatureType, cucsDomainNetworkFeatureTable=cucsDomainNetworkFeatureTable, cucsDomainEnvironmentFeatureContInstanceId=cucsDomainEnvironmentFeatureContInstanceId, cucsDomainStorageParamInstanceId=cucsDomainStorageParamInstanceId, cucsDomainServerFeatureEntry=cucsDomainServerFeatureEntry, cucsDomainNetworkFeatureContDn=cucsDomainNetworkFeatureContDn, cucsDomainServerFeatureTable=cucsDomainServerFeatureTable, cucsDomainStorageFeatureFltAggr=cucsDomainStorageFeatureFltAggr, cucsDomainServerFeatureRn=cucsDomainServerFeatureRn, cucsDomainEnvironmentParamRn=cucsDomainEnvironmentParamRn, cucsDomainServerFeatureName=cucsDomainServerFeatureName, cucsDomainNetworkParamRn=cucsDomainNetworkParamRn, cucsDomainNetworkFeatureFunctionalState=cucsDomainNetworkFeatureFunctionalState, cucsDomainServerFeatureFunctionalState=cucsDomainServerFeatureFunctionalState, cucsDomainServerParamRn=cucsDomainServerParamRn, cucsDomainEnvironmentFeatureInstanceId=cucsDomainEnvironmentFeatureInstanceId, cucsDomainStorageFeatureContDn=cucsDomainStorageFeatureContDn, PYSNMP_MODULE_ID=cucsDomainObjects, cucsDomainStorageFeatureContRn=cucsDomainStorageFeatureContRn, cucsDomainStorageFeatureContInstanceId=cucsDomainStorageFeatureContInstanceId, cucsDomainEnvironmentFeatureContTable=cucsDomainEnvironmentFeatureContTable, cucsDomainObjects=cucsDomainObjects, cucsDomainStorageFeatureEntry=cucsDomainStorageFeatureEntry, cucsDomainServerFeatureContTable=cucsDomainServerFeatureContTable, cucsDomainEnvironmentFeatureContFltAggr=cucsDomainEnvironmentFeatureContFltAggr, cucsDomainStorageFeatureInstanceId=cucsDomainStorageFeatureInstanceId, cucsDomainEnvironmentFeatureContDn=cucsDomainEnvironmentFeatureContDn, cucsDomainStorageParamName=cucsDomainStorageParamName, cucsDomainServerFeatureType=cucsDomainServerFeatureType, cucsDomainStorageFeatureTable=cucsDomainStorageFeatureTable, cucsDomainEnvironmentFeatureName=cucsDomainEnvironmentFeatureName, cucsDomainEnvironmentFeatureRn=cucsDomainEnvironmentFeatureRn, cucsDomainStorageParamDn=cucsDomainStorageParamDn, cucsDomainEnvironmentParamTable=cucsDomainEnvironmentParamTable, cucsDomainStorageFeatureType=cucsDomainStorageFeatureType, cucsDomainServerFeatureFltAggr=cucsDomainServerFeatureFltAggr) |
def test_e1():
a: list[i32]
a = [1, 2, 3]
b: list[str]
b = ['1', '2']
a = b
| def test_e1():
a: list[i32]
a = [1, 2, 3]
b: list[str]
b = ['1', '2']
a = b |
reslist = [
-3251,
-1625,
0,
1625,
3251,
4876,
6502,
8127,
9752,
11378,
13003,
] # 1625/1626 increments
def fromcomp(val, bits):
if val >> (bits - 1) == 1:
return 0 - (val ^ (2 ** bits - 1)) - 1
else:
return val
filepath = "out.log"
with open(filepath) as fp:
line = fp.readline()
while line:
if line[32:34] == "TX":
tline = line[-37:]
res = int(tline[15:17] + tline[12:14], 16)
if (res & (1 << 15)) != 0:
res = res - (1 << 16)
elif line[32:34] == "RX":
lines = line[40:]
# print " ".join("%s:%s" % (1+i/2, lines[i:i+2]) for i in range(0, len(lines)-2, 2))
if len(lines) == 98:
# print lines
# 33,34 speed little endian
speed = int(lines[66:68] + lines[64:66], 16)
if (speed & (1 << 15)) != 0:
speed = speed - (1 << 16)
speed = speed / 2.8054 / 100
# Bytes 39, 40 is the force on the wheel to compute the power
force = int(lines[78:80] + lines[76:78], 16)
if (force & (1 << 15)) != 0:
force = force - (1 << 16)
# print "force",force
# byte 13 heart rate?
heartrate = int(lines[24:26], 16)
# cadnce 45,46
cadence = int(lines[90:92] + lines[88:90], 16)
# print "cadence", cadence
# if res in reslist: print res, force
if speed > 10:
print("%s,%s" % (res, force)) # , speed, heartrate
line = fp.readline()
| reslist = [-3251, -1625, 0, 1625, 3251, 4876, 6502, 8127, 9752, 11378, 13003]
def fromcomp(val, bits):
if val >> bits - 1 == 1:
return 0 - (val ^ 2 ** bits - 1) - 1
else:
return val
filepath = 'out.log'
with open(filepath) as fp:
line = fp.readline()
while line:
if line[32:34] == 'TX':
tline = line[-37:]
res = int(tline[15:17] + tline[12:14], 16)
if res & 1 << 15 != 0:
res = res - (1 << 16)
elif line[32:34] == 'RX':
lines = line[40:]
if len(lines) == 98:
speed = int(lines[66:68] + lines[64:66], 16)
if speed & 1 << 15 != 0:
speed = speed - (1 << 16)
speed = speed / 2.8054 / 100
force = int(lines[78:80] + lines[76:78], 16)
if force & 1 << 15 != 0:
force = force - (1 << 16)
heartrate = int(lines[24:26], 16)
cadence = int(lines[90:92] + lines[88:90], 16)
if speed > 10:
print('%s,%s' % (res, force))
line = fp.readline() |
# fun from StackOverflow :)
def toFixed(numObj, digits=0):
return f"{numObj:.{digits}f}"
# init
a = int(input("Enter a> "))
b = int(input("Enter b> "))
c = int(input("Enter c> "))
d = int(input("Enter d> "))
# calc
f = toFixed((a+b) / (c+d), 2)
# output
print("(a + b) / (c + d) = ", f)
| def to_fixed(numObj, digits=0):
return f'{numObj:.{digits}f}'
a = int(input('Enter a> '))
b = int(input('Enter b> '))
c = int(input('Enter c> '))
d = int(input('Enter d> '))
f = to_fixed((a + b) / (c + d), 2)
print('(a + b) / (c + d) = ', f) |
#20 se 100 takk vo print kro jo 2 se devied ho
num=20
while num<=100:
a=num-20
if num%2==0:
print(num)
num+=1 | num = 20
while num <= 100:
a = num - 20
if num % 2 == 0:
print(num)
num += 1 |
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"name": "HW5_FFT.py",
"provenance": [],
"collapsed_sections": [],
"authorship_tag": "ABX9TyOW+hfid580c7DvA724SrbG",
"include_colab_link": true
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
}
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/github/Patiphan43/2020/blob/master/HW5_FFT.py\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "code",
"metadata": {
"id": "oEUz56yG1NyV",
"colab_type": "code",
"colab": {}
},
"source": [
"import matplotlib.pyplot as plt\n",
"import numpy as np\n",
"\n",
"def gaussian_kernel(size, sigma=1):\n",
" \"\"\"\n",
" Generate 2D Gaussian kernel\n",
" Input: size = size of the Gaussian kernel\n",
" sigma = sigma of the Gaussian function\n",
" Output: 2D array of the Gaussian kernel\n",
" \"\"\"\n",
" n = size//2\n",
" xx, yy = np.meshgrid(range(-n,n+1), range(-n,n+1))\n",
" kernel = np.exp(- (xx**2 + yy**2) / (2*sigma**2))\n",
" kernel = kernel / kernel.sum()\n",
" return kernel\n",
"\n",
"\n",
"def gaussian_blur_fft(image, kernel_size=5, sigma=1):\n",
" \"\"\"\n",
" Perform Gaussian blur on the image using FFT\n",
" Input: image = the original image to perform Gaussian blur on\n",
" kernel_size = size of the Gaussian kernel\n",
" sigma = sigma of the Gaussian function\n",
" Output: Image after applied the Gaussian blur using FFT\n",
" Gaussian kernel in the frequency domain\n",
" Image in the frequency domain\n",
" Convolved image in the frequency domain\n",
" \"\"\"\n",
" kernel = gaussian_kernel(kernel_size, sigma)\n",
" \n",
" pad_height = kernel.shape[0]//2\n",
" pad_width = kernel.shape[1]//2\n",
"\n",
" padded_image = np.pad(image, ((pad_height, pad_height), (pad_width, pad_width), (0, 0)), 'edge')\n",
"\n",
" kernel_fft = np.fft.fft2(kernel, s=padded_image.shape[:2], axes=(0, 1))\n",
"\n",
" image_fft = np.fft.fft2(padded_image, axes=(0, 1))\n",
"\n",
" convolved_fft = kernel_fft[:, :, np.newaxis] * image_fft\n",
"\n",
" #find inverse of fft\n",
" inverse_fft = np.fft.ifft2(convolved_fft)\n",
"\n",
" return inverse_fft, kernel_fft, image_fft, convolved_fft\n",
"\n",
"if __name__ == \"__main__\":\n",
" img = plt.imread('cat.jpg')\n",
" img = img/255.\n",
" img_blur, kernel_fft, image_fft, convolved_fft = gaussian_blur_fft(img)\n",
"\n",
" image_fft_shift = np.log( abs(np.fft.fftshift(image_fft).real) + 1 )\n",
" kernel_fft_shift = np.fft.fftshift(kernel_fft)\n",
" convolved_fft_shift = np.log( abs(np.fft.fftshift(convolved_fft).real) + 1 )\n",
"\n",
" plt.figure()\n",
" plt.subplot(2,3,1)\n",
" plt.imshow(img)\n",
" plt.title('original')\n",
" plt.subplot(2,3,2)\n",
" plt.imshow(img_blur)\n",
" plt.title('blurred image')\n",
" \n",
" plt.subplot(2,3,4)\n",
" plt.imshow(kernel_fft.real)\n",
" plt.title('kernel')\n",
" plt.subplot(2,3,5)\n",
" plt.imshow(kernel_fft_shift.real)\n",
" plt.title('shifted kernel')\n",
" plt.subplot(2,3,6)\n",
" plt.imshow(image_fft_shift / image_fft_shift.max())\n",
" plt.title('shifted image fft magnitude')\n",
" plt.subplot(2,3,3)\n",
" plt.imshow(convolved_fft_shift / convolved_fft_shift.max())\n",
" plt.title('convolved image fft magnitude')\n",
" plt.show()"
],
"execution_count": null,
"outputs": []
}
]
} | {'nbformat': 4, 'nbformat_minor': 0, 'metadata': {'colab': {'name': 'HW5_FFT.py', 'provenance': [], 'collapsed_sections': [], 'authorship_tag': 'ABX9TyOW+hfid580c7DvA724SrbG', 'include_colab_link': true}, 'kernelspec': {'name': 'python3', 'display_name': 'Python 3'}}, 'cells': [{'cell_type': 'markdown', 'metadata': {'id': 'view-in-github', 'colab_type': 'text'}, 'source': ['<a href="https://colab.research.google.com/github/Patiphan43/2020/blob/master/HW5_FFT.py" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a>']}, {'cell_type': 'code', 'metadata': {'id': 'oEUz56yG1NyV', 'colab_type': 'code', 'colab': {}}, 'source': ['import matplotlib.pyplot as plt\n', 'import numpy as np\n', '\n', 'def gaussian_kernel(size, sigma=1):\n', ' """\n', ' Generate 2D Gaussian kernel\n', ' Input: size = size of the Gaussian kernel\n', ' sigma = sigma of the Gaussian function\n', ' Output: 2D array of the Gaussian kernel\n', ' """\n', ' n = size//2\n', ' xx, yy = np.meshgrid(range(-n,n+1), range(-n,n+1))\n', ' kernel = np.exp(- (xx**2 + yy**2) / (2*sigma**2))\n', ' kernel = kernel / kernel.sum()\n', ' return kernel\n', '\n', '\n', 'def gaussian_blur_fft(image, kernel_size=5, sigma=1):\n', ' """\n', ' Perform Gaussian blur on the image using FFT\n', ' Input: image = the original image to perform Gaussian blur on\n', ' kernel_size = size of the Gaussian kernel\n', ' sigma = sigma of the Gaussian function\n', ' Output: Image after applied the Gaussian blur using FFT\n', ' Gaussian kernel in the frequency domain\n', ' Image in the frequency domain\n', ' Convolved image in the frequency domain\n', ' """\n', ' kernel = gaussian_kernel(kernel_size, sigma)\n', ' \n', ' pad_height = kernel.shape[0]//2\n', ' pad_width = kernel.shape[1]//2\n', '\n', " padded_image = np.pad(image, ((pad_height, pad_height), (pad_width, pad_width), (0, 0)), 'edge')\n", '\n', ' kernel_fft = np.fft.fft2(kernel, s=padded_image.shape[:2], axes=(0, 1))\n', '\n', ' image_fft = np.fft.fft2(padded_image, axes=(0, 1))\n', '\n', ' convolved_fft = kernel_fft[:, :, np.newaxis] * image_fft\n', '\n', ' #find inverse of fft\n', ' inverse_fft = np.fft.ifft2(convolved_fft)\n', '\n', ' return inverse_fft, kernel_fft, image_fft, convolved_fft\n', '\n', 'if __name__ == "__main__":\n', " img = plt.imread('cat.jpg')\n", ' img = img/255.\n', ' img_blur, kernel_fft, image_fft, convolved_fft = gaussian_blur_fft(img)\n', '\n', ' image_fft_shift = np.log( abs(np.fft.fftshift(image_fft).real) + 1 )\n', ' kernel_fft_shift = np.fft.fftshift(kernel_fft)\n', ' convolved_fft_shift = np.log( abs(np.fft.fftshift(convolved_fft).real) + 1 )\n', '\n', ' plt.figure()\n', ' plt.subplot(2,3,1)\n', ' plt.imshow(img)\n', " plt.title('original')\n", ' plt.subplot(2,3,2)\n', ' plt.imshow(img_blur)\n', " plt.title('blurred image')\n", ' \n', ' plt.subplot(2,3,4)\n', ' plt.imshow(kernel_fft.real)\n', " plt.title('kernel')\n", ' plt.subplot(2,3,5)\n', ' plt.imshow(kernel_fft_shift.real)\n', " plt.title('shifted kernel')\n", ' plt.subplot(2,3,6)\n', ' plt.imshow(image_fft_shift / image_fft_shift.max())\n', " plt.title('shifted image fft magnitude')\n", ' plt.subplot(2,3,3)\n', ' plt.imshow(convolved_fft_shift / convolved_fft_shift.max())\n', " plt.title('convolved image fft magnitude')\n", ' plt.show()'], 'execution_count': null, 'outputs': []}]} |
def area_of_rectangle(a,b):
return a * b
a = int(input())
b = int(input())
print(area_of_rectangle(a,b)) | def area_of_rectangle(a, b):
return a * b
a = int(input())
b = int(input())
print(area_of_rectangle(a, b)) |
t = int(input())
for _ in range(t):
a, b = map(int, input().split())
diff = abs(b-a)
if diff == 0:
print(0)
continue
if diff % 10 == 0:
print(diff//10)
else:
print(diff//10 + 1) | t = int(input())
for _ in range(t):
(a, b) = map(int, input().split())
diff = abs(b - a)
if diff == 0:
print(0)
continue
if diff % 10 == 0:
print(diff // 10)
else:
print(diff // 10 + 1) |
def sortMolKeys(my_molecules):
if ' and ' not in list(my_molecules.keys())[0]:
my_sort = ['' for i in range(len(my_molecules))]
nums = [int(i.split()[0]) for i in my_molecules]
nums_sorted = ['%i'%i for i in sorted(nums)]
for key in my_molecules:
index = nums_sorted.index(key.split()[0])
my_sort[index] = key
else:
my_sort = []
nums = {}
for i in my_molecules.keys():
mol1 = int(i.split()[0])
mol2 = int(i.split()[-2])
if mol1 not in nums.keys(): nums[mol1] = []
nums[mol1].append(mol2)
for molStart in sorted(nums.keys()):
for molFinish in sorted(nums[molStart]):
for key in my_molecules:
if (key.split()[0] == '%i' % molStart) and (key.split()[-2] == '%i' % molFinish):
my_sort.append(key)
return my_sort
def box_str_to_boxname(name: str):
return 'box' + name
| def sort_mol_keys(my_molecules):
if ' and ' not in list(my_molecules.keys())[0]:
my_sort = ['' for i in range(len(my_molecules))]
nums = [int(i.split()[0]) for i in my_molecules]
nums_sorted = ['%i' % i for i in sorted(nums)]
for key in my_molecules:
index = nums_sorted.index(key.split()[0])
my_sort[index] = key
else:
my_sort = []
nums = {}
for i in my_molecules.keys():
mol1 = int(i.split()[0])
mol2 = int(i.split()[-2])
if mol1 not in nums.keys():
nums[mol1] = []
nums[mol1].append(mol2)
for mol_start in sorted(nums.keys()):
for mol_finish in sorted(nums[molStart]):
for key in my_molecules:
if key.split()[0] == '%i' % molStart and key.split()[-2] == '%i' % molFinish:
my_sort.append(key)
return my_sort
def box_str_to_boxname(name: str):
return 'box' + name |
#!/usr/bin/env python3
# Copyright 2009-2017 BHG http://bw.org/
# No difference between single and double quotes
x = '''
seven
'''.capitalize()
print('x is {}'.format(x))
print(type(x))
| x = ' \n\nseven\n\n'.capitalize()
print('x is {}'.format(x))
print(type(x)) |
x = int(input())
y = int(input())
# the variables `x` and `y` are defined, so just print their sum
print(sum([x, y]))
| x = int(input())
y = int(input())
print(sum([x, y])) |
hash_table = [0] * 8
def get_key(data):
return hash(data)
def get_address(key):
return key % 8
def save_data(data, value):
key = get_key(data)
addr = get_address(key)
if not hash_table[addr]:
hash_table[addr] = [[key, value]]
else:
for i in range(len(hash_table[addr])):
if hash_table[addr][i][0] == key:
hash_table[addr][i][1] = value
return
hash_table[addr].append([key, value])
def read_data(data):
key = get_key(data)
addr = get_address(key)
if not hash_table[addr]:
return None
else:
for i in range(len(hash_table[addr])):
if hash_table[addr][i][0] == key:
return hash_table[addr][i][1]
return None
| hash_table = [0] * 8
def get_key(data):
return hash(data)
def get_address(key):
return key % 8
def save_data(data, value):
key = get_key(data)
addr = get_address(key)
if not hash_table[addr]:
hash_table[addr] = [[key, value]]
else:
for i in range(len(hash_table[addr])):
if hash_table[addr][i][0] == key:
hash_table[addr][i][1] = value
return
hash_table[addr].append([key, value])
def read_data(data):
key = get_key(data)
addr = get_address(key)
if not hash_table[addr]:
return None
else:
for i in range(len(hash_table[addr])):
if hash_table[addr][i][0] == key:
return hash_table[addr][i][1]
return None |
set_name(0x8012427C, "PresOnlyTestRoutine__Fv", SN_NOWARN)
set_name(0x801242A4, "FeInitBuffer__Fv", SN_NOWARN)
set_name(0x801242CC, "FeAddEntry__Fii8TXT_JUSTiP7FeTableP5CFont", SN_NOWARN)
set_name(0x8012433C, "FeAddTable__FP11FeMenuTablei", SN_NOWARN)
set_name(0x801243BC, "FeDrawBuffer__Fv", SN_NOWARN)
set_name(0x80124874, "FeNewMenu__FP7FeTable", SN_NOWARN)
set_name(0x801248F4, "FePrevMenu__Fv", SN_NOWARN)
set_name(0x80124978, "FeSelUp__Fi", SN_NOWARN)
set_name(0x80124A60, "FeSelDown__Fi", SN_NOWARN)
set_name(0x80124B44, "FeGetCursor__Fv", SN_NOWARN)
set_name(0x80124B58, "FeSelect__Fv", SN_NOWARN)
set_name(0x80124B9C, "FeMainKeyCtrl__FP7CScreen", SN_NOWARN)
set_name(0x80124DA8, "InitDummyMenu__Fv", SN_NOWARN)
set_name(0x80124DB0, "InitFrontEnd__FP9FE_CREATE", SN_NOWARN)
set_name(0x80124E74, "FeInitMainMenu__Fv", SN_NOWARN)
set_name(0x80124ED0, "FeInitNewGameMenu__Fv", SN_NOWARN)
set_name(0x80124F1C, "FeNewGameMenuCtrl__Fv", SN_NOWARN)
set_name(0x80125010, "FeInitPlayer1ClassMenu__Fv", SN_NOWARN)
set_name(0x80125060, "FeInitPlayer2ClassMenu__Fv", SN_NOWARN)
set_name(0x801250B0, "FePlayerClassMenuCtrl__Fv", SN_NOWARN)
set_name(0x801250F8, "FeDrawChrClass__Fv", SN_NOWARN)
set_name(0x80125594, "FeInitNewP1NameMenu__Fv", SN_NOWARN)
set_name(0x801255E4, "FeInitNewP2NameMenu__Fv", SN_NOWARN)
set_name(0x80125634, "FeNewNameMenuCtrl__Fv", SN_NOWARN)
set_name(0x80125B84, "FeCopyPlayerInfoForReturn__Fv", SN_NOWARN)
set_name(0x80125C54, "FeEnterGame__Fv", SN_NOWARN)
set_name(0x80125C7C, "FeInitLoadMemcardSelect__Fv", SN_NOWARN)
set_name(0x80125CE4, "FeInitLoadChar1Menu__Fv", SN_NOWARN)
set_name(0x80125D50, "FeInitLoadChar2Menu__Fv", SN_NOWARN)
set_name(0x80125DBC, "FeInitDifficultyMenu__Fv", SN_NOWARN)
set_name(0x80125E00, "FeDifficultyMenuCtrl__Fv", SN_NOWARN)
set_name(0x80125EB8, "FeInitBackgroundMenu__Fv", SN_NOWARN)
set_name(0x80125F00, "FeInitBook1Menu__Fv", SN_NOWARN)
set_name(0x80125F4C, "FeInitBook2Menu__Fv", SN_NOWARN)
set_name(0x80125F98, "FeBackBookMenuCtrl__Fv", SN_NOWARN)
set_name(0x80126194, "PlayDemo__Fv", SN_NOWARN)
set_name(0x801261A8, "FadeFEOut__FP7CScreen", SN_NOWARN)
set_name(0x8012625C, "FrontEndTask__FP4TASK", SN_NOWARN)
set_name(0x801265C4, "McMainCharKeyCtrl__Fv", SN_NOWARN)
set_name(0x801268F0, "___6Dialog", SN_NOWARN)
set_name(0x80126918, "__6Dialog", SN_NOWARN)
set_name(0x80126974, "___7CScreen", SN_NOWARN)
set_name(0x80127538, "InitCredits__Fv", SN_NOWARN)
set_name(0x80127574, "PrintCredits__FPciiiii", SN_NOWARN)
set_name(0x80127D94, "DrawCreditsTitle__Fiiiii", SN_NOWARN)
set_name(0x80127E60, "DrawCreditsSubTitle__Fiiiii", SN_NOWARN)
set_name(0x80127F3C, "DoCredits__Fv", SN_NOWARN)
set_name(0x801281B0, "PRIM_GetPrim__FPP8POLY_FT4", SN_NOWARN)
set_name(0x8012822C, "GetCharHeight__5CFontc", SN_NOWARN)
set_name(0x80128264, "GetCharWidth__5CFontc", SN_NOWARN)
set_name(0x801282BC, "___7CScreen_addr_801282BC", SN_NOWARN)
set_name(0x801282DC, "GetFr__7TextDati", SN_NOWARN)
set_name(0x8012C8D4, "endian_swap__FPUci", SN_NOWARN)
set_name(0x8012C908, "to_sjis__Fc", SN_NOWARN)
set_name(0x8012C988, "to_ascii__FUs", SN_NOWARN)
set_name(0x8012CA08, "ascii_to_sjis__FPcPUs", SN_NOWARN)
set_name(0x8012CA9C, "sjis_to_ascii__FPUsPc", SN_NOWARN)
set_name(0x8012CB24, "test_hw_event__Fv", SN_NOWARN)
set_name(0x8012CBB4, "read_card_directory__Fi", SN_NOWARN)
set_name(0x8012CDEC, "test_card_format__Fi", SN_NOWARN)
set_name(0x8012CE7C, "checksum_data__FPci", SN_NOWARN)
set_name(0x8012CEB8, "delete_card_file__Fii", SN_NOWARN)
set_name(0x8012CFB0, "read_card_file__FiiiPc", SN_NOWARN)
set_name(0x8012D168, "format_card__Fi", SN_NOWARN)
set_name(0x8012D218, "write_card_file__FiiPcT2PUcPUsiT4", SN_NOWARN)
set_name(0x8012D560, "new_card__Fi", SN_NOWARN)
set_name(0x8012D5DC, "service_card__Fi", SN_NOWARN)
set_name(0x801477D4, "GetFileNumber__FiPc", SN_NOWARN)
set_name(0x80147894, "DoSaveCharacter__FPc", SN_NOWARN)
set_name(0x8014795C, "DoSaveGame__Fv", SN_NOWARN)
set_name(0x80147A1C, "DoLoadGame__Fv", SN_NOWARN)
set_name(0x80147A5C, "DoFrontEndLoadCharacter__FPc", SN_NOWARN)
set_name(0x80147AB8, "McInitLoadCard1Menu__Fv", SN_NOWARN)
set_name(0x80147B04, "McInitLoadCard2Menu__Fv", SN_NOWARN)
set_name(0x80147B50, "ChooseCardLoad__Fv", SN_NOWARN)
set_name(0x80147C04, "McInitLoadCharMenu__Fv", SN_NOWARN)
set_name(0x80147C2C, "McInitLoadGameMenu__Fv", SN_NOWARN)
set_name(0x80147C88, "McMainKeyCtrl__Fv", SN_NOWARN)
set_name(0x80147E44, "ShowAlertBox__Fv", SN_NOWARN)
set_name(0x80147FE4, "GetLoadStatusMessage__FPc", SN_NOWARN)
set_name(0x80148064, "GetSaveStatusMessage__FiPc", SN_NOWARN)
set_name(0x8014813C, "SetRGB__6DialogUcUcUc", SN_NOWARN)
set_name(0x8014815C, "SetBack__6Dialogi", SN_NOWARN)
set_name(0x80148164, "SetBorder__6Dialogi", SN_NOWARN)
set_name(0x8014816C, "SetOTpos__6Dialogi", SN_NOWARN)
set_name(0x80148178, "___6Dialog_addr_80148178", SN_NOWARN)
set_name(0x801481A0, "__6Dialog_addr_801481A0", SN_NOWARN)
set_name(0x801481FC, "ILoad__Fv", SN_NOWARN)
set_name(0x80148250, "LoadQuest__Fi", SN_NOWARN)
set_name(0x80148318, "ISave__Fi", SN_NOWARN)
set_name(0x80148378, "SaveQuest__Fi", SN_NOWARN)
set_name(0x80148444, "PSX_GM_SaveGame__FiPcT1", SN_NOWARN)
set_name(0x801486F8, "PSX_GM_LoadGame__FUcii", SN_NOWARN)
set_name(0x801489F4, "PSX_CH_LoadGame__Fii", SN_NOWARN)
set_name(0x80148B1C, "PSX_CH_SaveGame__FiPcT1", SN_NOWARN)
set_name(0x80148C74, "RestorePads__Fv", SN_NOWARN)
set_name(0x80148D34, "StorePads__Fv", SN_NOWARN)
set_name(0x80126A48, "CreditsTitle", SN_NOWARN)
set_name(0x80126BF0, "CreditsSubTitle", SN_NOWARN)
set_name(0x8012708C, "CreditsText", SN_NOWARN)
set_name(0x801271A4, "CreditsTable", SN_NOWARN)
set_name(0x801283D4, "card_dir", SN_NOWARN)
set_name(0x801288D4, "card_header", SN_NOWARN)
set_name(0x801282F8, "sjis_table", SN_NOWARN)
set_name(0x8012D7D4, "save_buffer", SN_NOWARN)
set_name(0x8012D73C, "McLoadGameMenu", SN_NOWARN)
set_name(0x8012D71C, "CharFileList", SN_NOWARN)
set_name(0x8012D730, "Classes", SN_NOWARN)
set_name(0x8012D758, "McLoadCharMenu", SN_NOWARN)
set_name(0x8012D774, "McLoadCard1Menu", SN_NOWARN)
set_name(0x8012D790, "McLoadCard2Menu", SN_NOWARN)
| set_name(2148680316, 'PresOnlyTestRoutine__Fv', SN_NOWARN)
set_name(2148680356, 'FeInitBuffer__Fv', SN_NOWARN)
set_name(2148680396, 'FeAddEntry__Fii8TXT_JUSTiP7FeTableP5CFont', SN_NOWARN)
set_name(2148680508, 'FeAddTable__FP11FeMenuTablei', SN_NOWARN)
set_name(2148680636, 'FeDrawBuffer__Fv', SN_NOWARN)
set_name(2148681844, 'FeNewMenu__FP7FeTable', SN_NOWARN)
set_name(2148681972, 'FePrevMenu__Fv', SN_NOWARN)
set_name(2148682104, 'FeSelUp__Fi', SN_NOWARN)
set_name(2148682336, 'FeSelDown__Fi', SN_NOWARN)
set_name(2148682564, 'FeGetCursor__Fv', SN_NOWARN)
set_name(2148682584, 'FeSelect__Fv', SN_NOWARN)
set_name(2148682652, 'FeMainKeyCtrl__FP7CScreen', SN_NOWARN)
set_name(2148683176, 'InitDummyMenu__Fv', SN_NOWARN)
set_name(2148683184, 'InitFrontEnd__FP9FE_CREATE', SN_NOWARN)
set_name(2148683380, 'FeInitMainMenu__Fv', SN_NOWARN)
set_name(2148683472, 'FeInitNewGameMenu__Fv', SN_NOWARN)
set_name(2148683548, 'FeNewGameMenuCtrl__Fv', SN_NOWARN)
set_name(2148683792, 'FeInitPlayer1ClassMenu__Fv', SN_NOWARN)
set_name(2148683872, 'FeInitPlayer2ClassMenu__Fv', SN_NOWARN)
set_name(2148683952, 'FePlayerClassMenuCtrl__Fv', SN_NOWARN)
set_name(2148684024, 'FeDrawChrClass__Fv', SN_NOWARN)
set_name(2148685204, 'FeInitNewP1NameMenu__Fv', SN_NOWARN)
set_name(2148685284, 'FeInitNewP2NameMenu__Fv', SN_NOWARN)
set_name(2148685364, 'FeNewNameMenuCtrl__Fv', SN_NOWARN)
set_name(2148686724, 'FeCopyPlayerInfoForReturn__Fv', SN_NOWARN)
set_name(2148686932, 'FeEnterGame__Fv', SN_NOWARN)
set_name(2148686972, 'FeInitLoadMemcardSelect__Fv', SN_NOWARN)
set_name(2148687076, 'FeInitLoadChar1Menu__Fv', SN_NOWARN)
set_name(2148687184, 'FeInitLoadChar2Menu__Fv', SN_NOWARN)
set_name(2148687292, 'FeInitDifficultyMenu__Fv', SN_NOWARN)
set_name(2148687360, 'FeDifficultyMenuCtrl__Fv', SN_NOWARN)
set_name(2148687544, 'FeInitBackgroundMenu__Fv', SN_NOWARN)
set_name(2148687616, 'FeInitBook1Menu__Fv', SN_NOWARN)
set_name(2148687692, 'FeInitBook2Menu__Fv', SN_NOWARN)
set_name(2148687768, 'FeBackBookMenuCtrl__Fv', SN_NOWARN)
set_name(2148688276, 'PlayDemo__Fv', SN_NOWARN)
set_name(2148688296, 'FadeFEOut__FP7CScreen', SN_NOWARN)
set_name(2148688476, 'FrontEndTask__FP4TASK', SN_NOWARN)
set_name(2148689348, 'McMainCharKeyCtrl__Fv', SN_NOWARN)
set_name(2148690160, '___6Dialog', SN_NOWARN)
set_name(2148690200, '__6Dialog', SN_NOWARN)
set_name(2148690292, '___7CScreen', SN_NOWARN)
set_name(2148693304, 'InitCredits__Fv', SN_NOWARN)
set_name(2148693364, 'PrintCredits__FPciiiii', SN_NOWARN)
set_name(2148695444, 'DrawCreditsTitle__Fiiiii', SN_NOWARN)
set_name(2148695648, 'DrawCreditsSubTitle__Fiiiii', SN_NOWARN)
set_name(2148695868, 'DoCredits__Fv', SN_NOWARN)
set_name(2148696496, 'PRIM_GetPrim__FPP8POLY_FT4', SN_NOWARN)
set_name(2148696620, 'GetCharHeight__5CFontc', SN_NOWARN)
set_name(2148696676, 'GetCharWidth__5CFontc', SN_NOWARN)
set_name(2148696764, '___7CScreen_addr_801282BC', SN_NOWARN)
set_name(2148696796, 'GetFr__7TextDati', SN_NOWARN)
set_name(2148714708, 'endian_swap__FPUci', SN_NOWARN)
set_name(2148714760, 'to_sjis__Fc', SN_NOWARN)
set_name(2148714888, 'to_ascii__FUs', SN_NOWARN)
set_name(2148715016, 'ascii_to_sjis__FPcPUs', SN_NOWARN)
set_name(2148715164, 'sjis_to_ascii__FPUsPc', SN_NOWARN)
set_name(2148715300, 'test_hw_event__Fv', SN_NOWARN)
set_name(2148715444, 'read_card_directory__Fi', SN_NOWARN)
set_name(2148716012, 'test_card_format__Fi', SN_NOWARN)
set_name(2148716156, 'checksum_data__FPci', SN_NOWARN)
set_name(2148716216, 'delete_card_file__Fii', SN_NOWARN)
set_name(2148716464, 'read_card_file__FiiiPc', SN_NOWARN)
set_name(2148716904, 'format_card__Fi', SN_NOWARN)
set_name(2148717080, 'write_card_file__FiiPcT2PUcPUsiT4', SN_NOWARN)
set_name(2148717920, 'new_card__Fi', SN_NOWARN)
set_name(2148718044, 'service_card__Fi', SN_NOWARN)
set_name(2148825044, 'GetFileNumber__FiPc', SN_NOWARN)
set_name(2148825236, 'DoSaveCharacter__FPc', SN_NOWARN)
set_name(2148825436, 'DoSaveGame__Fv', SN_NOWARN)
set_name(2148825628, 'DoLoadGame__Fv', SN_NOWARN)
set_name(2148825692, 'DoFrontEndLoadCharacter__FPc', SN_NOWARN)
set_name(2148825784, 'McInitLoadCard1Menu__Fv', SN_NOWARN)
set_name(2148825860, 'McInitLoadCard2Menu__Fv', SN_NOWARN)
set_name(2148825936, 'ChooseCardLoad__Fv', SN_NOWARN)
set_name(2148826116, 'McInitLoadCharMenu__Fv', SN_NOWARN)
set_name(2148826156, 'McInitLoadGameMenu__Fv', SN_NOWARN)
set_name(2148826248, 'McMainKeyCtrl__Fv', SN_NOWARN)
set_name(2148826692, 'ShowAlertBox__Fv', SN_NOWARN)
set_name(2148827108, 'GetLoadStatusMessage__FPc', SN_NOWARN)
set_name(2148827236, 'GetSaveStatusMessage__FiPc', SN_NOWARN)
set_name(2148827452, 'SetRGB__6DialogUcUcUc', SN_NOWARN)
set_name(2148827484, 'SetBack__6Dialogi', SN_NOWARN)
set_name(2148827492, 'SetBorder__6Dialogi', SN_NOWARN)
set_name(2148827500, 'SetOTpos__6Dialogi', SN_NOWARN)
set_name(2148827512, '___6Dialog_addr_80148178', SN_NOWARN)
set_name(2148827552, '__6Dialog_addr_801481A0', SN_NOWARN)
set_name(2148827644, 'ILoad__Fv', SN_NOWARN)
set_name(2148827728, 'LoadQuest__Fi', SN_NOWARN)
set_name(2148827928, 'ISave__Fi', SN_NOWARN)
set_name(2148828024, 'SaveQuest__Fi', SN_NOWARN)
set_name(2148828228, 'PSX_GM_SaveGame__FiPcT1', SN_NOWARN)
set_name(2148828920, 'PSX_GM_LoadGame__FUcii', SN_NOWARN)
set_name(2148829684, 'PSX_CH_LoadGame__Fii', SN_NOWARN)
set_name(2148829980, 'PSX_CH_SaveGame__FiPcT1', SN_NOWARN)
set_name(2148830324, 'RestorePads__Fv', SN_NOWARN)
set_name(2148830516, 'StorePads__Fv', SN_NOWARN)
set_name(2148690504, 'CreditsTitle', SN_NOWARN)
set_name(2148690928, 'CreditsSubTitle', SN_NOWARN)
set_name(2148692108, 'CreditsText', SN_NOWARN)
set_name(2148692388, 'CreditsTable', SN_NOWARN)
set_name(2148697044, 'card_dir', SN_NOWARN)
set_name(2148698324, 'card_header', SN_NOWARN)
set_name(2148696824, 'sjis_table', SN_NOWARN)
set_name(2148718548, 'save_buffer', SN_NOWARN)
set_name(2148718396, 'McLoadGameMenu', SN_NOWARN)
set_name(2148718364, 'CharFileList', SN_NOWARN)
set_name(2148718384, 'Classes', SN_NOWARN)
set_name(2148718424, 'McLoadCharMenu', SN_NOWARN)
set_name(2148718452, 'McLoadCard1Menu', SN_NOWARN)
set_name(2148718480, 'McLoadCard2Menu', SN_NOWARN) |
src='2018-5540'
region='box[[181pix,79pix], [681pix,816pix]]'
directory='/Volumes/NARNIA/pilot_cutouts/leakage_corrected/2018-5540/'
imsubimage(imagename='FDF_peakRM_fitted_corrected.fits',outfile='pkrm_smol_temp',region=region,overwrite=True,dropdeg=True)
exportfits(imagename='pkrm_smol_temp',fitsimage='2018-5540_pkrm_forSF.fits',overwrite=True)
imsubimage(imagename='2018-5540_FDF_peakRM_dropdeg.fits',outfile='dd_smol_temp',region=region,overwrite=True,dropdeg=True)
exportfits(imagename='dd_smol_temp',fitsimage='2018-5540_pkrm_dropdeg_forSF.fits',overwrite=True)
imsubimage(imagename='2018-5540_RM_error.fits',outfile='err_smol_temp',region=region,overwrite=True,dropdeg=True)
exportfits(imagename='err_smol_temp',fitsimage='2018-5540_RM_error_forSF.fits',overwrite=True)
os.system("rm -r *_temp") | src = '2018-5540'
region = 'box[[181pix,79pix], [681pix,816pix]]'
directory = '/Volumes/NARNIA/pilot_cutouts/leakage_corrected/2018-5540/'
imsubimage(imagename='FDF_peakRM_fitted_corrected.fits', outfile='pkrm_smol_temp', region=region, overwrite=True, dropdeg=True)
exportfits(imagename='pkrm_smol_temp', fitsimage='2018-5540_pkrm_forSF.fits', overwrite=True)
imsubimage(imagename='2018-5540_FDF_peakRM_dropdeg.fits', outfile='dd_smol_temp', region=region, overwrite=True, dropdeg=True)
exportfits(imagename='dd_smol_temp', fitsimage='2018-5540_pkrm_dropdeg_forSF.fits', overwrite=True)
imsubimage(imagename='2018-5540_RM_error.fits', outfile='err_smol_temp', region=region, overwrite=True, dropdeg=True)
exportfits(imagename='err_smol_temp', fitsimage='2018-5540_RM_error_forSF.fits', overwrite=True)
os.system('rm -r *_temp') |
# coding=utf-8
BASE_ENDPOINT = "http://sskj.si/?s={}"
MAX_DEFINITIONS = 50
MAX_CACHE_AGE = 43200
class SpecialChars:
TERMINOLOGY = u"\u25CF"
SLANG = u"\u2666"
REPLACEMENTS = {
# no-break space replacement with normal space
"\xa0": " "
}
def remove_num(d):
for n in range(1, MAX_DEFINITIONS):
if str(d).startswith(str(n) + "."):
return str(d).strip(str(n) + ".")
def parse_encoding(data):
for target, replacement in REPLACEMENTS.items():
data = str(data).replace(target, replacement)
return data
strip_chars = [
" ", "\n", "\t",
]
def clean(data):
data = str(data)
for char in strip_chars:
data = data.strip(char)
return data
| base_endpoint = 'http://sskj.si/?s={}'
max_definitions = 50
max_cache_age = 43200
class Specialchars:
terminology = u'●'
slang = u'♦'
replacements = {'\xa0': ' '}
def remove_num(d):
for n in range(1, MAX_DEFINITIONS):
if str(d).startswith(str(n) + '.'):
return str(d).strip(str(n) + '.')
def parse_encoding(data):
for (target, replacement) in REPLACEMENTS.items():
data = str(data).replace(target, replacement)
return data
strip_chars = [' ', '\n', '\t']
def clean(data):
data = str(data)
for char in strip_chars:
data = data.strip(char)
return data |
#### Regulation Z
IGNORE_DEFINITIONS_IN_PART_1026 = [
'credit report',
'credit-report',
'Consumer Price Index',
'credit counseling',
'and credit the',
'credit reporting agencies',
'credit history',
'Credit the amount',
'credit to a deposit account',
'Consumer Price level',
'may state',
'and state that',
'could state',
'must state',
'shall state',
'application',
'fail to credit',
'consumer reporting agency',
'states specific',
'act',
'Act',
'deferred interest or similar plan',
]
FR_NOTICE_OVERRIDES_1026 = {
'2015-18239': {
'dates': 'The amendments in this final rule are effective on '
'October 3, 2015. The effective date of 78 FR 79730, '
'79 FR 65299, and 80 FR 8767 has been delayed until '
'October 3, 2015',
}
}
| ignore_definitions_in_part_1026 = ['credit report', 'credit-report', 'Consumer Price Index', 'credit counseling', 'and credit the', 'credit reporting agencies', 'credit history', 'Credit the amount', 'credit to a deposit account', 'Consumer Price level', 'may state', 'and state that', 'could state', 'must state', 'shall state', 'application', 'fail to credit', 'consumer reporting agency', 'states specific', 'act', 'Act', 'deferred interest or similar plan']
fr_notice_overrides_1026 = {'2015-18239': {'dates': 'The amendments in this final rule are effective on October 3, 2015. The effective date of 78 FR 79730, 79 FR 65299, and 80 FR 8767 has been delayed until October 3, 2015'}} |
class Solution:
def bitwiseComplement(self, N: int) -> int:
X = 1
while N > X: X = X * 2 + 1
return X - N
| class Solution:
def bitwise_complement(self, N: int) -> int:
x = 1
while N > X:
x = X * 2 + 1
return X - N |
class Constants:
HEADERS = {
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:70.0) '
'Gecko/20100101 Firefox/70.0'
}
HEADERS = {
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:70.0) '
'Gecko/20100101 Firefox/70.0',
"Connection": "close"
}
| class Constants:
headers = {'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:70.0) Gecko/20100101 Firefox/70.0'}
headers = {'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:70.0) Gecko/20100101 Firefox/70.0', 'Connection': 'close'} |
# You are developing an online booking portal for a bus tour company. On the website, tourists can book in
# groups to come on your company's city bus tour. The company has various buses with different capacities.
# You want to determine, from the list of available bookings, if you can completely fill up a particular bus.
# The golden rule is that you cannot break groups apart and put them on separate buses.
# More formally:
#
# For:
# A bus with capacity: int full_cap
# A list of group bookings, where each element represents a group size: int list group_sizes
# Write a function that returns true iff groupSizes contains a subset that when you sum it up is equal to c.
# That is from the list of group bookings you can completely fill up a bus
#
# Assume:
# capacity full_cap is greater or equal to 0
# each integer in groupSizes is greater than 0
#
# Examples:
# groupSizes = {4, 13, 5, 12, 6, 1, 8}, full_cap = 11 should return true as subset (5, 6) has a sum of 9
# groupSizes = {1, 1, 1}, full_cap = 3 should return true as subset (1, 1, 1) has a sum of 3
# groupSizes = {4, 5, 6, 7}, full_cap = 100 should return false
class FullBusTour:
def __init__(self, group_sizes, full_cap):
self.group_sizes = group_sizes
self.full_cap = full_cap
def fits_exactly(self):
return False
| class Fullbustour:
def __init__(self, group_sizes, full_cap):
self.group_sizes = group_sizes
self.full_cap = full_cap
def fits_exactly(self):
return False |
#
# PySNMP MIB module SIEMENS-HP4KHIM-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/SIEMENS-HP4KHIM-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:04:13 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsIntersection")
ModuleCompliance, ObjectGroup, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "ObjectGroup", "NotificationGroup")
TimeTicks, enterprises, Counter32, Unsigned32, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, NotificationType, Bits, Counter64, Integer32, iso, ModuleIdentity, MibIdentifier, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "enterprises", "Counter32", "Unsigned32", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "NotificationType", "Bits", "Counter64", "Integer32", "iso", "ModuleIdentity", "MibIdentifier", "IpAddress")
MacAddress, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "MacAddress", "TextualConvention", "DisplayString")
siemens = MibIdentifier((1, 3, 6, 1, 4, 1, 4329))
iandcAdmin = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2))
hp4khim = ModuleIdentity((1, 3, 6, 1, 4, 1, 4329, 2, 51))
hp4khim.setRevisions(('2006-06-07 07:47',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: hp4khim.setRevisionsDescriptions(('Initial version.',))
if mibBuilder.loadTexts: hp4khim.setLastUpdated('200611100000Z')
if mibBuilder.loadTexts: hp4khim.setOrganization('Siemens')
if mibBuilder.loadTexts: hp4khim.setContactInfo('David Nemeskey')
if mibBuilder.loadTexts: hp4khim.setDescription('')
class HimPEN(TextualConvention, OctetString):
description = 'Octet String for storing PEN numbers. The format is The PEN is displayed in the following format: [LTG]-[LTU]-[EBT]. LTG: Line/Trunk Group: always 1 LTU: Line/Trunk Unit: a number between 1 and 99 EBT: a three-digit number.'
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 9)
class HimPabxId(TextualConvention, Integer32):
description = 'Textual convention for the Pabx Id.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(1, 2147483647)
class HimSwitchNumber(TextualConvention, OctetString):
description = 'Data type of the switch number.'
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 17)
class HimYesNo(TextualConvention, Integer32):
description = 'Boolean data type: 1. no 2. yes The order is set like this to comply with the definition of data leaves in the hicom MIB that use this convention implicitly.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 0))
namedValues = NamedValues(("yes", 1), ("no", 2), ("other", 0))
class DiscoveryStates(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))
namedValues = NamedValues(("done", 1), ("error", 2), ("busy", 3), ("finok", 4), ("finerr", 5), ("kill", 6))
class DiscoveryModes(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 9))
namedValues = NamedValues(("man", 1), ("auto", 2), ("undef", 9))
class HimPhoneNumber(TextualConvention, OctetString):
description = 'Convention that represents phone numbers in a HiPath system.'
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 22)
class HimShelfNWType(TextualConvention, Integer32):
description = 'Network type of the shelf.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 0))
namedValues = NamedValues(("flex", 1), ("local", 2), ("apnw", 3), ("apdl", 4), ("other", 0))
himWelcomePage = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1))
himWelPgTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1), )
if mibBuilder.loadTexts: himWelPgTable.setStatus('current')
if mibBuilder.loadTexts: himWelPgTable.setDescription('')
himWelPgEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himWelPgPabxId"))
if mibBuilder.loadTexts: himWelPgEntry.setStatus('current')
if mibBuilder.loadTexts: himWelPgEntry.setDescription('')
himWelPgPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himWelPgPabxId.setStatus('current')
if mibBuilder.loadTexts: himWelPgPabxId.setDescription('')
himWelPgSysNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 2), HimSwitchNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himWelPgSysNo.setStatus('current')
if mibBuilder.loadTexts: himWelPgSysNo.setDescription('This field contains the system number (max. 17 characters).')
himHP4KVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHP4KVersion.setStatus('current')
if mibBuilder.loadTexts: himHP4KVersion.setDescription('This field contains the Hicom/HiPath version number of the system (max. 4 characters).')
himSystemRelease = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSystemRelease.setStatus('current')
if mibBuilder.loadTexts: himSystemRelease.setDescription('This field contains the system release number of the system (max. 2 characters).')
himRevisionLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himRevisionLevel.setStatus('current')
if mibBuilder.loadTexts: himRevisionLevel.setDescription('This field contains the revision number of the system software (max. 2 characters).')
himHWArchitecture = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 25))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHWArchitecture.setStatus('current')
if mibBuilder.loadTexts: himHWArchitecture.setDescription("This field contains the information on hardware architecture in the format [hw-architecture][system-variant][hw-design] [hw-architecture] Abbreviation describing hardware architecture. F.i '4300', '350E', etc. [system-variant] H40: SYSTEM VARIANT 40 H80: SYSTEM VARIANT 80 H600: SYSTEM VARIANT 600 [hw-design] ECX: HARDWARE DESIGN EXTENDED COMPACT EXTENDED ECDSC: HARDWARE DESIGN EXTENDED COMPACT DSC CXE: HARDWARE DESIGN EXTENDED COMPACT CXE")
himHWArchitectureType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHWArchitectureType.setStatus('current')
if mibBuilder.loadTexts: himHWArchitectureType.setDescription('This field contains abbreviation describing hardware architecture type (max. 3 characters).')
himOperationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 7))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himOperationMode.setStatus('current')
if mibBuilder.loadTexts: himOperationMode.setDescription('This field contains the operating mode of the system. Possible Values: SIMPLEX: OPERATING MODE SIMPLEX DUPLEX: OPERATING MODE DUPLEX REDUNDANCY')
himSWUProc1 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUProc1.setStatus('current')
if mibBuilder.loadTexts: himSWUProc1.setDescription('These fields contains the name of the SWU processor board (max. 8 characters). SWU = Switching Unit Possible values: - CC-A - CC-B')
himSWUMemory1 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUMemory1.setStatus('current')
if mibBuilder.loadTexts: himSWUMemory1.setDescription('These fields contain the size of the SWU memory for each processor card. SWU = Switching Unit')
himSWUProc2 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 11), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUProc2.setStatus('current')
if mibBuilder.loadTexts: himSWUProc2.setDescription('These fields contains the name of the SWU processor board (max. 8 characters). SWU = Switching Unit Possible values: - CC-A - CC-B')
himSWUMemory2 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUMemory2.setStatus('current')
if mibBuilder.loadTexts: himSWUMemory2.setDescription('These fields contain the size of the SWU memory for each processor card. SWU = Switching Unit')
himSwitchData = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2))
himTechInfoTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1), )
if mibBuilder.loadTexts: himTechInfoTable.setStatus('current')
if mibBuilder.loadTexts: himTechInfoTable.setDescription('')
himTechInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himTechInfoPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himTechInfoInfoNo"))
if mibBuilder.loadTexts: himTechInfoEntry.setStatus('current')
if mibBuilder.loadTexts: himTechInfoEntry.setDescription('')
himTechInfoPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himTechInfoPabxId.setStatus('current')
if mibBuilder.loadTexts: himTechInfoPabxId.setDescription('')
himTechInfoInfoNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 7))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himTechInfoInfoNo.setStatus('current')
if mibBuilder.loadTexts: himTechInfoInfoNo.setDescription('This field contains the number of the subsystem. This number can be assigned as required when configuring the subsystem.')
himTechInfoDate = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himTechInfoDate.setStatus('current')
if mibBuilder.loadTexts: himTechInfoDate.setDescription('This field contains the date on which the subsystem was configured.')
himTechInfoTechnicalData = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himTechInfoTechnicalData.setStatus('current')
if mibBuilder.loadTexts: himTechInfoTechnicalData.setDescription('This field contains the technical data of the subsystem.')
himTechInfoNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himTechInfoNumber.setStatus('current')
if mibBuilder.loadTexts: himTechInfoNumber.setDescription('This field contains the number of each subsystem configured.')
himTechInfoExtraText = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himTechInfoExtraText.setStatus('current')
if mibBuilder.loadTexts: himTechInfoExtraText.setDescription('This field contains additional text.')
himNotepadDataTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 2), )
if mibBuilder.loadTexts: himNotepadDataTable.setStatus('current')
if mibBuilder.loadTexts: himNotepadDataTable.setDescription('This node contains the system data entered in a notepad. The table for notepad entries holds a maximum of 30 data records.')
himNotepadDataEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 2, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himNotepadDataPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himNotepadDataInfoNo"))
if mibBuilder.loadTexts: himNotepadDataEntry.setStatus('current')
if mibBuilder.loadTexts: himNotepadDataEntry.setDescription('')
himNotepadDataPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 2, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himNotepadDataPabxId.setStatus('current')
if mibBuilder.loadTexts: himNotepadDataPabxId.setDescription('')
himNotepadDataInfoNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himNotepadDataInfoNo.setStatus('current')
if mibBuilder.loadTexts: himNotepadDataInfoNo.setDescription('This field contains the number of the subsystem. This number is assigned permanently when configuring the subsystem.')
himNotepadDataDate = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himNotepadDataDate.setStatus('current')
if mibBuilder.loadTexts: himNotepadDataDate.setDescription('This field contains the date on which the subsystem was configured.')
himNotepadDataText = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 2, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 77))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himNotepadDataText.setStatus('current')
if mibBuilder.loadTexts: himNotepadDataText.setDescription('This field contains the technical data of the subsystem.')
himProjPlanInfoTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 3), )
if mibBuilder.loadTexts: himProjPlanInfoTable.setStatus('current')
if mibBuilder.loadTexts: himProjPlanInfoTable.setDescription('This screen makes it possible to generate a file with project planning data.')
himProjPlanInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 3, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himProjPlanPabxId"))
if mibBuilder.loadTexts: himProjPlanInfoEntry.setStatus('current')
if mibBuilder.loadTexts: himProjPlanInfoEntry.setDescription('')
himProjPlanPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 3, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himProjPlanPabxId.setStatus('current')
if mibBuilder.loadTexts: himProjPlanPabxId.setDescription('')
himProjPlanInfoFile = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 12)).clone('ProjPlan.txt')).setMaxAccess("readonly")
if mibBuilder.loadTexts: himProjPlanInfoFile.setStatus('current')
if mibBuilder.loadTexts: himProjPlanInfoFile.setDescription('This field contains the name of the project planning file.')
himProjPlanInfoCreationDate = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himProjPlanInfoCreationDate.setStatus('current')
if mibBuilder.loadTexts: himProjPlanInfoCreationDate.setDescription('This field contains the date on which the project planning file was generated.')
himProjPlanInfoCreationTime = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himProjPlanInfoCreationTime.setStatus('current')
if mibBuilder.loadTexts: himProjPlanInfoCreationTime.setDescription('This field contains the time at which the project planning file was generated.')
himSpecSwitchData = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3))
himSpecShelfDataTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1), )
if mibBuilder.loadTexts: himSpecShelfDataTable.setStatus('current')
if mibBuilder.loadTexts: himSpecShelfDataTable.setDescription('All subscriber and trunk-related lines are grouped within LTU (Line/Trunk Unit) frames. Each frame has several slots for modules. The frame is connected to the system via the LTUC control board. This table contains the frame configuration.')
himSpecShelfDataEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSpecShelfDataPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himSpecShelfDataAddress"))
if mibBuilder.loadTexts: himSpecShelfDataEntry.setStatus('current')
if mibBuilder.loadTexts: himSpecShelfDataEntry.setDescription('')
himSpecShelfDataPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSpecShelfDataPabxId.setStatus('current')
if mibBuilder.loadTexts: himSpecShelfDataPabxId.setDescription('')
himSpecShelfDataAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 9))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSpecShelfDataAddress.setStatus('current')
if mibBuilder.loadTexts: himSpecShelfDataAddress.setDescription('This field contains the address of the shelf in format LTG.LTU. LTG:Line/Trunk Group LTU: Line/Trunk Unit')
himSpecShelfDataFrameType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSpecShelfDataFrameType.setStatus('current')
if mibBuilder.loadTexts: himSpecShelfDataFrameType.setDescription('This field contains the part number of the frame.')
himSpecShelfDataLTU = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0))).clone(namedValues=NamedValues(("preatl", 1), ("cc40f", 2), ("cc80w", 3), ("cc80f", 4), ("l80xf", 5), ("l80xw", 6), ("ltuw", 7), ("inch19", 8), ("ap37009", 9), ("ap370013", 10), ("ext-comp-x", 11), ("other", 0)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSpecShelfDataLTU.setStatus('current')
if mibBuilder.loadTexts: himSpecShelfDataLTU.setDescription('This field contains type of LTU (Line/Trunk Unit) frame. Possible values for LTU frame type: - PREATL - frametype for Preatlantic Hicom Types - CC40F - basisframe for 40CMX - CC80W - basisframe for 80CMX - CC80F - basisframe for 80CMX/DSC and CXE - L80XF - for 80CMX/DSC, CXE, 600ECS and AP shelves - L80XW - extension frame for 80CMX/DSC - LTUW - frame for 600ECX and AP shelves Possible values for AP shelf type: - L80XF - for 80CMX/DSC, CXE, 600ECS and AP shelves - LTUW - frame for 600ECX and AP shelves - INCH19 - 19 inch frame for AP shelves')
himSpecShelfDataNetworkType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 5), HimShelfNWType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSpecShelfDataNetworkType.setStatus('current')
if mibBuilder.loadTexts: himSpecShelfDataNetworkType.setDescription('This field contains connection type of LTU frame / AP shelf.')
himSpecShelfDataNetworkAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSpecShelfDataNetworkAddress.setStatus('current')
if mibBuilder.loadTexts: himSpecShelfDataNetworkAddress.setDescription('This field contains network IP address.')
himSpecShelfDataRemote = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSpecShelfDataRemote.setStatus('current')
if mibBuilder.loadTexts: himSpecShelfDataRemote.setDescription('This field shows if frame is remote. Possible values: - yes - frame is remote - no - frame is not remote')
himSpecShelfDataLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 48))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSpecShelfDataLocation.setStatus('current')
if mibBuilder.loadTexts: himSpecShelfDataLocation.setDescription('This field contains postal address (city, street, building, ..) , where a FLEX LTU or an AP shelf is located.')
himSpecShelfDataLTUC = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 14))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSpecShelfDataLTUC.setStatus('current')
if mibBuilder.loadTexts: himSpecShelfDataLTUC.setDescription('This field contains part number adding LTUC module. LTUC: Line/Trunk Unit Control.')
himSWUBoardTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2), )
if mibBuilder.loadTexts: himSWUBoardTable.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardTable.setDescription('This table contains the configuration of the peripheral boards. Periphery Assemblies Peripheral and ring generator assemblies as well as SIU are configured in the LTU. The board is entered in the SWU database. LTU = Line/Trunk Unit SIU = Signaling Interface Unit SWU = Switching Unit')
himSWUBoardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSWUBoardPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himSWUBoardPEN"))
if mibBuilder.loadTexts: himSWUBoardEntry.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardEntry.setDescription('')
himSWUBoardPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardPabxId.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardPabxId.setDescription('')
himSWUBoardPEN = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 2), HimPEN()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardPEN.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardPEN.setDescription('This field contains the name of the board PEN. PEN: Port Equipment Number The PEN is displayed in the following format: [LTG]-[LTU]-[EBT]. LTG: Line/Trunk Group LTU: Line/Trunk Unit EBT: Slot')
himSWUBoardOverlayLTU = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardOverlayLTU.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardOverlayLTU.setDescription('This field contains the name of the overlay LTU (Line/Trunk Unit).')
himSWUBoardType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardType.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardType.setDescription('This field contains the name of the configured board.')
himSWUBoardNominal = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardNominal.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardNominal.setDescription('This field contains the name of the nominal board.')
himSWUBoardActual = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardActual.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardActual.setDescription('This field contains part number of the board that is plugged in.')
hhimSWUBoardFirmware = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hhimSWUBoardFirmware.setStatus('current')
if mibBuilder.loadTexts: hhimSWUBoardFirmware.setDescription('This field contains the name of the firmware.')
himSWUBoardRev = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardRev.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardRev.setDescription('This field contains the revision of the board.')
himSWUBoardFunctId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardFunctId.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardFunctId.setDescription('Function identification number for boards with more than one functions (e.g. SIUX, STMA, SLMO24).')
himSWUBoardMode = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardMode.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardMode.setDescription('This field contains the mode of the board. The mode is only displayed for the RG/ACGEN board.')
himSWUBoardLWNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 11), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardLWNo.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardLWNo.setDescription('This field contains the number of the loadware.')
himSWUBoardLWInterVer = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardLWInterVer.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardLWInterVer.setDescription('This field contains the interface version of the board.')
himSWUBoardLWName = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 13), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardLWName.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardLWName.setDescription('This field contains the file name of the loadware file or of the initialization file.')
himSWUBoardLWDate = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 14), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWUBoardLWDate.setStatus('current')
if mibBuilder.loadTexts: himSWUBoardLWDate.setDescription('This field contains the date on which the loadware or the initialization file was generated.')
himSWUPeriphery = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4))
himPSIOAssTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1), )
if mibBuilder.loadTexts: himPSIOAssTable.setStatus('current')
if mibBuilder.loadTexts: himPSIOAssTable.setDescription('This table contains the PSIO assemblies data.')
himPSIOAssEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himPSIOAssPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himPSIOAssPEN"))
if mibBuilder.loadTexts: himPSIOAssEntry.setStatus('current')
if mibBuilder.loadTexts: himPSIOAssEntry.setDescription('')
himPSIOAssPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himPSIOAssPabxId.setStatus('current')
if mibBuilder.loadTexts: himPSIOAssPabxId.setDescription('')
himPSIOAssAssembly = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himPSIOAssAssembly.setStatus('current')
if mibBuilder.loadTexts: himPSIOAssAssembly.setDescription('This field contains the name of the PSIO board. PSIO: Peripheral Serial Input Output')
himPSIOAssPEN = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1, 1, 2), HimPEN()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himPSIOAssPEN.setStatus('current')
if mibBuilder.loadTexts: himPSIOAssPEN.setDescription('This field contains the name of the board PEN. PEN: Port Equipment Number The PEN is displayed in the following format: [LTG]-[LTU]-[EBT]. LTG: Line/Trunk Group LTU: Line/Trunk Unit EBT: Slot')
himPSIOAssActual = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himPSIOAssActual.setStatus('current')
if mibBuilder.loadTexts: himPSIOAssActual.setDescription('This field contains the part number of the PSIO board.')
himPSIOAssFirmware = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himPSIOAssFirmware.setStatus('current')
if mibBuilder.loadTexts: himPSIOAssFirmware.setDescription('This field contains the firmware name of the PSIO board.')
himSerialLineTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2), )
if mibBuilder.loadTexts: himSerialLineTable.setStatus('current')
if mibBuilder.loadTexts: himSerialLineTable.setDescription('This table contains the serial interfaces data.')
himSerialLineEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSerialLinePabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himSerialLineNumber"))
if mibBuilder.loadTexts: himSerialLineEntry.setStatus('current')
if mibBuilder.loadTexts: himSerialLineEntry.setDescription('')
himSerialLinePabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSerialLinePabxId.setStatus('current')
if mibBuilder.loadTexts: himSerialLinePabxId.setDescription('')
himSerialLineBoardType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSerialLineBoardType.setStatus('current')
if mibBuilder.loadTexts: himSerialLineBoardType.setDescription('This field contains abbreviation name of the board type.')
himSerialLineNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(8, 63))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSerialLineNumber.setStatus('current')
if mibBuilder.loadTexts: himSerialLineNumber.setDescription('This field contains the physical line number of the interface. Possible Values: numeric, 8-63')
himSerialLineSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSerialLineSpeed.setStatus('current')
if mibBuilder.loadTexts: himSerialLineSpeed.setDescription('This field contains standardized transmission speed (baud rate). Possible Values: 50, 100, 200, 300, 600, 1200, 2400, 4800, 9600, 19200.')
himSerialLineLogDevName = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSerialLineLogDevName.setStatus('current')
if mibBuilder.loadTexts: himSerialLineLogDevName.setDescription('This field contains the logical device name of the line. Possible Values: Value - Description CON1 - LOGICAL DEVICE CONNECTION,TERMINAL 1 CON2 - LOGICAL DEVICE CONNECTION,TERMINAL 2 CON3 - LOGICAL DEVICE CONNECTION,TERMINAL 3 CON4 - LOGICAL DEVICE CONNECTION,TERMINAL 4 CON5 - LOGICAL DEVICE CONNECTION 5 CON6 - LOGICAL DEVICE CONNECTION 6 PR1 - LOGICAL DEVICE:LINE PRINTER 1 PR2 - LOGICAL DEVICE:LINE PRINTER 2 PR3 - LOGICAL DEVICE:LINE PRINTER 3 PR4 - LOGICAL DEVICE:LINE PRINTER 4')
himSerialLineDevType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 18))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSerialLineDevType.setStatus('current')
if mibBuilder.loadTexts: himSerialLineDevType.setDescription('This field contains the device type of the line. Possible Values: Value - Description PT88 - DEVICE TYPE QUOSC - QUME-ONLY-SCREEN QUOPT - QUME-ONLY-PT88 QUSCAPT - QUME-SCREEN-AND-PT88 PCOSC - PC-D-ONLY-SCREEN PCOPT - PC-D-ONLY-PT88 PCSCAPT - PC-D-SCREEN-AND-PT88 ASC - ASCII-CODE EBC - EBCDIC CODE RSV1 - RESERVED DEVICE TYPE 1 RSV2 - RESERVED DEVICE TYPE 2 RSV3 - RESERVED DEVICE TYPE 3')
himSerialLineType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 0))).clone(namedValues=NamedValues(("asy", 1), ("v24", 2), ("other", 0)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSerialLineType.setStatus('current')
if mibBuilder.loadTexts: himSerialLineType.setDescription('This field contains the line type (operation of synchronous lines (terminals) connected via V24 modems). Possible values: - ASY: asynchronous line type - V24: ccitt rec v24')
himSCSIDevTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3), )
if mibBuilder.loadTexts: himSCSIDevTable.setStatus('current')
if mibBuilder.loadTexts: himSCSIDevTable.setDescription('This table contains the data for the SCSI devices connected.')
himSCSIDevEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSCSIDevPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himSCSIDevId"))
if mibBuilder.loadTexts: himSCSIDevEntry.setStatus('current')
if mibBuilder.loadTexts: himSCSIDevEntry.setDescription('')
himSCSIDevPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSCSIDevPabxId.setStatus('current')
if mibBuilder.loadTexts: himSCSIDevPabxId.setDescription('')
himSCSIDevId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSCSIDevId.setStatus('current')
if mibBuilder.loadTexts: himSCSIDevId.setDescription('This field contains the type of SCSI device.')
himSCSIDevType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 13))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSCSIDevType.setStatus('current')
if mibBuilder.loadTexts: himSCSIDevType.setDescription('This field contains the SCSI ID of the device.')
himSCSIDevName = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 25))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSCSIDevName.setStatus('current')
if mibBuilder.loadTexts: himSCSIDevName.setDescription('This field contains the name of the SCSI device in format: [vendor] [product number].')
himSCSIDevFirmware = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSCSIDevFirmware.setStatus('current')
if mibBuilder.loadTexts: himSCSIDevFirmware.setDescription('This field contains the firmware name of the SCSI device.')
himSCSIDevLoadDrive = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSCSIDevLoadDrive.setStatus('current')
if mibBuilder.loadTexts: himSCSIDevLoadDrive.setDescription('This field displays (if activity is in progress) the device from which the operating system and the database are started.')
himCentralSwitchData = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5))
himCabinetTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1), )
if mibBuilder.loadTexts: himCabinetTable.setStatus('current')
if mibBuilder.loadTexts: himCabinetTable.setDescription('This table contains the data for configuring the cabinets and frames in a system. They reflect the physical structure of the system.')
himCabinetEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himCabPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himCabAddr"))
if mibBuilder.loadTexts: himCabinetEntry.setStatus('current')
if mibBuilder.loadTexts: himCabinetEntry.setDescription('')
himCabPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himCabPabxId.setStatus('current')
if mibBuilder.loadTexts: himCabPabxId.setDescription('')
himCabAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himCabAddr.setStatus('current')
if mibBuilder.loadTexts: himCabAddr.setDescription('This field contains the cabinet address. Structure of cabinet address: P 1 01 | | |__Number of cabinet in cabinet row | |_____Units, position of cabinet row |_______Tens (P=0, Q=1), position of the cabinet')
himCabPhysAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himCabPhysAddr.setStatus('current')
if mibBuilder.loadTexts: himCabPhysAddr.setDescription('')
himCabCabinet = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himCabCabinet.setStatus('current')
if mibBuilder.loadTexts: himCabCabinet.setDescription('This field contains the name of the cabinet.')
himCabPartNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 14))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himCabPartNo.setStatus('current')
if mibBuilder.loadTexts: himCabPartNo.setDescription('This field contains the part number of the cabinet.')
himCabShelfNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 14))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himCabShelfNo.setStatus('current')
if mibBuilder.loadTexts: himCabShelfNo.setDescription('This field contains the number of the shelf.')
himCabFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himCabFrame.setStatus('current')
if mibBuilder.loadTexts: himCabFrame.setDescription('This field contains the name of the frame.')
himCabPid1 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himCabPid1.setStatus('current')
if mibBuilder.loadTexts: himCabPid1.setDescription('This field contains the processor ID 1.')
himCabPid2 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himCabPid2.setStatus('current')
if mibBuilder.loadTexts: himCabPid2.setDescription('This field contains the processor ID 2.')
himCabPid3 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himCabPid3.setStatus('current')
if mibBuilder.loadTexts: himCabPid3.setDescription('This field contains the processor ID 2.')
himCabLTUNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 11), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himCabLTUNo.setStatus('current')
if mibBuilder.loadTexts: himCabLTUNo.setDescription('This field contains the number of the LTU (Line/Trunk Unit). The LTU range is divided in two parts: HHS (HICOM Host System) and AP (Access Point). The available values of the ranges are: HHS 1-15 and AP 17-99. The LTU 16 is forbidden. There are existing shelfes which are allowed only in HHS and others which are allowed only in the AP range.')
himMemScalingTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2), )
if mibBuilder.loadTexts: himMemScalingTable.setStatus('current')
if mibBuilder.loadTexts: himMemScalingTable.setDescription('This screen contains the memory parameters for each of the devices or features specified. The values are only displayed in Configuration Management. See also DIMSU parameter list.')
himMemScalingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himMemScalingPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himMemScalingUnit"))
if mibBuilder.loadTexts: himMemScalingEntry.setStatus('current')
if mibBuilder.loadTexts: himMemScalingEntry.setDescription('')
himMemScalingPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMemScalingPabxId.setStatus('current')
if mibBuilder.loadTexts: himMemScalingPabxId.setDescription('')
himMemScalingUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMemScalingUnit.setStatus('current')
if mibBuilder.loadTexts: himMemScalingUnit.setDescription('This field contains the parameter name (AMO DIMSU).')
himMemScalingUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMemScalingUsed.setStatus('current')
if mibBuilder.loadTexts: himMemScalingUsed.setDescription('This value specifies the number of memory elements already used up. The comparison with the value in the Maximum field indicates how much of the allocated memory is still available for configuring devices or features.')
himMemScalingMaxUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMemScalingMaxUsed.setStatus('current')
if mibBuilder.loadTexts: himMemScalingMaxUsed.setDescription('This field contains the number of memory elements allocated.')
himMemScalingAllocated = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMemScalingAllocated.setStatus('current')
if mibBuilder.loadTexts: himMemScalingAllocated.setDescription("This field displays the maximum number of memory elements that once have been used up during the lifetime of the switch ('high water mark'). It gives an indication how much memory was necessary at one time, so it is advised to not reduce the Maximum value below this value.")
himMemScalingStandard = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMemScalingStandard.setStatus('current')
if mibBuilder.loadTexts: himMemScalingStandard.setDescription("Standard is the advised value to be set in the Maximum field, if you don't have special needs to set it to a specific value. If you set all devices and features to the standard values it is guaranteed that you don't run out of DIMSU memory.")
himMemScalingSysMax = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMemScalingSysMax.setStatus('current')
if mibBuilder.loadTexts: himMemScalingSysMax.setDescription('This field contains the maximum number of possible memory elements.')
himGeneralSwitchData = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6))
himDBConfSys = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1))
himDBConfSysTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1), )
if mibBuilder.loadTexts: himDBConfSysTable.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysTable.setDescription('')
himDBConfSysEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himDBConfSysPabxId"))
if mibBuilder.loadTexts: himDBConfSysEntry.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysEntry.setDescription('')
himDBConfSysPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysPabxId.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysPabxId.setDescription('')
himDBConfSysClass1 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysClass1.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysClass1.setDescription('This field contains the name of the system.')
himDBConfSysClass2 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysClass2.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysClass2.setDescription('This field contains the coded name of the system.')
himDBConfSysHWAss1 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysHWAss1.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysHWAss1.setDescription('This field contains the hardware ID of the system.')
himDBConfSysHWAss2 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 7))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysHWAss2.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysHWAss2.setDescription('This field contains the shortened hardware ID of the system.')
himDBConfSysDevLine1 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 18))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysDevLine1.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysDevLine1.setDescription('This field contains the name of the product line.')
himDBConfSysDevLine2 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysDevLine2.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysDevLine2.setDescription('This field contains the shortened name of the product line. Possible values: - H300: EUROPE DEVELOPMENT - HUSA: US DEVELOPMENT')
himDBConfSysOpMode = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 0))).clone(namedValues=NamedValues(("simplex", 1), ("duplex", 2), ("other", 0)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysOpMode.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysOpMode.setDescription('This field contains the operating mode of the system. Possible Values: - SIMPLEX: OPERATING MODE SIMPLEX - DUPLEX: OPERATING MODE DUPLEX REDUNDANCY')
himDBConfSysResType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysResType.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysResType.setDescription('This field contains the restart identifier.')
himDBConfSysHWArch = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysHWArch.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysHWArch.setDescription('This field contains the name of the hardware architecture.')
himDBConfSysHWArchType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 11), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysHWArchType.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysHWArchType.setDescription('This field contains the name of the hardware architecture type.')
himDBConfSysNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 12), HimSwitchNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysNo.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysNo.setDescription('This field contains the number of the system.')
himDBConfSysLoc = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 0))).clone(namedValues=NamedValues(("customer", 1), ("support", 2), ("testlab", 3), ("other", 0)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysLoc.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysLoc.setDescription('This field contains the name of the location in which the system is installed. Possible Values: - CUSTOMER (customer) - SUPPORT (support) - TESTLAB (testlab)')
himDBConfSysBaseApp = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 14), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysBaseApp.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysBaseApp.setDescription('This field contains the name of the base application.')
himDBConfSysDBApp = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 15), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysDBApp.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysDBApp.setDescription('This field contains the name of the database application.')
himDBConfSysID = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfSysID.setStatus('current')
if mibBuilder.loadTexts: himDBConfSysID.setDescription('This field contains the system identification.')
himDBConfHW = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2))
himDBConfHWTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1), )
if mibBuilder.loadTexts: himDBConfHWTable.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWTable.setDescription('')
himDBConfHWEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himDBConfHWPabxId"))
if mibBuilder.loadTexts: himDBConfHWEntry.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWEntry.setDescription('')
himDBConfHWPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWPabxId.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWPabxId.setDescription('')
himDBConfHWLTG = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWLTG.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWLTG.setDescription('This field contains the number of LTGs in the system. LTG: Line/Trunk Group')
himDBConfHWLTU = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 15), ValueRangeConstraint(17, 99), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWLTU.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWLTU.setDescription('This field contains the number of LTUs in the system. LTU: Line/Trunk Unit')
himDBConfHWLines = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWLines.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWLines.setDescription('This field contains the number of lines in the system.')
himDBConfHWPorts = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWPorts.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWPorts.setDescription('This field contains the number of ports in the system.')
himDBConfHWPBC = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWPBC.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWPBC.setDescription('This field contains the number of peripheral board controllers (PBC) in the system.')
himDBConfHWMTSBdPerGSN = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWMTSBdPerGSN.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWMTSBdPerGSN.setDescription('This field contains the number of memory time switches (MTS) per group switching network (GSN).')
himDBConfHWSIUPPerLTU = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWSIUPPerLTU.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWSIUPPerLTU.setDescription('This field contains the number of SIUP boards per LTU (Line/Trunk Unit).')
himDBConfHWDIUCPerLTU = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWDIUCPerLTU.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWDIUCPerLTU.setDescription('This field contains the number of DIUC boards per LTU (Line/Trunk Unit).')
himDBConfHWHwyPerMTSBd = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWHwyPerMTSBd.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWHwyPerMTSBd.setDescription('This field contains the number highways (HYW) per MTS board.')
himDBConfHWHDLCPerDCL = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWHDLCPerDCL.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWHDLCPerDCL.setDescription('This field contains the number of high level data link control (HDLC) channels per data communication link (DCL).')
himDBConfHWPBCPerDCL = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWPBCPerDCL.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWPBCPerDCL.setDescription('This field contains the number of peripheral board controllers (PBC) per data communication link (DCL).')
himDBConfHWStdSIULine = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWStdSIULine.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWStdSIULine.setDescription('This field contains the number of signaling unit lines. SIU: Signaling-Unit')
himDBConfHWConfLine = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWConfLine.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWConfLine.setDescription('This field contains the number of lines in the CONFERENCE board.')
himDBConfHWDBDim = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 15), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWDBDim.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWDBDim.setDescription('This field contains the name of the database dimensioning.')
himDBConfHWTableVer = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDBConfHWTableVer.setStatus('current')
if mibBuilder.loadTexts: himDBConfHWTableVer.setDescription('This field contains the version of the Conf table.')
himHWData = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3))
himHWDataTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1), )
if mibBuilder.loadTexts: himHWDataTable.setStatus('current')
if mibBuilder.loadTexts: himHWDataTable.setDescription('')
himHWDataEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himHWDataPabxId"))
if mibBuilder.loadTexts: himHWDataEntry.setStatus('current')
if mibBuilder.loadTexts: himHWDataEntry.setDescription('')
himHWDataPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHWDataPabxId.setStatus('current')
if mibBuilder.loadTexts: himHWDataPabxId.setDescription('')
himHWArch = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 25))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHWArch.setReference('Same as himDBConfSysHWArch.')
if mibBuilder.loadTexts: himHWArch.setStatus('current')
if mibBuilder.loadTexts: himHWArch.setDescription('This field contains the name of the hardware architecture.')
himHWArchType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHWArchType.setReference('Same as himDBConfSysHWArchType.')
if mibBuilder.loadTexts: himHWArchType.setStatus('current')
if mibBuilder.loadTexts: himHWArchType.setDescription('This field contains the name of the hardware architecture type.')
himHWOpMode = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 7))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHWOpMode.setReference('Should be the same as himDBConfSysOpMode.')
if mibBuilder.loadTexts: himHWOpMode.setStatus('current')
if mibBuilder.loadTexts: himHWOpMode.setDescription('This field contains the name of the operating mode.')
himHWSWUProc1 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHWSWUProc1.setStatus('current')
if mibBuilder.loadTexts: himHWSWUProc1.setDescription('These fields contain the name of the SWU processor board (max. 8 characters). SWU = Switching Unit Possible values: - CC-A - CC-B ')
himHWSWUMem1 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHWSWUMem1.setStatus('current')
if mibBuilder.loadTexts: himHWSWUMem1.setDescription('These fields contain the size of the SWU memory for each processor board. SWU = Switching Unit')
himHWSWUProc2 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHWSWUProc2.setStatus('current')
if mibBuilder.loadTexts: himHWSWUProc2.setDescription('These fields contain the name of the SWU processor board (max. 8 characters). SWU = Switching Unit Possible values: - CC-A - CC-B ')
himHWSWUMem2 = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHWSWUMem2.setStatus('current')
if mibBuilder.loadTexts: himHWSWUMem2.setDescription('These fields contain the size of the SWU memory for each processor board. SWU = Switching Unit')
himHWADPProc = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHWADPProc.setStatus('current')
if mibBuilder.loadTexts: himHWADPProc.setDescription('This field contains the name of the ADP processor.')
himHWADPMem = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himHWADPMem.setStatus('current')
if mibBuilder.loadTexts: himHWADPMem.setDescription('This field contains the size of memory used by the ADP.')
himLWDataOnCB = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4))
himLWDataOnCBTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1), )
if mibBuilder.loadTexts: himLWDataOnCBTable.setStatus('current')
if mibBuilder.loadTexts: himLWDataOnCBTable.setDescription('')
himLWDataOnCBEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himLWDataOnCBPabxId"))
if mibBuilder.loadTexts: himLWDataOnCBEntry.setStatus('current')
if mibBuilder.loadTexts: himLWDataOnCBEntry.setDescription('')
himLWDataOnCBPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWDataOnCBPabxId.setStatus('current')
if mibBuilder.loadTexts: himLWDataOnCBPabxId.setDescription('')
himLWOnCBAss = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnCBAss.setStatus('current')
if mibBuilder.loadTexts: himLWOnCBAss.setDescription('This field contains the hardware ID of the board. Note: Certain types of processor boards (e. g. DPC5) are using only firmware. Therefore, no loadware data is displayed and this field remains empty.')
himLWOnCBPBCAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnCBPBCAddr.setStatus('current')
if mibBuilder.loadTexts: himLWOnCBPBCAddr.setDescription('This field contains the peripheral board controller (PBC) address of the module. Note: Certain types of processor boards (e. g. DPC5) are using only firmware. Therefore, no loadware data is displayed and this field remains empty.')
himLWOnCBFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnCBFileName.setStatus('current')
if mibBuilder.loadTexts: himLWOnCBFileName.setDescription('This field contains the filename of the loadware file. Note: Certain types of processor boards (e. g. DPC5) are using only firmware. Therefore, no loadware data is displayed and this field remains empty.')
himLWOnCBProdTime = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnCBProdTime.setStatus('current')
if mibBuilder.loadTexts: himLWOnCBProdTime.setDescription('This field contains the production date of the loadware. Note:Certain types of processor boards (e. g. DPC5) are using only firmware. Therefore, no loadware data is displayed and this field remains empty.')
himLWDataOnProc = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5))
himLWOnProcTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1), )
if mibBuilder.loadTexts: himLWOnProcTable.setStatus('current')
if mibBuilder.loadTexts: himLWOnProcTable.setDescription('')
himLWOnProcEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himLWOnProcPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himLWOnProcAss"), (0, "SIEMENS-HP4KHIM-MIB", "himLWOnProcInfoType"))
if mibBuilder.loadTexts: himLWOnProcEntry.setStatus('current')
if mibBuilder.loadTexts: himLWOnProcEntry.setDescription('')
himLWOnProcPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnProcPabxId.setStatus('current')
if mibBuilder.loadTexts: himLWOnProcPabxId.setDescription('')
himLWOnProcAss = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnProcAss.setStatus('current')
if mibBuilder.loadTexts: himLWOnProcAss.setDescription('This field contains the name of the directory where the file with information on Loadware resides, e. g. CCA, CCB or ADP (max. 3 characters).')
himLWOnProcInfoType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnProcInfoType.setStatus('current')
if mibBuilder.loadTexts: himLWOnProcInfoType.setDescription('This field contains the boot type. It represents the file name also.')
himLWOnProcLWId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnProcLWId.setStatus('current')
if mibBuilder.loadTexts: himLWOnProcLWId.setDescription('This field contains the name of the loadware.')
himLWOnProcLWIdCMP = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnProcLWIdCMP.setStatus('current')
if mibBuilder.loadTexts: himLWOnProcLWIdCMP.setDescription("This field contains the name of the loadware ID for the CMP. This field contains the '-' character if it is not relevant to this board.")
himLWOnProcLWIdLP = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnProcLWIdLP.setStatus('current')
if mibBuilder.loadTexts: himLWOnProcLWIdLP.setDescription("This field contains the name of the loadware ID for the LP. This field contains the '-' character if it is not relevant to this board.")
himLWDataOnCSIU = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6))
himLWOnCSIUTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1), )
if mibBuilder.loadTexts: himLWOnCSIUTable.setStatus('current')
if mibBuilder.loadTexts: himLWOnCSIUTable.setDescription('This table contains the loadware data on the central SIU (Signaling Interface Unit).')
himLWOnCSIUEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himLWOnCSIUPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himLWOnCSIUNominal"), (0, "SIEMENS-HP4KHIM-MIB", "himLWOnCSIULWNo"))
if mibBuilder.loadTexts: himLWOnCSIUEntry.setStatus('current')
if mibBuilder.loadTexts: himLWOnCSIUEntry.setDescription('')
himLWOnCSIUPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnCSIUPabxId.setStatus('current')
if mibBuilder.loadTexts: himLWOnCSIUPabxId.setDescription('')
himLWOnCSIUNominal = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 14))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnCSIUNominal.setStatus('current')
if mibBuilder.loadTexts: himLWOnCSIUNominal.setDescription('This field contains the name of the nominal SIU (Signaling Interface Unit).')
himLWOnCSIULWNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnCSIULWNo.setStatus('current')
if mibBuilder.loadTexts: himLWOnCSIULWNo.setDescription('This field contains the name of the SIU (Signaling Interface Unit) loadware.')
himLWOnCSIUProc = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnCSIUProc.setStatus('current')
if mibBuilder.loadTexts: himLWOnCSIUProc.setDescription('This field contains the name of the processor in the SIU (Signaling Interface Unit).')
himLWOnCSIUSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnCSIUSlot.setStatus('current')
if mibBuilder.loadTexts: himLWOnCSIUSlot.setDescription('This field contains the name of the SIU (Signaling Interface Unit) slot.')
himLWOnCSIUActual = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 14))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnCSIUActual.setStatus('current')
if mibBuilder.loadTexts: himLWOnCSIUActual.setDescription('This field contains the name of the current SIU (Signaling Interface Unit).')
himLWOnCSIUFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnCSIUFileName.setStatus('current')
if mibBuilder.loadTexts: himLWOnCSIUFileName.setDescription('This field contains the file name of the loadware file or of the initialization file.')
himLWOnCSIUFileProd = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himLWOnCSIUFileProd.setStatus('current')
if mibBuilder.loadTexts: himLWOnCSIUFileProd.setDescription('This field contains the date on which the loadware or the initialization file was generated.')
himMacAddress = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7))
himMacAddrTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1), )
if mibBuilder.loadTexts: himMacAddrTable.setStatus('current')
if mibBuilder.loadTexts: himMacAddrTable.setDescription('This table contains the C-LAN and IPDA MAC addresses which are read during the boot process.')
himMacAddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himMacAddrPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himMacAddrProc"), (0, "SIEMENS-HP4KHIM-MIB", "himMacAddrInfoType"))
if mibBuilder.loadTexts: himMacAddrEntry.setStatus('current')
if mibBuilder.loadTexts: himMacAddrEntry.setDescription('')
himMacAddrPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMacAddrPabxId.setStatus('current')
if mibBuilder.loadTexts: himMacAddrPabxId.setDescription('')
himMacAddrProc = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMacAddrProc.setStatus('current')
if mibBuilder.loadTexts: himMacAddrProc.setDescription('This field contains the name of the processor (CCA, CCB or ADP - max 3 characters). It is also the name of the Unix directory where the file with information on MAC address resides.')
himMacAddrInfoType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMacAddrInfoType.setStatus('current')
if mibBuilder.loadTexts: himMacAddrInfoType.setDescription('This field contains the condition on which the mac addresses are available.')
himMacAddrCLan = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1, 1, 4), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMacAddrCLan.setStatus('current')
if mibBuilder.loadTexts: himMacAddrCLan.setDescription("This field contains the MAC address for UW7 part. The format is following: 'xx xx xx xx xx xx'.")
himMacAddrIPDA = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1, 1, 5), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMacAddrIPDA.setStatus('current')
if mibBuilder.loadTexts: himMacAddrIPDA.setDescription("This field contains the MAC address for RMX part. The format is following: 'xx xx xx xx xx xx'.")
himFeatures = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7))
himMarketingFeatures = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1))
himMarkFeatTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1), )
if mibBuilder.loadTexts: himMarkFeatTable.setStatus('current')
if mibBuilder.loadTexts: himMarkFeatTable.setDescription('')
himMarkFeatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himMarkFeatPabxId"))
if mibBuilder.loadTexts: himMarkFeatEntry.setStatus('current')
if mibBuilder.loadTexts: himMarkFeatEntry.setDescription('')
himMarkFeatPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMarkFeatPabxId.setStatus('current')
if mibBuilder.loadTexts: himMarkFeatPabxId.setDescription('')
himMarkFeatVer = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMarkFeatVer.setStatus('current')
if mibBuilder.loadTexts: himMarkFeatVer.setDescription('This field contains the version of the software package. Format explanation: H 2 04 | |__SW version (01=EV1.0; 02=EV2.0; 03=EV3.0; 04=HiPath 4000 V1.0; 05=HiPath 4000 V2.0; 06=HiPath 4000 V3.0) | |_____Marketing concept (1=Old, 2=New)')
himMarkFeatSerNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMarkFeatSerNo.setStatus('current')
if mibBuilder.loadTexts: himMarkFeatSerNo.setDescription('This field contains the serial number of the software package.')
himMarkFeatHWId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMarkFeatHWId.setStatus('current')
if mibBuilder.loadTexts: himMarkFeatHWId.setDescription('This field contains the dongle ID of the hardware dongle connected.')
himMarkFeatInstallDate = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMarkFeatInstallDate.setStatus('current')
if mibBuilder.loadTexts: himMarkFeatInstallDate.setDescription('This field contains the date on which the code word was entered.')
himMarkFeatExpiryDate = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMarkFeatExpiryDate.setStatus('current')
if mibBuilder.loadTexts: himMarkFeatExpiryDate.setDescription('This field contains the date on which the code word will expire.')
himMarkFeatConfCode = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMarkFeatConfCode.setStatus('current')
if mibBuilder.loadTexts: himMarkFeatConfCode.setDescription('This field contains codeword entry confirmation code.')
himMarkFeatTrialModeAct = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 8), HimYesNo()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMarkFeatTrialModeAct.setStatus('current')
if mibBuilder.loadTexts: himMarkFeatTrialModeAct.setDescription('This field shows whether trial mode is active. Possible values: - yes - trial mode is activated - no - trial mode is not activated')
himMarkFeatTrialRemDays = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himMarkFeatTrialRemDays.setStatus('current')
if mibBuilder.loadTexts: himMarkFeatTrialRemDays.setDescription('This field contains number of remaining days of an active trial mode.')
himSalesFeatTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2), )
if mibBuilder.loadTexts: himSalesFeatTable.setStatus('current')
if mibBuilder.loadTexts: himSalesFeatTable.setDescription('')
himSalesFeatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSalesFeatPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himSalesFeatMarketPackId"))
if mibBuilder.loadTexts: himSalesFeatEntry.setStatus('current')
if mibBuilder.loadTexts: himSalesFeatEntry.setDescription('')
himSalesFeatPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSalesFeatPabxId.setStatus('current')
if mibBuilder.loadTexts: himSalesFeatPabxId.setDescription('')
himSalesFeatMarketPackId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSalesFeatMarketPackId.setStatus('current')
if mibBuilder.loadTexts: himSalesFeatMarketPackId.setDescription('This column contains the CM ids of the marketing packages.')
himSalesFeatMarketPack = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 50))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSalesFeatMarketPack.setStatus('current')
if mibBuilder.loadTexts: himSalesFeatMarketPack.setDescription('This column contains the names of the marketing packages.')
himSalesFeatContract = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSalesFeatContract.setStatus('current')
if mibBuilder.loadTexts: himSalesFeatContract.setDescription('This column indicates whether the marketing packages have been purchased.')
himSalesFeatUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSalesFeatUsed.setStatus('current')
if mibBuilder.loadTexts: himSalesFeatUsed.setDescription('This column indicates whether the marketing packages have been used.')
himSalesFeatFree = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSalesFeatFree.setStatus('current')
if mibBuilder.loadTexts: himSalesFeatFree.setDescription('This field contains the number of free packages.')
himSalesFeatMarkForTrial = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSalesFeatMarkForTrial.setStatus('current')
if mibBuilder.loadTexts: himSalesFeatMarkForTrial.setDescription('This field contains the number of packages (entites) marked for trial or blocked (if the trial mode is not active).')
himTechFeatures = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2))
himTechFeatTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2, 1), )
if mibBuilder.loadTexts: himTechFeatTable.setStatus('current')
if mibBuilder.loadTexts: himTechFeatTable.setDescription('')
himTechFeatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himTechFeatPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himTechFeatId"))
if mibBuilder.loadTexts: himTechFeatEntry.setStatus('current')
if mibBuilder.loadTexts: himTechFeatEntry.setDescription('This table contains all enabled and disabled customer-specific features. Use the Object List view to display a list of all features availavle.')
himTechFeatPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himTechFeatPabxId.setStatus('current')
if mibBuilder.loadTexts: himTechFeatPabxId.setDescription('')
himTechFeatId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himTechFeatId.setStatus('current')
if mibBuilder.loadTexts: himTechFeatId.setDescription('This field contains the CM id of the customer-specific feature.')
himTechFeatName = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 70))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himTechFeatName.setStatus('current')
if mibBuilder.loadTexts: himTechFeatName.setDescription('This field contains the name of the customer-specific feature.')
himTechFeatState = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2, 1, 1, 4), HimYesNo()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himTechFeatState.setStatus('current')
if mibBuilder.loadTexts: himTechFeatState.setDescription('This field contains the status of the customer-specific feature.')
himAPSPatches = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8))
himSwitchAPS = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1))
himSwitchAPSTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1, 1), )
if mibBuilder.loadTexts: himSwitchAPSTable.setStatus('current')
if mibBuilder.loadTexts: himSwitchAPSTable.setDescription('')
himSwitchAPSEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSwitchAPSPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himSwitchAPSName"))
if mibBuilder.loadTexts: himSwitchAPSEntry.setStatus('current')
if mibBuilder.loadTexts: himSwitchAPSEntry.setDescription('')
himSwitchAPSPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSwitchAPSPabxId.setStatus('current')
if mibBuilder.loadTexts: himSwitchAPSPabxId.setDescription('')
himSwitchAPSName = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSwitchAPSName.setStatus('current')
if mibBuilder.loadTexts: himSwitchAPSName.setDescription('')
himSwitchAPSCorrVer = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSwitchAPSCorrVer.setStatus('current')
if mibBuilder.loadTexts: himSwitchAPSCorrVer.setDescription('')
himSwitchAPSPartNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 17))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSwitchAPSPartNo.setStatus('current')
if mibBuilder.loadTexts: himSwitchAPSPartNo.setDescription('')
himReplacedAMOs = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2))
himReplAMOTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1), )
if mibBuilder.loadTexts: himReplAMOTable.setStatus('current')
if mibBuilder.loadTexts: himReplAMOTable.setDescription('This table displays those AMOs that have been changed since the last system correction version.')
himReplAMOEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himReplAMOPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himReplAMOAPS"), (0, "SIEMENS-HP4KHIM-MIB", "himReplAMOName"))
if mibBuilder.loadTexts: himReplAMOEntry.setStatus('current')
if mibBuilder.loadTexts: himReplAMOEntry.setDescription('')
himReplAMOPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himReplAMOPabxId.setStatus('current')
if mibBuilder.loadTexts: himReplAMOPabxId.setDescription('')
himReplAMOAPS = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himReplAMOAPS.setStatus('current')
if mibBuilder.loadTexts: himReplAMOAPS.setDescription('The APS in which the change has been made.')
himReplAMOName = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himReplAMOName.setStatus('current')
if mibBuilder.loadTexts: himReplAMOName.setDescription('This field contains the name of the AMO command.')
himReplAMOInAPSDir = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 22))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himReplAMOInAPSDir.setStatus('current')
if mibBuilder.loadTexts: himReplAMOInAPSDir.setDescription('This field contains the name of the subsystem in the DIR file.')
himReplAMOSubsystem = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 22))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himReplAMOSubsystem.setStatus('current')
if mibBuilder.loadTexts: himReplAMOSubsystem.setDescription('This field contains the name of the current subsystem.')
himPatchInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3))
himPatchInfoTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1), )
if mibBuilder.loadTexts: himPatchInfoTable.setStatus('current')
if mibBuilder.loadTexts: himPatchInfoTable.setDescription('This table contains information on the software patches that have been implemented.')
himPatchInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himPatchInfoPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himPatchInfoPatchNo"))
if mibBuilder.loadTexts: himPatchInfoEntry.setStatus('current')
if mibBuilder.loadTexts: himPatchInfoEntry.setDescription('')
himPatchInfoPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himPatchInfoPabxId.setStatus('current')
if mibBuilder.loadTexts: himPatchInfoPabxId.setDescription('')
himPatchInfoPatchNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himPatchInfoPatchNo.setStatus('current')
if mibBuilder.loadTexts: himPatchInfoPatchNo.setDescription('This field contains the number of the patch.')
himPatchInfoPatchGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himPatchInfoPatchGroup.setStatus('current')
if mibBuilder.loadTexts: himPatchInfoPatchGroup.setDescription('This field contains the name of the patch group.')
himPatchInfoOpt = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 4), HimYesNo()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himPatchInfoOpt.setStatus('current')
if mibBuilder.loadTexts: himPatchInfoOpt.setDescription('This field represents an indicator that the patch is: - optional: not part of patch packet, - not optional: a part of patch packet (represents the whole list of internal activated/deactivated patches). The purpose of this field is to give user an option to display all patches as well as only optional ones.')
himPatchInfoActHD = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himPatchInfoActHD.setStatus('current')
if mibBuilder.loadTexts: himPatchInfoActHD.setDescription('This field indicates whether the patch is enabled on the hard disk.')
himPatchInfoActADP = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himPatchInfoActADP.setStatus('current')
if mibBuilder.loadTexts: himPatchInfoActADP.setDescription('This field indicates whether the patch is enabled on the ADP.')
himPatchInfoActBP = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himPatchInfoActBP.setStatus('current')
if mibBuilder.loadTexts: himPatchInfoActBP.setDescription('This field indicates whether the patch is enabled on the A/B processor.')
himSWVersion = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9))
himSWVerOnProcTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1), )
if mibBuilder.loadTexts: himSWVerOnProcTable.setStatus('current')
if mibBuilder.loadTexts: himSWVerOnProcTable.setDescription('This table contains data on the software versions loaded on the processor boards.')
himSWVerOnProcEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSWVerOnProcPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himSWVerOnProcSrc"))
if mibBuilder.loadTexts: himSWVerOnProcEntry.setStatus('current')
if mibBuilder.loadTexts: himSWVerOnProcEntry.setDescription('')
himSWVerOnProcPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWVerOnProcPabxId.setStatus('current')
if mibBuilder.loadTexts: himSWVerOnProcPabxId.setDescription('')
himSWVerOnProcSrc = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWVerOnProcSrc.setStatus('current')
if mibBuilder.loadTexts: himSWVerOnProcSrc.setDescription('This field contains the name of the software source.')
himSWVerOnProcSWVer = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 17))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWVerOnProcSWVer.setStatus('current')
if mibBuilder.loadTexts: himSWVerOnProcSWVer.setDescription('This field contains the name of the software version of the ADP software. The software version is displayed in the following format: [item-code-prefix][hipath-version][release-no][country-id][country-code][revision-no] e. g. P30252N 43 08 B 000 10')
himSWVerOnProcItemCodeNoPrefix = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWVerOnProcItemCodeNoPrefix.setStatus('current')
if mibBuilder.loadTexts: himSWVerOnProcItemCodeNoPrefix.setDescription('This field contains the prefix of the software.')
himSWVerOnProcHP4KVer = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWVerOnProcHP4KVer.setStatus('current')
if mibBuilder.loadTexts: himSWVerOnProcHP4KVer.setDescription('This field contains the Hicom/HiPath version.')
himSWVerOnProcSysRel = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWVerOnProcSysRel.setStatus('current')
if mibBuilder.loadTexts: himSWVerOnProcSysRel.setDescription('This field contains the system release number.')
himSWVerOnProcCountry = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWVerOnProcCountry.setStatus('current')
if mibBuilder.loadTexts: himSWVerOnProcCountry.setDescription('This field contains the country identifier.')
himSWVerOnProcCountryCode = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 3))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWVerOnProcCountryCode.setStatus('current')
if mibBuilder.loadTexts: himSWVerOnProcCountryCode.setDescription('This field contains the country encoding.')
himSWVerOnProcRevNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWVerOnProcRevNo.setStatus('current')
if mibBuilder.loadTexts: himSWVerOnProcRevNo.setDescription('This field contains the revision number of the ADP software.')
himSwPkgVersion = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10))
himSWPkgVerTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1), )
if mibBuilder.loadTexts: himSWPkgVerTable.setStatus('current')
if mibBuilder.loadTexts: himSWPkgVerTable.setDescription('This table contains the software versions of the service functions. This data is retrieved using the UNIX command pgkinfo -l.')
himSWPkgVerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSWPkgVerPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himSWPkgVerPkgAbbr"))
if mibBuilder.loadTexts: himSWPkgVerEntry.setStatus('current')
if mibBuilder.loadTexts: himSWPkgVerEntry.setDescription('')
himSWPkgVerPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWPkgVerPabxId.setStatus('current')
if mibBuilder.loadTexts: himSWPkgVerPabxId.setDescription('')
himSWPkgVerPkgAbbr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWPkgVerPkgAbbr.setStatus('current')
if mibBuilder.loadTexts: himSWPkgVerPkgAbbr.setDescription('This field contains the abbreviation of the software package.')
himSWPkgVerPkgName = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 50))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWPkgVerPkgName.setStatus('current')
if mibBuilder.loadTexts: himSWPkgVerPkgName.setDescription('This field contains the name of the software package.')
himSWPkgVerVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWPkgVerVersion.setStatus('current')
if mibBuilder.loadTexts: himSWPkgVerVersion.setDescription('This field contains the version of the software package.')
himSWPkgVerInstAt = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWPkgVerInstAt.setStatus('current')
if mibBuilder.loadTexts: himSWPkgVerInstAt.setDescription('This field contains the date on which the software package was installed.')
himSWPkgVerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 0))).clone(namedValues=NamedValues(("partial", 1), ("complete", 2), ("other", 0)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSWPkgVerStatus.setStatus('current')
if mibBuilder.loadTexts: himSWPkgVerStatus.setDescription('This field contains the status of the software package.')
himSystem = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11))
himSysBasicTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 1), )
if mibBuilder.loadTexts: himSysBasicTable.setStatus('current')
if mibBuilder.loadTexts: himSysBasicTable.setDescription('This table complements the information about the HiPath 4000 system that is stored in the hicomSystem branch of the hicom MIB.')
himSysBasicEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSysBasicPabxId"))
if mibBuilder.loadTexts: himSysBasicEntry.setStatus('current')
if mibBuilder.loadTexts: himSysBasicEntry.setDescription('')
himSysBasicPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysBasicPabxId.setStatus('current')
if mibBuilder.loadTexts: himSysBasicPabxId.setDescription('')
himSysBasicDomain = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysBasicDomain.setStatus('current')
if mibBuilder.loadTexts: himSysBasicDomain.setDescription('This field contains the name of the domain to which the system is belonging.')
himSysBasicNodeNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysBasicNodeNo.setStatus('current')
if mibBuilder.loadTexts: himSysBasicNodeNo.setDescription("HiPath node number. This field contains the globally unique number of your own PABX. This has a hierarchical structure containing different levels in Version V1.0 and later. Up to three values of the format: L2- L1- L0 can be used for numbering a system. - L2: area number in level 2 - L1: area number in level 1 - L0: area number in level 0 or node number in the old sense. If the value '0' is selected for a level, this means that the relevant hierarchical level is not being used for node numbering: '0' is equal to 'nothing' or 'level is not set'. With the help of this new node number format it is now possible to implement node numbers in networks in which - just as with dial numbers - the network hierarchy is reflected in the node numbers. The same numbering level (= number of levels set in the node number) must be used for all nodes in a network. This field will always show a three-level display with leading zeroes for levels not used for systems in Version V1.0 and later. Example: - 0-0-100 for 1-level numbering - 0-1-101 for 2-level numbering - 1-2-300 for 3-level numbering Values: 0-9 and '-' with format 22-111-000 Level 0 (000) 0-999 Level 1 (111) 0-253 Level 2 (22) 0-29 Max. 10 digits")
himSysBasicLEGK = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 1, 1, 4), HimYesNo()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysBasicLEGK.setStatus('current')
if mibBuilder.loadTexts: himSysBasicLEGK.setDescription("This field tells if the 'LEGK' feature is activated on the system. LEGK is a process within the call processing of HiPath 4000 with the following functions: - Gate keeper function: IP address resolution mechanism for IP trunking requiring the HG3550 board as hardware. - Resource Management: This function monitors network component usage for controlling IP trunking, IPDA scenarios, HFA and direct media connections. The LEGK can be activated at every HiPath 4000 in the network. Alternatively, it can be configured on a specific HiPath 4000 system only.")
himSysLANCardsTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2), )
if mibBuilder.loadTexts: himSysLANCardsTable.setStatus('current')
if mibBuilder.loadTexts: himSysLANCardsTable.setDescription('')
himSysLANCardsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSysLANCardsPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himSysLANCardsIPAddr"))
if mibBuilder.loadTexts: himSysLANCardsEntry.setStatus('current')
if mibBuilder.loadTexts: himSysLANCardsEntry.setDescription('')
himSysLANCardsPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysLANCardsPabxId.setStatus('current')
if mibBuilder.loadTexts: himSysLANCardsPabxId.setDescription('')
himSysLANCardsIPAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysLANCardsIPAddr.setStatus('current')
if mibBuilder.loadTexts: himSysLANCardsIPAddr.setDescription('Unique IP address within the Customer LAN.')
himSysLANCardsNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysLANCardsNetMask.setStatus('current')
if mibBuilder.loadTexts: himSysLANCardsNetMask.setDescription('The netmask of the LAN card. It depends on the class of the LAN Card address.')
himSysLANCardsBroadCast = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysLANCardsBroadCast.setStatus('current')
if mibBuilder.loadTexts: himSysLANCardsBroadCast.setDescription('The broadcast address is used to send a datagram packet to all hosts of a network or subnetwork, e.g. for address propagation from a router. The broadcast address also depends on the LAN Card address.')
himSysLANCardsType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 0))).clone(namedValues=NamedValues(("ethernet", 1), ("tokenring", 2), ("other", 0)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysLANCardsType.setStatus('current')
if mibBuilder.loadTexts: himSysLANCardsType.setDescription('Type of the LAN card. Possible values are Ethernet and Token Ring.')
himSysLANCardsStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 0))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2), ("stale", 3), ("configured", 4), ("unconfigured", 5), ("other", 0)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysLANCardsStatus.setStatus('current')
if mibBuilder.loadTexts: himSysLANCardsStatus.setDescription('The status of the configured LAN card. Can be one of the following: - Unknown (no traffic light lit): The LAN Card is configured, but no reboot has been performed. - Enabled (green traffic light lit): The LAN Card is active. - Disabled (red traffic light lit): The LAN Card is not active.')
himSysHostsTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 3), )
if mibBuilder.loadTexts: himSysHostsTable.setStatus('current')
if mibBuilder.loadTexts: himSysHostsTable.setDescription('')
himSysHostsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 3, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSysHostsPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himSysHostsNo"))
if mibBuilder.loadTexts: himSysHostsEntry.setStatus('current')
if mibBuilder.loadTexts: himSysHostsEntry.setDescription('')
himSysHostsPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 3, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysHostsPabxId.setStatus('current')
if mibBuilder.loadTexts: himSysHostsPabxId.setDescription('')
himSysHostsNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysHostsNo.setStatus('current')
if mibBuilder.loadTexts: himSysHostsNo.setDescription('Index of the host entry.')
himSysHostsIPAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 3, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysHostsIPAddr.setStatus('current')
if mibBuilder.loadTexts: himSysHostsIPAddr.setDescription('The IP address of the host.')
himSysHostsName = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 50))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysHostsName.setStatus('current')
if mibBuilder.loadTexts: himSysHostsName.setDescription('Unique name of the host.')
himSysWAMLConn = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4))
himSysWAMLConnTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1), )
if mibBuilder.loadTexts: himSysWAMLConnTable.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnTable.setDescription('')
himSysWAMLConnEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSysWAMLConnPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himSysWAMLConnLTG"), (0, "SIEMENS-HP4KHIM-MIB", "himSysWAMLConnLTU"), (0, "SIEMENS-HP4KHIM-MIB", "himSysWAMLConnSlot"))
if mibBuilder.loadTexts: himSysWAMLConnEntry.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnEntry.setDescription('')
himSysWAMLConnPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnPabxId.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnPabxId.setDescription('')
himSysWAMLConnLTG = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnLTG.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnLTG.setDescription('Line/trunk group number. Valid values: 1-1')
himSysWAMLConnLTU = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 99))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnLTU.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnLTU.setDescription('Line/trunk unit. Valid values: 1-15, for IP Gateway DSP HW of NCUI STMI STMA WAML 1-99, for RG/ACGEN PER DIU SIUP TMD 17-99, for NCUI STMA WAML')
himSysWAMLConnSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 145))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnSlot.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnSlot.setDescription('Slot number of LTU (Line/Trunk Unit). Valid values: 1-121, for STMI, IP gateway, PER, RG, ACGEN, DIU, SIUP, TMD 1-145, for STMA, WAML')
himSysWAMLConnRufNr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 5), HimPhoneNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnRufNr.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnRufNr.setDescription('Phone number of the WAML board.')
himSysWAMLConnBChl = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnBChl.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnBChl.setDescription('Number of b-channels on the WAML board.')
himSysWAMLConnStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnStatus.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnStatus.setDescription('Status of the WAML board.')
himSysWAMLConnIPTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2), )
if mibBuilder.loadTexts: himSysWAMLConnIPTable.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnIPTable.setDescription('')
himSysWAMLConnIPEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himSysWAMLConnIPPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himSysWAMLConnIPLTG"), (0, "SIEMENS-HP4KHIM-MIB", "himSysWAMLConnIPLTU"), (0, "SIEMENS-HP4KHIM-MIB", "himSysWAMLConnIPSlot"), (0, "SIEMENS-HP4KHIM-MIB", "himSysWAMLConnIPIfName"))
if mibBuilder.loadTexts: himSysWAMLConnIPEntry.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnIPEntry.setDescription('')
himSysWAMLConnIPPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnIPPabxId.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnIPPabxId.setDescription('')
himSysWAMLConnIPLTG = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnIPLTG.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnIPLTG.setDescription('Line/trunk group number. Valid values: 1-1')
himSysWAMLConnIPLTU = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 99))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnIPLTU.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnIPLTU.setDescription('Line/trunk unit. Valid values: 1-15, for IP Gateway DSP HW of NCUI STMI STMA WAML 1-99, for RG/ACGEN PER DIU SIUP TMD 17-99, for NCUI STMA WAML')
himSysWAMLConnIPSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 145))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnIPSlot.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnIPSlot.setDescription('Slot number of LTU (Line/Trunk Unit). Valid values: 1-121, for STMI, IP gateway, PER, RG, ACGEN, DIU, SIUP, TMD 1-145, for STMA, WAML')
himSysWAMLConnIPIfName = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnIPIfName.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnIPIfName.setDescription('Name of the interface.')
himSysWAMLConnIPAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnIPAddr.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnIPAddr.setDescription('IP address of the WAML connection.')
himSysWAMLConnIPNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 7), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSysWAMLConnIPNetMask.setStatus('current')
if mibBuilder.loadTexts: himSysWAMLConnIPNetMask.setDescription('Net mask of the WAML connection.')
himBoards = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12))
himBoardBasicTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1), )
if mibBuilder.loadTexts: himBoardBasicTable.setStatus('current')
if mibBuilder.loadTexts: himBoardBasicTable.setDescription('This table contains the boards that are managed by CM. It can be viewed as an extension of hicomBCSUTable. Please note that the PEN (LTG, LTU, Slot) of LTU boards is different from what is contained in CM, and uses the same format as in the hicom MIB.')
himBoardBasicEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himBoardBasicPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himBoardBasicLTG"), (0, "SIEMENS-HP4KHIM-MIB", "himBoardBasicLTU"), (0, "SIEMENS-HP4KHIM-MIB", "himBoardBasicSlot"))
if mibBuilder.loadTexts: himBoardBasicEntry.setStatus('current')
if mibBuilder.loadTexts: himBoardBasicEntry.setDescription('')
himBoardBasicPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardBasicPabxId.setStatus('current')
if mibBuilder.loadTexts: himBoardBasicPabxId.setDescription('')
himBoardBasicLTG = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardBasicLTG.setStatus('current')
if mibBuilder.loadTexts: himBoardBasicLTG.setDescription('Line/trunk group number. Valid values: 1-1')
himBoardBasicLTU = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 99))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardBasicLTU.setStatus('current')
if mibBuilder.loadTexts: himBoardBasicLTU.setDescription('Line/trunk unit. Valid values: 1-15, for IP Gateway DSP HW of NCUI STMI STMA WAML 1-99, for RG/ACGEN PER DIU SIUP TMD 17-99, for NCUI STMA WAML')
himBoardBasicSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 145))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardBasicSlot.setStatus('current')
if mibBuilder.loadTexts: himBoardBasicSlot.setDescription('Slot number of LTU (Line/Trunk Unit). Valid values: 1-121, for STMI, IP gateway, PER, RG, ACGEN, DIU, SIUP, TMD 1-145, for STMA, WAML')
himBoardBasicFuncId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardBasicFuncId.setStatus('current')
if mibBuilder.loadTexts: himBoardBasicFuncId.setDescription('Function ID Valid values: 0-255 2 for SIU type 2 (MFV) 3 for SIU type 3 (MFC) 4 for SIU - RDS functionality 5 for SIU - ANI signaling 6 for SIU - CIS multifrequency (MFS) 7 for SIU - line testing')
himBoardBasicCat = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0))).clone(namedValues=NamedValues(("ltg", 1), ("ltu", 2), ("per", 3), ("perhw", 4), ("acgen", 5), ("diu", 6), ("ipgw", 7), ("rg", 8), ("siup", 9), ("tmd", 10), ("other", 0)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardBasicCat.setStatus('current')
if mibBuilder.loadTexts: himBoardBasicCat.setDescription('Category The board type includes: LTG -- line/trunk group LTU -- line/trunk unit PER -- peripheral module PERHW -- load peripheral hardware ACGEN -- alternating current generator DIU -- digital interface unit IPGW -- IP gateway RG -- ring generator SIUP -- signalling unit periphery TMD -- T1 boards')
himBoardBasicName = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardBasicName.setStatus('current')
if mibBuilder.loadTexts: himBoardBasicName.setDescription('Name of the setup the board is configured to.')
himBoardBasicVOIPSec = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 8), HimYesNo()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardBasicVOIPSec.setStatus('current')
if mibBuilder.loadTexts: himBoardBasicVOIPSec.setDescription('')
himBoardBasicLWVar = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardBasicLWVar.setStatus('current')
if mibBuilder.loadTexts: himBoardBasicLWVar.setDescription('The loadware variant. Default value: 0 Valid values: 0-9, A-D')
himBoardBasicNoCirc = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardBasicNoCirc.setStatus('current')
if mibBuilder.loadTexts: himBoardBasicNoCirc.setDescription('Number of circuits to be configured. Valid values: 1-255')
himBoardIPTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2), )
if mibBuilder.loadTexts: himBoardIPTable.setStatus('current')
if mibBuilder.loadTexts: himBoardIPTable.setDescription('This table contains the IP address configuration of the boards. Please note that not all fields are used for all boards.')
himBoardIPEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1), )
himBoardBasicEntry.registerAugmentions(("SIEMENS-HP4KHIM-MIB", "himBoardIPEntry"))
himBoardIPEntry.setIndexNames(*himBoardBasicEntry.getIndexNames())
if mibBuilder.loadTexts: himBoardIPEntry.setStatus('current')
if mibBuilder.loadTexts: himBoardIPEntry.setDescription('')
himBoardIPGwyIPAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardIPGwyIPAddr.setStatus('current')
if mibBuilder.loadTexts: himBoardIPGwyIPAddr.setDescription('IP address of the gateway. Valid for: STMI')
himBoardIPSrcIPAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardIPSrcIPAddr.setStatus('current')
if mibBuilder.loadTexts: himBoardIPSrcIPAddr.setDescription('Source IP address of STMI-HFA board. A valid Source IP address must always be specified in order to enable the IP phones to address the system (SWU) Default: 0.0.0.0 Valid for: HFA')
himBoardIPNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardIPNetMask.setStatus('current')
if mibBuilder.loadTexts: himBoardIPNetMask.setDescription('IP network mask. Valid for: HFA')
himBoardIPDefRouter = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardIPDefRouter.setStatus('current')
if mibBuilder.loadTexts: himBoardIPDefRouter.setDescription('IP address of the default router within the LAN segment. The default router takes care of routing forward all packets with a destination address with a network part different from the own LAN segment. Default: 0.0.0.0 Valid for: HFA')
himBoardIPCustLANIP = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardIPCustLANIP.setStatus('current')
if mibBuilder.loadTexts: himBoardIPCustLANIP.setDescription('IP address of customer LAN. Default: 0.0.0.0 Valid for: IGW, SIP')
himBoardIPSTMI2IGWSubMask = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardIPSTMI2IGWSubMask.setStatus('current')
if mibBuilder.loadTexts: himBoardIPSTMI2IGWSubMask.setDescription('IP subnet mask of LAN segment. Default: 0.0.0.0 Valid for: IGW, SIP')
himBoardIPDefGWIP = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 7), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardIPDefGWIP.setStatus('current')
if mibBuilder.loadTexts: himBoardIPDefGWIP.setDescription('Default gateway IP address. Default: 0.0.0.0 Valid for: IGW, SIP')
himBoardIPManStatIP = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 8), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardIPManStatIP.setStatus('current')
if mibBuilder.loadTexts: himBoardIPManStatIP.setDescription('IP address of management station. Default: 0.0.0.0 Valid for: IGW, SIP')
himBoardIPManStatPort = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1024, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardIPManStatPort.setStatus('current')
if mibBuilder.loadTexts: himBoardIPManStatPort.setDescription('Port number of management station. Valid values: 1024 - 65535 Default: 0 Valid for: IGW, SIP')
himBoardIPBckpServIP = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 10), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardIPBckpServIP.setStatus('current')
if mibBuilder.loadTexts: himBoardIPBckpServIP.setDescription('IP address of backup server. Default: 0.0.0.0 Valid for: IGW, SIP')
himBoardIPBckpServPort = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardIPBckpServPort.setStatus('current')
if mibBuilder.loadTexts: himBoardIPBckpServPort.setDescription("Port number of backup server. Default: 0 (0 means 'undefined port number') Valid for: IGW, SIP")
himBoardLocTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 3), )
if mibBuilder.loadTexts: himBoardLocTable.setStatus('current')
if mibBuilder.loadTexts: himBoardLocTable.setDescription('This table contains the location data of the boards. It is only available for boards of type DSX, LTUCA, LTUCE and LTUCX.')
himBoardLocEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 3, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himBoardBasicPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himBoardBasicLTG"), (0, "SIEMENS-HP4KHIM-MIB", "himBoardBasicLTU"), (0, "SIEMENS-HP4KHIM-MIB", "himBoardBasicSlot"))
if mibBuilder.loadTexts: himBoardLocEntry.setStatus('current')
if mibBuilder.loadTexts: himBoardLocEntry.setDescription('')
himBoardLocId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 999))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardLocId.setStatus('current')
if mibBuilder.loadTexts: himBoardLocId.setDescription('Describes the location of the switch for the system configurator. Valid values: 0-999')
himBoardLocLoc = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 45))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardLocLoc.setStatus('current')
if mibBuilder.loadTexts: himBoardLocLoc.setDescription('Postal address of the LTU (Line/Trunk Unit) shelf. Applies to the Local Connection Type. Valid values: text, up to 45 characters')
himBoardLocPhoneNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 3, 1, 3), HimPhoneNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardLocPhoneNo.setStatus('current')
if mibBuilder.loadTexts: himBoardLocPhoneNo.setDescription('Phone number at the shelf location. Valid values: 0-9, *, #, A-D, up to 22 characters')
himBoardLocFaxNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 3, 1, 4), HimPhoneNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himBoardLocFaxNo.setStatus('current')
if mibBuilder.loadTexts: himBoardLocFaxNo.setDescription('Fax number at the shelf location. Valid values: 0-9, *, #, A-D, up to 22 characters')
himIPDA = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13))
himIPDAGenData = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1))
himIPDAGenTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1), )
if mibBuilder.loadTexts: himIPDAGenTable.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenTable.setDescription('General settings that are true for all IPDAs.')
himIPDAGenEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himIPDAGenPabxId"))
if mibBuilder.loadTexts: himIPDAGenEntry.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenEntry.setDescription('')
himIPDAGenPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAGenPabxId.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenPabxId.setDescription('')
himIPDAGenSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(10, 10), ValueRangeConstraint(100, 100), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAGenSpeed.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenSpeed.setDescription('Indicates the bit-rate speed. Valid values: 10 Mbits/s; 100 Mbits/s')
himIPDAGenMode = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("fullduplex", 1), ("halfduplex", 2), ("other", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAGenMode.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenMode.setDescription('Indicates the bit-rate mode. Valid values: Full Duplex, Half Duplex')
himIPDAGenPayConn = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAGenPayConn.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenPayConn.setDescription('TOS for VoIP payload connections to APs (CP). Valid values: 0-255')
himIPDAGenSigConn = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAGenSigConn.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenSigConn.setDescription('TOS for signalling connections to APs (FA). Valid values: 0-255')
himIPDAGenIPTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2), )
if mibBuilder.loadTexts: himIPDAGenIPTable.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenIPTable.setDescription('General IP settings that are true for all IPDAs.')
himIPDAGenIPEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1), )
himIPDAGenEntry.registerAugmentions(("SIEMENS-HP4KHIM-MIB", "himIPDAGenIPEntry"))
himIPDAGenIPEntry.setIndexNames(*himIPDAGenEntry.getIndexNames())
if mibBuilder.loadTexts: himIPDAGenIPEntry.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenIPEntry.setDescription('')
himIPDAGenIPNetAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAGenIPNetAddr.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenIPNetAddr.setDescription('IP net address of HiPath LAN segment.')
himIPDAGenIPNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAGenIPNetMask.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenIPNetMask.setDescription('IP net mask of HiPath LAN segment.')
himIPDAGenIPCCAAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAGenIPCCAAddr.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenIPCCAAddr.setDescription('Address of the CC-A processor within the HiPath LAN segment.')
himIPDAGenIPCCBAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAGenIPCCBAddr.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenIPCCBAddr.setDescription('Address of the CC-B processor within the HiPath LAN segment. Default value: 0.0.0.0')
himIPDAGenIPDefRoutAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAGenIPDefRoutAddr.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenIPDefRoutAddr.setDescription('IP address of the default router within the HiPath LAN segment.')
himIPDAGenIPSurvNetAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAGenIPSurvNetAddr.setStatus('current')
if mibBuilder.loadTexts: himIPDAGenIPSurvNetAddr.setDescription('The IP address of the survivability net. Default value: 0.0.0.0')
himIPDAAPData = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2))
himIPDABasicTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1), )
if mibBuilder.loadTexts: himIPDABasicTable.setStatus('current')
if mibBuilder.loadTexts: himIPDABasicTable.setDescription('This table stores IPDA information from CM.')
himIPDABasicEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himIPDABasicPabxId"), (0, "SIEMENS-HP4KHIM-MIB", "himIPDABasicLTU"))
if mibBuilder.loadTexts: himIPDABasicEntry.setStatus('current')
if mibBuilder.loadTexts: himIPDABasicEntry.setDescription('')
himIPDABasicPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDABasicPabxId.setStatus('current')
if mibBuilder.loadTexts: himIPDABasicPabxId.setDescription('')
himIPDABasicLTU = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(17, 99))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDABasicLTU.setStatus('current')
if mibBuilder.loadTexts: himIPDABasicLTU.setDescription('Line/trunk unit. Valid values: 17-99')
himIPDABasicConnType = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1, 1, 3), HimShelfNWType().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(3, 4), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDABasicConnType.setStatus('current')
if mibBuilder.loadTexts: himIPDABasicConnType.setDescription('Connection type of the shelf. Valid values: APDL -- AP shelf via IP - direct linked APNW -- AP shelf via IP - network')
himIPDABasicBChanNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDABasicBChanNo.setStatus('current')
if mibBuilder.loadTexts: himIPDABasicBChanNo.setDescription('Amount of B-Channels. Valid values: 1- 120')
himIPDABasicConvAMLaw = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1, 1, 5), HimYesNo()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDABasicConvAMLaw.setStatus('current')
if mibBuilder.loadTexts: himIPDABasicConvAMLaw.setDescription('')
himIPDAIPTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2), )
if mibBuilder.loadTexts: himIPDAIPTable.setStatus('current')
if mibBuilder.loadTexts: himIPDAIPTable.setDescription('This table contains the IP address configuration of the IPDAs.')
himIPDAIPEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1), )
himIPDABasicEntry.registerAugmentions(("SIEMENS-HP4KHIM-MIB", "himIPDAIPEntry"))
himIPDAIPEntry.setIndexNames(*himIPDABasicEntry.getIndexNames())
if mibBuilder.loadTexts: himIPDAIPEntry.setStatus('current')
if mibBuilder.loadTexts: himIPDAIPEntry.setDescription('')
himIPDAIPAccPtAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAIPAccPtAddr.setStatus('current')
if mibBuilder.loadTexts: himIPDAIPAccPtAddr.setDescription('IP address of the access point in the AP network.')
himIPDAIPTAccPtAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAIPTAccPtAddr.setStatus('current')
if mibBuilder.loadTexts: himIPDAIPTAccPtAddr.setDescription('IP address for the TAP/Service PC link at the access point. This IP address must be in the same network as the access point in the AP network.')
himIPDAIPAccPtRoutAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAIPAccPtRoutAddr.setStatus('current')
if mibBuilder.loadTexts: himIPDAIPAccPtRoutAddr.setDescription('IP address of the gateway (IP address of the router in the AP network).')
himIPDAIPNetMaskNW = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAIPNetMaskNW.setStatus('current')
if mibBuilder.loadTexts: himIPDAIPNetMaskNW.setDescription('Netmask of the network to which the respective Access Point in AP network belongs.')
himIPDAIPAccPtPriRoutAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAIPAccPtPriRoutAddr.setStatus('current')
if mibBuilder.loadTexts: himIPDAIPAccPtPriRoutAddr.setDescription('IP address of the primary signalling router for NCUI board (IP address of the router in the HiPath 4000 LAN segment). Required if the connection type is APDL.')
himIPDAIPNetMaskDL = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDAIPNetMaskDL.setStatus('current')
if mibBuilder.loadTexts: himIPDAIPNetMaskDL.setDescription('Netmask of the network to which the Access Point in AP internal network belongs.')
himIPDALocTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 3), )
if mibBuilder.loadTexts: himIPDALocTable.setStatus('current')
if mibBuilder.loadTexts: himIPDALocTable.setDescription('This table contains the location data of the boards. It is only available for boards of type DSX, LTUCA, LTUCE and LTUCX.')
himIPDALocEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 3, 1), )
himIPDABasicEntry.registerAugmentions(("SIEMENS-HP4KHIM-MIB", "himIPDALocEntry"))
himIPDALocEntry.setIndexNames(*himIPDABasicEntry.getIndexNames())
if mibBuilder.loadTexts: himIPDALocEntry.setStatus('current')
if mibBuilder.loadTexts: himIPDALocEntry.setDescription('')
himIPDALocId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 999))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDALocId.setStatus('current')
if mibBuilder.loadTexts: himIPDALocId.setDescription('Describes the location of the switch for the system configurator. Valid values: 0-999')
himIPDALocLoc = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 45))).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDALocLoc.setStatus('current')
if mibBuilder.loadTexts: himIPDALocLoc.setDescription('Postal address of the LTU (Line/Trunk Unit) shelf. Applies to the Local Connection Type. Valid values: text, up to 45 characters')
himIPDALocPhoneNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 3, 1, 3), HimPhoneNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDALocPhoneNo.setStatus('current')
if mibBuilder.loadTexts: himIPDALocPhoneNo.setDescription('Phone number at the shelf location. Valid values: 0-9, *, #, A-D, up to 22 characters')
himIPDALocFaxNo = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 3, 1, 4), HimPhoneNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himIPDALocFaxNo.setStatus('current')
if mibBuilder.loadTexts: himIPDALocFaxNo.setDescription('Fax number at the shelf location. Valid values: 0-9, *, #, A-D, up to 22 characters')
himInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 14))
himSubagentLastMsgNo = MibScalar((1, 3, 6, 1, 4, 1, 4329, 2, 51, 14, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSubagentLastMsgNo.setStatus('current')
if mibBuilder.loadTexts: himSubagentLastMsgNo.setDescription('The last message, warning or error number issued by the Him subagent.')
himSubagentLastMsgText = MibScalar((1, 3, 6, 1, 4, 1, 4329, 2, 51, 14, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himSubagentLastMsgText.setStatus('current')
if mibBuilder.loadTexts: himSubagentLastMsgText.setDescription('The last message, warning or error text issued by the Him subagent.')
himResultData = MibScalar((1, 3, 6, 1, 4, 1, 4329, 2, 51, 14, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: himResultData.setStatus('current')
if mibBuilder.loadTexts: himResultData.setDescription("Is used for agent internal communication. Contains the PabxId of a Hicom for which the last discovery process was conveyed. Is SET by the discovery agent and indicates the availability of new discovered data. The new data is to be incorporated by the subagent into the subagent's data base.")
himDiscovery = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15))
himChanges = MibScalar((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himChanges.setStatus('current')
if mibBuilder.loadTexts: himChanges.setDescription('Indicates the number of finished HIM discoveries - corresponds to the number of hicomHWDiscovXXX traps sent out.')
himDiscovTable = MibTable((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2), )
if mibBuilder.loadTexts: himDiscovTable.setStatus('current')
if mibBuilder.loadTexts: himDiscovTable.setDescription('The table describing the status concerning discovery of HIM information.')
himDiscovEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1), ).setIndexNames((0, "SIEMENS-HP4KHIM-MIB", "himDiscovPabxId"))
if mibBuilder.loadTexts: himDiscovEntry.setStatus('current')
if mibBuilder.loadTexts: himDiscovEntry.setDescription('The entry describes the status of the discovery process. It is designed to comply with the structure of discovery entries in the hicom MIB, even though data is only provided for one switch.')
himDiscovPabxId = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1, 1), HimPabxId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDiscovPabxId.setStatus('current')
if mibBuilder.loadTexts: himDiscovPabxId.setDescription('Unique identifier of the Hicom being discovered.')
himDiscovPabxMnemonic = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDiscovPabxMnemonic.setStatus('current')
if mibBuilder.loadTexts: himDiscovPabxMnemonic.setDescription('Name of the Hicom system.')
himDiscovStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1, 3), DiscoveryStates()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: himDiscovStatus.setStatus('current')
if mibBuilder.loadTexts: himDiscovStatus.setDescription('Status of discovery process. A managment station may initiate a discovery by setting this variable to value busy. The other values are set by the agent.')
himDiscovMode = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1, 4), DiscoveryModes()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: himDiscovMode.setStatus('current')
if mibBuilder.loadTexts: himDiscovMode.setDescription('Mode of discovery process.')
himDiscovTimDat = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDiscovTimDat.setStatus('current')
if mibBuilder.loadTexts: himDiscovTimDat.setDescription('Date and time (year, month, day, hour, minute, second) the last successful discovery action was performed for the Hicom.')
himDiscovErrTimDat = MibTableColumn((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: himDiscovErrTimDat.setStatus('current')
if mibBuilder.loadTexts: himDiscovErrTimDat.setDescription('Date and time (year, month, day, hour, minute, second) the last failed discovery action was performed for the Hicom.')
himMibConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20))
himMibGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1))
himWelcomePageGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 1)).setObjects(("SIEMENS-HP4KHIM-MIB", "himWelPgPabxId"), ("SIEMENS-HP4KHIM-MIB", "himWelPgSysNo"), ("SIEMENS-HP4KHIM-MIB", "himHP4KVersion"), ("SIEMENS-HP4KHIM-MIB", "himSystemRelease"), ("SIEMENS-HP4KHIM-MIB", "himRevisionLevel"), ("SIEMENS-HP4KHIM-MIB", "himHWArchitecture"), ("SIEMENS-HP4KHIM-MIB", "himHWArchitectureType"), ("SIEMENS-HP4KHIM-MIB", "himOperationMode"), ("SIEMENS-HP4KHIM-MIB", "himSWUProc1"), ("SIEMENS-HP4KHIM-MIB", "himSWUMemory1"), ("SIEMENS-HP4KHIM-MIB", "himSWUProc2"), ("SIEMENS-HP4KHIM-MIB", "himSWUMemory2"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himWelcomePageGroup = himWelcomePageGroup.setStatus('current')
if mibBuilder.loadTexts: himWelcomePageGroup.setDescription('')
himSwitchDataGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 2)).setObjects(("SIEMENS-HP4KHIM-MIB", "himTechInfoPabxId"), ("SIEMENS-HP4KHIM-MIB", "himTechInfoInfoNo"), ("SIEMENS-HP4KHIM-MIB", "himTechInfoDate"), ("SIEMENS-HP4KHIM-MIB", "himTechInfoTechnicalData"), ("SIEMENS-HP4KHIM-MIB", "himTechInfoNumber"), ("SIEMENS-HP4KHIM-MIB", "himTechInfoExtraText"), ("SIEMENS-HP4KHIM-MIB", "himNotepadDataPabxId"), ("SIEMENS-HP4KHIM-MIB", "himNotepadDataInfoNo"), ("SIEMENS-HP4KHIM-MIB", "himNotepadDataDate"), ("SIEMENS-HP4KHIM-MIB", "himNotepadDataText"), ("SIEMENS-HP4KHIM-MIB", "himProjPlanPabxId"), ("SIEMENS-HP4KHIM-MIB", "himProjPlanInfoFile"), ("SIEMENS-HP4KHIM-MIB", "himProjPlanInfoCreationDate"), ("SIEMENS-HP4KHIM-MIB", "himProjPlanInfoCreationTime"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himSwitchDataGroup = himSwitchDataGroup.setStatus('current')
if mibBuilder.loadTexts: himSwitchDataGroup.setDescription('')
himSpecGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 3)).setObjects(("SIEMENS-HP4KHIM-MIB", "himSpecShelfDataPabxId"), ("SIEMENS-HP4KHIM-MIB", "himSpecShelfDataAddress"), ("SIEMENS-HP4KHIM-MIB", "himSpecShelfDataFrameType"), ("SIEMENS-HP4KHIM-MIB", "himSpecShelfDataLTU"), ("SIEMENS-HP4KHIM-MIB", "himSpecShelfDataNetworkType"), ("SIEMENS-HP4KHIM-MIB", "himSpecShelfDataNetworkAddress"), ("SIEMENS-HP4KHIM-MIB", "himSpecShelfDataRemote"), ("SIEMENS-HP4KHIM-MIB", "himSpecShelfDataLocation"), ("SIEMENS-HP4KHIM-MIB", "himSpecShelfDataLTUC"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardPabxId"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardPEN"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardOverlayLTU"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardType"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardNominal"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardActual"), ("SIEMENS-HP4KHIM-MIB", "hhimSWUBoardFirmware"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardRev"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardFunctId"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardMode"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardLWNo"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardLWInterVer"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardLWName"), ("SIEMENS-HP4KHIM-MIB", "himSWUBoardLWDate"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himSpecGroup = himSpecGroup.setStatus('current')
if mibBuilder.loadTexts: himSpecGroup.setDescription('')
himSWUPeripheryGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 4)).setObjects(("SIEMENS-HP4KHIM-MIB", "himPSIOAssPabxId"), ("SIEMENS-HP4KHIM-MIB", "himPSIOAssAssembly"), ("SIEMENS-HP4KHIM-MIB", "himPSIOAssPEN"), ("SIEMENS-HP4KHIM-MIB", "himPSIOAssActual"), ("SIEMENS-HP4KHIM-MIB", "himPSIOAssFirmware"), ("SIEMENS-HP4KHIM-MIB", "himSerialLinePabxId"), ("SIEMENS-HP4KHIM-MIB", "himSerialLineBoardType"), ("SIEMENS-HP4KHIM-MIB", "himSerialLineNumber"), ("SIEMENS-HP4KHIM-MIB", "himSerialLineSpeed"), ("SIEMENS-HP4KHIM-MIB", "himSerialLineLogDevName"), ("SIEMENS-HP4KHIM-MIB", "himSerialLineDevType"), ("SIEMENS-HP4KHIM-MIB", "himSerialLineType"), ("SIEMENS-HP4KHIM-MIB", "himSCSIDevPabxId"), ("SIEMENS-HP4KHIM-MIB", "himSCSIDevId"), ("SIEMENS-HP4KHIM-MIB", "himSCSIDevType"), ("SIEMENS-HP4KHIM-MIB", "himSCSIDevName"), ("SIEMENS-HP4KHIM-MIB", "himSCSIDevFirmware"), ("SIEMENS-HP4KHIM-MIB", "himSCSIDevLoadDrive"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himSWUPeripheryGroup = himSWUPeripheryGroup.setStatus('current')
if mibBuilder.loadTexts: himSWUPeripheryGroup.setDescription('')
himCentralSwitchGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 5)).setObjects(("SIEMENS-HP4KHIM-MIB", "himCabPabxId"), ("SIEMENS-HP4KHIM-MIB", "himCabAddr"), ("SIEMENS-HP4KHIM-MIB", "himCabPhysAddr"), ("SIEMENS-HP4KHIM-MIB", "himCabCabinet"), ("SIEMENS-HP4KHIM-MIB", "himCabPartNo"), ("SIEMENS-HP4KHIM-MIB", "himCabShelfNo"), ("SIEMENS-HP4KHIM-MIB", "himCabFrame"), ("SIEMENS-HP4KHIM-MIB", "himCabPid1"), ("SIEMENS-HP4KHIM-MIB", "himCabPid2"), ("SIEMENS-HP4KHIM-MIB", "himCabPid3"), ("SIEMENS-HP4KHIM-MIB", "himCabLTUNo"), ("SIEMENS-HP4KHIM-MIB", "himMemScalingPabxId"), ("SIEMENS-HP4KHIM-MIB", "himMemScalingUnit"), ("SIEMENS-HP4KHIM-MIB", "himMemScalingUsed"), ("SIEMENS-HP4KHIM-MIB", "himMemScalingMaxUsed"), ("SIEMENS-HP4KHIM-MIB", "himMemScalingAllocated"), ("SIEMENS-HP4KHIM-MIB", "himMemScalingStandard"), ("SIEMENS-HP4KHIM-MIB", "himMemScalingSysMax"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himCentralSwitchGroup = himCentralSwitchGroup.setStatus('current')
if mibBuilder.loadTexts: himCentralSwitchGroup.setDescription('')
himGeneralSwitchGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 6)).setObjects(("SIEMENS-HP4KHIM-MIB", "himDBConfSysPabxId"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysClass1"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysClass2"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysHWAss1"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysHWAss2"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysDevLine1"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysDevLine2"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysOpMode"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysResType"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysHWArch"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysHWArchType"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysNo"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysLoc"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysBaseApp"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysDBApp"), ("SIEMENS-HP4KHIM-MIB", "himDBConfSysID"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWPabxId"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWLTG"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWLTU"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWLines"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWPorts"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWPBC"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWMTSBdPerGSN"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWSIUPPerLTU"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWDIUCPerLTU"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWHwyPerMTSBd"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWHDLCPerDCL"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWPBCPerDCL"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWStdSIULine"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWConfLine"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWDBDim"), ("SIEMENS-HP4KHIM-MIB", "himDBConfHWTableVer"), ("SIEMENS-HP4KHIM-MIB", "himHWDataPabxId"), ("SIEMENS-HP4KHIM-MIB", "himHWArch"), ("SIEMENS-HP4KHIM-MIB", "himHWArchType"), ("SIEMENS-HP4KHIM-MIB", "himHWOpMode"), ("SIEMENS-HP4KHIM-MIB", "himHWSWUProc1"), ("SIEMENS-HP4KHIM-MIB", "himHWSWUMem1"), ("SIEMENS-HP4KHIM-MIB", "himHWSWUProc2"), ("SIEMENS-HP4KHIM-MIB", "himHWSWUMem2"), ("SIEMENS-HP4KHIM-MIB", "himHWADPProc"), ("SIEMENS-HP4KHIM-MIB", "himHWADPMem"), ("SIEMENS-HP4KHIM-MIB", "himLWDataOnCBPabxId"), ("SIEMENS-HP4KHIM-MIB", "himLWOnCBAss"), ("SIEMENS-HP4KHIM-MIB", "himLWOnCBPBCAddr"), ("SIEMENS-HP4KHIM-MIB", "himLWOnCBFileName"), ("SIEMENS-HP4KHIM-MIB", "himLWOnCBProdTime"), ("SIEMENS-HP4KHIM-MIB", "himLWOnProcPabxId"), ("SIEMENS-HP4KHIM-MIB", "himLWOnProcAss"), ("SIEMENS-HP4KHIM-MIB", "himLWOnProcInfoType"), ("SIEMENS-HP4KHIM-MIB", "himLWOnProcLWId"), ("SIEMENS-HP4KHIM-MIB", "himLWOnProcLWIdCMP"), ("SIEMENS-HP4KHIM-MIB", "himLWOnProcLWIdLP"), ("SIEMENS-HP4KHIM-MIB", "himLWOnCSIUPabxId"), ("SIEMENS-HP4KHIM-MIB", "himLWOnCSIUProc"), ("SIEMENS-HP4KHIM-MIB", "himLWOnCSIUSlot"), ("SIEMENS-HP4KHIM-MIB", "himLWOnCSIUNominal"), ("SIEMENS-HP4KHIM-MIB", "himLWOnCSIUActual"), ("SIEMENS-HP4KHIM-MIB", "himLWOnCSIULWNo"), ("SIEMENS-HP4KHIM-MIB", "himLWOnCSIUFileName"), ("SIEMENS-HP4KHIM-MIB", "himLWOnCSIUFileProd"), ("SIEMENS-HP4KHIM-MIB", "himMacAddrPabxId"), ("SIEMENS-HP4KHIM-MIB", "himMacAddrProc"), ("SIEMENS-HP4KHIM-MIB", "himMacAddrInfoType"), ("SIEMENS-HP4KHIM-MIB", "himMacAddrCLan"), ("SIEMENS-HP4KHIM-MIB", "himMacAddrIPDA"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himGeneralSwitchGroup = himGeneralSwitchGroup.setStatus('current')
if mibBuilder.loadTexts: himGeneralSwitchGroup.setDescription('')
himFeaturesGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 7)).setObjects(("SIEMENS-HP4KHIM-MIB", "himMacAddrPabxId"), ("SIEMENS-HP4KHIM-MIB", "himMacAddrProc"), ("SIEMENS-HP4KHIM-MIB", "himMacAddrCLan"), ("SIEMENS-HP4KHIM-MIB", "himMacAddrIPDA"), ("SIEMENS-HP4KHIM-MIB", "himMarkFeatPabxId"), ("SIEMENS-HP4KHIM-MIB", "himMarkFeatVer"), ("SIEMENS-HP4KHIM-MIB", "himMarkFeatSerNo"), ("SIEMENS-HP4KHIM-MIB", "himMarkFeatHWId"), ("SIEMENS-HP4KHIM-MIB", "himMarkFeatInstallDate"), ("SIEMENS-HP4KHIM-MIB", "himMarkFeatExpiryDate"), ("SIEMENS-HP4KHIM-MIB", "himMarkFeatConfCode"), ("SIEMENS-HP4KHIM-MIB", "himMarkFeatTrialModeAct"), ("SIEMENS-HP4KHIM-MIB", "himMarkFeatTrialRemDays"), ("SIEMENS-HP4KHIM-MIB", "himSalesFeatPabxId"), ("SIEMENS-HP4KHIM-MIB", "himSalesFeatMarketPackId"), ("SIEMENS-HP4KHIM-MIB", "himSalesFeatMarketPack"), ("SIEMENS-HP4KHIM-MIB", "himSalesFeatContract"), ("SIEMENS-HP4KHIM-MIB", "himSalesFeatUsed"), ("SIEMENS-HP4KHIM-MIB", "himSalesFeatFree"), ("SIEMENS-HP4KHIM-MIB", "himSalesFeatMarkForTrial"), ("SIEMENS-HP4KHIM-MIB", "himTechFeatPabxId"), ("SIEMENS-HP4KHIM-MIB", "himTechFeatId"), ("SIEMENS-HP4KHIM-MIB", "himTechFeatName"), ("SIEMENS-HP4KHIM-MIB", "himTechFeatState"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himFeaturesGroup = himFeaturesGroup.setStatus('current')
if mibBuilder.loadTexts: himFeaturesGroup.setDescription('')
himAPSPatchesGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 8)).setObjects(("SIEMENS-HP4KHIM-MIB", "himSwitchAPSPabxId"), ("SIEMENS-HP4KHIM-MIB", "himSwitchAPSName"), ("SIEMENS-HP4KHIM-MIB", "himSwitchAPSCorrVer"), ("SIEMENS-HP4KHIM-MIB", "himSwitchAPSPartNo"), ("SIEMENS-HP4KHIM-MIB", "himReplAMOPabxId"), ("SIEMENS-HP4KHIM-MIB", "himReplAMOAPS"), ("SIEMENS-HP4KHIM-MIB", "himReplAMOName"), ("SIEMENS-HP4KHIM-MIB", "himReplAMOInAPSDir"), ("SIEMENS-HP4KHIM-MIB", "himReplAMOSubsystem"), ("SIEMENS-HP4KHIM-MIB", "himPatchInfoPabxId"), ("SIEMENS-HP4KHIM-MIB", "himPatchInfoPatchNo"), ("SIEMENS-HP4KHIM-MIB", "himPatchInfoPatchGroup"), ("SIEMENS-HP4KHIM-MIB", "himPatchInfoOpt"), ("SIEMENS-HP4KHIM-MIB", "himPatchInfoActHD"), ("SIEMENS-HP4KHIM-MIB", "himPatchInfoActADP"), ("SIEMENS-HP4KHIM-MIB", "himPatchInfoActBP"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himAPSPatchesGroup = himAPSPatchesGroup.setStatus('current')
if mibBuilder.loadTexts: himAPSPatchesGroup.setDescription('')
himSWVersionGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 9)).setObjects(("SIEMENS-HP4KHIM-MIB", "himSWVerOnProcPabxId"), ("SIEMENS-HP4KHIM-MIB", "himSWVerOnProcSrc"), ("SIEMENS-HP4KHIM-MIB", "himSWVerOnProcSWVer"), ("SIEMENS-HP4KHIM-MIB", "himSWVerOnProcItemCodeNoPrefix"), ("SIEMENS-HP4KHIM-MIB", "himSWVerOnProcHP4KVer"), ("SIEMENS-HP4KHIM-MIB", "himSWVerOnProcSysRel"), ("SIEMENS-HP4KHIM-MIB", "himSWVerOnProcCountry"), ("SIEMENS-HP4KHIM-MIB", "himSWVerOnProcCountryCode"), ("SIEMENS-HP4KHIM-MIB", "himSWVerOnProcRevNo"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himSWVersionGroup = himSWVersionGroup.setStatus('current')
if mibBuilder.loadTexts: himSWVersionGroup.setDescription('')
himSWPkgVersionGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 10)).setObjects(("SIEMENS-HP4KHIM-MIB", "himSWPkgVerPabxId"), ("SIEMENS-HP4KHIM-MIB", "himSWPkgVerPkgAbbr"), ("SIEMENS-HP4KHIM-MIB", "himSWPkgVerPkgName"), ("SIEMENS-HP4KHIM-MIB", "himSWPkgVerVersion"), ("SIEMENS-HP4KHIM-MIB", "himSWPkgVerInstAt"), ("SIEMENS-HP4KHIM-MIB", "himSWPkgVerStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himSWPkgVersionGroup = himSWPkgVersionGroup.setStatus('current')
if mibBuilder.loadTexts: himSWPkgVersionGroup.setDescription('')
himSystemGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 11)).setObjects(("SIEMENS-HP4KHIM-MIB", "himSysBasicPabxId"), ("SIEMENS-HP4KHIM-MIB", "himSysBasicDomain"), ("SIEMENS-HP4KHIM-MIB", "himSysBasicNodeNo"), ("SIEMENS-HP4KHIM-MIB", "himSysBasicLEGK"), ("SIEMENS-HP4KHIM-MIB", "himSysLANCardsPabxId"), ("SIEMENS-HP4KHIM-MIB", "himSysLANCardsIPAddr"), ("SIEMENS-HP4KHIM-MIB", "himSysLANCardsNetMask"), ("SIEMENS-HP4KHIM-MIB", "himSysLANCardsBroadCast"), ("SIEMENS-HP4KHIM-MIB", "himSysLANCardsType"), ("SIEMENS-HP4KHIM-MIB", "himSysLANCardsStatus"), ("SIEMENS-HP4KHIM-MIB", "himSysHostsPabxId"), ("SIEMENS-HP4KHIM-MIB", "himSysHostsNo"), ("SIEMENS-HP4KHIM-MIB", "himSysHostsIPAddr"), ("SIEMENS-HP4KHIM-MIB", "himSysHostsName"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnPabxId"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnLTG"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnLTU"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnSlot"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnRufNr"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnBChl"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnStatus"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnIPPabxId"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnIPLTG"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnIPLTU"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnIPSlot"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnIPIfName"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnIPAddr"), ("SIEMENS-HP4KHIM-MIB", "himSysWAMLConnIPNetMask"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himSystemGroup = himSystemGroup.setStatus('current')
if mibBuilder.loadTexts: himSystemGroup.setDescription('')
himBoardsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 12)).setObjects(("SIEMENS-HP4KHIM-MIB", "himBoardBasicPabxId"), ("SIEMENS-HP4KHIM-MIB", "himBoardBasicLTG"), ("SIEMENS-HP4KHIM-MIB", "himBoardBasicLTU"), ("SIEMENS-HP4KHIM-MIB", "himBoardBasicSlot"), ("SIEMENS-HP4KHIM-MIB", "himBoardBasicFuncId"), ("SIEMENS-HP4KHIM-MIB", "himBoardBasicCat"), ("SIEMENS-HP4KHIM-MIB", "himBoardBasicName"), ("SIEMENS-HP4KHIM-MIB", "himBoardBasicVOIPSec"), ("SIEMENS-HP4KHIM-MIB", "himBoardBasicLWVar"), ("SIEMENS-HP4KHIM-MIB", "himBoardBasicNoCirc"), ("SIEMENS-HP4KHIM-MIB", "himBoardIPGwyIPAddr"), ("SIEMENS-HP4KHIM-MIB", "himBoardIPSrcIPAddr"), ("SIEMENS-HP4KHIM-MIB", "himBoardIPNetMask"), ("SIEMENS-HP4KHIM-MIB", "himBoardIPDefRouter"), ("SIEMENS-HP4KHIM-MIB", "himBoardIPCustLANIP"), ("SIEMENS-HP4KHIM-MIB", "himBoardIPSTMI2IGWSubMask"), ("SIEMENS-HP4KHIM-MIB", "himBoardIPDefGWIP"), ("SIEMENS-HP4KHIM-MIB", "himBoardIPManStatIP"), ("SIEMENS-HP4KHIM-MIB", "himBoardIPManStatPort"), ("SIEMENS-HP4KHIM-MIB", "himBoardIPBckpServIP"), ("SIEMENS-HP4KHIM-MIB", "himBoardIPBckpServPort"), ("SIEMENS-HP4KHIM-MIB", "himBoardLocId"), ("SIEMENS-HP4KHIM-MIB", "himBoardLocLoc"), ("SIEMENS-HP4KHIM-MIB", "himBoardLocPhoneNo"), ("SIEMENS-HP4KHIM-MIB", "himBoardLocFaxNo"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himBoardsGroup = himBoardsGroup.setStatus('current')
if mibBuilder.loadTexts: himBoardsGroup.setDescription('')
himIPDAGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 13)).setObjects(("SIEMENS-HP4KHIM-MIB", "himIPDABasicPabxId"), ("SIEMENS-HP4KHIM-MIB", "himIPDABasicLTU"), ("SIEMENS-HP4KHIM-MIB", "himIPDABasicConnType"), ("SIEMENS-HP4KHIM-MIB", "himIPDABasicBChanNo"), ("SIEMENS-HP4KHIM-MIB", "himIPDABasicConvAMLaw"), ("SIEMENS-HP4KHIM-MIB", "himIPDAGenPabxId"), ("SIEMENS-HP4KHIM-MIB", "himIPDAGenSpeed"), ("SIEMENS-HP4KHIM-MIB", "himIPDAGenMode"), ("SIEMENS-HP4KHIM-MIB", "himIPDAGenPayConn"), ("SIEMENS-HP4KHIM-MIB", "himIPDAGenSigConn"), ("SIEMENS-HP4KHIM-MIB", "himIPDAGenIPNetAddr"), ("SIEMENS-HP4KHIM-MIB", "himIPDAGenIPNetMask"), ("SIEMENS-HP4KHIM-MIB", "himIPDAGenIPCCAAddr"), ("SIEMENS-HP4KHIM-MIB", "himIPDAGenIPCCBAddr"), ("SIEMENS-HP4KHIM-MIB", "himIPDAGenIPDefRoutAddr"), ("SIEMENS-HP4KHIM-MIB", "himIPDAGenIPSurvNetAddr"), ("SIEMENS-HP4KHIM-MIB", "himIPDAIPAccPtAddr"), ("SIEMENS-HP4KHIM-MIB", "himIPDAIPTAccPtAddr"), ("SIEMENS-HP4KHIM-MIB", "himIPDAIPAccPtRoutAddr"), ("SIEMENS-HP4KHIM-MIB", "himIPDAIPNetMaskNW"), ("SIEMENS-HP4KHIM-MIB", "himIPDAIPAccPtPriRoutAddr"), ("SIEMENS-HP4KHIM-MIB", "himIPDAIPNetMaskDL"), ("SIEMENS-HP4KHIM-MIB", "himIPDALocId"), ("SIEMENS-HP4KHIM-MIB", "himIPDALocLoc"), ("SIEMENS-HP4KHIM-MIB", "himIPDALocPhoneNo"), ("SIEMENS-HP4KHIM-MIB", "himIPDALocFaxNo"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himIPDAGroup = himIPDAGroup.setStatus('current')
if mibBuilder.loadTexts: himIPDAGroup.setDescription('')
himInfoGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 14)).setObjects(("SIEMENS-HP4KHIM-MIB", "himSubagentLastMsgNo"), ("SIEMENS-HP4KHIM-MIB", "himSubagentLastMsgText"), ("SIEMENS-HP4KHIM-MIB", "himResultData"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himInfoGroup = himInfoGroup.setStatus('current')
if mibBuilder.loadTexts: himInfoGroup.setDescription('')
himDiscoveryGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 15)).setObjects(("SIEMENS-HP4KHIM-MIB", "himChanges"), ("SIEMENS-HP4KHIM-MIB", "himDiscovPabxId"), ("SIEMENS-HP4KHIM-MIB", "himDiscovPabxMnemonic"), ("SIEMENS-HP4KHIM-MIB", "himDiscovStatus"), ("SIEMENS-HP4KHIM-MIB", "himDiscovMode"), ("SIEMENS-HP4KHIM-MIB", "himDiscovTimDat"), ("SIEMENS-HP4KHIM-MIB", "himDiscovErrTimDat"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himDiscoveryGroup = himDiscoveryGroup.setStatus('current')
if mibBuilder.loadTexts: himDiscoveryGroup.setDescription('')
himTrapsGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 16)).setObjects(("SIEMENS-HP4KHIM-MIB", "internalMessageHimSubagent"), ("SIEMENS-HP4KHIM-MIB", "internalWarningHimSubagent"), ("SIEMENS-HP4KHIM-MIB", "internalErrorHimSubagent"), ("SIEMENS-HP4KHIM-MIB", "himDiscovSucc"), ("SIEMENS-HP4KHIM-MIB", "himDiscovErr"), ("SIEMENS-HP4KHIM-MIB", "himDiscovBusy"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
himTrapsGroup = himTrapsGroup.setStatus('current')
if mibBuilder.loadTexts: himTrapsGroup.setDescription('')
himTrapGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21))
himTrapVariables = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 1))
himTrapPabxId = MibScalar((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 1, 1), Integer32())
if mibBuilder.loadTexts: himTrapPabxId.setStatus('current')
if mibBuilder.loadTexts: himTrapPabxId.setDescription('Unique identifier of a Hicom system.')
himTrapPabxMnemonic = MibScalar((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 1, 2), DisplayString())
if mibBuilder.loadTexts: himTrapPabxMnemonic.setStatus('current')
if mibBuilder.loadTexts: himTrapPabxMnemonic.setDescription('Mnemonic name of the Hicom system.')
himTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2))
internalMessageHimSubagent = NotificationType((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2, 0)).setObjects(("SIEMENS-HP4KHIM-MIB", "himSubagentLastMsgNo"), ("SIEMENS-HP4KHIM-MIB", "himSubagentLastMsgText"))
if mibBuilder.loadTexts: internalMessageHimSubagent.setStatus('current')
if mibBuilder.loadTexts: internalMessageHimSubagent.setDescription('An internalMessage trap contains an informational message generated by the subagent.')
internalWarningHimSubagent = NotificationType((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2, 1)).setObjects(("SIEMENS-HP4KHIM-MIB", "himSubagentLastMsgNo"), ("SIEMENS-HP4KHIM-MIB", "himSubagentLastMsgText"))
if mibBuilder.loadTexts: internalWarningHimSubagent.setStatus('current')
if mibBuilder.loadTexts: internalWarningHimSubagent.setDescription('An internalWarning trap contains a warning message generated by a subagent.')
internalErrorHimSubagent = NotificationType((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2, 2)).setObjects(("SIEMENS-HP4KHIM-MIB", "himSubagentLastMsgNo"), ("SIEMENS-HP4KHIM-MIB", "himSubagentLastMsgText"))
if mibBuilder.loadTexts: internalErrorHimSubagent.setStatus('current')
if mibBuilder.loadTexts: internalErrorHimSubagent.setDescription('An internalError trap contains an error message generated by a subagent. After issuing this trap, the agent terminates.')
himDiscovSucc = NotificationType((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2, 10)).setObjects(("SIEMENS-HP4KHIM-MIB", "himTrapPabxId"), ("SIEMENS-HP4KHIM-MIB", "himTrapPabxMnemonic"))
if mibBuilder.loadTexts: himDiscovSucc.setStatus('current')
if mibBuilder.loadTexts: himDiscovSucc.setDescription('A himDiscovSucc trap indicates the successful termination of a discovery process.')
himDiscovErr = NotificationType((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2, 11)).setObjects(("SIEMENS-HP4KHIM-MIB", "himTrapPabxId"), ("SIEMENS-HP4KHIM-MIB", "himTrapPabxMnemonic"))
if mibBuilder.loadTexts: himDiscovErr.setStatus('current')
if mibBuilder.loadTexts: himDiscovErr.setDescription('A himDiscovErr trap signifies the unsuccessful termination of a discovery process.')
himDiscovBusy = NotificationType((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2, 19)).setObjects(("SIEMENS-HP4KHIM-MIB", "himTrapPabxId"), ("SIEMENS-HP4KHIM-MIB", "himTrapPabxMnemonic"))
if mibBuilder.loadTexts: himDiscovBusy.setStatus('current')
if mibBuilder.loadTexts: himDiscovBusy.setDescription('A himDiscovBusy trap signifies that a sw discovery process is running.')
mibBuilder.exportSymbols("SIEMENS-HP4KHIM-MIB", himBoardLocEntry=himBoardLocEntry, himIPDABasicLTU=himIPDABasicLTU, himIPDALocId=himIPDALocId, himMemScalingMaxUsed=himMemScalingMaxUsed, himMacAddrEntry=himMacAddrEntry, himSerialLineLogDevName=himSerialLineLogDevName, himIPDAGenIPNetMask=himIPDAGenIPNetMask, himDBConfHWMTSBdPerGSN=himDBConfHWMTSBdPerGSN, internalErrorHimSubagent=internalErrorHimSubagent, himDBConfSysOpMode=himDBConfSysOpMode, himSysHostsTable=himSysHostsTable, himLWOnCSIUEntry=himLWOnCSIUEntry, himIPDAGroup=himIPDAGroup, himDBConfSysLoc=himDBConfSysLoc, himTrapVariables=himTrapVariables, himLWOnProcInfoType=himLWOnProcInfoType, himSpecShelfDataNetworkAddress=himSpecShelfDataNetworkAddress, himProjPlanInfoCreationTime=himProjPlanInfoCreationTime, himDBConfSysID=himDBConfSysID, himTechInfoDate=himTechInfoDate, himSysWAMLConn=himSysWAMLConn, himSysLANCardsNetMask=himSysLANCardsNetMask, himIPDAIPAccPtAddr=himIPDAIPAccPtAddr, himSysWAMLConnPabxId=himSysWAMLConnPabxId, himMemScalingUsed=himMemScalingUsed, himTechInfoInfoNo=himTechInfoInfoNo, himDBConfSysDBApp=himDBConfSysDBApp, himSerialLineDevType=himSerialLineDevType, himMibConformance=himMibConformance, himDiscovPabxId=himDiscovPabxId, himPatchInfoTable=himPatchInfoTable, himBoardIPSrcIPAddr=himBoardIPSrcIPAddr, himSysHostsIPAddr=himSysHostsIPAddr, himHP4KVersion=himHP4KVersion, himSWUPeriphery=himSWUPeriphery, himTechFeatName=himTechFeatName, himDBConfSysClass2=himDBConfSysClass2, himSWVerOnProcEntry=himSWVerOnProcEntry, PYSNMP_MODULE_ID=hp4khim, himSWUBoardLWName=himSWUBoardLWName, himLWOnProcLWId=himLWOnProcLWId, himIPDAIPNetMaskDL=himIPDAIPNetMaskDL, himSWPkgVerPkgAbbr=himSWPkgVerPkgAbbr, himBoardLocTable=himBoardLocTable, himBoardIPBckpServPort=himBoardIPBckpServPort, himDBConfHWPBCPerDCL=himDBConfHWPBCPerDCL, himSpecShelfDataTable=himSpecShelfDataTable, himHWArchitecture=himHWArchitecture, himTechInfoTable=himTechInfoTable, himNotepadDataText=himNotepadDataText, himSWUBoardLWInterVer=himSWUBoardLWInterVer, himIPDABasicEntry=himIPDABasicEntry, himTrapPabxMnemonic=himTrapPabxMnemonic, himBoardIPGwyIPAddr=himBoardIPGwyIPAddr, himNotepadDataDate=himNotepadDataDate, himHWArch=himHWArch, himSWVerOnProcSrc=himSWVerOnProcSrc, himSpecShelfDataPabxId=himSpecShelfDataPabxId, himBoardIPManStatIP=himBoardIPManStatIP, himPSIOAssAssembly=himPSIOAssAssembly, himProjPlanInfoTable=himProjPlanInfoTable, himLWOnCSIUProc=himLWOnCSIUProc, himSWUPeripheryGroup=himSWUPeripheryGroup, himHWArchitectureType=himHWArchitectureType, himTechInfoExtraText=himTechInfoExtraText, himDBConfHWHwyPerMTSBd=himDBConfHWHwyPerMTSBd, himSCSIDevTable=himSCSIDevTable, himLWDataOnCB=himLWDataOnCB, himBoardBasicPabxId=himBoardBasicPabxId, himSWUProc2=himSWUProc2, himMarkFeatTrialRemDays=himMarkFeatTrialRemDays, himSWUBoardType=himSWUBoardType, himMarkFeatPabxId=himMarkFeatPabxId, himSWVerOnProcItemCodeNoPrefix=himSWVerOnProcItemCodeNoPrefix, himIPDABasicConvAMLaw=himIPDABasicConvAMLaw, himSwitchAPSName=himSwitchAPSName, himReplAMOPabxId=himReplAMOPabxId, himBoardBasicName=himBoardBasicName, HimPhoneNumber=HimPhoneNumber, himBoardBasicVOIPSec=himBoardBasicVOIPSec, himLWOnCSIUActual=himLWOnCSIUActual, himSCSIDevEntry=himSCSIDevEntry, himSWPkgVerStatus=himSWPkgVerStatus, himSpecShelfDataRemote=himSpecShelfDataRemote, himPSIOAssPabxId=himPSIOAssPabxId, himLWOnProcTable=himLWOnProcTable, himSalesFeatEntry=himSalesFeatEntry, himSalesFeatMarketPack=himSalesFeatMarketPack, himDBConfSysNo=himDBConfSysNo, himIPDAGenMode=himIPDAGenMode, himIPDAGenIPDefRoutAddr=himIPDAGenIPDefRoutAddr, himSysHostsEntry=himSysHostsEntry, himTechFeatures=himTechFeatures, himGeneralSwitchGroup=himGeneralSwitchGroup, himCabPabxId=himCabPabxId, himSpecShelfDataLTU=himSpecShelfDataLTU, himPatchInfoPatchNo=himPatchInfoPatchNo, himDBConfHWDIUCPerLTU=himDBConfHWDIUCPerLTU, himSWPkgVerTable=himSWPkgVerTable, himInfoGroup=himInfoGroup, himSysWAMLConnIPPabxId=himSysWAMLConnIPPabxId, himProjPlanInfoCreationDate=himProjPlanInfoCreationDate, himSerialLineBoardType=himSerialLineBoardType, himSWVerOnProcRevNo=himSWVerOnProcRevNo, himTechInfoPabxId=himTechInfoPabxId, himDiscovery=himDiscovery, himFeatures=himFeatures, himIPDAGenSpeed=himIPDAGenSpeed, himIPDAIPAccPtPriRoutAddr=himIPDAIPAccPtPriRoutAddr, himDBConfSysEntry=himDBConfSysEntry, himDBConfSysClass1=himDBConfSysClass1, himDBConfSysDevLine2=himDBConfSysDevLine2, himWelPgPabxId=himWelPgPabxId, himMarkFeatVer=himMarkFeatVer, himSysWAMLConnTable=himSysWAMLConnTable, himDBConfHWLTG=himDBConfHWLTG, himReplAMOTable=himReplAMOTable, himMarketingFeatures=himMarketingFeatures, himProjPlanInfoEntry=himProjPlanInfoEntry, himSalesFeatContract=himSalesFeatContract, himGeneralSwitchData=himGeneralSwitchData, himDBConfSysResType=himDBConfSysResType, himDiscovSucc=himDiscovSucc, hhimSWUBoardFirmware=hhimSWUBoardFirmware, himTechFeatEntry=himTechFeatEntry, himHWSWUMem1=himHWSWUMem1, himHWADPProc=himHWADPProc, himOperationMode=himOperationMode, himPSIOAssEntry=himPSIOAssEntry, himSwitchAPSEntry=himSwitchAPSEntry, himSerialLinePabxId=himSerialLinePabxId, himSysLANCardsTable=himSysLANCardsTable, himDBConfSysTable=himDBConfSysTable, himPatchInfoActADP=himPatchInfoActADP, himLWOnCBPBCAddr=himLWOnCBPBCAddr, himIPDABasicTable=himIPDABasicTable, himSCSIDevType=himSCSIDevType, himSWUBoardTable=himSWUBoardTable, himSWPkgVerInstAt=himSWPkgVerInstAt, himIPDALocEntry=himIPDALocEntry, himMarkFeatTable=himMarkFeatTable, himReplAMOSubsystem=himReplAMOSubsystem, himPatchInfoEntry=himPatchInfoEntry, himLWDataOnCBTable=himLWDataOnCBTable, himSysWAMLConnLTG=himSysWAMLConnLTG, himLWOnCSIUPabxId=himLWOnCSIUPabxId, himDBConfHWPBC=himDBConfHWPBC, himDBConfHWPorts=himDBConfHWPorts, himMacAddrInfoType=himMacAddrInfoType, DiscoveryModes=DiscoveryModes, himSysLANCardsIPAddr=himSysLANCardsIPAddr, himLWOnCSIULWNo=himLWOnCSIULWNo, himIPDAIPEntry=himIPDAIPEntry, himSpecShelfDataLocation=himSpecShelfDataLocation, himDBConfSysPabxId=himDBConfSysPabxId, himSpecShelfDataNetworkType=himSpecShelfDataNetworkType, himSWUBoardPEN=himSWUBoardPEN, himSalesFeatFree=himSalesFeatFree, himPatchInfo=himPatchInfo, himSysHostsNo=himSysHostsNo, himSWPkgVerEntry=himSWPkgVerEntry, himDiscovStatus=himDiscovStatus, himReplacedAMOs=himReplacedAMOs, himReplAMOInAPSDir=himReplAMOInAPSDir, himMacAddrProc=himMacAddrProc, himNotepadDataEntry=himNotepadDataEntry, himCabPhysAddr=himCabPhysAddr, himLWOnCSIUFileName=himLWOnCSIUFileName, himWelcomePageGroup=himWelcomePageGroup, himSerialLineNumber=himSerialLineNumber, himLWOnProcAss=himLWOnProcAss, himDBConfSysHWArch=himDBConfSysHWArch, himSWVerOnProcCountry=himSWVerOnProcCountry, himSwitchAPSPartNo=himSwitchAPSPartNo, himIPDAGenTable=himIPDAGenTable, himDBConfHWEntry=himDBConfHWEntry, himDBConfHWTable=himDBConfHWTable, himSCSIDevId=himSCSIDevId, himMacAddrTable=himMacAddrTable, himCabShelfNo=himCabShelfNo, himMemScalingTable=himMemScalingTable, himSWPkgVerPabxId=himSWPkgVerPabxId, himBoardLocLoc=himBoardLocLoc, himIPDAAPData=himIPDAAPData, himIPDAIPTAccPtAddr=himIPDAIPTAccPtAddr, himIPDAGenPabxId=himIPDAGenPabxId, himBoardBasicCat=himBoardBasicCat, himIPDAGenIPCCAAddr=himIPDAGenIPCCAAddr, himTechFeatPabxId=himTechFeatPabxId, himDBConfHWLines=himDBConfHWLines, himMarkFeatInstallDate=himMarkFeatInstallDate, himSysBasicTable=himSysBasicTable, himIPDAGenData=himIPDAGenData, himSysLANCardsEntry=himSysLANCardsEntry, himHWDataPabxId=himHWDataPabxId, himBoardBasicLTG=himBoardBasicLTG, himBoardLocFaxNo=himBoardLocFaxNo, himLWOnProcLWIdLP=himLWOnProcLWIdLP, himMemScalingPabxId=himMemScalingPabxId, himSCSIDevFirmware=himSCSIDevFirmware, himTechInfoNumber=himTechInfoNumber, himSpecGroup=himSpecGroup, himBoardBasicLWVar=himBoardBasicLWVar, himMarkFeatHWId=himMarkFeatHWId, himCabinetTable=himCabinetTable, himSWPkgVersionGroup=himSWPkgVersionGroup, himDBConfSysHWArchType=himDBConfSysHWArchType, himSwPkgVersion=himSwPkgVersion, himSysWAMLConnStatus=himSysWAMLConnStatus, hp4khim=hp4khim, himIPDA=himIPDA, himCabinetEntry=himCabinetEntry, himRevisionLevel=himRevisionLevel, himSWPkgVerVersion=himSWPkgVerVersion, himSpecSwitchData=himSpecSwitchData, himCabFrame=himCabFrame, himSysHostsName=himSysHostsName, himIPDAIPNetMaskNW=himIPDAIPNetMaskNW, himWelPgSysNo=himWelPgSysNo, himSWUBoardMode=himSWUBoardMode, himDiscovTimDat=himDiscovTimDat, himSystemRelease=himSystemRelease, himWelPgEntry=himWelPgEntry, himResultData=himResultData, himSysBasicEntry=himSysBasicEntry, himSerialLineTable=himSerialLineTable, himSysWAMLConnIPLTU=himSysWAMLConnIPLTU, himProjPlanPabxId=himProjPlanPabxId, himSCSIDevName=himSCSIDevName, himMemScalingEntry=himMemScalingEntry, himSysWAMLConnIPAddr=himSysWAMLConnIPAddr, himBoardIPBckpServIP=himBoardIPBckpServIP, himCentralSwitchData=himCentralSwitchData, himTechInfoTechnicalData=himTechInfoTechnicalData, himBoardBasicLTU=himBoardBasicLTU, himDBConfHWTableVer=himDBConfHWTableVer, himPSIOAssActual=himPSIOAssActual, himBoardBasicEntry=himBoardBasicEntry, himPSIOAssTable=himPSIOAssTable, himIPDABasicConnType=himIPDABasicConnType, himSWUBoardPabxId=himSWUBoardPabxId, himSubagentLastMsgNo=himSubagentLastMsgNo, himSWPkgVerPkgName=himSWPkgVerPkgName, himDBConfSysHWAss2=himDBConfSysHWAss2, himHWSWUProc2=himHWSWUProc2, internalMessageHimSubagent=internalMessageHimSubagent, himHWADPMem=himHWADPMem, HimPEN=HimPEN, himPSIOAssPEN=himPSIOAssPEN, himPatchInfoActHD=himPatchInfoActHD, himSalesFeatMarketPackId=himSalesFeatMarketPackId, himSalesFeatPabxId=himSalesFeatPabxId, himIPDAGenIPCCBAddr=himIPDAGenIPCCBAddr, himCentralSwitchGroup=himCentralSwitchGroup)
mibBuilder.exportSymbols("SIEMENS-HP4KHIM-MIB", himSWUBoardActual=himSWUBoardActual, himTechFeatTable=himTechFeatTable, himSWUBoardOverlayLTU=himSWUBoardOverlayLTU, himBoardBasicNoCirc=himBoardBasicNoCirc, himSysLANCardsStatus=himSysLANCardsStatus, himIPDAGenPayConn=himIPDAGenPayConn, himSWUBoardLWNo=himSWUBoardLWNo, himLWOnProcEntry=himLWOnProcEntry, himSystemGroup=himSystemGroup, himSpecShelfDataFrameType=himSpecShelfDataFrameType, himLWDataOnProc=himLWDataOnProc, himLWOnCBAss=himLWOnCBAss, himDBConfHWLTU=himDBConfHWLTU, himSwitchAPSCorrVer=himSwitchAPSCorrVer, himDiscovErr=himDiscovErr, himSwitchAPSPabxId=himSwitchAPSPabxId, himIPDAGenIPTable=himIPDAGenIPTable, himBoardBasicTable=himBoardBasicTable, himSwitchData=himSwitchData, himIPDAGenIPNetAddr=himIPDAGenIPNetAddr, himSysBasicPabxId=himSysBasicPabxId, himIPDALocTable=himIPDALocTable, himMemScalingUnit=himMemScalingUnit, himPatchInfoPabxId=himPatchInfoPabxId, himSysLANCardsPabxId=himSysLANCardsPabxId, himIPDALocLoc=himIPDALocLoc, himPSIOAssFirmware=himPSIOAssFirmware, himSysWAMLConnIPTable=himSysWAMLConnIPTable, himPatchInfoPatchGroup=himPatchInfoPatchGroup, himDBConfHWHDLCPerDCL=himDBConfHWHDLCPerDCL, himReplAMOAPS=himReplAMOAPS, himSysLANCardsType=himSysLANCardsType, himCabPid3=himCabPid3, himBoardIPNetMask=himBoardIPNetMask, himLWOnCSIUTable=himLWOnCSIUTable, himPatchInfoOpt=himPatchInfoOpt, himBoardBasicSlot=himBoardBasicSlot, himIPDALocPhoneNo=himIPDALocPhoneNo, himBoardIPDefGWIP=himBoardIPDefGWIP, himIPDAGenEntry=himIPDAGenEntry, himMacAddress=himMacAddress, himLWOnCSIUSlot=himLWOnCSIUSlot, himMarkFeatExpiryDate=himMarkFeatExpiryDate, himHWSWUMem2=himHWSWUMem2, himBoardIPEntry=himBoardIPEntry, himSWVersionGroup=himSWVersionGroup, himSpecShelfDataLTUC=himSpecShelfDataLTUC, himIPDAGenIPEntry=himIPDAGenIPEntry, siemens=siemens, himMibGroups=himMibGroups, himBoards=himBoards, himLWDataOnCBPabxId=himLWDataOnCBPabxId, HimYesNo=HimYesNo, himIPDABasicBChanNo=himIPDABasicBChanNo, himSCSIDevLoadDrive=himSCSIDevLoadDrive, himSWVerOnProcSysRel=himSWVerOnProcSysRel, himSWVerOnProcSWVer=himSWVerOnProcSWVer, himSWUBoardLWDate=himSWUBoardLWDate, himDBConfSysBaseApp=himDBConfSysBaseApp, himSwitchAPS=himSwitchAPS, himInfo=himInfo, himWelcomePage=himWelcomePage, himSWUProc1=himSWUProc1, himSysWAMLConnRufNr=himSysWAMLConnRufNr, himLWOnCSIUFileProd=himLWOnCSIUFileProd, himIPDAGenSigConn=himIPDAGenSigConn, himSysWAMLConnIPNetMask=himSysWAMLConnIPNetMask, himSWVerOnProcTable=himSWVerOnProcTable, himCabPartNo=himCabPartNo, himSalesFeatTable=himSalesFeatTable, himSysWAMLConnIPEntry=himSysWAMLConnIPEntry, himNotepadDataPabxId=himNotepadDataPabxId, iandcAdmin=iandcAdmin, internalWarningHimSubagent=internalWarningHimSubagent, himSWUBoardNominal=himSWUBoardNominal, himSysWAMLConnIPLTG=himSysWAMLConnIPLTG, himHWDataEntry=himHWDataEntry, himSysWAMLConnEntry=himSysWAMLConnEntry, himDiscovErrTimDat=himDiscovErrTimDat, himHWData=himHWData, himLWDataOnCBEntry=himLWDataOnCBEntry, himIPDALocFaxNo=himIPDALocFaxNo, himMacAddrIPDA=himMacAddrIPDA, himBoardBasicFuncId=himBoardBasicFuncId, himSysBasicDomain=himSysBasicDomain, himSysBasicNodeNo=himSysBasicNodeNo, himMacAddrPabxId=himMacAddrPabxId, himMarkFeatTrialModeAct=himMarkFeatTrialModeAct, himSysBasicLEGK=himSysBasicLEGK, himDBConfHWStdSIULine=himDBConfHWStdSIULine, himIPDAGenIPSurvNetAddr=himIPDAGenIPSurvNetAddr, himBoardsGroup=himBoardsGroup, himSalesFeatUsed=himSalesFeatUsed, himBoardIPCustLANIP=himBoardIPCustLANIP, himTechFeatId=himTechFeatId, himIPDAIPAccPtRoutAddr=himIPDAIPAccPtRoutAddr, himBoardIPSTMI2IGWSubMask=himBoardIPSTMI2IGWSubMask, himFeaturesGroup=himFeaturesGroup, himCabLTUNo=himCabLTUNo, himCabAddr=himCabAddr, himDiscovTable=himDiscovTable, himMemScalingStandard=himMemScalingStandard, himLWOnCBProdTime=himLWOnCBProdTime, himDBConfHWSIUPPerLTU=himDBConfHWSIUPPerLTU, himHWSWUProc1=himHWSWUProc1, himNotepadDataInfoNo=himNotepadDataInfoNo, himAPSPatchesGroup=himAPSPatchesGroup, himSWUBoardFunctId=himSWUBoardFunctId, himReplAMOEntry=himReplAMOEntry, himLWDataOnCSIU=himLWDataOnCSIU, himSpecShelfDataAddress=himSpecShelfDataAddress, himSysWAMLConnIPSlot=himSysWAMLConnIPSlot, himTrapPabxId=himTrapPabxId, himSubagentLastMsgText=himSubagentLastMsgText, himSWVerOnProcCountryCode=himSWVerOnProcCountryCode, himSpecShelfDataEntry=himSpecShelfDataEntry, himMacAddrCLan=himMacAddrCLan, himSwitchAPSTable=himSwitchAPSTable, himDBConfSysHWAss1=himDBConfSysHWAss1, himSWVersion=himSWVersion, himChanges=himChanges, himMarkFeatEntry=himMarkFeatEntry, himMemScalingAllocated=himMemScalingAllocated, himLWOnCBFileName=himLWOnCBFileName, himSWUBoardEntry=himSWUBoardEntry, himLWOnCSIUNominal=himLWOnCSIUNominal, himSCSIDevPabxId=himSCSIDevPabxId, himCabPid1=himCabPid1, himSerialLineType=himSerialLineType, HimShelfNWType=HimShelfNWType, himSysLANCardsBroadCast=himSysLANCardsBroadCast, himSysWAMLConnBChl=himSysWAMLConnBChl, himDBConfSysDevLine1=himDBConfSysDevLine1, himDiscovMode=himDiscovMode, himSerialLineSpeed=himSerialLineSpeed, himBoardLocPhoneNo=himBoardLocPhoneNo, DiscoveryStates=DiscoveryStates, himSalesFeatMarkForTrial=himSalesFeatMarkForTrial, himSysHostsPabxId=himSysHostsPabxId, himDBConfHWConfLine=himDBConfHWConfLine, himCabCabinet=himCabCabinet, himLWOnProcPabxId=himLWOnProcPabxId, himIPDAIPTable=himIPDAIPTable, himSWVerOnProcHP4KVer=himSWVerOnProcHP4KVer, himDBConfHWPabxId=himDBConfHWPabxId, himTraps=himTraps, himBoardIPManStatPort=himBoardIPManStatPort, himDBConfSys=himDBConfSys, himReplAMOName=himReplAMOName, himSerialLineEntry=himSerialLineEntry, himSWUBoardRev=himSWUBoardRev, himTechInfoEntry=himTechInfoEntry, himMemScalingSysMax=himMemScalingSysMax, himDiscovBusy=himDiscovBusy, himWelPgTable=himWelPgTable, himSWUMemory2=himSWUMemory2, himHWArchType=himHWArchType, himSysWAMLConnIPIfName=himSysWAMLConnIPIfName, himCabPid2=himCabPid2, himProjPlanInfoFile=himProjPlanInfoFile, HimPabxId=HimPabxId, himSysWAMLConnLTU=himSysWAMLConnLTU, himIPDABasicPabxId=himIPDABasicPabxId, HimSwitchNumber=HimSwitchNumber, himSystem=himSystem, himSysWAMLConnSlot=himSysWAMLConnSlot, himBoardIPTable=himBoardIPTable, himSWUMemory1=himSWUMemory1, himTrapsGroup=himTrapsGroup, himSwitchDataGroup=himSwitchDataGroup, himDiscoveryGroup=himDiscoveryGroup, himHWDataTable=himHWDataTable, himTrapGroup=himTrapGroup, himSWVerOnProcPabxId=himSWVerOnProcPabxId, himDBConfHWDBDim=himDBConfHWDBDim, himAPSPatches=himAPSPatches, himTechFeatState=himTechFeatState, himNotepadDataTable=himNotepadDataTable, himMarkFeatConfCode=himMarkFeatConfCode, himHWOpMode=himHWOpMode, himMarkFeatSerNo=himMarkFeatSerNo, himLWOnProcLWIdCMP=himLWOnProcLWIdCMP, himDBConfHW=himDBConfHW, himDiscovEntry=himDiscovEntry, himDiscovPabxMnemonic=himDiscovPabxMnemonic, himBoardIPDefRouter=himBoardIPDefRouter, himPatchInfoActBP=himPatchInfoActBP, himBoardLocId=himBoardLocId)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, value_size_constraint, single_value_constraint, value_range_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsIntersection')
(module_compliance, object_group, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'ObjectGroup', 'NotificationGroup')
(time_ticks, enterprises, counter32, unsigned32, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, notification_type, bits, counter64, integer32, iso, module_identity, mib_identifier, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'TimeTicks', 'enterprises', 'Counter32', 'Unsigned32', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'NotificationType', 'Bits', 'Counter64', 'Integer32', 'iso', 'ModuleIdentity', 'MibIdentifier', 'IpAddress')
(mac_address, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'MacAddress', 'TextualConvention', 'DisplayString')
siemens = mib_identifier((1, 3, 6, 1, 4, 1, 4329))
iandc_admin = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2))
hp4khim = module_identity((1, 3, 6, 1, 4, 1, 4329, 2, 51))
hp4khim.setRevisions(('2006-06-07 07:47',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
hp4khim.setRevisionsDescriptions(('Initial version.',))
if mibBuilder.loadTexts:
hp4khim.setLastUpdated('200611100000Z')
if mibBuilder.loadTexts:
hp4khim.setOrganization('Siemens')
if mibBuilder.loadTexts:
hp4khim.setContactInfo('David Nemeskey')
if mibBuilder.loadTexts:
hp4khim.setDescription('')
class Himpen(TextualConvention, OctetString):
description = 'Octet String for storing PEN numbers. The format is The PEN is displayed in the following format: [LTG]-[LTU]-[EBT]. LTG: Line/Trunk Group: always 1 LTU: Line/Trunk Unit: a number between 1 and 99 EBT: a three-digit number.'
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 9)
class Himpabxid(TextualConvention, Integer32):
description = 'Textual convention for the Pabx Id.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(1, 2147483647)
class Himswitchnumber(TextualConvention, OctetString):
description = 'Data type of the switch number.'
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 17)
class Himyesno(TextualConvention, Integer32):
description = 'Boolean data type: 1. no 2. yes The order is set like this to comply with the definition of data leaves in the hicom MIB that use this convention implicitly.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 0))
named_values = named_values(('yes', 1), ('no', 2), ('other', 0))
class Discoverystates(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))
named_values = named_values(('done', 1), ('error', 2), ('busy', 3), ('finok', 4), ('finerr', 5), ('kill', 6))
class Discoverymodes(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 9))
named_values = named_values(('man', 1), ('auto', 2), ('undef', 9))
class Himphonenumber(TextualConvention, OctetString):
description = 'Convention that represents phone numbers in a HiPath system.'
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 22)
class Himshelfnwtype(TextualConvention, Integer32):
description = 'Network type of the shelf.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 0))
named_values = named_values(('flex', 1), ('local', 2), ('apnw', 3), ('apdl', 4), ('other', 0))
him_welcome_page = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1))
him_wel_pg_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1))
if mibBuilder.loadTexts:
himWelPgTable.setStatus('current')
if mibBuilder.loadTexts:
himWelPgTable.setDescription('')
him_wel_pg_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himWelPgPabxId'))
if mibBuilder.loadTexts:
himWelPgEntry.setStatus('current')
if mibBuilder.loadTexts:
himWelPgEntry.setDescription('')
him_wel_pg_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himWelPgPabxId.setStatus('current')
if mibBuilder.loadTexts:
himWelPgPabxId.setDescription('')
him_wel_pg_sys_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 2), him_switch_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himWelPgSysNo.setStatus('current')
if mibBuilder.loadTexts:
himWelPgSysNo.setDescription('This field contains the system number (max. 17 characters).')
him_hp4_k_version = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHP4KVersion.setStatus('current')
if mibBuilder.loadTexts:
himHP4KVersion.setDescription('This field contains the Hicom/HiPath version number of the system (max. 4 characters).')
him_system_release = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSystemRelease.setStatus('current')
if mibBuilder.loadTexts:
himSystemRelease.setDescription('This field contains the system release number of the system (max. 2 characters).')
him_revision_level = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himRevisionLevel.setStatus('current')
if mibBuilder.loadTexts:
himRevisionLevel.setDescription('This field contains the revision number of the system software (max. 2 characters).')
him_hw_architecture = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 25))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHWArchitecture.setStatus('current')
if mibBuilder.loadTexts:
himHWArchitecture.setDescription("This field contains the information on hardware architecture in the format [hw-architecture][system-variant][hw-design] [hw-architecture] Abbreviation describing hardware architecture. F.i '4300', '350E', etc. [system-variant] H40: SYSTEM VARIANT 40 H80: SYSTEM VARIANT 80 H600: SYSTEM VARIANT 600 [hw-design] ECX: HARDWARE DESIGN EXTENDED COMPACT EXTENDED ECDSC: HARDWARE DESIGN EXTENDED COMPACT DSC CXE: HARDWARE DESIGN EXTENDED COMPACT CXE")
him_hw_architecture_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHWArchitectureType.setStatus('current')
if mibBuilder.loadTexts:
himHWArchitectureType.setDescription('This field contains abbreviation describing hardware architecture type (max. 3 characters).')
him_operation_mode = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(0, 7))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himOperationMode.setStatus('current')
if mibBuilder.loadTexts:
himOperationMode.setDescription('This field contains the operating mode of the system. Possible Values: SIMPLEX: OPERATING MODE SIMPLEX DUPLEX: OPERATING MODE DUPLEX REDUNDANCY')
him_swu_proc1 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUProc1.setStatus('current')
if mibBuilder.loadTexts:
himSWUProc1.setDescription('These fields contains the name of the SWU processor board (max. 8 characters). SWU = Switching Unit Possible values: - CC-A - CC-B')
him_swu_memory1 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(0, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUMemory1.setStatus('current')
if mibBuilder.loadTexts:
himSWUMemory1.setDescription('These fields contain the size of the SWU memory for each processor card. SWU = Switching Unit')
him_swu_proc2 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 11), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUProc2.setStatus('current')
if mibBuilder.loadTexts:
himSWUProc2.setDescription('These fields contains the name of the SWU processor board (max. 8 characters). SWU = Switching Unit Possible values: - CC-A - CC-B')
him_swu_memory2 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 1, 1, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(0, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUMemory2.setStatus('current')
if mibBuilder.loadTexts:
himSWUMemory2.setDescription('These fields contain the size of the SWU memory for each processor card. SWU = Switching Unit')
him_switch_data = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2))
him_tech_info_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1))
if mibBuilder.loadTexts:
himTechInfoTable.setStatus('current')
if mibBuilder.loadTexts:
himTechInfoTable.setDescription('')
him_tech_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himTechInfoPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himTechInfoInfoNo'))
if mibBuilder.loadTexts:
himTechInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
himTechInfoEntry.setDescription('')
him_tech_info_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himTechInfoPabxId.setStatus('current')
if mibBuilder.loadTexts:
himTechInfoPabxId.setDescription('')
him_tech_info_info_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 7))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himTechInfoInfoNo.setStatus('current')
if mibBuilder.loadTexts:
himTechInfoInfoNo.setDescription('This field contains the number of the subsystem. This number can be assigned as required when configuring the subsystem.')
him_tech_info_date = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himTechInfoDate.setStatus('current')
if mibBuilder.loadTexts:
himTechInfoDate.setDescription('This field contains the date on which the subsystem was configured.')
him_tech_info_technical_data = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himTechInfoTechnicalData.setStatus('current')
if mibBuilder.loadTexts:
himTechInfoTechnicalData.setDescription('This field contains the technical data of the subsystem.')
him_tech_info_number = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himTechInfoNumber.setStatus('current')
if mibBuilder.loadTexts:
himTechInfoNumber.setDescription('This field contains the number of each subsystem configured.')
him_tech_info_extra_text = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 1, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himTechInfoExtraText.setStatus('current')
if mibBuilder.loadTexts:
himTechInfoExtraText.setDescription('This field contains additional text.')
him_notepad_data_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 2))
if mibBuilder.loadTexts:
himNotepadDataTable.setStatus('current')
if mibBuilder.loadTexts:
himNotepadDataTable.setDescription('This node contains the system data entered in a notepad. The table for notepad entries holds a maximum of 30 data records.')
him_notepad_data_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 2, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himNotepadDataPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himNotepadDataInfoNo'))
if mibBuilder.loadTexts:
himNotepadDataEntry.setStatus('current')
if mibBuilder.loadTexts:
himNotepadDataEntry.setDescription('')
him_notepad_data_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 2, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himNotepadDataPabxId.setStatus('current')
if mibBuilder.loadTexts:
himNotepadDataPabxId.setDescription('')
him_notepad_data_info_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 2, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himNotepadDataInfoNo.setStatus('current')
if mibBuilder.loadTexts:
himNotepadDataInfoNo.setDescription('This field contains the number of the subsystem. This number is assigned permanently when configuring the subsystem.')
him_notepad_data_date = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himNotepadDataDate.setStatus('current')
if mibBuilder.loadTexts:
himNotepadDataDate.setDescription('This field contains the date on which the subsystem was configured.')
him_notepad_data_text = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 2, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 77))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himNotepadDataText.setStatus('current')
if mibBuilder.loadTexts:
himNotepadDataText.setDescription('This field contains the technical data of the subsystem.')
him_proj_plan_info_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 3))
if mibBuilder.loadTexts:
himProjPlanInfoTable.setStatus('current')
if mibBuilder.loadTexts:
himProjPlanInfoTable.setDescription('This screen makes it possible to generate a file with project planning data.')
him_proj_plan_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 3, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himProjPlanPabxId'))
if mibBuilder.loadTexts:
himProjPlanInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
himProjPlanInfoEntry.setDescription('')
him_proj_plan_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 3, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himProjPlanPabxId.setStatus('current')
if mibBuilder.loadTexts:
himProjPlanPabxId.setDescription('')
him_proj_plan_info_file = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 12)).clone('ProjPlan.txt')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himProjPlanInfoFile.setStatus('current')
if mibBuilder.loadTexts:
himProjPlanInfoFile.setDescription('This field contains the name of the project planning file.')
him_proj_plan_info_creation_date = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himProjPlanInfoCreationDate.setStatus('current')
if mibBuilder.loadTexts:
himProjPlanInfoCreationDate.setDescription('This field contains the date on which the project planning file was generated.')
him_proj_plan_info_creation_time = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 2, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himProjPlanInfoCreationTime.setStatus('current')
if mibBuilder.loadTexts:
himProjPlanInfoCreationTime.setDescription('This field contains the time at which the project planning file was generated.')
him_spec_switch_data = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3))
him_spec_shelf_data_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1))
if mibBuilder.loadTexts:
himSpecShelfDataTable.setStatus('current')
if mibBuilder.loadTexts:
himSpecShelfDataTable.setDescription('All subscriber and trunk-related lines are grouped within LTU (Line/Trunk Unit) frames. Each frame has several slots for modules. The frame is connected to the system via the LTUC control board. This table contains the frame configuration.')
him_spec_shelf_data_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSpecShelfDataPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSpecShelfDataAddress'))
if mibBuilder.loadTexts:
himSpecShelfDataEntry.setStatus('current')
if mibBuilder.loadTexts:
himSpecShelfDataEntry.setDescription('')
him_spec_shelf_data_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSpecShelfDataPabxId.setStatus('current')
if mibBuilder.loadTexts:
himSpecShelfDataPabxId.setDescription('')
him_spec_shelf_data_address = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 9))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSpecShelfDataAddress.setStatus('current')
if mibBuilder.loadTexts:
himSpecShelfDataAddress.setDescription('This field contains the address of the shelf in format LTG.LTU. LTG:Line/Trunk Group LTU: Line/Trunk Unit')
him_spec_shelf_data_frame_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSpecShelfDataFrameType.setStatus('current')
if mibBuilder.loadTexts:
himSpecShelfDataFrameType.setDescription('This field contains the part number of the frame.')
him_spec_shelf_data_ltu = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0))).clone(namedValues=named_values(('preatl', 1), ('cc40f', 2), ('cc80w', 3), ('cc80f', 4), ('l80xf', 5), ('l80xw', 6), ('ltuw', 7), ('inch19', 8), ('ap37009', 9), ('ap370013', 10), ('ext-comp-x', 11), ('other', 0)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSpecShelfDataLTU.setStatus('current')
if mibBuilder.loadTexts:
himSpecShelfDataLTU.setDescription('This field contains type of LTU (Line/Trunk Unit) frame. Possible values for LTU frame type: - PREATL - frametype for Preatlantic Hicom Types - CC40F - basisframe for 40CMX - CC80W - basisframe for 80CMX - CC80F - basisframe for 80CMX/DSC and CXE - L80XF - for 80CMX/DSC, CXE, 600ECS and AP shelves - L80XW - extension frame for 80CMX/DSC - LTUW - frame for 600ECX and AP shelves Possible values for AP shelf type: - L80XF - for 80CMX/DSC, CXE, 600ECS and AP shelves - LTUW - frame for 600ECX and AP shelves - INCH19 - 19 inch frame for AP shelves')
him_spec_shelf_data_network_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 5), him_shelf_nw_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSpecShelfDataNetworkType.setStatus('current')
if mibBuilder.loadTexts:
himSpecShelfDataNetworkType.setDescription('This field contains connection type of LTU frame / AP shelf.')
him_spec_shelf_data_network_address = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSpecShelfDataNetworkAddress.setStatus('current')
if mibBuilder.loadTexts:
himSpecShelfDataNetworkAddress.setDescription('This field contains network IP address.')
him_spec_shelf_data_remote = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSpecShelfDataRemote.setStatus('current')
if mibBuilder.loadTexts:
himSpecShelfDataRemote.setDescription('This field shows if frame is remote. Possible values: - yes - frame is remote - no - frame is not remote')
him_spec_shelf_data_location = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(0, 48))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSpecShelfDataLocation.setStatus('current')
if mibBuilder.loadTexts:
himSpecShelfDataLocation.setDescription('This field contains postal address (city, street, building, ..) , where a FLEX LTU or an AP shelf is located.')
him_spec_shelf_data_ltuc = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 1, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(0, 14))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSpecShelfDataLTUC.setStatus('current')
if mibBuilder.loadTexts:
himSpecShelfDataLTUC.setDescription('This field contains part number adding LTUC module. LTUC: Line/Trunk Unit Control.')
him_swu_board_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2))
if mibBuilder.loadTexts:
himSWUBoardTable.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardTable.setDescription('This table contains the configuration of the peripheral boards. Periphery Assemblies Peripheral and ring generator assemblies as well as SIU are configured in the LTU. The board is entered in the SWU database. LTU = Line/Trunk Unit SIU = Signaling Interface Unit SWU = Switching Unit')
him_swu_board_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSWUBoardPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSWUBoardPEN'))
if mibBuilder.loadTexts:
himSWUBoardEntry.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardEntry.setDescription('')
him_swu_board_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardPabxId.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardPabxId.setDescription('')
him_swu_board_pen = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 2), him_pen()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardPEN.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardPEN.setDescription('This field contains the name of the board PEN. PEN: Port Equipment Number The PEN is displayed in the following format: [LTG]-[LTU]-[EBT]. LTG: Line/Trunk Group LTU: Line/Trunk Unit EBT: Slot')
him_swu_board_overlay_ltu = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardOverlayLTU.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardOverlayLTU.setDescription('This field contains the name of the overlay LTU (Line/Trunk Unit).')
him_swu_board_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardType.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardType.setDescription('This field contains the name of the configured board.')
him_swu_board_nominal = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardNominal.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardNominal.setDescription('This field contains the name of the nominal board.')
him_swu_board_actual = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardActual.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardActual.setDescription('This field contains part number of the board that is plugged in.')
hhim_swu_board_firmware = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hhimSWUBoardFirmware.setStatus('current')
if mibBuilder.loadTexts:
hhimSWUBoardFirmware.setDescription('This field contains the name of the firmware.')
him_swu_board_rev = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardRev.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardRev.setDescription('This field contains the revision of the board.')
him_swu_board_funct_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardFunctId.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardFunctId.setDescription('Function identification number for boards with more than one functions (e.g. SIUX, STMA, SLMO24).')
him_swu_board_mode = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardMode.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardMode.setDescription('This field contains the mode of the board. The mode is only displayed for the RG/ACGEN board.')
him_swu_board_lw_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 11), octet_string().subtype(subtypeSpec=value_size_constraint(0, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardLWNo.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardLWNo.setDescription('This field contains the number of the loadware.')
him_swu_board_lw_inter_ver = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardLWInterVer.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardLWInterVer.setDescription('This field contains the interface version of the board.')
him_swu_board_lw_name = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 13), octet_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardLWName.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardLWName.setDescription('This field contains the file name of the loadware file or of the initialization file.')
him_swu_board_lw_date = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 3, 2, 1, 14), octet_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWUBoardLWDate.setStatus('current')
if mibBuilder.loadTexts:
himSWUBoardLWDate.setDescription('This field contains the date on which the loadware or the initialization file was generated.')
him_swu_periphery = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4))
him_psio_ass_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1))
if mibBuilder.loadTexts:
himPSIOAssTable.setStatus('current')
if mibBuilder.loadTexts:
himPSIOAssTable.setDescription('This table contains the PSIO assemblies data.')
him_psio_ass_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himPSIOAssPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himPSIOAssPEN'))
if mibBuilder.loadTexts:
himPSIOAssEntry.setStatus('current')
if mibBuilder.loadTexts:
himPSIOAssEntry.setDescription('')
him_psio_ass_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himPSIOAssPabxId.setStatus('current')
if mibBuilder.loadTexts:
himPSIOAssPabxId.setDescription('')
him_psio_ass_assembly = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himPSIOAssAssembly.setStatus('current')
if mibBuilder.loadTexts:
himPSIOAssAssembly.setDescription('This field contains the name of the PSIO board. PSIO: Peripheral Serial Input Output')
him_psio_ass_pen = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1, 1, 2), him_pen()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himPSIOAssPEN.setStatus('current')
if mibBuilder.loadTexts:
himPSIOAssPEN.setDescription('This field contains the name of the board PEN. PEN: Port Equipment Number The PEN is displayed in the following format: [LTG]-[LTU]-[EBT]. LTG: Line/Trunk Group LTU: Line/Trunk Unit EBT: Slot')
him_psio_ass_actual = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himPSIOAssActual.setStatus('current')
if mibBuilder.loadTexts:
himPSIOAssActual.setDescription('This field contains the part number of the PSIO board.')
him_psio_ass_firmware = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himPSIOAssFirmware.setStatus('current')
if mibBuilder.loadTexts:
himPSIOAssFirmware.setDescription('This field contains the firmware name of the PSIO board.')
him_serial_line_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2))
if mibBuilder.loadTexts:
himSerialLineTable.setStatus('current')
if mibBuilder.loadTexts:
himSerialLineTable.setDescription('This table contains the serial interfaces data.')
him_serial_line_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSerialLinePabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSerialLineNumber'))
if mibBuilder.loadTexts:
himSerialLineEntry.setStatus('current')
if mibBuilder.loadTexts:
himSerialLineEntry.setDescription('')
him_serial_line_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSerialLinePabxId.setStatus('current')
if mibBuilder.loadTexts:
himSerialLinePabxId.setDescription('')
him_serial_line_board_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSerialLineBoardType.setStatus('current')
if mibBuilder.loadTexts:
himSerialLineBoardType.setDescription('This field contains abbreviation name of the board type.')
him_serial_line_number = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(8, 63))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSerialLineNumber.setStatus('current')
if mibBuilder.loadTexts:
himSerialLineNumber.setDescription('This field contains the physical line number of the interface. Possible Values: numeric, 8-63')
him_serial_line_speed = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSerialLineSpeed.setStatus('current')
if mibBuilder.loadTexts:
himSerialLineSpeed.setDescription('This field contains standardized transmission speed (baud rate). Possible Values: 50, 100, 200, 300, 600, 1200, 2400, 4800, 9600, 19200.')
him_serial_line_log_dev_name = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSerialLineLogDevName.setStatus('current')
if mibBuilder.loadTexts:
himSerialLineLogDevName.setDescription('This field contains the logical device name of the line. Possible Values: Value - Description CON1 - LOGICAL DEVICE CONNECTION,TERMINAL 1 CON2 - LOGICAL DEVICE CONNECTION,TERMINAL 2 CON3 - LOGICAL DEVICE CONNECTION,TERMINAL 3 CON4 - LOGICAL DEVICE CONNECTION,TERMINAL 4 CON5 - LOGICAL DEVICE CONNECTION 5 CON6 - LOGICAL DEVICE CONNECTION 6 PR1 - LOGICAL DEVICE:LINE PRINTER 1 PR2 - LOGICAL DEVICE:LINE PRINTER 2 PR3 - LOGICAL DEVICE:LINE PRINTER 3 PR4 - LOGICAL DEVICE:LINE PRINTER 4')
him_serial_line_dev_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 18))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSerialLineDevType.setStatus('current')
if mibBuilder.loadTexts:
himSerialLineDevType.setDescription('This field contains the device type of the line. Possible Values: Value - Description PT88 - DEVICE TYPE QUOSC - QUME-ONLY-SCREEN QUOPT - QUME-ONLY-PT88 QUSCAPT - QUME-SCREEN-AND-PT88 PCOSC - PC-D-ONLY-SCREEN PCOPT - PC-D-ONLY-PT88 PCSCAPT - PC-D-SCREEN-AND-PT88 ASC - ASCII-CODE EBC - EBCDIC CODE RSV1 - RESERVED DEVICE TYPE 1 RSV2 - RESERVED DEVICE TYPE 2 RSV3 - RESERVED DEVICE TYPE 3')
him_serial_line_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 0))).clone(namedValues=named_values(('asy', 1), ('v24', 2), ('other', 0)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSerialLineType.setStatus('current')
if mibBuilder.loadTexts:
himSerialLineType.setDescription('This field contains the line type (operation of synchronous lines (terminals) connected via V24 modems). Possible values: - ASY: asynchronous line type - V24: ccitt rec v24')
him_scsi_dev_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3))
if mibBuilder.loadTexts:
himSCSIDevTable.setStatus('current')
if mibBuilder.loadTexts:
himSCSIDevTable.setDescription('This table contains the data for the SCSI devices connected.')
him_scsi_dev_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSCSIDevPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSCSIDevId'))
if mibBuilder.loadTexts:
himSCSIDevEntry.setStatus('current')
if mibBuilder.loadTexts:
himSCSIDevEntry.setDescription('')
him_scsi_dev_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSCSIDevPabxId.setStatus('current')
if mibBuilder.loadTexts:
himSCSIDevPabxId.setDescription('')
him_scsi_dev_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSCSIDevId.setStatus('current')
if mibBuilder.loadTexts:
himSCSIDevId.setDescription('This field contains the type of SCSI device.')
him_scsi_dev_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 13))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSCSIDevType.setStatus('current')
if mibBuilder.loadTexts:
himSCSIDevType.setDescription('This field contains the SCSI ID of the device.')
him_scsi_dev_name = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 25))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSCSIDevName.setStatus('current')
if mibBuilder.loadTexts:
himSCSIDevName.setDescription('This field contains the name of the SCSI device in format: [vendor] [product number].')
him_scsi_dev_firmware = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSCSIDevFirmware.setStatus('current')
if mibBuilder.loadTexts:
himSCSIDevFirmware.setDescription('This field contains the firmware name of the SCSI device.')
him_scsi_dev_load_drive = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 4, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSCSIDevLoadDrive.setStatus('current')
if mibBuilder.loadTexts:
himSCSIDevLoadDrive.setDescription('This field displays (if activity is in progress) the device from which the operating system and the database are started.')
him_central_switch_data = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5))
him_cabinet_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1))
if mibBuilder.loadTexts:
himCabinetTable.setStatus('current')
if mibBuilder.loadTexts:
himCabinetTable.setDescription('This table contains the data for configuring the cabinets and frames in a system. They reflect the physical structure of the system.')
him_cabinet_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himCabPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himCabAddr'))
if mibBuilder.loadTexts:
himCabinetEntry.setStatus('current')
if mibBuilder.loadTexts:
himCabinetEntry.setDescription('')
him_cab_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himCabPabxId.setStatus('current')
if mibBuilder.loadTexts:
himCabPabxId.setDescription('')
him_cab_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himCabAddr.setStatus('current')
if mibBuilder.loadTexts:
himCabAddr.setDescription('This field contains the cabinet address. Structure of cabinet address: P 1 01 | | |__Number of cabinet in cabinet row | |_____Units, position of cabinet row |_______Tens (P=0, Q=1), position of the cabinet')
him_cab_phys_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himCabPhysAddr.setStatus('current')
if mibBuilder.loadTexts:
himCabPhysAddr.setDescription('')
him_cab_cabinet = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himCabCabinet.setStatus('current')
if mibBuilder.loadTexts:
himCabCabinet.setDescription('This field contains the name of the cabinet.')
him_cab_part_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 14))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himCabPartNo.setStatus('current')
if mibBuilder.loadTexts:
himCabPartNo.setDescription('This field contains the part number of the cabinet.')
him_cab_shelf_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 14))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himCabShelfNo.setStatus('current')
if mibBuilder.loadTexts:
himCabShelfNo.setDescription('This field contains the number of the shelf.')
him_cab_frame = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himCabFrame.setStatus('current')
if mibBuilder.loadTexts:
himCabFrame.setDescription('This field contains the name of the frame.')
him_cab_pid1 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himCabPid1.setStatus('current')
if mibBuilder.loadTexts:
himCabPid1.setDescription('This field contains the processor ID 1.')
him_cab_pid2 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himCabPid2.setStatus('current')
if mibBuilder.loadTexts:
himCabPid2.setDescription('This field contains the processor ID 2.')
him_cab_pid3 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himCabPid3.setStatus('current')
if mibBuilder.loadTexts:
himCabPid3.setDescription('This field contains the processor ID 2.')
him_cab_ltu_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 1, 1, 11), octet_string().subtype(subtypeSpec=value_size_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himCabLTUNo.setStatus('current')
if mibBuilder.loadTexts:
himCabLTUNo.setDescription('This field contains the number of the LTU (Line/Trunk Unit). The LTU range is divided in two parts: HHS (HICOM Host System) and AP (Access Point). The available values of the ranges are: HHS 1-15 and AP 17-99. The LTU 16 is forbidden. There are existing shelfes which are allowed only in HHS and others which are allowed only in the AP range.')
him_mem_scaling_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2))
if mibBuilder.loadTexts:
himMemScalingTable.setStatus('current')
if mibBuilder.loadTexts:
himMemScalingTable.setDescription('This screen contains the memory parameters for each of the devices or features specified. The values are only displayed in Configuration Management. See also DIMSU parameter list.')
him_mem_scaling_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himMemScalingPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himMemScalingUnit'))
if mibBuilder.loadTexts:
himMemScalingEntry.setStatus('current')
if mibBuilder.loadTexts:
himMemScalingEntry.setDescription('')
him_mem_scaling_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMemScalingPabxId.setStatus('current')
if mibBuilder.loadTexts:
himMemScalingPabxId.setDescription('')
him_mem_scaling_unit = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMemScalingUnit.setStatus('current')
if mibBuilder.loadTexts:
himMemScalingUnit.setDescription('This field contains the parameter name (AMO DIMSU).')
him_mem_scaling_used = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMemScalingUsed.setStatus('current')
if mibBuilder.loadTexts:
himMemScalingUsed.setDescription('This value specifies the number of memory elements already used up. The comparison with the value in the Maximum field indicates how much of the allocated memory is still available for configuring devices or features.')
him_mem_scaling_max_used = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMemScalingMaxUsed.setStatus('current')
if mibBuilder.loadTexts:
himMemScalingMaxUsed.setDescription('This field contains the number of memory elements allocated.')
him_mem_scaling_allocated = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMemScalingAllocated.setStatus('current')
if mibBuilder.loadTexts:
himMemScalingAllocated.setDescription("This field displays the maximum number of memory elements that once have been used up during the lifetime of the switch ('high water mark'). It gives an indication how much memory was necessary at one time, so it is advised to not reduce the Maximum value below this value.")
him_mem_scaling_standard = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMemScalingStandard.setStatus('current')
if mibBuilder.loadTexts:
himMemScalingStandard.setDescription("Standard is the advised value to be set in the Maximum field, if you don't have special needs to set it to a specific value. If you set all devices and features to the standard values it is guaranteed that you don't run out of DIMSU memory.")
him_mem_scaling_sys_max = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 5, 2, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMemScalingSysMax.setStatus('current')
if mibBuilder.loadTexts:
himMemScalingSysMax.setDescription('This field contains the maximum number of possible memory elements.')
him_general_switch_data = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6))
him_db_conf_sys = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1))
him_db_conf_sys_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1))
if mibBuilder.loadTexts:
himDBConfSysTable.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysTable.setDescription('')
him_db_conf_sys_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himDBConfSysPabxId'))
if mibBuilder.loadTexts:
himDBConfSysEntry.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysEntry.setDescription('')
him_db_conf_sys_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysPabxId.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysPabxId.setDescription('')
him_db_conf_sys_class1 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysClass1.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysClass1.setDescription('This field contains the name of the system.')
him_db_conf_sys_class2 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysClass2.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysClass2.setDescription('This field contains the coded name of the system.')
him_db_conf_sys_hw_ass1 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysHWAss1.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysHWAss1.setDescription('This field contains the hardware ID of the system.')
him_db_conf_sys_hw_ass2 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 7))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysHWAss2.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysHWAss2.setDescription('This field contains the shortened hardware ID of the system.')
him_db_conf_sys_dev_line1 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 18))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysDevLine1.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysDevLine1.setDescription('This field contains the name of the product line.')
him_db_conf_sys_dev_line2 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysDevLine2.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysDevLine2.setDescription('This field contains the shortened name of the product line. Possible values: - H300: EUROPE DEVELOPMENT - HUSA: US DEVELOPMENT')
him_db_conf_sys_op_mode = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 0))).clone(namedValues=named_values(('simplex', 1), ('duplex', 2), ('other', 0)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysOpMode.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysOpMode.setDescription('This field contains the operating mode of the system. Possible Values: - SIMPLEX: OPERATING MODE SIMPLEX - DUPLEX: OPERATING MODE DUPLEX REDUNDANCY')
him_db_conf_sys_res_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysResType.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysResType.setDescription('This field contains the restart identifier.')
him_db_conf_sys_hw_arch = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysHWArch.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysHWArch.setDescription('This field contains the name of the hardware architecture.')
him_db_conf_sys_hw_arch_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 11), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysHWArchType.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysHWArchType.setDescription('This field contains the name of the hardware architecture type.')
him_db_conf_sys_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 12), him_switch_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysNo.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysNo.setDescription('This field contains the number of the system.')
him_db_conf_sys_loc = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 0))).clone(namedValues=named_values(('customer', 1), ('support', 2), ('testlab', 3), ('other', 0)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysLoc.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysLoc.setDescription('This field contains the name of the location in which the system is installed. Possible Values: - CUSTOMER (customer) - SUPPORT (support) - TESTLAB (testlab)')
him_db_conf_sys_base_app = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 14), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysBaseApp.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysBaseApp.setDescription('This field contains the name of the base application.')
him_db_conf_sys_db_app = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 15), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysDBApp.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysDBApp.setDescription('This field contains the name of the database application.')
him_db_conf_sys_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 1, 1, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfSysID.setStatus('current')
if mibBuilder.loadTexts:
himDBConfSysID.setDescription('This field contains the system identification.')
him_db_conf_hw = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2))
him_db_conf_hw_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1))
if mibBuilder.loadTexts:
himDBConfHWTable.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWTable.setDescription('')
him_db_conf_hw_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himDBConfHWPabxId'))
if mibBuilder.loadTexts:
himDBConfHWEntry.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWEntry.setDescription('')
him_db_conf_hw_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWPabxId.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWPabxId.setDescription('')
him_db_conf_hwltg = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWLTG.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWLTG.setDescription('This field contains the number of LTGs in the system. LTG: Line/Trunk Group')
him_db_conf_hwltu = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 15), value_range_constraint(17, 99)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWLTU.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWLTU.setDescription('This field contains the number of LTUs in the system. LTU: Line/Trunk Unit')
him_db_conf_hw_lines = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWLines.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWLines.setDescription('This field contains the number of lines in the system.')
him_db_conf_hw_ports = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWPorts.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWPorts.setDescription('This field contains the number of ports in the system.')
him_db_conf_hwpbc = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWPBC.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWPBC.setDescription('This field contains the number of peripheral board controllers (PBC) in the system.')
him_db_conf_hwmts_bd_per_gsn = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWMTSBdPerGSN.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWMTSBdPerGSN.setDescription('This field contains the number of memory time switches (MTS) per group switching network (GSN).')
him_db_conf_hwsiup_per_ltu = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWSIUPPerLTU.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWSIUPPerLTU.setDescription('This field contains the number of SIUP boards per LTU (Line/Trunk Unit).')
him_db_conf_hwdiuc_per_ltu = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWDIUCPerLTU.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWDIUCPerLTU.setDescription('This field contains the number of DIUC boards per LTU (Line/Trunk Unit).')
him_db_conf_hw_hwy_per_mts_bd = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWHwyPerMTSBd.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWHwyPerMTSBd.setDescription('This field contains the number highways (HYW) per MTS board.')
him_db_conf_hwhdlc_per_dcl = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWHDLCPerDCL.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWHDLCPerDCL.setDescription('This field contains the number of high level data link control (HDLC) channels per data communication link (DCL).')
him_db_conf_hwpbc_per_dcl = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWPBCPerDCL.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWPBCPerDCL.setDescription('This field contains the number of peripheral board controllers (PBC) per data communication link (DCL).')
him_db_conf_hw_std_siu_line = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWStdSIULine.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWStdSIULine.setDescription('This field contains the number of signaling unit lines. SIU: Signaling-Unit')
him_db_conf_hw_conf_line = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWConfLine.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWConfLine.setDescription('This field contains the number of lines in the CONFERENCE board.')
him_db_conf_hwdb_dim = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 15), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWDBDim.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWDBDim.setDescription('This field contains the name of the database dimensioning.')
him_db_conf_hw_table_ver = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 2, 1, 1, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDBConfHWTableVer.setStatus('current')
if mibBuilder.loadTexts:
himDBConfHWTableVer.setDescription('This field contains the version of the Conf table.')
him_hw_data = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3))
him_hw_data_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1))
if mibBuilder.loadTexts:
himHWDataTable.setStatus('current')
if mibBuilder.loadTexts:
himHWDataTable.setDescription('')
him_hw_data_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himHWDataPabxId'))
if mibBuilder.loadTexts:
himHWDataEntry.setStatus('current')
if mibBuilder.loadTexts:
himHWDataEntry.setDescription('')
him_hw_data_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHWDataPabxId.setStatus('current')
if mibBuilder.loadTexts:
himHWDataPabxId.setDescription('')
him_hw_arch = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 25))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHWArch.setReference('Same as himDBConfSysHWArch.')
if mibBuilder.loadTexts:
himHWArch.setStatus('current')
if mibBuilder.loadTexts:
himHWArch.setDescription('This field contains the name of the hardware architecture.')
him_hw_arch_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHWArchType.setReference('Same as himDBConfSysHWArchType.')
if mibBuilder.loadTexts:
himHWArchType.setStatus('current')
if mibBuilder.loadTexts:
himHWArchType.setDescription('This field contains the name of the hardware architecture type.')
him_hw_op_mode = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 7))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHWOpMode.setReference('Should be the same as himDBConfSysOpMode.')
if mibBuilder.loadTexts:
himHWOpMode.setStatus('current')
if mibBuilder.loadTexts:
himHWOpMode.setDescription('This field contains the name of the operating mode.')
him_hwswu_proc1 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHWSWUProc1.setStatus('current')
if mibBuilder.loadTexts:
himHWSWUProc1.setDescription('These fields contain the name of the SWU processor board (max. 8 characters). SWU = Switching Unit Possible values: - CC-A - CC-B ')
him_hwswu_mem1 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHWSWUMem1.setStatus('current')
if mibBuilder.loadTexts:
himHWSWUMem1.setDescription('These fields contain the size of the SWU memory for each processor board. SWU = Switching Unit')
him_hwswu_proc2 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHWSWUProc2.setStatus('current')
if mibBuilder.loadTexts:
himHWSWUProc2.setDescription('These fields contain the name of the SWU processor board (max. 8 characters). SWU = Switching Unit Possible values: - CC-A - CC-B ')
him_hwswu_mem2 = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(0, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHWSWUMem2.setStatus('current')
if mibBuilder.loadTexts:
himHWSWUMem2.setDescription('These fields contain the size of the SWU memory for each processor board. SWU = Switching Unit')
him_hwadp_proc = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHWADPProc.setStatus('current')
if mibBuilder.loadTexts:
himHWADPProc.setDescription('This field contains the name of the ADP processor.')
him_hwadp_mem = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 3, 1, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(0, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himHWADPMem.setStatus('current')
if mibBuilder.loadTexts:
himHWADPMem.setDescription('This field contains the size of memory used by the ADP.')
him_lw_data_on_cb = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4))
him_lw_data_on_cb_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1))
if mibBuilder.loadTexts:
himLWDataOnCBTable.setStatus('current')
if mibBuilder.loadTexts:
himLWDataOnCBTable.setDescription('')
him_lw_data_on_cb_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himLWDataOnCBPabxId'))
if mibBuilder.loadTexts:
himLWDataOnCBEntry.setStatus('current')
if mibBuilder.loadTexts:
himLWDataOnCBEntry.setDescription('')
him_lw_data_on_cb_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWDataOnCBPabxId.setStatus('current')
if mibBuilder.loadTexts:
himLWDataOnCBPabxId.setDescription('')
him_lw_on_cb_ass = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnCBAss.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCBAss.setDescription('This field contains the hardware ID of the board. Note: Certain types of processor boards (e. g. DPC5) are using only firmware. Therefore, no loadware data is displayed and this field remains empty.')
him_lw_on_cbpbc_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnCBPBCAddr.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCBPBCAddr.setDescription('This field contains the peripheral board controller (PBC) address of the module. Note: Certain types of processor boards (e. g. DPC5) are using only firmware. Therefore, no loadware data is displayed and this field remains empty.')
him_lw_on_cb_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnCBFileName.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCBFileName.setDescription('This field contains the filename of the loadware file. Note: Certain types of processor boards (e. g. DPC5) are using only firmware. Therefore, no loadware data is displayed and this field remains empty.')
him_lw_on_cb_prod_time = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 4, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnCBProdTime.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCBProdTime.setDescription('This field contains the production date of the loadware. Note:Certain types of processor boards (e. g. DPC5) are using only firmware. Therefore, no loadware data is displayed and this field remains empty.')
him_lw_data_on_proc = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5))
him_lw_on_proc_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1))
if mibBuilder.loadTexts:
himLWOnProcTable.setStatus('current')
if mibBuilder.loadTexts:
himLWOnProcTable.setDescription('')
him_lw_on_proc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himLWOnProcPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himLWOnProcAss'), (0, 'SIEMENS-HP4KHIM-MIB', 'himLWOnProcInfoType'))
if mibBuilder.loadTexts:
himLWOnProcEntry.setStatus('current')
if mibBuilder.loadTexts:
himLWOnProcEntry.setDescription('')
him_lw_on_proc_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnProcPabxId.setStatus('current')
if mibBuilder.loadTexts:
himLWOnProcPabxId.setDescription('')
him_lw_on_proc_ass = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnProcAss.setStatus('current')
if mibBuilder.loadTexts:
himLWOnProcAss.setDescription('This field contains the name of the directory where the file with information on Loadware resides, e. g. CCA, CCB or ADP (max. 3 characters).')
him_lw_on_proc_info_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnProcInfoType.setStatus('current')
if mibBuilder.loadTexts:
himLWOnProcInfoType.setDescription('This field contains the boot type. It represents the file name also.')
him_lw_on_proc_lw_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnProcLWId.setStatus('current')
if mibBuilder.loadTexts:
himLWOnProcLWId.setDescription('This field contains the name of the loadware.')
him_lw_on_proc_lw_id_cmp = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnProcLWIdCMP.setStatus('current')
if mibBuilder.loadTexts:
himLWOnProcLWIdCMP.setDescription("This field contains the name of the loadware ID for the CMP. This field contains the '-' character if it is not relevant to this board.")
him_lw_on_proc_lw_id_lp = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 5, 1, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnProcLWIdLP.setStatus('current')
if mibBuilder.loadTexts:
himLWOnProcLWIdLP.setDescription("This field contains the name of the loadware ID for the LP. This field contains the '-' character if it is not relevant to this board.")
him_lw_data_on_csiu = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6))
him_lw_on_csiu_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1))
if mibBuilder.loadTexts:
himLWOnCSIUTable.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCSIUTable.setDescription('This table contains the loadware data on the central SIU (Signaling Interface Unit).')
him_lw_on_csiu_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himLWOnCSIUPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himLWOnCSIUNominal'), (0, 'SIEMENS-HP4KHIM-MIB', 'himLWOnCSIULWNo'))
if mibBuilder.loadTexts:
himLWOnCSIUEntry.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCSIUEntry.setDescription('')
him_lw_on_csiu_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnCSIUPabxId.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCSIUPabxId.setDescription('')
him_lw_on_csiu_nominal = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 14))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnCSIUNominal.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCSIUNominal.setDescription('This field contains the name of the nominal SIU (Signaling Interface Unit).')
him_lw_on_csiulw_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnCSIULWNo.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCSIULWNo.setDescription('This field contains the name of the SIU (Signaling Interface Unit) loadware.')
him_lw_on_csiu_proc = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnCSIUProc.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCSIUProc.setDescription('This field contains the name of the processor in the SIU (Signaling Interface Unit).')
him_lw_on_csiu_slot = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnCSIUSlot.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCSIUSlot.setDescription('This field contains the name of the SIU (Signaling Interface Unit) slot.')
him_lw_on_csiu_actual = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 14))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnCSIUActual.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCSIUActual.setDescription('This field contains the name of the current SIU (Signaling Interface Unit).')
him_lw_on_csiu_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnCSIUFileName.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCSIUFileName.setDescription('This field contains the file name of the loadware file or of the initialization file.')
him_lw_on_csiu_file_prod = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 6, 1, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himLWOnCSIUFileProd.setStatus('current')
if mibBuilder.loadTexts:
himLWOnCSIUFileProd.setDescription('This field contains the date on which the loadware or the initialization file was generated.')
him_mac_address = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7))
him_mac_addr_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1))
if mibBuilder.loadTexts:
himMacAddrTable.setStatus('current')
if mibBuilder.loadTexts:
himMacAddrTable.setDescription('This table contains the C-LAN and IPDA MAC addresses which are read during the boot process.')
him_mac_addr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himMacAddrPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himMacAddrProc'), (0, 'SIEMENS-HP4KHIM-MIB', 'himMacAddrInfoType'))
if mibBuilder.loadTexts:
himMacAddrEntry.setStatus('current')
if mibBuilder.loadTexts:
himMacAddrEntry.setDescription('')
him_mac_addr_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMacAddrPabxId.setStatus('current')
if mibBuilder.loadTexts:
himMacAddrPabxId.setDescription('')
him_mac_addr_proc = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMacAddrProc.setStatus('current')
if mibBuilder.loadTexts:
himMacAddrProc.setDescription('This field contains the name of the processor (CCA, CCB or ADP - max 3 characters). It is also the name of the Unix directory where the file with information on MAC address resides.')
him_mac_addr_info_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMacAddrInfoType.setStatus('current')
if mibBuilder.loadTexts:
himMacAddrInfoType.setDescription('This field contains the condition on which the mac addresses are available.')
him_mac_addr_c_lan = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1, 1, 4), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMacAddrCLan.setStatus('current')
if mibBuilder.loadTexts:
himMacAddrCLan.setDescription("This field contains the MAC address for UW7 part. The format is following: 'xx xx xx xx xx xx'.")
him_mac_addr_ipda = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 6, 7, 1, 1, 5), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMacAddrIPDA.setStatus('current')
if mibBuilder.loadTexts:
himMacAddrIPDA.setDescription("This field contains the MAC address for RMX part. The format is following: 'xx xx xx xx xx xx'.")
him_features = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7))
him_marketing_features = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1))
him_mark_feat_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1))
if mibBuilder.loadTexts:
himMarkFeatTable.setStatus('current')
if mibBuilder.loadTexts:
himMarkFeatTable.setDescription('')
him_mark_feat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himMarkFeatPabxId'))
if mibBuilder.loadTexts:
himMarkFeatEntry.setStatus('current')
if mibBuilder.loadTexts:
himMarkFeatEntry.setDescription('')
him_mark_feat_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMarkFeatPabxId.setStatus('current')
if mibBuilder.loadTexts:
himMarkFeatPabxId.setDescription('')
him_mark_feat_ver = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMarkFeatVer.setStatus('current')
if mibBuilder.loadTexts:
himMarkFeatVer.setDescription('This field contains the version of the software package. Format explanation: H 2 04 | |__SW version (01=EV1.0; 02=EV2.0; 03=EV3.0; 04=HiPath 4000 V1.0; 05=HiPath 4000 V2.0; 06=HiPath 4000 V3.0) | |_____Marketing concept (1=Old, 2=New)')
him_mark_feat_ser_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMarkFeatSerNo.setStatus('current')
if mibBuilder.loadTexts:
himMarkFeatSerNo.setDescription('This field contains the serial number of the software package.')
him_mark_feat_hw_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMarkFeatHWId.setStatus('current')
if mibBuilder.loadTexts:
himMarkFeatHWId.setDescription('This field contains the dongle ID of the hardware dongle connected.')
him_mark_feat_install_date = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMarkFeatInstallDate.setStatus('current')
if mibBuilder.loadTexts:
himMarkFeatInstallDate.setDescription('This field contains the date on which the code word was entered.')
him_mark_feat_expiry_date = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMarkFeatExpiryDate.setStatus('current')
if mibBuilder.loadTexts:
himMarkFeatExpiryDate.setDescription('This field contains the date on which the code word will expire.')
him_mark_feat_conf_code = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMarkFeatConfCode.setStatus('current')
if mibBuilder.loadTexts:
himMarkFeatConfCode.setDescription('This field contains codeword entry confirmation code.')
him_mark_feat_trial_mode_act = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 8), him_yes_no()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMarkFeatTrialModeAct.setStatus('current')
if mibBuilder.loadTexts:
himMarkFeatTrialModeAct.setDescription('This field shows whether trial mode is active. Possible values: - yes - trial mode is activated - no - trial mode is not activated')
him_mark_feat_trial_rem_days = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himMarkFeatTrialRemDays.setStatus('current')
if mibBuilder.loadTexts:
himMarkFeatTrialRemDays.setDescription('This field contains number of remaining days of an active trial mode.')
him_sales_feat_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2))
if mibBuilder.loadTexts:
himSalesFeatTable.setStatus('current')
if mibBuilder.loadTexts:
himSalesFeatTable.setDescription('')
him_sales_feat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSalesFeatPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSalesFeatMarketPackId'))
if mibBuilder.loadTexts:
himSalesFeatEntry.setStatus('current')
if mibBuilder.loadTexts:
himSalesFeatEntry.setDescription('')
him_sales_feat_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSalesFeatPabxId.setStatus('current')
if mibBuilder.loadTexts:
himSalesFeatPabxId.setDescription('')
him_sales_feat_market_pack_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSalesFeatMarketPackId.setStatus('current')
if mibBuilder.loadTexts:
himSalesFeatMarketPackId.setDescription('This column contains the CM ids of the marketing packages.')
him_sales_feat_market_pack = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 50))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSalesFeatMarketPack.setStatus('current')
if mibBuilder.loadTexts:
himSalesFeatMarketPack.setDescription('This column contains the names of the marketing packages.')
him_sales_feat_contract = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSalesFeatContract.setStatus('current')
if mibBuilder.loadTexts:
himSalesFeatContract.setDescription('This column indicates whether the marketing packages have been purchased.')
him_sales_feat_used = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSalesFeatUsed.setStatus('current')
if mibBuilder.loadTexts:
himSalesFeatUsed.setDescription('This column indicates whether the marketing packages have been used.')
him_sales_feat_free = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSalesFeatFree.setStatus('current')
if mibBuilder.loadTexts:
himSalesFeatFree.setDescription('This field contains the number of free packages.')
him_sales_feat_mark_for_trial = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 1, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSalesFeatMarkForTrial.setStatus('current')
if mibBuilder.loadTexts:
himSalesFeatMarkForTrial.setDescription('This field contains the number of packages (entites) marked for trial or blocked (if the trial mode is not active).')
him_tech_features = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2))
him_tech_feat_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2, 1))
if mibBuilder.loadTexts:
himTechFeatTable.setStatus('current')
if mibBuilder.loadTexts:
himTechFeatTable.setDescription('')
him_tech_feat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himTechFeatPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himTechFeatId'))
if mibBuilder.loadTexts:
himTechFeatEntry.setStatus('current')
if mibBuilder.loadTexts:
himTechFeatEntry.setDescription('This table contains all enabled and disabled customer-specific features. Use the Object List view to display a list of all features availavle.')
him_tech_feat_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himTechFeatPabxId.setStatus('current')
if mibBuilder.loadTexts:
himTechFeatPabxId.setDescription('')
him_tech_feat_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himTechFeatId.setStatus('current')
if mibBuilder.loadTexts:
himTechFeatId.setDescription('This field contains the CM id of the customer-specific feature.')
him_tech_feat_name = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 70))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himTechFeatName.setStatus('current')
if mibBuilder.loadTexts:
himTechFeatName.setDescription('This field contains the name of the customer-specific feature.')
him_tech_feat_state = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 7, 2, 1, 1, 4), him_yes_no()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himTechFeatState.setStatus('current')
if mibBuilder.loadTexts:
himTechFeatState.setDescription('This field contains the status of the customer-specific feature.')
him_aps_patches = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8))
him_switch_aps = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1))
him_switch_aps_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1, 1))
if mibBuilder.loadTexts:
himSwitchAPSTable.setStatus('current')
if mibBuilder.loadTexts:
himSwitchAPSTable.setDescription('')
him_switch_aps_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSwitchAPSPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSwitchAPSName'))
if mibBuilder.loadTexts:
himSwitchAPSEntry.setStatus('current')
if mibBuilder.loadTexts:
himSwitchAPSEntry.setDescription('')
him_switch_aps_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSwitchAPSPabxId.setStatus('current')
if mibBuilder.loadTexts:
himSwitchAPSPabxId.setDescription('')
him_switch_aps_name = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSwitchAPSName.setStatus('current')
if mibBuilder.loadTexts:
himSwitchAPSName.setDescription('')
him_switch_aps_corr_ver = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSwitchAPSCorrVer.setStatus('current')
if mibBuilder.loadTexts:
himSwitchAPSCorrVer.setDescription('')
him_switch_aps_part_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 1, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 17))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSwitchAPSPartNo.setStatus('current')
if mibBuilder.loadTexts:
himSwitchAPSPartNo.setDescription('')
him_replaced_am_os = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2))
him_repl_amo_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1))
if mibBuilder.loadTexts:
himReplAMOTable.setStatus('current')
if mibBuilder.loadTexts:
himReplAMOTable.setDescription('This table displays those AMOs that have been changed since the last system correction version.')
him_repl_amo_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himReplAMOPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himReplAMOAPS'), (0, 'SIEMENS-HP4KHIM-MIB', 'himReplAMOName'))
if mibBuilder.loadTexts:
himReplAMOEntry.setStatus('current')
if mibBuilder.loadTexts:
himReplAMOEntry.setDescription('')
him_repl_amo_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himReplAMOPabxId.setStatus('current')
if mibBuilder.loadTexts:
himReplAMOPabxId.setDescription('')
him_repl_amoaps = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himReplAMOAPS.setStatus('current')
if mibBuilder.loadTexts:
himReplAMOAPS.setDescription('The APS in which the change has been made.')
him_repl_amo_name = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himReplAMOName.setStatus('current')
if mibBuilder.loadTexts:
himReplAMOName.setDescription('This field contains the name of the AMO command.')
him_repl_amo_in_aps_dir = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 22))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himReplAMOInAPSDir.setStatus('current')
if mibBuilder.loadTexts:
himReplAMOInAPSDir.setDescription('This field contains the name of the subsystem in the DIR file.')
him_repl_amo_subsystem = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 2, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 22))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himReplAMOSubsystem.setStatus('current')
if mibBuilder.loadTexts:
himReplAMOSubsystem.setDescription('This field contains the name of the current subsystem.')
him_patch_info = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3))
him_patch_info_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1))
if mibBuilder.loadTexts:
himPatchInfoTable.setStatus('current')
if mibBuilder.loadTexts:
himPatchInfoTable.setDescription('This table contains information on the software patches that have been implemented.')
him_patch_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himPatchInfoPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himPatchInfoPatchNo'))
if mibBuilder.loadTexts:
himPatchInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
himPatchInfoEntry.setDescription('')
him_patch_info_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himPatchInfoPabxId.setStatus('current')
if mibBuilder.loadTexts:
himPatchInfoPabxId.setDescription('')
him_patch_info_patch_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himPatchInfoPatchNo.setStatus('current')
if mibBuilder.loadTexts:
himPatchInfoPatchNo.setDescription('This field contains the number of the patch.')
him_patch_info_patch_group = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himPatchInfoPatchGroup.setStatus('current')
if mibBuilder.loadTexts:
himPatchInfoPatchGroup.setDescription('This field contains the name of the patch group.')
him_patch_info_opt = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 4), him_yes_no()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himPatchInfoOpt.setStatus('current')
if mibBuilder.loadTexts:
himPatchInfoOpt.setDescription('This field represents an indicator that the patch is: - optional: not part of patch packet, - not optional: a part of patch packet (represents the whole list of internal activated/deactivated patches). The purpose of this field is to give user an option to display all patches as well as only optional ones.')
him_patch_info_act_hd = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himPatchInfoActHD.setStatus('current')
if mibBuilder.loadTexts:
himPatchInfoActHD.setDescription('This field indicates whether the patch is enabled on the hard disk.')
him_patch_info_act_adp = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himPatchInfoActADP.setStatus('current')
if mibBuilder.loadTexts:
himPatchInfoActADP.setDescription('This field indicates whether the patch is enabled on the ADP.')
him_patch_info_act_bp = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 8, 3, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himPatchInfoActBP.setStatus('current')
if mibBuilder.loadTexts:
himPatchInfoActBP.setDescription('This field indicates whether the patch is enabled on the A/B processor.')
him_sw_version = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9))
him_sw_ver_on_proc_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1))
if mibBuilder.loadTexts:
himSWVerOnProcTable.setStatus('current')
if mibBuilder.loadTexts:
himSWVerOnProcTable.setDescription('This table contains data on the software versions loaded on the processor boards.')
him_sw_ver_on_proc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSWVerOnProcPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSWVerOnProcSrc'))
if mibBuilder.loadTexts:
himSWVerOnProcEntry.setStatus('current')
if mibBuilder.loadTexts:
himSWVerOnProcEntry.setDescription('')
him_sw_ver_on_proc_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWVerOnProcPabxId.setStatus('current')
if mibBuilder.loadTexts:
himSWVerOnProcPabxId.setDescription('')
him_sw_ver_on_proc_src = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWVerOnProcSrc.setStatus('current')
if mibBuilder.loadTexts:
himSWVerOnProcSrc.setDescription('This field contains the name of the software source.')
him_sw_ver_on_proc_sw_ver = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 17))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWVerOnProcSWVer.setStatus('current')
if mibBuilder.loadTexts:
himSWVerOnProcSWVer.setDescription('This field contains the name of the software version of the ADP software. The software version is displayed in the following format: [item-code-prefix][hipath-version][release-no][country-id][country-code][revision-no] e. g. P30252N 43 08 B 000 10')
him_sw_ver_on_proc_item_code_no_prefix = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWVerOnProcItemCodeNoPrefix.setStatus('current')
if mibBuilder.loadTexts:
himSWVerOnProcItemCodeNoPrefix.setDescription('This field contains the prefix of the software.')
him_sw_ver_on_proc_hp4_k_ver = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWVerOnProcHP4KVer.setStatus('current')
if mibBuilder.loadTexts:
himSWVerOnProcHP4KVer.setDescription('This field contains the Hicom/HiPath version.')
him_sw_ver_on_proc_sys_rel = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWVerOnProcSysRel.setStatus('current')
if mibBuilder.loadTexts:
himSWVerOnProcSysRel.setDescription('This field contains the system release number.')
him_sw_ver_on_proc_country = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWVerOnProcCountry.setStatus('current')
if mibBuilder.loadTexts:
himSWVerOnProcCountry.setDescription('This field contains the country identifier.')
him_sw_ver_on_proc_country_code = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(0, 3))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWVerOnProcCountryCode.setStatus('current')
if mibBuilder.loadTexts:
himSWVerOnProcCountryCode.setDescription('This field contains the country encoding.')
him_sw_ver_on_proc_rev_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 9, 1, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWVerOnProcRevNo.setStatus('current')
if mibBuilder.loadTexts:
himSWVerOnProcRevNo.setDescription('This field contains the revision number of the ADP software.')
him_sw_pkg_version = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10))
him_sw_pkg_ver_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1))
if mibBuilder.loadTexts:
himSWPkgVerTable.setStatus('current')
if mibBuilder.loadTexts:
himSWPkgVerTable.setDescription('This table contains the software versions of the service functions. This data is retrieved using the UNIX command pgkinfo -l.')
him_sw_pkg_ver_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSWPkgVerPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSWPkgVerPkgAbbr'))
if mibBuilder.loadTexts:
himSWPkgVerEntry.setStatus('current')
if mibBuilder.loadTexts:
himSWPkgVerEntry.setDescription('')
him_sw_pkg_ver_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWPkgVerPabxId.setStatus('current')
if mibBuilder.loadTexts:
himSWPkgVerPabxId.setDescription('')
him_sw_pkg_ver_pkg_abbr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWPkgVerPkgAbbr.setStatus('current')
if mibBuilder.loadTexts:
himSWPkgVerPkgAbbr.setDescription('This field contains the abbreviation of the software package.')
him_sw_pkg_ver_pkg_name = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 50))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWPkgVerPkgName.setStatus('current')
if mibBuilder.loadTexts:
himSWPkgVerPkgName.setDescription('This field contains the name of the software package.')
him_sw_pkg_ver_version = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWPkgVerVersion.setStatus('current')
if mibBuilder.loadTexts:
himSWPkgVerVersion.setDescription('This field contains the version of the software package.')
him_sw_pkg_ver_inst_at = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWPkgVerInstAt.setStatus('current')
if mibBuilder.loadTexts:
himSWPkgVerInstAt.setDescription('This field contains the date on which the software package was installed.')
him_sw_pkg_ver_status = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 10, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 0))).clone(namedValues=named_values(('partial', 1), ('complete', 2), ('other', 0)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSWPkgVerStatus.setStatus('current')
if mibBuilder.loadTexts:
himSWPkgVerStatus.setDescription('This field contains the status of the software package.')
him_system = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11))
him_sys_basic_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 1))
if mibBuilder.loadTexts:
himSysBasicTable.setStatus('current')
if mibBuilder.loadTexts:
himSysBasicTable.setDescription('This table complements the information about the HiPath 4000 system that is stored in the hicomSystem branch of the hicom MIB.')
him_sys_basic_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSysBasicPabxId'))
if mibBuilder.loadTexts:
himSysBasicEntry.setStatus('current')
if mibBuilder.loadTexts:
himSysBasicEntry.setDescription('')
him_sys_basic_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysBasicPabxId.setStatus('current')
if mibBuilder.loadTexts:
himSysBasicPabxId.setDescription('')
him_sys_basic_domain = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysBasicDomain.setStatus('current')
if mibBuilder.loadTexts:
himSysBasicDomain.setDescription('This field contains the name of the domain to which the system is belonging.')
him_sys_basic_node_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysBasicNodeNo.setStatus('current')
if mibBuilder.loadTexts:
himSysBasicNodeNo.setDescription("HiPath node number. This field contains the globally unique number of your own PABX. This has a hierarchical structure containing different levels in Version V1.0 and later. Up to three values of the format: L2- L1- L0 can be used for numbering a system. - L2: area number in level 2 - L1: area number in level 1 - L0: area number in level 0 or node number in the old sense. If the value '0' is selected for a level, this means that the relevant hierarchical level is not being used for node numbering: '0' is equal to 'nothing' or 'level is not set'. With the help of this new node number format it is now possible to implement node numbers in networks in which - just as with dial numbers - the network hierarchy is reflected in the node numbers. The same numbering level (= number of levels set in the node number) must be used for all nodes in a network. This field will always show a three-level display with leading zeroes for levels not used for systems in Version V1.0 and later. Example: - 0-0-100 for 1-level numbering - 0-1-101 for 2-level numbering - 1-2-300 for 3-level numbering Values: 0-9 and '-' with format 22-111-000 Level 0 (000) 0-999 Level 1 (111) 0-253 Level 2 (22) 0-29 Max. 10 digits")
him_sys_basic_legk = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 1, 1, 4), him_yes_no()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysBasicLEGK.setStatus('current')
if mibBuilder.loadTexts:
himSysBasicLEGK.setDescription("This field tells if the 'LEGK' feature is activated on the system. LEGK is a process within the call processing of HiPath 4000 with the following functions: - Gate keeper function: IP address resolution mechanism for IP trunking requiring the HG3550 board as hardware. - Resource Management: This function monitors network component usage for controlling IP trunking, IPDA scenarios, HFA and direct media connections. The LEGK can be activated at every HiPath 4000 in the network. Alternatively, it can be configured on a specific HiPath 4000 system only.")
him_sys_lan_cards_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2))
if mibBuilder.loadTexts:
himSysLANCardsTable.setStatus('current')
if mibBuilder.loadTexts:
himSysLANCardsTable.setDescription('')
him_sys_lan_cards_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSysLANCardsPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSysLANCardsIPAddr'))
if mibBuilder.loadTexts:
himSysLANCardsEntry.setStatus('current')
if mibBuilder.loadTexts:
himSysLANCardsEntry.setDescription('')
him_sys_lan_cards_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysLANCardsPabxId.setStatus('current')
if mibBuilder.loadTexts:
himSysLANCardsPabxId.setDescription('')
him_sys_lan_cards_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysLANCardsIPAddr.setStatus('current')
if mibBuilder.loadTexts:
himSysLANCardsIPAddr.setDescription('Unique IP address within the Customer LAN.')
him_sys_lan_cards_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysLANCardsNetMask.setStatus('current')
if mibBuilder.loadTexts:
himSysLANCardsNetMask.setDescription('The netmask of the LAN card. It depends on the class of the LAN Card address.')
him_sys_lan_cards_broad_cast = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysLANCardsBroadCast.setStatus('current')
if mibBuilder.loadTexts:
himSysLANCardsBroadCast.setDescription('The broadcast address is used to send a datagram packet to all hosts of a network or subnetwork, e.g. for address propagation from a router. The broadcast address also depends on the LAN Card address.')
him_sys_lan_cards_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 0))).clone(namedValues=named_values(('ethernet', 1), ('tokenring', 2), ('other', 0)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysLANCardsType.setStatus('current')
if mibBuilder.loadTexts:
himSysLANCardsType.setDescription('Type of the LAN card. Possible values are Ethernet and Token Ring.')
him_sys_lan_cards_status = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 0))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2), ('stale', 3), ('configured', 4), ('unconfigured', 5), ('other', 0)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysLANCardsStatus.setStatus('current')
if mibBuilder.loadTexts:
himSysLANCardsStatus.setDescription('The status of the configured LAN card. Can be one of the following: - Unknown (no traffic light lit): The LAN Card is configured, but no reboot has been performed. - Enabled (green traffic light lit): The LAN Card is active. - Disabled (red traffic light lit): The LAN Card is not active.')
him_sys_hosts_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 3))
if mibBuilder.loadTexts:
himSysHostsTable.setStatus('current')
if mibBuilder.loadTexts:
himSysHostsTable.setDescription('')
him_sys_hosts_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 3, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSysHostsPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSysHostsNo'))
if mibBuilder.loadTexts:
himSysHostsEntry.setStatus('current')
if mibBuilder.loadTexts:
himSysHostsEntry.setDescription('')
him_sys_hosts_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 3, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysHostsPabxId.setStatus('current')
if mibBuilder.loadTexts:
himSysHostsPabxId.setDescription('')
him_sys_hosts_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysHostsNo.setStatus('current')
if mibBuilder.loadTexts:
himSysHostsNo.setDescription('Index of the host entry.')
him_sys_hosts_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 3, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysHostsIPAddr.setStatus('current')
if mibBuilder.loadTexts:
himSysHostsIPAddr.setDescription('The IP address of the host.')
him_sys_hosts_name = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 50))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysHostsName.setStatus('current')
if mibBuilder.loadTexts:
himSysHostsName.setDescription('Unique name of the host.')
him_sys_waml_conn = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4))
him_sys_waml_conn_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1))
if mibBuilder.loadTexts:
himSysWAMLConnTable.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnTable.setDescription('')
him_sys_waml_conn_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnLTG'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnLTU'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnSlot'))
if mibBuilder.loadTexts:
himSysWAMLConnEntry.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnEntry.setDescription('')
him_sys_waml_conn_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnPabxId.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnPabxId.setDescription('')
him_sys_waml_conn_ltg = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnLTG.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnLTG.setDescription('Line/trunk group number. Valid values: 1-1')
him_sys_waml_conn_ltu = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 99))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnLTU.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnLTU.setDescription('Line/trunk unit. Valid values: 1-15, for IP Gateway DSP HW of NCUI STMI STMA WAML 1-99, for RG/ACGEN PER DIU SIUP TMD 17-99, for NCUI STMA WAML')
him_sys_waml_conn_slot = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 145))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnSlot.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnSlot.setDescription('Slot number of LTU (Line/Trunk Unit). Valid values: 1-121, for STMI, IP gateway, PER, RG, ACGEN, DIU, SIUP, TMD 1-145, for STMA, WAML')
him_sys_waml_conn_ruf_nr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 5), him_phone_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnRufNr.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnRufNr.setDescription('Phone number of the WAML board.')
him_sys_waml_conn_b_chl = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 6), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnBChl.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnBChl.setDescription('Number of b-channels on the WAML board.')
him_sys_waml_conn_status = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnStatus.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnStatus.setDescription('Status of the WAML board.')
him_sys_waml_conn_ip_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2))
if mibBuilder.loadTexts:
himSysWAMLConnIPTable.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnIPTable.setDescription('')
him_sys_waml_conn_ip_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnIPPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnIPLTG'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnIPLTU'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnIPSlot'), (0, 'SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnIPIfName'))
if mibBuilder.loadTexts:
himSysWAMLConnIPEntry.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnIPEntry.setDescription('')
him_sys_waml_conn_ip_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnIPPabxId.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnIPPabxId.setDescription('')
him_sys_waml_conn_ipltg = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnIPLTG.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnIPLTG.setDescription('Line/trunk group number. Valid values: 1-1')
him_sys_waml_conn_ipltu = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 99))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnIPLTU.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnIPLTU.setDescription('Line/trunk unit. Valid values: 1-15, for IP Gateway DSP HW of NCUI STMI STMA WAML 1-99, for RG/ACGEN PER DIU SIUP TMD 17-99, for NCUI STMA WAML')
him_sys_waml_conn_ip_slot = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 145))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnIPSlot.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnIPSlot.setDescription('Slot number of LTU (Line/Trunk Unit). Valid values: 1-121, for STMI, IP gateway, PER, RG, ACGEN, DIU, SIUP, TMD 1-145, for STMA, WAML')
him_sys_waml_conn_ip_if_name = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnIPIfName.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnIPIfName.setDescription('Name of the interface.')
him_sys_waml_conn_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnIPAddr.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnIPAddr.setDescription('IP address of the WAML connection.')
him_sys_waml_conn_ip_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 11, 4, 2, 1, 7), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSysWAMLConnIPNetMask.setStatus('current')
if mibBuilder.loadTexts:
himSysWAMLConnIPNetMask.setDescription('Net mask of the WAML connection.')
him_boards = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12))
him_board_basic_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1))
if mibBuilder.loadTexts:
himBoardBasicTable.setStatus('current')
if mibBuilder.loadTexts:
himBoardBasicTable.setDescription('This table contains the boards that are managed by CM. It can be viewed as an extension of hicomBCSUTable. Please note that the PEN (LTG, LTU, Slot) of LTU boards is different from what is contained in CM, and uses the same format as in the hicom MIB.')
him_board_basic_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himBoardBasicPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himBoardBasicLTG'), (0, 'SIEMENS-HP4KHIM-MIB', 'himBoardBasicLTU'), (0, 'SIEMENS-HP4KHIM-MIB', 'himBoardBasicSlot'))
if mibBuilder.loadTexts:
himBoardBasicEntry.setStatus('current')
if mibBuilder.loadTexts:
himBoardBasicEntry.setDescription('')
him_board_basic_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardBasicPabxId.setStatus('current')
if mibBuilder.loadTexts:
himBoardBasicPabxId.setDescription('')
him_board_basic_ltg = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardBasicLTG.setStatus('current')
if mibBuilder.loadTexts:
himBoardBasicLTG.setDescription('Line/trunk group number. Valid values: 1-1')
him_board_basic_ltu = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 99))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardBasicLTU.setStatus('current')
if mibBuilder.loadTexts:
himBoardBasicLTU.setDescription('Line/trunk unit. Valid values: 1-15, for IP Gateway DSP HW of NCUI STMI STMA WAML 1-99, for RG/ACGEN PER DIU SIUP TMD 17-99, for NCUI STMA WAML')
him_board_basic_slot = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 145))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardBasicSlot.setStatus('current')
if mibBuilder.loadTexts:
himBoardBasicSlot.setDescription('Slot number of LTU (Line/Trunk Unit). Valid values: 1-121, for STMI, IP gateway, PER, RG, ACGEN, DIU, SIUP, TMD 1-145, for STMA, WAML')
him_board_basic_func_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardBasicFuncId.setStatus('current')
if mibBuilder.loadTexts:
himBoardBasicFuncId.setDescription('Function ID Valid values: 0-255 2 for SIU type 2 (MFV) 3 for SIU type 3 (MFC) 4 for SIU - RDS functionality 5 for SIU - ANI signaling 6 for SIU - CIS multifrequency (MFS) 7 for SIU - line testing')
him_board_basic_cat = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0))).clone(namedValues=named_values(('ltg', 1), ('ltu', 2), ('per', 3), ('perhw', 4), ('acgen', 5), ('diu', 6), ('ipgw', 7), ('rg', 8), ('siup', 9), ('tmd', 10), ('other', 0)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardBasicCat.setStatus('current')
if mibBuilder.loadTexts:
himBoardBasicCat.setDescription('Category The board type includes: LTG -- line/trunk group LTU -- line/trunk unit PER -- peripheral module PERHW -- load peripheral hardware ACGEN -- alternating current generator DIU -- digital interface unit IPGW -- IP gateway RG -- ring generator SIUP -- signalling unit periphery TMD -- T1 boards')
him_board_basic_name = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardBasicName.setStatus('current')
if mibBuilder.loadTexts:
himBoardBasicName.setDescription('Name of the setup the board is configured to.')
him_board_basic_voip_sec = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 8), him_yes_no()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardBasicVOIPSec.setStatus('current')
if mibBuilder.loadTexts:
himBoardBasicVOIPSec.setDescription('')
him_board_basic_lw_var = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(0, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardBasicLWVar.setStatus('current')
if mibBuilder.loadTexts:
himBoardBasicLWVar.setDescription('The loadware variant. Default value: 0 Valid values: 0-9, A-D')
him_board_basic_no_circ = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardBasicNoCirc.setStatus('current')
if mibBuilder.loadTexts:
himBoardBasicNoCirc.setDescription('Number of circuits to be configured. Valid values: 1-255')
him_board_ip_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2))
if mibBuilder.loadTexts:
himBoardIPTable.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPTable.setDescription('This table contains the IP address configuration of the boards. Please note that not all fields are used for all boards.')
him_board_ip_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1))
himBoardBasicEntry.registerAugmentions(('SIEMENS-HP4KHIM-MIB', 'himBoardIPEntry'))
himBoardIPEntry.setIndexNames(*himBoardBasicEntry.getIndexNames())
if mibBuilder.loadTexts:
himBoardIPEntry.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPEntry.setDescription('')
him_board_ip_gwy_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardIPGwyIPAddr.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPGwyIPAddr.setDescription('IP address of the gateway. Valid for: STMI')
him_board_ip_src_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardIPSrcIPAddr.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPSrcIPAddr.setDescription('Source IP address of STMI-HFA board. A valid Source IP address must always be specified in order to enable the IP phones to address the system (SWU) Default: 0.0.0.0 Valid for: HFA')
him_board_ip_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardIPNetMask.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPNetMask.setDescription('IP network mask. Valid for: HFA')
him_board_ip_def_router = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardIPDefRouter.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPDefRouter.setDescription('IP address of the default router within the LAN segment. The default router takes care of routing forward all packets with a destination address with a network part different from the own LAN segment. Default: 0.0.0.0 Valid for: HFA')
him_board_ip_cust_lanip = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardIPCustLANIP.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPCustLANIP.setDescription('IP address of customer LAN. Default: 0.0.0.0 Valid for: IGW, SIP')
him_board_ipstmi2_igw_sub_mask = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardIPSTMI2IGWSubMask.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPSTMI2IGWSubMask.setDescription('IP subnet mask of LAN segment. Default: 0.0.0.0 Valid for: IGW, SIP')
him_board_ip_def_gwip = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 7), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardIPDefGWIP.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPDefGWIP.setDescription('Default gateway IP address. Default: 0.0.0.0 Valid for: IGW, SIP')
him_board_ip_man_stat_ip = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 8), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardIPManStatIP.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPManStatIP.setDescription('IP address of management station. Default: 0.0.0.0 Valid for: IGW, SIP')
him_board_ip_man_stat_port = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(1024, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardIPManStatPort.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPManStatPort.setDescription('Port number of management station. Valid values: 1024 - 65535 Default: 0 Valid for: IGW, SIP')
him_board_ip_bckp_serv_ip = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 10), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardIPBckpServIP.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPBckpServIP.setDescription('IP address of backup server. Default: 0.0.0.0 Valid for: IGW, SIP')
him_board_ip_bckp_serv_port = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 2, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardIPBckpServPort.setStatus('current')
if mibBuilder.loadTexts:
himBoardIPBckpServPort.setDescription("Port number of backup server. Default: 0 (0 means 'undefined port number') Valid for: IGW, SIP")
him_board_loc_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 3))
if mibBuilder.loadTexts:
himBoardLocTable.setStatus('current')
if mibBuilder.loadTexts:
himBoardLocTable.setDescription('This table contains the location data of the boards. It is only available for boards of type DSX, LTUCA, LTUCE and LTUCX.')
him_board_loc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 3, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himBoardBasicPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himBoardBasicLTG'), (0, 'SIEMENS-HP4KHIM-MIB', 'himBoardBasicLTU'), (0, 'SIEMENS-HP4KHIM-MIB', 'himBoardBasicSlot'))
if mibBuilder.loadTexts:
himBoardLocEntry.setStatus('current')
if mibBuilder.loadTexts:
himBoardLocEntry.setDescription('')
him_board_loc_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 999))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardLocId.setStatus('current')
if mibBuilder.loadTexts:
himBoardLocId.setDescription('Describes the location of the switch for the system configurator. Valid values: 0-999')
him_board_loc_loc = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 45))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardLocLoc.setStatus('current')
if mibBuilder.loadTexts:
himBoardLocLoc.setDescription('Postal address of the LTU (Line/Trunk Unit) shelf. Applies to the Local Connection Type. Valid values: text, up to 45 characters')
him_board_loc_phone_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 3, 1, 3), him_phone_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardLocPhoneNo.setStatus('current')
if mibBuilder.loadTexts:
himBoardLocPhoneNo.setDescription('Phone number at the shelf location. Valid values: 0-9, *, #, A-D, up to 22 characters')
him_board_loc_fax_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 12, 3, 1, 4), him_phone_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himBoardLocFaxNo.setStatus('current')
if mibBuilder.loadTexts:
himBoardLocFaxNo.setDescription('Fax number at the shelf location. Valid values: 0-9, *, #, A-D, up to 22 characters')
him_ipda = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13))
him_ipda_gen_data = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1))
him_ipda_gen_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1))
if mibBuilder.loadTexts:
himIPDAGenTable.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenTable.setDescription('General settings that are true for all IPDAs.')
him_ipda_gen_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himIPDAGenPabxId'))
if mibBuilder.loadTexts:
himIPDAGenEntry.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenEntry.setDescription('')
him_ipda_gen_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAGenPabxId.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenPabxId.setDescription('')
him_ipda_gen_speed = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(10, 10), value_range_constraint(100, 100)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAGenSpeed.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenSpeed.setDescription('Indicates the bit-rate speed. Valid values: 10 Mbits/s; 100 Mbits/s')
him_ipda_gen_mode = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('fullduplex', 1), ('halfduplex', 2), ('other', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAGenMode.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenMode.setDescription('Indicates the bit-rate mode. Valid values: Full Duplex, Half Duplex')
him_ipda_gen_pay_conn = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAGenPayConn.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenPayConn.setDescription('TOS for VoIP payload connections to APs (CP). Valid values: 0-255')
him_ipda_gen_sig_conn = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAGenSigConn.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenSigConn.setDescription('TOS for signalling connections to APs (FA). Valid values: 0-255')
him_ipda_gen_ip_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2))
if mibBuilder.loadTexts:
himIPDAGenIPTable.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenIPTable.setDescription('General IP settings that are true for all IPDAs.')
him_ipda_gen_ip_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1))
himIPDAGenEntry.registerAugmentions(('SIEMENS-HP4KHIM-MIB', 'himIPDAGenIPEntry'))
himIPDAGenIPEntry.setIndexNames(*himIPDAGenEntry.getIndexNames())
if mibBuilder.loadTexts:
himIPDAGenIPEntry.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenIPEntry.setDescription('')
him_ipda_gen_ip_net_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAGenIPNetAddr.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenIPNetAddr.setDescription('IP net address of HiPath LAN segment.')
him_ipda_gen_ip_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAGenIPNetMask.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenIPNetMask.setDescription('IP net mask of HiPath LAN segment.')
him_ipda_gen_ipcca_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAGenIPCCAAddr.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenIPCCAAddr.setDescription('Address of the CC-A processor within the HiPath LAN segment.')
him_ipda_gen_ipccb_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAGenIPCCBAddr.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenIPCCBAddr.setDescription('Address of the CC-B processor within the HiPath LAN segment. Default value: 0.0.0.0')
him_ipda_gen_ip_def_rout_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAGenIPDefRoutAddr.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenIPDefRoutAddr.setDescription('IP address of the default router within the HiPath LAN segment.')
him_ipda_gen_ip_surv_net_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 1, 2, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAGenIPSurvNetAddr.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGenIPSurvNetAddr.setDescription('The IP address of the survivability net. Default value: 0.0.0.0')
him_ipdaap_data = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2))
him_ipda_basic_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1))
if mibBuilder.loadTexts:
himIPDABasicTable.setStatus('current')
if mibBuilder.loadTexts:
himIPDABasicTable.setDescription('This table stores IPDA information from CM.')
him_ipda_basic_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himIPDABasicPabxId'), (0, 'SIEMENS-HP4KHIM-MIB', 'himIPDABasicLTU'))
if mibBuilder.loadTexts:
himIPDABasicEntry.setStatus('current')
if mibBuilder.loadTexts:
himIPDABasicEntry.setDescription('')
him_ipda_basic_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDABasicPabxId.setStatus('current')
if mibBuilder.loadTexts:
himIPDABasicPabxId.setDescription('')
him_ipda_basic_ltu = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(17, 99))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDABasicLTU.setStatus('current')
if mibBuilder.loadTexts:
himIPDABasicLTU.setDescription('Line/trunk unit. Valid values: 17-99')
him_ipda_basic_conn_type = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1, 1, 3), him_shelf_nw_type().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(3, 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDABasicConnType.setStatus('current')
if mibBuilder.loadTexts:
himIPDABasicConnType.setDescription('Connection type of the shelf. Valid values: APDL -- AP shelf via IP - direct linked APNW -- AP shelf via IP - network')
him_ipda_basic_b_chan_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDABasicBChanNo.setStatus('current')
if mibBuilder.loadTexts:
himIPDABasicBChanNo.setDescription('Amount of B-Channels. Valid values: 1- 120')
him_ipda_basic_conv_am_law = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 1, 1, 5), him_yes_no()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDABasicConvAMLaw.setStatus('current')
if mibBuilder.loadTexts:
himIPDABasicConvAMLaw.setDescription('')
him_ipdaip_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2))
if mibBuilder.loadTexts:
himIPDAIPTable.setStatus('current')
if mibBuilder.loadTexts:
himIPDAIPTable.setDescription('This table contains the IP address configuration of the IPDAs.')
him_ipdaip_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1))
himIPDABasicEntry.registerAugmentions(('SIEMENS-HP4KHIM-MIB', 'himIPDAIPEntry'))
himIPDAIPEntry.setIndexNames(*himIPDABasicEntry.getIndexNames())
if mibBuilder.loadTexts:
himIPDAIPEntry.setStatus('current')
if mibBuilder.loadTexts:
himIPDAIPEntry.setDescription('')
him_ipdaip_acc_pt_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAIPAccPtAddr.setStatus('current')
if mibBuilder.loadTexts:
himIPDAIPAccPtAddr.setDescription('IP address of the access point in the AP network.')
him_ipdaipt_acc_pt_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAIPTAccPtAddr.setStatus('current')
if mibBuilder.loadTexts:
himIPDAIPTAccPtAddr.setDescription('IP address for the TAP/Service PC link at the access point. This IP address must be in the same network as the access point in the AP network.')
him_ipdaip_acc_pt_rout_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAIPAccPtRoutAddr.setStatus('current')
if mibBuilder.loadTexts:
himIPDAIPAccPtRoutAddr.setDescription('IP address of the gateway (IP address of the router in the AP network).')
him_ipdaip_net_mask_nw = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAIPNetMaskNW.setStatus('current')
if mibBuilder.loadTexts:
himIPDAIPNetMaskNW.setDescription('Netmask of the network to which the respective Access Point in AP network belongs.')
him_ipdaip_acc_pt_pri_rout_addr = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAIPAccPtPriRoutAddr.setStatus('current')
if mibBuilder.loadTexts:
himIPDAIPAccPtPriRoutAddr.setDescription('IP address of the primary signalling router for NCUI board (IP address of the router in the HiPath 4000 LAN segment). Required if the connection type is APDL.')
him_ipdaip_net_mask_dl = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 2, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDAIPNetMaskDL.setStatus('current')
if mibBuilder.loadTexts:
himIPDAIPNetMaskDL.setDescription('Netmask of the network to which the Access Point in AP internal network belongs.')
him_ipda_loc_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 3))
if mibBuilder.loadTexts:
himIPDALocTable.setStatus('current')
if mibBuilder.loadTexts:
himIPDALocTable.setDescription('This table contains the location data of the boards. It is only available for boards of type DSX, LTUCA, LTUCE and LTUCX.')
him_ipda_loc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 3, 1))
himIPDABasicEntry.registerAugmentions(('SIEMENS-HP4KHIM-MIB', 'himIPDALocEntry'))
himIPDALocEntry.setIndexNames(*himIPDABasicEntry.getIndexNames())
if mibBuilder.loadTexts:
himIPDALocEntry.setStatus('current')
if mibBuilder.loadTexts:
himIPDALocEntry.setDescription('')
him_ipda_loc_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 999))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDALocId.setStatus('current')
if mibBuilder.loadTexts:
himIPDALocId.setDescription('Describes the location of the switch for the system configurator. Valid values: 0-999')
him_ipda_loc_loc = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 45))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDALocLoc.setStatus('current')
if mibBuilder.loadTexts:
himIPDALocLoc.setDescription('Postal address of the LTU (Line/Trunk Unit) shelf. Applies to the Local Connection Type. Valid values: text, up to 45 characters')
him_ipda_loc_phone_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 3, 1, 3), him_phone_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDALocPhoneNo.setStatus('current')
if mibBuilder.loadTexts:
himIPDALocPhoneNo.setDescription('Phone number at the shelf location. Valid values: 0-9, *, #, A-D, up to 22 characters')
him_ipda_loc_fax_no = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 13, 2, 3, 1, 4), him_phone_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himIPDALocFaxNo.setStatus('current')
if mibBuilder.loadTexts:
himIPDALocFaxNo.setDescription('Fax number at the shelf location. Valid values: 0-9, *, #, A-D, up to 22 characters')
him_info = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 14))
him_subagent_last_msg_no = mib_scalar((1, 3, 6, 1, 4, 1, 4329, 2, 51, 14, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSubagentLastMsgNo.setStatus('current')
if mibBuilder.loadTexts:
himSubagentLastMsgNo.setDescription('The last message, warning or error number issued by the Him subagent.')
him_subagent_last_msg_text = mib_scalar((1, 3, 6, 1, 4, 1, 4329, 2, 51, 14, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himSubagentLastMsgText.setStatus('current')
if mibBuilder.loadTexts:
himSubagentLastMsgText.setDescription('The last message, warning or error text issued by the Him subagent.')
him_result_data = mib_scalar((1, 3, 6, 1, 4, 1, 4329, 2, 51, 14, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
himResultData.setStatus('current')
if mibBuilder.loadTexts:
himResultData.setDescription("Is used for agent internal communication. Contains the PabxId of a Hicom for which the last discovery process was conveyed. Is SET by the discovery agent and indicates the availability of new discovered data. The new data is to be incorporated by the subagent into the subagent's data base.")
him_discovery = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15))
him_changes = mib_scalar((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himChanges.setStatus('current')
if mibBuilder.loadTexts:
himChanges.setDescription('Indicates the number of finished HIM discoveries - corresponds to the number of hicomHWDiscovXXX traps sent out.')
him_discov_table = mib_table((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2))
if mibBuilder.loadTexts:
himDiscovTable.setStatus('current')
if mibBuilder.loadTexts:
himDiscovTable.setDescription('The table describing the status concerning discovery of HIM information.')
him_discov_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1)).setIndexNames((0, 'SIEMENS-HP4KHIM-MIB', 'himDiscovPabxId'))
if mibBuilder.loadTexts:
himDiscovEntry.setStatus('current')
if mibBuilder.loadTexts:
himDiscovEntry.setDescription('The entry describes the status of the discovery process. It is designed to comply with the structure of discovery entries in the hicom MIB, even though data is only provided for one switch.')
him_discov_pabx_id = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1, 1), him_pabx_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDiscovPabxId.setStatus('current')
if mibBuilder.loadTexts:
himDiscovPabxId.setDescription('Unique identifier of the Hicom being discovered.')
him_discov_pabx_mnemonic = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDiscovPabxMnemonic.setStatus('current')
if mibBuilder.loadTexts:
himDiscovPabxMnemonic.setDescription('Name of the Hicom system.')
him_discov_status = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1, 3), discovery_states()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
himDiscovStatus.setStatus('current')
if mibBuilder.loadTexts:
himDiscovStatus.setDescription('Status of discovery process. A managment station may initiate a discovery by setting this variable to value busy. The other values are set by the agent.')
him_discov_mode = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1, 4), discovery_modes()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
himDiscovMode.setStatus('current')
if mibBuilder.loadTexts:
himDiscovMode.setDescription('Mode of discovery process.')
him_discov_tim_dat = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDiscovTimDat.setStatus('current')
if mibBuilder.loadTexts:
himDiscovTimDat.setDescription('Date and time (year, month, day, hour, minute, second) the last successful discovery action was performed for the Hicom.')
him_discov_err_tim_dat = mib_table_column((1, 3, 6, 1, 4, 1, 4329, 2, 51, 15, 2, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
himDiscovErrTimDat.setStatus('current')
if mibBuilder.loadTexts:
himDiscovErrTimDat.setDescription('Date and time (year, month, day, hour, minute, second) the last failed discovery action was performed for the Hicom.')
him_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20))
him_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1))
him_welcome_page_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 1)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himWelPgPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himWelPgSysNo'), ('SIEMENS-HP4KHIM-MIB', 'himHP4KVersion'), ('SIEMENS-HP4KHIM-MIB', 'himSystemRelease'), ('SIEMENS-HP4KHIM-MIB', 'himRevisionLevel'), ('SIEMENS-HP4KHIM-MIB', 'himHWArchitecture'), ('SIEMENS-HP4KHIM-MIB', 'himHWArchitectureType'), ('SIEMENS-HP4KHIM-MIB', 'himOperationMode'), ('SIEMENS-HP4KHIM-MIB', 'himSWUProc1'), ('SIEMENS-HP4KHIM-MIB', 'himSWUMemory1'), ('SIEMENS-HP4KHIM-MIB', 'himSWUProc2'), ('SIEMENS-HP4KHIM-MIB', 'himSWUMemory2'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_welcome_page_group = himWelcomePageGroup.setStatus('current')
if mibBuilder.loadTexts:
himWelcomePageGroup.setDescription('')
him_switch_data_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 2)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himTechInfoPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himTechInfoInfoNo'), ('SIEMENS-HP4KHIM-MIB', 'himTechInfoDate'), ('SIEMENS-HP4KHIM-MIB', 'himTechInfoTechnicalData'), ('SIEMENS-HP4KHIM-MIB', 'himTechInfoNumber'), ('SIEMENS-HP4KHIM-MIB', 'himTechInfoExtraText'), ('SIEMENS-HP4KHIM-MIB', 'himNotepadDataPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himNotepadDataInfoNo'), ('SIEMENS-HP4KHIM-MIB', 'himNotepadDataDate'), ('SIEMENS-HP4KHIM-MIB', 'himNotepadDataText'), ('SIEMENS-HP4KHIM-MIB', 'himProjPlanPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himProjPlanInfoFile'), ('SIEMENS-HP4KHIM-MIB', 'himProjPlanInfoCreationDate'), ('SIEMENS-HP4KHIM-MIB', 'himProjPlanInfoCreationTime'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_switch_data_group = himSwitchDataGroup.setStatus('current')
if mibBuilder.loadTexts:
himSwitchDataGroup.setDescription('')
him_spec_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 3)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himSpecShelfDataPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSpecShelfDataAddress'), ('SIEMENS-HP4KHIM-MIB', 'himSpecShelfDataFrameType'), ('SIEMENS-HP4KHIM-MIB', 'himSpecShelfDataLTU'), ('SIEMENS-HP4KHIM-MIB', 'himSpecShelfDataNetworkType'), ('SIEMENS-HP4KHIM-MIB', 'himSpecShelfDataNetworkAddress'), ('SIEMENS-HP4KHIM-MIB', 'himSpecShelfDataRemote'), ('SIEMENS-HP4KHIM-MIB', 'himSpecShelfDataLocation'), ('SIEMENS-HP4KHIM-MIB', 'himSpecShelfDataLTUC'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardPEN'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardOverlayLTU'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardType'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardNominal'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardActual'), ('SIEMENS-HP4KHIM-MIB', 'hhimSWUBoardFirmware'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardRev'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardFunctId'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardMode'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardLWNo'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardLWInterVer'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardLWName'), ('SIEMENS-HP4KHIM-MIB', 'himSWUBoardLWDate'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_spec_group = himSpecGroup.setStatus('current')
if mibBuilder.loadTexts:
himSpecGroup.setDescription('')
him_swu_periphery_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 4)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himPSIOAssPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himPSIOAssAssembly'), ('SIEMENS-HP4KHIM-MIB', 'himPSIOAssPEN'), ('SIEMENS-HP4KHIM-MIB', 'himPSIOAssActual'), ('SIEMENS-HP4KHIM-MIB', 'himPSIOAssFirmware'), ('SIEMENS-HP4KHIM-MIB', 'himSerialLinePabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSerialLineBoardType'), ('SIEMENS-HP4KHIM-MIB', 'himSerialLineNumber'), ('SIEMENS-HP4KHIM-MIB', 'himSerialLineSpeed'), ('SIEMENS-HP4KHIM-MIB', 'himSerialLineLogDevName'), ('SIEMENS-HP4KHIM-MIB', 'himSerialLineDevType'), ('SIEMENS-HP4KHIM-MIB', 'himSerialLineType'), ('SIEMENS-HP4KHIM-MIB', 'himSCSIDevPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSCSIDevId'), ('SIEMENS-HP4KHIM-MIB', 'himSCSIDevType'), ('SIEMENS-HP4KHIM-MIB', 'himSCSIDevName'), ('SIEMENS-HP4KHIM-MIB', 'himSCSIDevFirmware'), ('SIEMENS-HP4KHIM-MIB', 'himSCSIDevLoadDrive'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_swu_periphery_group = himSWUPeripheryGroup.setStatus('current')
if mibBuilder.loadTexts:
himSWUPeripheryGroup.setDescription('')
him_central_switch_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 5)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himCabPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himCabAddr'), ('SIEMENS-HP4KHIM-MIB', 'himCabPhysAddr'), ('SIEMENS-HP4KHIM-MIB', 'himCabCabinet'), ('SIEMENS-HP4KHIM-MIB', 'himCabPartNo'), ('SIEMENS-HP4KHIM-MIB', 'himCabShelfNo'), ('SIEMENS-HP4KHIM-MIB', 'himCabFrame'), ('SIEMENS-HP4KHIM-MIB', 'himCabPid1'), ('SIEMENS-HP4KHIM-MIB', 'himCabPid2'), ('SIEMENS-HP4KHIM-MIB', 'himCabPid3'), ('SIEMENS-HP4KHIM-MIB', 'himCabLTUNo'), ('SIEMENS-HP4KHIM-MIB', 'himMemScalingPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himMemScalingUnit'), ('SIEMENS-HP4KHIM-MIB', 'himMemScalingUsed'), ('SIEMENS-HP4KHIM-MIB', 'himMemScalingMaxUsed'), ('SIEMENS-HP4KHIM-MIB', 'himMemScalingAllocated'), ('SIEMENS-HP4KHIM-MIB', 'himMemScalingStandard'), ('SIEMENS-HP4KHIM-MIB', 'himMemScalingSysMax'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_central_switch_group = himCentralSwitchGroup.setStatus('current')
if mibBuilder.loadTexts:
himCentralSwitchGroup.setDescription('')
him_general_switch_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 6)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himDBConfSysPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysClass1'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysClass2'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysHWAss1'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysHWAss2'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysDevLine1'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysDevLine2'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysOpMode'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysResType'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysHWArch'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysHWArchType'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysNo'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysLoc'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysBaseApp'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysDBApp'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfSysID'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWLTG'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWLTU'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWLines'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWPorts'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWPBC'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWMTSBdPerGSN'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWSIUPPerLTU'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWDIUCPerLTU'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWHwyPerMTSBd'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWHDLCPerDCL'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWPBCPerDCL'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWStdSIULine'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWConfLine'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWDBDim'), ('SIEMENS-HP4KHIM-MIB', 'himDBConfHWTableVer'), ('SIEMENS-HP4KHIM-MIB', 'himHWDataPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himHWArch'), ('SIEMENS-HP4KHIM-MIB', 'himHWArchType'), ('SIEMENS-HP4KHIM-MIB', 'himHWOpMode'), ('SIEMENS-HP4KHIM-MIB', 'himHWSWUProc1'), ('SIEMENS-HP4KHIM-MIB', 'himHWSWUMem1'), ('SIEMENS-HP4KHIM-MIB', 'himHWSWUProc2'), ('SIEMENS-HP4KHIM-MIB', 'himHWSWUMem2'), ('SIEMENS-HP4KHIM-MIB', 'himHWADPProc'), ('SIEMENS-HP4KHIM-MIB', 'himHWADPMem'), ('SIEMENS-HP4KHIM-MIB', 'himLWDataOnCBPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnCBAss'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnCBPBCAddr'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnCBFileName'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnCBProdTime'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnProcPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnProcAss'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnProcInfoType'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnProcLWId'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnProcLWIdCMP'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnProcLWIdLP'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnCSIUPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnCSIUProc'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnCSIUSlot'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnCSIUNominal'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnCSIUActual'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnCSIULWNo'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnCSIUFileName'), ('SIEMENS-HP4KHIM-MIB', 'himLWOnCSIUFileProd'), ('SIEMENS-HP4KHIM-MIB', 'himMacAddrPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himMacAddrProc'), ('SIEMENS-HP4KHIM-MIB', 'himMacAddrInfoType'), ('SIEMENS-HP4KHIM-MIB', 'himMacAddrCLan'), ('SIEMENS-HP4KHIM-MIB', 'himMacAddrIPDA'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_general_switch_group = himGeneralSwitchGroup.setStatus('current')
if mibBuilder.loadTexts:
himGeneralSwitchGroup.setDescription('')
him_features_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 7)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himMacAddrPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himMacAddrProc'), ('SIEMENS-HP4KHIM-MIB', 'himMacAddrCLan'), ('SIEMENS-HP4KHIM-MIB', 'himMacAddrIPDA'), ('SIEMENS-HP4KHIM-MIB', 'himMarkFeatPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himMarkFeatVer'), ('SIEMENS-HP4KHIM-MIB', 'himMarkFeatSerNo'), ('SIEMENS-HP4KHIM-MIB', 'himMarkFeatHWId'), ('SIEMENS-HP4KHIM-MIB', 'himMarkFeatInstallDate'), ('SIEMENS-HP4KHIM-MIB', 'himMarkFeatExpiryDate'), ('SIEMENS-HP4KHIM-MIB', 'himMarkFeatConfCode'), ('SIEMENS-HP4KHIM-MIB', 'himMarkFeatTrialModeAct'), ('SIEMENS-HP4KHIM-MIB', 'himMarkFeatTrialRemDays'), ('SIEMENS-HP4KHIM-MIB', 'himSalesFeatPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSalesFeatMarketPackId'), ('SIEMENS-HP4KHIM-MIB', 'himSalesFeatMarketPack'), ('SIEMENS-HP4KHIM-MIB', 'himSalesFeatContract'), ('SIEMENS-HP4KHIM-MIB', 'himSalesFeatUsed'), ('SIEMENS-HP4KHIM-MIB', 'himSalesFeatFree'), ('SIEMENS-HP4KHIM-MIB', 'himSalesFeatMarkForTrial'), ('SIEMENS-HP4KHIM-MIB', 'himTechFeatPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himTechFeatId'), ('SIEMENS-HP4KHIM-MIB', 'himTechFeatName'), ('SIEMENS-HP4KHIM-MIB', 'himTechFeatState'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_features_group = himFeaturesGroup.setStatus('current')
if mibBuilder.loadTexts:
himFeaturesGroup.setDescription('')
him_aps_patches_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 8)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himSwitchAPSPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSwitchAPSName'), ('SIEMENS-HP4KHIM-MIB', 'himSwitchAPSCorrVer'), ('SIEMENS-HP4KHIM-MIB', 'himSwitchAPSPartNo'), ('SIEMENS-HP4KHIM-MIB', 'himReplAMOPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himReplAMOAPS'), ('SIEMENS-HP4KHIM-MIB', 'himReplAMOName'), ('SIEMENS-HP4KHIM-MIB', 'himReplAMOInAPSDir'), ('SIEMENS-HP4KHIM-MIB', 'himReplAMOSubsystem'), ('SIEMENS-HP4KHIM-MIB', 'himPatchInfoPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himPatchInfoPatchNo'), ('SIEMENS-HP4KHIM-MIB', 'himPatchInfoPatchGroup'), ('SIEMENS-HP4KHIM-MIB', 'himPatchInfoOpt'), ('SIEMENS-HP4KHIM-MIB', 'himPatchInfoActHD'), ('SIEMENS-HP4KHIM-MIB', 'himPatchInfoActADP'), ('SIEMENS-HP4KHIM-MIB', 'himPatchInfoActBP'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_aps_patches_group = himAPSPatchesGroup.setStatus('current')
if mibBuilder.loadTexts:
himAPSPatchesGroup.setDescription('')
him_sw_version_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 9)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himSWVerOnProcPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSWVerOnProcSrc'), ('SIEMENS-HP4KHIM-MIB', 'himSWVerOnProcSWVer'), ('SIEMENS-HP4KHIM-MIB', 'himSWVerOnProcItemCodeNoPrefix'), ('SIEMENS-HP4KHIM-MIB', 'himSWVerOnProcHP4KVer'), ('SIEMENS-HP4KHIM-MIB', 'himSWVerOnProcSysRel'), ('SIEMENS-HP4KHIM-MIB', 'himSWVerOnProcCountry'), ('SIEMENS-HP4KHIM-MIB', 'himSWVerOnProcCountryCode'), ('SIEMENS-HP4KHIM-MIB', 'himSWVerOnProcRevNo'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_sw_version_group = himSWVersionGroup.setStatus('current')
if mibBuilder.loadTexts:
himSWVersionGroup.setDescription('')
him_sw_pkg_version_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 10)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himSWPkgVerPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSWPkgVerPkgAbbr'), ('SIEMENS-HP4KHIM-MIB', 'himSWPkgVerPkgName'), ('SIEMENS-HP4KHIM-MIB', 'himSWPkgVerVersion'), ('SIEMENS-HP4KHIM-MIB', 'himSWPkgVerInstAt'), ('SIEMENS-HP4KHIM-MIB', 'himSWPkgVerStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_sw_pkg_version_group = himSWPkgVersionGroup.setStatus('current')
if mibBuilder.loadTexts:
himSWPkgVersionGroup.setDescription('')
him_system_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 11)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himSysBasicPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSysBasicDomain'), ('SIEMENS-HP4KHIM-MIB', 'himSysBasicNodeNo'), ('SIEMENS-HP4KHIM-MIB', 'himSysBasicLEGK'), ('SIEMENS-HP4KHIM-MIB', 'himSysLANCardsPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSysLANCardsIPAddr'), ('SIEMENS-HP4KHIM-MIB', 'himSysLANCardsNetMask'), ('SIEMENS-HP4KHIM-MIB', 'himSysLANCardsBroadCast'), ('SIEMENS-HP4KHIM-MIB', 'himSysLANCardsType'), ('SIEMENS-HP4KHIM-MIB', 'himSysLANCardsStatus'), ('SIEMENS-HP4KHIM-MIB', 'himSysHostsPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSysHostsNo'), ('SIEMENS-HP4KHIM-MIB', 'himSysHostsIPAddr'), ('SIEMENS-HP4KHIM-MIB', 'himSysHostsName'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnLTG'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnLTU'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnSlot'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnRufNr'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnBChl'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnStatus'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnIPPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnIPLTG'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnIPLTU'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnIPSlot'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnIPIfName'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnIPAddr'), ('SIEMENS-HP4KHIM-MIB', 'himSysWAMLConnIPNetMask'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_system_group = himSystemGroup.setStatus('current')
if mibBuilder.loadTexts:
himSystemGroup.setDescription('')
him_boards_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 12)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himBoardBasicPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himBoardBasicLTG'), ('SIEMENS-HP4KHIM-MIB', 'himBoardBasicLTU'), ('SIEMENS-HP4KHIM-MIB', 'himBoardBasicSlot'), ('SIEMENS-HP4KHIM-MIB', 'himBoardBasicFuncId'), ('SIEMENS-HP4KHIM-MIB', 'himBoardBasicCat'), ('SIEMENS-HP4KHIM-MIB', 'himBoardBasicName'), ('SIEMENS-HP4KHIM-MIB', 'himBoardBasicVOIPSec'), ('SIEMENS-HP4KHIM-MIB', 'himBoardBasicLWVar'), ('SIEMENS-HP4KHIM-MIB', 'himBoardBasicNoCirc'), ('SIEMENS-HP4KHIM-MIB', 'himBoardIPGwyIPAddr'), ('SIEMENS-HP4KHIM-MIB', 'himBoardIPSrcIPAddr'), ('SIEMENS-HP4KHIM-MIB', 'himBoardIPNetMask'), ('SIEMENS-HP4KHIM-MIB', 'himBoardIPDefRouter'), ('SIEMENS-HP4KHIM-MIB', 'himBoardIPCustLANIP'), ('SIEMENS-HP4KHIM-MIB', 'himBoardIPSTMI2IGWSubMask'), ('SIEMENS-HP4KHIM-MIB', 'himBoardIPDefGWIP'), ('SIEMENS-HP4KHIM-MIB', 'himBoardIPManStatIP'), ('SIEMENS-HP4KHIM-MIB', 'himBoardIPManStatPort'), ('SIEMENS-HP4KHIM-MIB', 'himBoardIPBckpServIP'), ('SIEMENS-HP4KHIM-MIB', 'himBoardIPBckpServPort'), ('SIEMENS-HP4KHIM-MIB', 'himBoardLocId'), ('SIEMENS-HP4KHIM-MIB', 'himBoardLocLoc'), ('SIEMENS-HP4KHIM-MIB', 'himBoardLocPhoneNo'), ('SIEMENS-HP4KHIM-MIB', 'himBoardLocFaxNo'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_boards_group = himBoardsGroup.setStatus('current')
if mibBuilder.loadTexts:
himBoardsGroup.setDescription('')
him_ipda_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 13)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himIPDABasicPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himIPDABasicLTU'), ('SIEMENS-HP4KHIM-MIB', 'himIPDABasicConnType'), ('SIEMENS-HP4KHIM-MIB', 'himIPDABasicBChanNo'), ('SIEMENS-HP4KHIM-MIB', 'himIPDABasicConvAMLaw'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAGenPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAGenSpeed'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAGenMode'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAGenPayConn'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAGenSigConn'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAGenIPNetAddr'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAGenIPNetMask'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAGenIPCCAAddr'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAGenIPCCBAddr'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAGenIPDefRoutAddr'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAGenIPSurvNetAddr'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAIPAccPtAddr'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAIPTAccPtAddr'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAIPAccPtRoutAddr'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAIPNetMaskNW'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAIPAccPtPriRoutAddr'), ('SIEMENS-HP4KHIM-MIB', 'himIPDAIPNetMaskDL'), ('SIEMENS-HP4KHIM-MIB', 'himIPDALocId'), ('SIEMENS-HP4KHIM-MIB', 'himIPDALocLoc'), ('SIEMENS-HP4KHIM-MIB', 'himIPDALocPhoneNo'), ('SIEMENS-HP4KHIM-MIB', 'himIPDALocFaxNo'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_ipda_group = himIPDAGroup.setStatus('current')
if mibBuilder.loadTexts:
himIPDAGroup.setDescription('')
him_info_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 14)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himSubagentLastMsgNo'), ('SIEMENS-HP4KHIM-MIB', 'himSubagentLastMsgText'), ('SIEMENS-HP4KHIM-MIB', 'himResultData'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_info_group = himInfoGroup.setStatus('current')
if mibBuilder.loadTexts:
himInfoGroup.setDescription('')
him_discovery_group = object_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 15)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himChanges'), ('SIEMENS-HP4KHIM-MIB', 'himDiscovPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himDiscovPabxMnemonic'), ('SIEMENS-HP4KHIM-MIB', 'himDiscovStatus'), ('SIEMENS-HP4KHIM-MIB', 'himDiscovMode'), ('SIEMENS-HP4KHIM-MIB', 'himDiscovTimDat'), ('SIEMENS-HP4KHIM-MIB', 'himDiscovErrTimDat'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_discovery_group = himDiscoveryGroup.setStatus('current')
if mibBuilder.loadTexts:
himDiscoveryGroup.setDescription('')
him_traps_group = notification_group((1, 3, 6, 1, 4, 1, 4329, 2, 51, 20, 1, 16)).setObjects(('SIEMENS-HP4KHIM-MIB', 'internalMessageHimSubagent'), ('SIEMENS-HP4KHIM-MIB', 'internalWarningHimSubagent'), ('SIEMENS-HP4KHIM-MIB', 'internalErrorHimSubagent'), ('SIEMENS-HP4KHIM-MIB', 'himDiscovSucc'), ('SIEMENS-HP4KHIM-MIB', 'himDiscovErr'), ('SIEMENS-HP4KHIM-MIB', 'himDiscovBusy'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
him_traps_group = himTrapsGroup.setStatus('current')
if mibBuilder.loadTexts:
himTrapsGroup.setDescription('')
him_trap_group = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21))
him_trap_variables = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 1))
him_trap_pabx_id = mib_scalar((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 1, 1), integer32())
if mibBuilder.loadTexts:
himTrapPabxId.setStatus('current')
if mibBuilder.loadTexts:
himTrapPabxId.setDescription('Unique identifier of a Hicom system.')
him_trap_pabx_mnemonic = mib_scalar((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 1, 2), display_string())
if mibBuilder.loadTexts:
himTrapPabxMnemonic.setStatus('current')
if mibBuilder.loadTexts:
himTrapPabxMnemonic.setDescription('Mnemonic name of the Hicom system.')
him_traps = mib_identifier((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2))
internal_message_him_subagent = notification_type((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2, 0)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himSubagentLastMsgNo'), ('SIEMENS-HP4KHIM-MIB', 'himSubagentLastMsgText'))
if mibBuilder.loadTexts:
internalMessageHimSubagent.setStatus('current')
if mibBuilder.loadTexts:
internalMessageHimSubagent.setDescription('An internalMessage trap contains an informational message generated by the subagent.')
internal_warning_him_subagent = notification_type((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2, 1)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himSubagentLastMsgNo'), ('SIEMENS-HP4KHIM-MIB', 'himSubagentLastMsgText'))
if mibBuilder.loadTexts:
internalWarningHimSubagent.setStatus('current')
if mibBuilder.loadTexts:
internalWarningHimSubagent.setDescription('An internalWarning trap contains a warning message generated by a subagent.')
internal_error_him_subagent = notification_type((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2, 2)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himSubagentLastMsgNo'), ('SIEMENS-HP4KHIM-MIB', 'himSubagentLastMsgText'))
if mibBuilder.loadTexts:
internalErrorHimSubagent.setStatus('current')
if mibBuilder.loadTexts:
internalErrorHimSubagent.setDescription('An internalError trap contains an error message generated by a subagent. After issuing this trap, the agent terminates.')
him_discov_succ = notification_type((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2, 10)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himTrapPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himTrapPabxMnemonic'))
if mibBuilder.loadTexts:
himDiscovSucc.setStatus('current')
if mibBuilder.loadTexts:
himDiscovSucc.setDescription('A himDiscovSucc trap indicates the successful termination of a discovery process.')
him_discov_err = notification_type((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2, 11)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himTrapPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himTrapPabxMnemonic'))
if mibBuilder.loadTexts:
himDiscovErr.setStatus('current')
if mibBuilder.loadTexts:
himDiscovErr.setDescription('A himDiscovErr trap signifies the unsuccessful termination of a discovery process.')
him_discov_busy = notification_type((1, 3, 6, 1, 4, 1, 4329, 2, 51, 21, 2, 19)).setObjects(('SIEMENS-HP4KHIM-MIB', 'himTrapPabxId'), ('SIEMENS-HP4KHIM-MIB', 'himTrapPabxMnemonic'))
if mibBuilder.loadTexts:
himDiscovBusy.setStatus('current')
if mibBuilder.loadTexts:
himDiscovBusy.setDescription('A himDiscovBusy trap signifies that a sw discovery process is running.')
mibBuilder.exportSymbols('SIEMENS-HP4KHIM-MIB', himBoardLocEntry=himBoardLocEntry, himIPDABasicLTU=himIPDABasicLTU, himIPDALocId=himIPDALocId, himMemScalingMaxUsed=himMemScalingMaxUsed, himMacAddrEntry=himMacAddrEntry, himSerialLineLogDevName=himSerialLineLogDevName, himIPDAGenIPNetMask=himIPDAGenIPNetMask, himDBConfHWMTSBdPerGSN=himDBConfHWMTSBdPerGSN, internalErrorHimSubagent=internalErrorHimSubagent, himDBConfSysOpMode=himDBConfSysOpMode, himSysHostsTable=himSysHostsTable, himLWOnCSIUEntry=himLWOnCSIUEntry, himIPDAGroup=himIPDAGroup, himDBConfSysLoc=himDBConfSysLoc, himTrapVariables=himTrapVariables, himLWOnProcInfoType=himLWOnProcInfoType, himSpecShelfDataNetworkAddress=himSpecShelfDataNetworkAddress, himProjPlanInfoCreationTime=himProjPlanInfoCreationTime, himDBConfSysID=himDBConfSysID, himTechInfoDate=himTechInfoDate, himSysWAMLConn=himSysWAMLConn, himSysLANCardsNetMask=himSysLANCardsNetMask, himIPDAIPAccPtAddr=himIPDAIPAccPtAddr, himSysWAMLConnPabxId=himSysWAMLConnPabxId, himMemScalingUsed=himMemScalingUsed, himTechInfoInfoNo=himTechInfoInfoNo, himDBConfSysDBApp=himDBConfSysDBApp, himSerialLineDevType=himSerialLineDevType, himMibConformance=himMibConformance, himDiscovPabxId=himDiscovPabxId, himPatchInfoTable=himPatchInfoTable, himBoardIPSrcIPAddr=himBoardIPSrcIPAddr, himSysHostsIPAddr=himSysHostsIPAddr, himHP4KVersion=himHP4KVersion, himSWUPeriphery=himSWUPeriphery, himTechFeatName=himTechFeatName, himDBConfSysClass2=himDBConfSysClass2, himSWVerOnProcEntry=himSWVerOnProcEntry, PYSNMP_MODULE_ID=hp4khim, himSWUBoardLWName=himSWUBoardLWName, himLWOnProcLWId=himLWOnProcLWId, himIPDAIPNetMaskDL=himIPDAIPNetMaskDL, himSWPkgVerPkgAbbr=himSWPkgVerPkgAbbr, himBoardLocTable=himBoardLocTable, himBoardIPBckpServPort=himBoardIPBckpServPort, himDBConfHWPBCPerDCL=himDBConfHWPBCPerDCL, himSpecShelfDataTable=himSpecShelfDataTable, himHWArchitecture=himHWArchitecture, himTechInfoTable=himTechInfoTable, himNotepadDataText=himNotepadDataText, himSWUBoardLWInterVer=himSWUBoardLWInterVer, himIPDABasicEntry=himIPDABasicEntry, himTrapPabxMnemonic=himTrapPabxMnemonic, himBoardIPGwyIPAddr=himBoardIPGwyIPAddr, himNotepadDataDate=himNotepadDataDate, himHWArch=himHWArch, himSWVerOnProcSrc=himSWVerOnProcSrc, himSpecShelfDataPabxId=himSpecShelfDataPabxId, himBoardIPManStatIP=himBoardIPManStatIP, himPSIOAssAssembly=himPSIOAssAssembly, himProjPlanInfoTable=himProjPlanInfoTable, himLWOnCSIUProc=himLWOnCSIUProc, himSWUPeripheryGroup=himSWUPeripheryGroup, himHWArchitectureType=himHWArchitectureType, himTechInfoExtraText=himTechInfoExtraText, himDBConfHWHwyPerMTSBd=himDBConfHWHwyPerMTSBd, himSCSIDevTable=himSCSIDevTable, himLWDataOnCB=himLWDataOnCB, himBoardBasicPabxId=himBoardBasicPabxId, himSWUProc2=himSWUProc2, himMarkFeatTrialRemDays=himMarkFeatTrialRemDays, himSWUBoardType=himSWUBoardType, himMarkFeatPabxId=himMarkFeatPabxId, himSWVerOnProcItemCodeNoPrefix=himSWVerOnProcItemCodeNoPrefix, himIPDABasicConvAMLaw=himIPDABasicConvAMLaw, himSwitchAPSName=himSwitchAPSName, himReplAMOPabxId=himReplAMOPabxId, himBoardBasicName=himBoardBasicName, HimPhoneNumber=HimPhoneNumber, himBoardBasicVOIPSec=himBoardBasicVOIPSec, himLWOnCSIUActual=himLWOnCSIUActual, himSCSIDevEntry=himSCSIDevEntry, himSWPkgVerStatus=himSWPkgVerStatus, himSpecShelfDataRemote=himSpecShelfDataRemote, himPSIOAssPabxId=himPSIOAssPabxId, himLWOnProcTable=himLWOnProcTable, himSalesFeatEntry=himSalesFeatEntry, himSalesFeatMarketPack=himSalesFeatMarketPack, himDBConfSysNo=himDBConfSysNo, himIPDAGenMode=himIPDAGenMode, himIPDAGenIPDefRoutAddr=himIPDAGenIPDefRoutAddr, himSysHostsEntry=himSysHostsEntry, himTechFeatures=himTechFeatures, himGeneralSwitchGroup=himGeneralSwitchGroup, himCabPabxId=himCabPabxId, himSpecShelfDataLTU=himSpecShelfDataLTU, himPatchInfoPatchNo=himPatchInfoPatchNo, himDBConfHWDIUCPerLTU=himDBConfHWDIUCPerLTU, himSWPkgVerTable=himSWPkgVerTable, himInfoGroup=himInfoGroup, himSysWAMLConnIPPabxId=himSysWAMLConnIPPabxId, himProjPlanInfoCreationDate=himProjPlanInfoCreationDate, himSerialLineBoardType=himSerialLineBoardType, himSWVerOnProcRevNo=himSWVerOnProcRevNo, himTechInfoPabxId=himTechInfoPabxId, himDiscovery=himDiscovery, himFeatures=himFeatures, himIPDAGenSpeed=himIPDAGenSpeed, himIPDAIPAccPtPriRoutAddr=himIPDAIPAccPtPriRoutAddr, himDBConfSysEntry=himDBConfSysEntry, himDBConfSysClass1=himDBConfSysClass1, himDBConfSysDevLine2=himDBConfSysDevLine2, himWelPgPabxId=himWelPgPabxId, himMarkFeatVer=himMarkFeatVer, himSysWAMLConnTable=himSysWAMLConnTable, himDBConfHWLTG=himDBConfHWLTG, himReplAMOTable=himReplAMOTable, himMarketingFeatures=himMarketingFeatures, himProjPlanInfoEntry=himProjPlanInfoEntry, himSalesFeatContract=himSalesFeatContract, himGeneralSwitchData=himGeneralSwitchData, himDBConfSysResType=himDBConfSysResType, himDiscovSucc=himDiscovSucc, hhimSWUBoardFirmware=hhimSWUBoardFirmware, himTechFeatEntry=himTechFeatEntry, himHWSWUMem1=himHWSWUMem1, himHWADPProc=himHWADPProc, himOperationMode=himOperationMode, himPSIOAssEntry=himPSIOAssEntry, himSwitchAPSEntry=himSwitchAPSEntry, himSerialLinePabxId=himSerialLinePabxId, himSysLANCardsTable=himSysLANCardsTable, himDBConfSysTable=himDBConfSysTable, himPatchInfoActADP=himPatchInfoActADP, himLWOnCBPBCAddr=himLWOnCBPBCAddr, himIPDABasicTable=himIPDABasicTable, himSCSIDevType=himSCSIDevType, himSWUBoardTable=himSWUBoardTable, himSWPkgVerInstAt=himSWPkgVerInstAt, himIPDALocEntry=himIPDALocEntry, himMarkFeatTable=himMarkFeatTable, himReplAMOSubsystem=himReplAMOSubsystem, himPatchInfoEntry=himPatchInfoEntry, himLWDataOnCBTable=himLWDataOnCBTable, himSysWAMLConnLTG=himSysWAMLConnLTG, himLWOnCSIUPabxId=himLWOnCSIUPabxId, himDBConfHWPBC=himDBConfHWPBC, himDBConfHWPorts=himDBConfHWPorts, himMacAddrInfoType=himMacAddrInfoType, DiscoveryModes=DiscoveryModes, himSysLANCardsIPAddr=himSysLANCardsIPAddr, himLWOnCSIULWNo=himLWOnCSIULWNo, himIPDAIPEntry=himIPDAIPEntry, himSpecShelfDataLocation=himSpecShelfDataLocation, himDBConfSysPabxId=himDBConfSysPabxId, himSpecShelfDataNetworkType=himSpecShelfDataNetworkType, himSWUBoardPEN=himSWUBoardPEN, himSalesFeatFree=himSalesFeatFree, himPatchInfo=himPatchInfo, himSysHostsNo=himSysHostsNo, himSWPkgVerEntry=himSWPkgVerEntry, himDiscovStatus=himDiscovStatus, himReplacedAMOs=himReplacedAMOs, himReplAMOInAPSDir=himReplAMOInAPSDir, himMacAddrProc=himMacAddrProc, himNotepadDataEntry=himNotepadDataEntry, himCabPhysAddr=himCabPhysAddr, himLWOnCSIUFileName=himLWOnCSIUFileName, himWelcomePageGroup=himWelcomePageGroup, himSerialLineNumber=himSerialLineNumber, himLWOnProcAss=himLWOnProcAss, himDBConfSysHWArch=himDBConfSysHWArch, himSWVerOnProcCountry=himSWVerOnProcCountry, himSwitchAPSPartNo=himSwitchAPSPartNo, himIPDAGenTable=himIPDAGenTable, himDBConfHWEntry=himDBConfHWEntry, himDBConfHWTable=himDBConfHWTable, himSCSIDevId=himSCSIDevId, himMacAddrTable=himMacAddrTable, himCabShelfNo=himCabShelfNo, himMemScalingTable=himMemScalingTable, himSWPkgVerPabxId=himSWPkgVerPabxId, himBoardLocLoc=himBoardLocLoc, himIPDAAPData=himIPDAAPData, himIPDAIPTAccPtAddr=himIPDAIPTAccPtAddr, himIPDAGenPabxId=himIPDAGenPabxId, himBoardBasicCat=himBoardBasicCat, himIPDAGenIPCCAAddr=himIPDAGenIPCCAAddr, himTechFeatPabxId=himTechFeatPabxId, himDBConfHWLines=himDBConfHWLines, himMarkFeatInstallDate=himMarkFeatInstallDate, himSysBasicTable=himSysBasicTable, himIPDAGenData=himIPDAGenData, himSysLANCardsEntry=himSysLANCardsEntry, himHWDataPabxId=himHWDataPabxId, himBoardBasicLTG=himBoardBasicLTG, himBoardLocFaxNo=himBoardLocFaxNo, himLWOnProcLWIdLP=himLWOnProcLWIdLP, himMemScalingPabxId=himMemScalingPabxId, himSCSIDevFirmware=himSCSIDevFirmware, himTechInfoNumber=himTechInfoNumber, himSpecGroup=himSpecGroup, himBoardBasicLWVar=himBoardBasicLWVar, himMarkFeatHWId=himMarkFeatHWId, himCabinetTable=himCabinetTable, himSWPkgVersionGroup=himSWPkgVersionGroup, himDBConfSysHWArchType=himDBConfSysHWArchType, himSwPkgVersion=himSwPkgVersion, himSysWAMLConnStatus=himSysWAMLConnStatus, hp4khim=hp4khim, himIPDA=himIPDA, himCabinetEntry=himCabinetEntry, himRevisionLevel=himRevisionLevel, himSWPkgVerVersion=himSWPkgVerVersion, himSpecSwitchData=himSpecSwitchData, himCabFrame=himCabFrame, himSysHostsName=himSysHostsName, himIPDAIPNetMaskNW=himIPDAIPNetMaskNW, himWelPgSysNo=himWelPgSysNo, himSWUBoardMode=himSWUBoardMode, himDiscovTimDat=himDiscovTimDat, himSystemRelease=himSystemRelease, himWelPgEntry=himWelPgEntry, himResultData=himResultData, himSysBasicEntry=himSysBasicEntry, himSerialLineTable=himSerialLineTable, himSysWAMLConnIPLTU=himSysWAMLConnIPLTU, himProjPlanPabxId=himProjPlanPabxId, himSCSIDevName=himSCSIDevName, himMemScalingEntry=himMemScalingEntry, himSysWAMLConnIPAddr=himSysWAMLConnIPAddr, himBoardIPBckpServIP=himBoardIPBckpServIP, himCentralSwitchData=himCentralSwitchData, himTechInfoTechnicalData=himTechInfoTechnicalData, himBoardBasicLTU=himBoardBasicLTU, himDBConfHWTableVer=himDBConfHWTableVer, himPSIOAssActual=himPSIOAssActual, himBoardBasicEntry=himBoardBasicEntry, himPSIOAssTable=himPSIOAssTable, himIPDABasicConnType=himIPDABasicConnType, himSWUBoardPabxId=himSWUBoardPabxId, himSubagentLastMsgNo=himSubagentLastMsgNo, himSWPkgVerPkgName=himSWPkgVerPkgName, himDBConfSysHWAss2=himDBConfSysHWAss2, himHWSWUProc2=himHWSWUProc2, internalMessageHimSubagent=internalMessageHimSubagent, himHWADPMem=himHWADPMem, HimPEN=HimPEN, himPSIOAssPEN=himPSIOAssPEN, himPatchInfoActHD=himPatchInfoActHD, himSalesFeatMarketPackId=himSalesFeatMarketPackId, himSalesFeatPabxId=himSalesFeatPabxId, himIPDAGenIPCCBAddr=himIPDAGenIPCCBAddr, himCentralSwitchGroup=himCentralSwitchGroup)
mibBuilder.exportSymbols('SIEMENS-HP4KHIM-MIB', himSWUBoardActual=himSWUBoardActual, himTechFeatTable=himTechFeatTable, himSWUBoardOverlayLTU=himSWUBoardOverlayLTU, himBoardBasicNoCirc=himBoardBasicNoCirc, himSysLANCardsStatus=himSysLANCardsStatus, himIPDAGenPayConn=himIPDAGenPayConn, himSWUBoardLWNo=himSWUBoardLWNo, himLWOnProcEntry=himLWOnProcEntry, himSystemGroup=himSystemGroup, himSpecShelfDataFrameType=himSpecShelfDataFrameType, himLWDataOnProc=himLWDataOnProc, himLWOnCBAss=himLWOnCBAss, himDBConfHWLTU=himDBConfHWLTU, himSwitchAPSCorrVer=himSwitchAPSCorrVer, himDiscovErr=himDiscovErr, himSwitchAPSPabxId=himSwitchAPSPabxId, himIPDAGenIPTable=himIPDAGenIPTable, himBoardBasicTable=himBoardBasicTable, himSwitchData=himSwitchData, himIPDAGenIPNetAddr=himIPDAGenIPNetAddr, himSysBasicPabxId=himSysBasicPabxId, himIPDALocTable=himIPDALocTable, himMemScalingUnit=himMemScalingUnit, himPatchInfoPabxId=himPatchInfoPabxId, himSysLANCardsPabxId=himSysLANCardsPabxId, himIPDALocLoc=himIPDALocLoc, himPSIOAssFirmware=himPSIOAssFirmware, himSysWAMLConnIPTable=himSysWAMLConnIPTable, himPatchInfoPatchGroup=himPatchInfoPatchGroup, himDBConfHWHDLCPerDCL=himDBConfHWHDLCPerDCL, himReplAMOAPS=himReplAMOAPS, himSysLANCardsType=himSysLANCardsType, himCabPid3=himCabPid3, himBoardIPNetMask=himBoardIPNetMask, himLWOnCSIUTable=himLWOnCSIUTable, himPatchInfoOpt=himPatchInfoOpt, himBoardBasicSlot=himBoardBasicSlot, himIPDALocPhoneNo=himIPDALocPhoneNo, himBoardIPDefGWIP=himBoardIPDefGWIP, himIPDAGenEntry=himIPDAGenEntry, himMacAddress=himMacAddress, himLWOnCSIUSlot=himLWOnCSIUSlot, himMarkFeatExpiryDate=himMarkFeatExpiryDate, himHWSWUMem2=himHWSWUMem2, himBoardIPEntry=himBoardIPEntry, himSWVersionGroup=himSWVersionGroup, himSpecShelfDataLTUC=himSpecShelfDataLTUC, himIPDAGenIPEntry=himIPDAGenIPEntry, siemens=siemens, himMibGroups=himMibGroups, himBoards=himBoards, himLWDataOnCBPabxId=himLWDataOnCBPabxId, HimYesNo=HimYesNo, himIPDABasicBChanNo=himIPDABasicBChanNo, himSCSIDevLoadDrive=himSCSIDevLoadDrive, himSWVerOnProcSysRel=himSWVerOnProcSysRel, himSWVerOnProcSWVer=himSWVerOnProcSWVer, himSWUBoardLWDate=himSWUBoardLWDate, himDBConfSysBaseApp=himDBConfSysBaseApp, himSwitchAPS=himSwitchAPS, himInfo=himInfo, himWelcomePage=himWelcomePage, himSWUProc1=himSWUProc1, himSysWAMLConnRufNr=himSysWAMLConnRufNr, himLWOnCSIUFileProd=himLWOnCSIUFileProd, himIPDAGenSigConn=himIPDAGenSigConn, himSysWAMLConnIPNetMask=himSysWAMLConnIPNetMask, himSWVerOnProcTable=himSWVerOnProcTable, himCabPartNo=himCabPartNo, himSalesFeatTable=himSalesFeatTable, himSysWAMLConnIPEntry=himSysWAMLConnIPEntry, himNotepadDataPabxId=himNotepadDataPabxId, iandcAdmin=iandcAdmin, internalWarningHimSubagent=internalWarningHimSubagent, himSWUBoardNominal=himSWUBoardNominal, himSysWAMLConnIPLTG=himSysWAMLConnIPLTG, himHWDataEntry=himHWDataEntry, himSysWAMLConnEntry=himSysWAMLConnEntry, himDiscovErrTimDat=himDiscovErrTimDat, himHWData=himHWData, himLWDataOnCBEntry=himLWDataOnCBEntry, himIPDALocFaxNo=himIPDALocFaxNo, himMacAddrIPDA=himMacAddrIPDA, himBoardBasicFuncId=himBoardBasicFuncId, himSysBasicDomain=himSysBasicDomain, himSysBasicNodeNo=himSysBasicNodeNo, himMacAddrPabxId=himMacAddrPabxId, himMarkFeatTrialModeAct=himMarkFeatTrialModeAct, himSysBasicLEGK=himSysBasicLEGK, himDBConfHWStdSIULine=himDBConfHWStdSIULine, himIPDAGenIPSurvNetAddr=himIPDAGenIPSurvNetAddr, himBoardsGroup=himBoardsGroup, himSalesFeatUsed=himSalesFeatUsed, himBoardIPCustLANIP=himBoardIPCustLANIP, himTechFeatId=himTechFeatId, himIPDAIPAccPtRoutAddr=himIPDAIPAccPtRoutAddr, himBoardIPSTMI2IGWSubMask=himBoardIPSTMI2IGWSubMask, himFeaturesGroup=himFeaturesGroup, himCabLTUNo=himCabLTUNo, himCabAddr=himCabAddr, himDiscovTable=himDiscovTable, himMemScalingStandard=himMemScalingStandard, himLWOnCBProdTime=himLWOnCBProdTime, himDBConfHWSIUPPerLTU=himDBConfHWSIUPPerLTU, himHWSWUProc1=himHWSWUProc1, himNotepadDataInfoNo=himNotepadDataInfoNo, himAPSPatchesGroup=himAPSPatchesGroup, himSWUBoardFunctId=himSWUBoardFunctId, himReplAMOEntry=himReplAMOEntry, himLWDataOnCSIU=himLWDataOnCSIU, himSpecShelfDataAddress=himSpecShelfDataAddress, himSysWAMLConnIPSlot=himSysWAMLConnIPSlot, himTrapPabxId=himTrapPabxId, himSubagentLastMsgText=himSubagentLastMsgText, himSWVerOnProcCountryCode=himSWVerOnProcCountryCode, himSpecShelfDataEntry=himSpecShelfDataEntry, himMacAddrCLan=himMacAddrCLan, himSwitchAPSTable=himSwitchAPSTable, himDBConfSysHWAss1=himDBConfSysHWAss1, himSWVersion=himSWVersion, himChanges=himChanges, himMarkFeatEntry=himMarkFeatEntry, himMemScalingAllocated=himMemScalingAllocated, himLWOnCBFileName=himLWOnCBFileName, himSWUBoardEntry=himSWUBoardEntry, himLWOnCSIUNominal=himLWOnCSIUNominal, himSCSIDevPabxId=himSCSIDevPabxId, himCabPid1=himCabPid1, himSerialLineType=himSerialLineType, HimShelfNWType=HimShelfNWType, himSysLANCardsBroadCast=himSysLANCardsBroadCast, himSysWAMLConnBChl=himSysWAMLConnBChl, himDBConfSysDevLine1=himDBConfSysDevLine1, himDiscovMode=himDiscovMode, himSerialLineSpeed=himSerialLineSpeed, himBoardLocPhoneNo=himBoardLocPhoneNo, DiscoveryStates=DiscoveryStates, himSalesFeatMarkForTrial=himSalesFeatMarkForTrial, himSysHostsPabxId=himSysHostsPabxId, himDBConfHWConfLine=himDBConfHWConfLine, himCabCabinet=himCabCabinet, himLWOnProcPabxId=himLWOnProcPabxId, himIPDAIPTable=himIPDAIPTable, himSWVerOnProcHP4KVer=himSWVerOnProcHP4KVer, himDBConfHWPabxId=himDBConfHWPabxId, himTraps=himTraps, himBoardIPManStatPort=himBoardIPManStatPort, himDBConfSys=himDBConfSys, himReplAMOName=himReplAMOName, himSerialLineEntry=himSerialLineEntry, himSWUBoardRev=himSWUBoardRev, himTechInfoEntry=himTechInfoEntry, himMemScalingSysMax=himMemScalingSysMax, himDiscovBusy=himDiscovBusy, himWelPgTable=himWelPgTable, himSWUMemory2=himSWUMemory2, himHWArchType=himHWArchType, himSysWAMLConnIPIfName=himSysWAMLConnIPIfName, himCabPid2=himCabPid2, himProjPlanInfoFile=himProjPlanInfoFile, HimPabxId=HimPabxId, himSysWAMLConnLTU=himSysWAMLConnLTU, himIPDABasicPabxId=himIPDABasicPabxId, HimSwitchNumber=HimSwitchNumber, himSystem=himSystem, himSysWAMLConnSlot=himSysWAMLConnSlot, himBoardIPTable=himBoardIPTable, himSWUMemory1=himSWUMemory1, himTrapsGroup=himTrapsGroup, himSwitchDataGroup=himSwitchDataGroup, himDiscoveryGroup=himDiscoveryGroup, himHWDataTable=himHWDataTable, himTrapGroup=himTrapGroup, himSWVerOnProcPabxId=himSWVerOnProcPabxId, himDBConfHWDBDim=himDBConfHWDBDim, himAPSPatches=himAPSPatches, himTechFeatState=himTechFeatState, himNotepadDataTable=himNotepadDataTable, himMarkFeatConfCode=himMarkFeatConfCode, himHWOpMode=himHWOpMode, himMarkFeatSerNo=himMarkFeatSerNo, himLWOnProcLWIdCMP=himLWOnProcLWIdCMP, himDBConfHW=himDBConfHW, himDiscovEntry=himDiscovEntry, himDiscovPabxMnemonic=himDiscovPabxMnemonic, himBoardIPDefRouter=himBoardIPDefRouter, himPatchInfoActBP=himPatchInfoActBP, himBoardLocId=himBoardLocId) |
'''
/profissional-de-saude/{idprofissional}/gerar-consulta/{dateTime}{
blueprint:paciente
template:profissionalDesSaudeGerarConsulta.html
dados:{
consulta{
nomeProfissional,
especialidade,
dateTime,
valor
}
}
*******pagseguro
}
''' | """
/profissional-de-saude/{idprofissional}/gerar-consulta/{dateTime}{
blueprint:paciente
template:profissionalDesSaudeGerarConsulta.html
dados:{
consulta{
nomeProfissional,
especialidade,
dateTime,
valor
}
}
*******pagseguro
}
""" |
# https://easily-champion-frog.dataos.io:7432/depot/collection
connection_regex = r"^(http|https):\/\/([\w.-]+(?:\:\d+)?(?:,[\w.-]+(?:\:\d+)?)*)(\/\w+)?(\/\w+)?(\?[\w.-]+=[\w.-]+(?:&[\w.-]+=[\w.-]+)*)?$"
apikey_regex = "\\w+"
| connection_regex = '^(http|https):\\/\\/([\\w.-]+(?:\\:\\d+)?(?:,[\\w.-]+(?:\\:\\d+)?)*)(\\/\\w+)?(\\/\\w+)?(\\?[\\w.-]+=[\\w.-]+(?:&[\\w.-]+=[\\w.-]+)*)?$'
apikey_regex = '\\w+' |
class Inventory:
def add(item, slot, stat, bag):
bag = {
"slot": str(slot),
"stat": int(stat)
}
return bag; | class Inventory:
def add(item, slot, stat, bag):
bag = {'slot': str(slot), 'stat': int(stat)}
return bag |
BASE_URL = "https://www.booking.com/"
HEADERS = [
"Hotel Name",
"Type",
"Location",
"Date Range",
"adults",
"rooms",
"Score",
"price",
]
| base_url = 'https://www.booking.com/'
headers = ['Hotel Name', 'Type', 'Location', 'Date Range', 'adults', 'rooms', 'Score', 'price'] |
# This file is part of ranger, the console file manager.
# License: GNU GPL version 3, see the file "AUTHORS" for details.
CONTEXT_KEYS = ['reset', 'error', 'badinfo',
'in_browser', 'in_statusbar', 'in_titlebar', 'in_console',
'in_pager', 'in_taskview',
'active_pane', 'inactive_pane',
'directory', 'file', 'hostname',
'executable', 'media', 'link', 'fifo', 'socket', 'device',
'video', 'audio', 'image', 'media', 'document', 'container',
'selected', 'empty', 'main_column', 'message', 'background',
'good', 'bad',
'space', 'permissions', 'owner', 'group', 'mtime', 'nlink',
'scroll', 'all', 'bot', 'top', 'percentage', 'filter',
'flat', 'marked', 'tagged', 'tag_marker', 'cut', 'copied',
'help_markup', # COMPAT
'seperator', 'key', 'special', 'border', # COMPAT
'title', 'text', 'highlight', 'bars', 'quotes', 'tab', 'loaded',
'keybuffer',
'infostring',
'vcsfile', 'vcsremote', 'vcsinfo', 'vcscommit', 'vcsdate',
'vcsconflict', 'vcschanged', 'vcsunknown', 'vcsignored',
'vcsstaged', 'vcssync', 'vcsnone', 'vcsbehind', 'vcsahead', 'vcsdiverged']
class Context(object):
def __init__(self, keys):
# set all given keys to True
d = self.__dict__
for key in keys:
d[key] = True
# set all keys to False
for key in CONTEXT_KEYS:
setattr(Context, key, False)
| context_keys = ['reset', 'error', 'badinfo', 'in_browser', 'in_statusbar', 'in_titlebar', 'in_console', 'in_pager', 'in_taskview', 'active_pane', 'inactive_pane', 'directory', 'file', 'hostname', 'executable', 'media', 'link', 'fifo', 'socket', 'device', 'video', 'audio', 'image', 'media', 'document', 'container', 'selected', 'empty', 'main_column', 'message', 'background', 'good', 'bad', 'space', 'permissions', 'owner', 'group', 'mtime', 'nlink', 'scroll', 'all', 'bot', 'top', 'percentage', 'filter', 'flat', 'marked', 'tagged', 'tag_marker', 'cut', 'copied', 'help_markup', 'seperator', 'key', 'special', 'border', 'title', 'text', 'highlight', 'bars', 'quotes', 'tab', 'loaded', 'keybuffer', 'infostring', 'vcsfile', 'vcsremote', 'vcsinfo', 'vcscommit', 'vcsdate', 'vcsconflict', 'vcschanged', 'vcsunknown', 'vcsignored', 'vcsstaged', 'vcssync', 'vcsnone', 'vcsbehind', 'vcsahead', 'vcsdiverged']
class Context(object):
def __init__(self, keys):
d = self.__dict__
for key in keys:
d[key] = True
for key in CONTEXT_KEYS:
setattr(Context, key, False) |
class UnauthorizedEvalError(ValueError):
pass
class UnauthorizedNameAccess(UnauthorizedEvalError, NameError):
pass
class UnauthorizedCall(UnauthorizedEvalError):
pass
class UnauthorizedAttributeAccess(UnauthorizedEvalError):
pass
class UnauthorizedSubscript(UnauthorizedEvalError):
pass
| class Unauthorizedevalerror(ValueError):
pass
class Unauthorizednameaccess(UnauthorizedEvalError, NameError):
pass
class Unauthorizedcall(UnauthorizedEvalError):
pass
class Unauthorizedattributeaccess(UnauthorizedEvalError):
pass
class Unauthorizedsubscript(UnauthorizedEvalError):
pass |
class Macro:
def __init__(self, actions, check_sticky):
self.actions = actions
self.check_sticky = check_sticky
def step(self, current_sticky_actions):
while len(self.actions) > 0:
action = self.actions.pop(0)
if self.check_sticky and action not in current_sticky_actions:
return action
elif not self.check_sticky:
return action
return None
class MacroList:
def __init__(self, game_cache):
self.macros = []
self.gc = game_cache
def step(self):
if len(self.macros) == 0:
return None
action = self.macros[0].step(self.gc.current_obs["sticky_actions"])
if action is None:
del self.macros[0]
return action
def add_macro(self, actions, check_sticky):
self.macros.append(Macro(list(actions), check_sticky))
return self.step()
| class Macro:
def __init__(self, actions, check_sticky):
self.actions = actions
self.check_sticky = check_sticky
def step(self, current_sticky_actions):
while len(self.actions) > 0:
action = self.actions.pop(0)
if self.check_sticky and action not in current_sticky_actions:
return action
elif not self.check_sticky:
return action
return None
class Macrolist:
def __init__(self, game_cache):
self.macros = []
self.gc = game_cache
def step(self):
if len(self.macros) == 0:
return None
action = self.macros[0].step(self.gc.current_obs['sticky_actions'])
if action is None:
del self.macros[0]
return action
def add_macro(self, actions, check_sticky):
self.macros.append(macro(list(actions), check_sticky))
return self.step() |
# this program caluclate the sum from 1 to a given number
target_number = int(input("Enter a number up to which you wan to calculate the sum from 1: "))
sum_of_numbers = target_number
for n in range(1,target_number):
sum_of_numbers += n
print(f"The total sum of 1 to {target_number} is {sum_of_numbers}")
| target_number = int(input('Enter a number up to which you wan to calculate the sum from 1: '))
sum_of_numbers = target_number
for n in range(1, target_number):
sum_of_numbers += n
print(f'The total sum of 1 to {target_number} is {sum_of_numbers}') |
class Solution:
def solve(self, s):
last_char = ""
cur_streak_length = 0
best_ans = 0
for i in range(len(s)):
cur_char = s[i]
if cur_char == last_char:
cur_streak_length += 1
else:
cur_streak_length = 1
last_char = cur_char
best_ans = max(best_ans, cur_streak_length)
return best_ans
| class Solution:
def solve(self, s):
last_char = ''
cur_streak_length = 0
best_ans = 0
for i in range(len(s)):
cur_char = s[i]
if cur_char == last_char:
cur_streak_length += 1
else:
cur_streak_length = 1
last_char = cur_char
best_ans = max(best_ans, cur_streak_length)
return best_ans |
#
# PySNMP MIB module STN-POLICY-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/STN-POLICY-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:11:31 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint")
InterfaceIndex, = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, Gauge32, TimeTicks, Integer32, Counter64, ObjectIdentity, iso, IpAddress, MibIdentifier, Counter32, NotificationType, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "Gauge32", "TimeTicks", "Integer32", "Counter64", "ObjectIdentity", "iso", "IpAddress", "MibIdentifier", "Counter32", "NotificationType", "Bits")
TextualConvention, TruthValue, RowStatus, DisplayString, TimeStamp = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "TruthValue", "RowStatus", "DisplayString", "TimeStamp")
stnSystems, = mibBuilder.importSymbols("SPRING-TIDE-NETWORKS-SMI", "stnSystems")
stnRouterIndex, = mibBuilder.importSymbols("STN-ROUTER-MIB", "stnRouterIndex")
stnPm = ModuleIdentity((1, 3, 6, 1, 4, 1, 3551, 2, 11))
stnPm.setRevisions(('1900-05-12 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: stnPm.setRevisionsDescriptions(('This MIB module describes managed objects of Spring Tide Networks policy module .',))
if mibBuilder.loadTexts: stnPm.setLastUpdated('0012060000Z')
if mibBuilder.loadTexts: stnPm.setOrganization('Spring Tide Networks, Inc.')
if mibBuilder.loadTexts: stnPm.setContactInfo(' Spring Tide Networks, Inc. Customer Service Postal: 3 Clock Tower Place Maynard, MA 01754 Tel: 1 888-786-4357 Email: [email protected] ')
if mibBuilder.loadTexts: stnPm.setDescription('Added stnPmClassTable')
stnPmObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1))
stnPmMibConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 2))
stnPmService = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1))
stnPmPolicy = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2))
stnPmPreference = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3))
stnPmIPsec = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4))
stnPmEncaps = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5))
stnPmManualSa = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6))
stnPmMarker = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7))
stnPmProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8))
stnPmQueue = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9))
stnPmTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10))
stnPmFirewall = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11))
stnPmFirewallAction = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12))
stnPmServiceList = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13))
stnPmSLService = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14))
stnPmClass = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15))
stnPMProxyTunnel = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 16))
stnPmFirewallTrap = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 1))
stnPmQosTrap = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2))
stnPmFirewallTrapVars = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 1, 1))
stnPmFirewallNotificationPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 1, 2))
stnPmFirewallNotification = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 1, 2, 0))
stnPmQosTrapVars = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 1))
stnPmQosNotificationPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 2))
stnPmQosNotification = MibIdentifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 2, 0))
class StnPmPolicyMatchType(TextualConvention, Integer32):
description = 'Types of match criteria for policy'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))
namedValues = NamedValues(("any", 1), ("single", 2), ("range", 3), ("dynamic", 4), ("subnet", 5))
class StnPmSelectorType(TextualConvention, Integer32):
description = 'Selector type to use for connection'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("policy", 1), ("packet", 2))
class StnPmAuthAlg(TextualConvention, Integer32):
description = 'Types of authentication algorithms'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("none", 1), ("hmac-md5", 2), ("hmac-sha", 3))
class StnPmEncrAlg(TextualConvention, Integer32):
description = 'Types of encryption algorithms'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("none", 1), ("des", 2), ("des3", 3))
class StnPmDirection(TextualConvention, Integer32):
description = 'Types of directions'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("inbound", 1), ("outbound", 2))
class StnPmBitRate(TextualConvention, Integer32):
description = 'A data rate in bits/second.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(0, 2147483647)
stnPmServiceTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1), )
if mibBuilder.loadTexts: stnPmServiceTable.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceTable.setDescription('A list of PM service entries.')
stnPmServiceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmServiceIndex"))
if mibBuilder.loadTexts: stnPmServiceEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceEntry.setDescription('Entry contains information about a particular policy manager service.')
stnPmServiceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmServiceIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceIndex.setDescription('Index into service table')
stnPmServiceName = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmServiceName.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceName.setDescription('Name of service')
stnPmServiceIdleTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmServiceIdleTimeout.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceIdleTimeout.setDescription('Idle timeout for service')
stnPmServiceNumPolicies = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmServiceNumPolicies.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceNumPolicies.setDescription('Number of policies in this service')
stnPmServiceEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmServiceEnabled.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceEnabled.setDescription('Flag to indicate if service is enabled')
stnPmServiceType = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("vpn", 1), ("firewall", 2), ("ip-fileter", 3), ("forwarding", 4), ("qos", 5), ("mpls", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmServiceType.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceType.setDescription('Type of service')
stnPmServiceFirewallID = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmServiceFirewallID.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceFirewallID.setDescription("Instance of service's firewall record")
stnPmPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1), )
if mibBuilder.loadTexts: stnPmPolicyTable.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyTable.setDescription('A list of policy entries.')
stnPmPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmPolicyServiceIndex"), (0, "STN-POLICY-MIB", "stnPmPolicyIndex"))
if mibBuilder.loadTexts: stnPmPolicyEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyEntry.setDescription('Entry contains information about a particular policy.')
stnPmPolicyServiceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyServiceIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyServiceIndex.setDescription('Service index of policy')
stnPmPolicyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyIndex.setDescription('Policy index of policy')
stnPmPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyName.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyName.setDescription('Policy name')
stnPmPolicySrcAddrMatchType = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 4), StnPmPolicyMatchType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicySrcAddrMatchType.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicySrcAddrMatchType.setDescription('Type of match for source address')
stnPmPolicySrcAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicySrcAddr.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicySrcAddr.setDescription('Source address to match')
stnPmPolicySrcMask = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicySrcMask.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicySrcMask.setDescription('Source IP netmask to match')
stnPmPolicySrcEndAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 7), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicySrcEndAddr.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicySrcEndAddr.setDescription('End of source address range to match')
stnPmPolicyDestAddrMatchType = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 8), StnPmPolicyMatchType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyDestAddrMatchType.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyDestAddrMatchType.setDescription('Type of match for source address')
stnPmPolicyDestAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 9), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyDestAddr.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyDestAddr.setDescription('Source address to match')
stnPmPolicyDestMask = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 10), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyDestMask.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyDestMask.setDescription('Source IP netmask to match')
stnPmPolicyDestEndAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 11), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyDestEndAddr.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyDestEndAddr.setDescription('End of source address range to match')
stnPmPolicySrcPortMatchType = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 12), StnPmPolicyMatchType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicySrcPortMatchType.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicySrcPortMatchType.setDescription('Type of match for source port')
stnPmPolicySrcPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicySrcPort.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicySrcPort.setDescription('Source port to match')
stnPmPolicySrcEndPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicySrcEndPort.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicySrcEndPort.setDescription('End of source port range to match')
stnPmPolicyDestPortMatchType = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 15), StnPmPolicyMatchType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyDestPortMatchType.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyDestPortMatchType.setDescription('Type of match for destination port')
stnPmPolicyDestPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyDestPort.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyDestPort.setDescription('Destination port to match')
stnPmPolicyDestEndPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyDestEndPort.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyDestEndPort.setDescription('End of destination port range to match')
stnPmPolicyProtocolMatchType = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 18), StnPmPolicyMatchType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyProtocolMatchType.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyProtocolMatchType.setDescription('Type of match for protocol')
stnPmPolicyProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 6, 17, 50, 51, 108))).clone(namedValues=NamedValues(("icmp", 1), ("tcp", 6), ("udp", 17), ("esp", 50), ("ah", 51), ("ipcomp", 108)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyProtocol.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyProtocol.setDescription('Protocol to match')
stnPmPolicyAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("deny", 1), ("permit", 2), ("secure", 3), ("encaps", 4), ("reject", 5), ("fec", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyAction.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyAction.setDescription('Type of action to take upon policy match')
stnPmPolicyActionID = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 21), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyActionID.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyActionID.setDescription('Configuration ID of action record')
stnPmPolicyDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 22), StnPmDirection()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyDirection.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyDirection.setDescription('Direction of policy')
stnPmPolicyCreateMirror = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 23), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyCreateMirror.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyCreateMirror.setDescription('Mirror policy flag')
stnPmPolicySrcAddrSelector = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 24), StnPmSelectorType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicySrcAddrSelector.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicySrcAddrSelector.setDescription('Source selector to choose for policy matching')
stnPmPolicyDestAddrSelector = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 25), StnPmSelectorType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyDestAddrSelector.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyDestAddrSelector.setDescription('Destination selector to choose for policy matching')
stnPmPolicyEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 26), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyEnabled.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyEnabled.setDescription('Flag to indicate if policy is enabled')
stnPmPolicyMatches = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 27), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyMatches.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyMatches.setDescription('Number of times policy search matched this policy')
stnPmPolicyMisses = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 28), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyMisses.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyMisses.setDescription('Number of times policy search did not match this policy')
stnPmPolicyMarkedOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 29), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyMarkedOctets.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyMarkedOctets.setDescription('Number of octets that have been marked for this policy.')
stnPmPolicyMarkedPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 30), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyMarkedPkts.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyMarkedPkts.setDescription('Number of packets that have been marked for this policy.')
stnPmPolicyIcmpTypes = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 31), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyIcmpTypes.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyIcmpTypes.setDescription('ICMP Types matching the policy entry expressed as bit-map.')
stnPmPolicyTosByteMatchType = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 32), StnPmPolicyMatchType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyTosByteMatchType.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyTosByteMatchType.setDescription('Type of match for TOS Byte')
stnPmPolicyTosByteValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 33), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyTosByteValue.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyTosByteValue.setDescription('Value containing bits to set in TOS Byte')
stnPmPolicyTosByteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 34), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyTosByteMask.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyTosByteMask.setDescription('Mask indicating bits to match in TOS byte')
stnPmPolicyMarkerID = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 35), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyMarkerID.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyMarkerID.setDescription('Configuration ID of marker to apply')
stnPmPolicyTxclassID = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 36), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPolicyTxclassID.setStatus('current')
if mibBuilder.loadTexts: stnPmPolicyTxclassID.setDescription('Configuration ID of transmit class to assign packet to')
stnPmPreferenceTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1), )
if mibBuilder.loadTexts: stnPmPreferenceTable.setStatus('current')
if mibBuilder.loadTexts: stnPmPreferenceTable.setDescription('Entry contains information about a particular preference entry.')
stnPmPreferenceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmPreferenceIndex"))
if mibBuilder.loadTexts: stnPmPreferenceEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmPreferenceEntry.setDescription('Entry contains information about a particular preference.')
stnPmPreferenceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPreferenceIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmPreferenceIndex.setDescription('Preference index')
stnPmPreferenceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPreferenceNum.setStatus('current')
if mibBuilder.loadTexts: stnPmPreferenceNum.setDescription('Preference number')
stnPmPreferenceAhAlg = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 3), StnPmAuthAlg()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPreferenceAhAlg.setStatus('current')
if mibBuilder.loadTexts: stnPmPreferenceAhAlg.setDescription('AH authentication algorithm')
stnPmPreferenceEspAuthAlg = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 4), StnPmAuthAlg()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPreferenceEspAuthAlg.setStatus('current')
if mibBuilder.loadTexts: stnPmPreferenceEspAuthAlg.setDescription('ESP authentication algorithm')
stnPmPreferenceEspEncrAlg = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 5), StnPmEncrAlg()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPreferenceEspEncrAlg.setStatus('current')
if mibBuilder.loadTexts: stnPmPreferenceEspEncrAlg.setDescription('ESP encryption algorithm')
stnPmPreferenceLifeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPreferenceLifeTime.setStatus('current')
if mibBuilder.loadTexts: stnPmPreferenceLifeTime.setDescription('Life time in minutes')
stnPmPreferenceLifeBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPreferenceLifeBytes.setStatus('current')
if mibBuilder.loadTexts: stnPmPreferenceLifeBytes.setDescription('Life value in kilobytes')
stnPmPreferenceIPsecID = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPreferenceIPsecID.setStatus('current')
if mibBuilder.loadTexts: stnPmPreferenceIPsecID.setDescription('ID of corresponding IPSEC record')
stnPmPreferencePFSGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 5))).clone(namedValues=NamedValues(("group1", 1), ("group2", 2), ("group5", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPreferencePFSGroup.setStatus('current')
if mibBuilder.loadTexts: stnPmPreferencePFSGroup.setDescription('ESP encryption algorithm')
stnPmPreferenceDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmPreferenceDescription.setStatus('current')
if mibBuilder.loadTexts: stnPmPreferenceDescription.setDescription('Description of preference')
stnPmIPsecTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1), )
if mibBuilder.loadTexts: stnPmIPsecTable.setStatus('current')
if mibBuilder.loadTexts: stnPmIPsecTable.setDescription('Entry contains information about a particular IPsec entry.')
stnPmIPsecEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmIPsecIndex"))
if mibBuilder.loadTexts: stnPmIPsecEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmIPsecEntry.setDescription('Entry contains information about a particular IPsec entry.')
stnPmIPsecIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmIPsecIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmIPsecIndex.setDescription('IPsec index')
stnPmIPsecPeerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmIPsecPeerIpAddr.setStatus('current')
if mibBuilder.loadTexts: stnPmIPsecPeerIpAddr.setDescription('IP address of peer for tunnel endpoint')
stnPmIPsecLocalIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmIPsecLocalIpAddr.setStatus('current')
if mibBuilder.loadTexts: stnPmIPsecLocalIpAddr.setDescription('Local IP address for tunnel endpoint')
stnPmIPsecMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("tunnel", 1), ("transport", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmIPsecMode.setStatus('current')
if mibBuilder.loadTexts: stnPmIPsecMode.setDescription('Type of IPsec connection to create')
stnPmIPsecKeyNegType = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ike", 1), ("manual", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmIPsecKeyNegType.setStatus('current')
if mibBuilder.loadTexts: stnPmIPsecKeyNegType.setDescription('Key negotiation method for IPsec Sa')
stnPmIPsecName = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmIPsecName.setStatus('current')
if mibBuilder.loadTexts: stnPmIPsecName.setDescription('Description of IPsec entry')
stnPmIPsecNumManualSAs = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmIPsecNumManualSAs.setStatus('current')
if mibBuilder.loadTexts: stnPmIPsecNumManualSAs.setDescription('Number of manual SAs assigned to this IPsec record')
stnPmIPsecNumPreferences = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmIPsecNumPreferences.setStatus('current')
if mibBuilder.loadTexts: stnPmIPsecNumPreferences.setDescription('Number of preferences assigned to this IPsec record')
stnPmIPsecReplayDetectionEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 9), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmIPsecReplayDetectionEnabled.setStatus('current')
if mibBuilder.loadTexts: stnPmIPsecReplayDetectionEnabled.setDescription('Enable Replay detection.')
stnPmEncapsTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1), )
if mibBuilder.loadTexts: stnPmEncapsTable.setStatus('current')
if mibBuilder.loadTexts: stnPmEncapsTable.setDescription('Entry contains information about a particular Encaps entry.')
stnPmEncapsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmEncapsIndex"))
if mibBuilder.loadTexts: stnPmEncapsEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmEncapsEntry.setDescription('Entry contains information about a particular Encaps entry.')
stnPmEncapsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmEncapsIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmEncapsIndex.setDescription('Encaps index')
stnPmEncapsPeerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmEncapsPeerIpAddr.setStatus('current')
if mibBuilder.loadTexts: stnPmEncapsPeerIpAddr.setDescription('IP address of peer for tunnel endpoint')
stnPmEncapsLocalIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmEncapsLocalIpAddr.setStatus('current')
if mibBuilder.loadTexts: stnPmEncapsLocalIpAddr.setDescription('Local IP address for tunnel endpoint')
stnPmEncapsType = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ip-ip", 1), ("ip-gre", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmEncapsType.setStatus('current')
if mibBuilder.loadTexts: stnPmEncapsType.setDescription('Type of Encaps connection to create')
stnPmEncapsGREKey = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmEncapsGREKey.setStatus('current')
if mibBuilder.loadTexts: stnPmEncapsGREKey.setDescription('GRE key')
stnPmEncapsName = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmEncapsName.setStatus('current')
if mibBuilder.loadTexts: stnPmEncapsName.setDescription('Description of Encaps entry')
stnPmManualSaTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1), )
if mibBuilder.loadTexts: stnPmManualSaTable.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaTable.setDescription('Entry contains information about a particular ManualSa entry.')
stnPmManualSaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmManualSaIndex"))
if mibBuilder.loadTexts: stnPmManualSaEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaEntry.setDescription('Entry contains information about a particular ManualSa entry.')
stnPmManualSaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmManualSaIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaIndex.setDescription('ManualSa index')
stnPmManualSaPeerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmManualSaPeerIpAddr.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaPeerIpAddr.setDescription('IP address of peer for tunnel endpoint')
stnPmManualSaDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 3), StnPmDirection()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmManualSaDirection.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaDirection.setDescription('Direction of manual SA')
stnPmManualSaSPI = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmManualSaSPI.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaSPI.setDescription('SPI of manual SA')
stnPmManualSaAhAlg = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 5), StnPmAuthAlg()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmManualSaAhAlg.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaAhAlg.setDescription('AH authentication algorithm')
stnPmManualSaAhKey = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmManualSaAhKey.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaAhKey.setDescription('Authentication key for AH protocol')
stnPmManualSaEspAuthAlg = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 7), StnPmAuthAlg()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmManualSaEspAuthAlg.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaEspAuthAlg.setDescription('ESP authentication algorithm')
stnPmManualSaEspAuthKey = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmManualSaEspAuthKey.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaEspAuthKey.setDescription('Authentication key for ESP protocol')
stnPmManualSaEspEncrAlg = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 9), StnPmEncrAlg()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmManualSaEspEncrAlg.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaEspEncrAlg.setDescription('ESP encryption algorithm')
stnPmManualSaEspEncrKey = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmManualSaEspEncrKey.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaEspEncrKey.setDescription('Encryption key for ESP protocol')
stnPmManualSaIPsecID = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmManualSaIPsecID.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaIPsecID.setDescription('Index or corresponding IPsec record')
stnPmManualSaDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmManualSaDescription.setStatus('current')
if mibBuilder.loadTexts: stnPmManualSaDescription.setDescription('Description of manual SA entry')
stnPmQosLatestFlowCB = MibScalar((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmQosLatestFlowCB.setStatus('current')
if mibBuilder.loadTexts: stnPmQosLatestFlowCB.setDescription('Value of the FlowCB Created')
stnPmQosLastDroppedPacket = MibScalar((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmQosLastDroppedPacket.setStatus('current')
if mibBuilder.loadTexts: stnPmQosLastDroppedPacket.setDescription('Value of a dropped packet')
stnPmQosFlowCBCreated = NotificationType((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 2, 0, 1)).setObjects(("STN-ROUTER-MIB", "stnRouterIndex"), ("STN-POLICY-MIB", "stnPmQosLatestFlowCB"))
if mibBuilder.loadTexts: stnPmQosFlowCBCreated.setStatus('current')
if mibBuilder.loadTexts: stnPmQosFlowCBCreated.setDescription("This trap is generated by Policy manager's QoS subsystem. This SNMP trap is generated in response to QoS creating and installing a flow.")
stnPmQosFlowCBRemoved = NotificationType((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 2, 0, 2)).setObjects(("STN-ROUTER-MIB", "stnRouterIndex"), ("STN-POLICY-MIB", "stnPmQosLatestFlowCB"))
if mibBuilder.loadTexts: stnPmQosFlowCBRemoved.setStatus('current')
if mibBuilder.loadTexts: stnPmQosFlowCBRemoved.setDescription("This trap is generated by Policy manager's QoS subsystem. This SNMP trap is generated in response to QoS removing a flow.")
stnPmQosShapingPacketDiscard = NotificationType((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 2, 0, 3)).setObjects(("STN-ROUTER-MIB", "stnRouterIndex"), ("STN-POLICY-MIB", "stnPmQosLastDroppedPacket"))
if mibBuilder.loadTexts: stnPmQosShapingPacketDiscard.setStatus('current')
if mibBuilder.loadTexts: stnPmQosShapingPacketDiscard.setDescription("This trap is generated by Policy manager's QoS subsystem. This SNMP trap is generated in response to QoS dropping a packet due to rate shaping.")
stnPmQosThresholdPacketDiscard = NotificationType((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 2, 0, 4)).setObjects(("STN-ROUTER-MIB", "stnRouterIndex"), ("STN-POLICY-MIB", "stnPmQosLastDroppedPacket"))
if mibBuilder.loadTexts: stnPmQosThresholdPacketDiscard.setStatus('current')
if mibBuilder.loadTexts: stnPmQosThresholdPacketDiscard.setDescription("This trap is generated by Policy manager's QoS subsystem. This SNMP trap is generated in response to QoS dropping a packet due to exceeding a threshold.")
stnPmMarkerTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1), )
if mibBuilder.loadTexts: stnPmMarkerTable.setStatus('current')
if mibBuilder.loadTexts: stnPmMarkerTable.setDescription('Entry contains information about a particular Marker entry.')
stnPmMarkerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmMarkerIndex"))
if mibBuilder.loadTexts: stnPmMarkerEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmMarkerEntry.setDescription('Entry contains information about a particular Marker entry.')
stnPmMarkerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmMarkerIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmMarkerIndex.setDescription('Marker index')
stnPmMarkerName = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmMarkerName.setStatus('current')
if mibBuilder.loadTexts: stnPmMarkerName.setDescription('Description of Marker entry')
stnPmMarkerByteValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmMarkerByteValue.setStatus('current')
if mibBuilder.loadTexts: stnPmMarkerByteValue.setDescription('Value that the masked TOS byte must match')
stnPmMarkerByteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmMarkerByteMask.setStatus('current')
if mibBuilder.loadTexts: stnPmMarkerByteMask.setDescription('Mask applied to TOS byte for match')
stnPmMarkerMarkedOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmMarkerMarkedOctets.setStatus('current')
if mibBuilder.loadTexts: stnPmMarkerMarkedOctets.setDescription('Number of octets marked by this Marker.')
stnPmMarkerMarkedPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmMarkerMarkedPkts.setStatus('current')
if mibBuilder.loadTexts: stnPmMarkerMarkedPkts.setDescription('Number of packets marked by this Marker.')
stnPmProfileTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1), )
if mibBuilder.loadTexts: stnPmProfileTable.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileTable.setDescription('Entry contains information about a particular Profile entry.')
stnPmProfileEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmProfileIndex"))
if mibBuilder.loadTexts: stnPmProfileEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileEntry.setDescription('Entry contains information about a particular Profile entry.')
stnPmProfileIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileIndex.setDescription('Profile index')
stnPmProfileEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileEnabled.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileEnabled.setDescription('Flag to indicate if profile is enabled')
stnPmProfileName = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileName.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileName.setDescription('Description of Profile entry')
stnPmProfileCommittedRate = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileCommittedRate.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileCommittedRate.setDescription('Rate in kbits per second the user or network is committed to transmit.')
stnPmProfileCommittedBurst = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileCommittedBurst.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileCommittedBurst.setDescription('Maximum number of kbytes in a single transmission burst')
stnPmProfileExcessRate = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileExcessRate.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileExcessRate.setDescription('Maximum acceptable rate in kbits per second the user or network is committed to transmit')
stnPmProfileExcessBurst = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileExcessBurst.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileExcessBurst.setDescription('Maximum number of bytes in a single maximum transmission burst')
stnPmProfileConformAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("deny", 1), ("permit", 2), ("markandforward", 3), ("shape", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileConformAction.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileConformAction.setDescription('Type of action to take for conformant frames')
stnPmProfileConformActionID = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileConformActionID.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileConformActionID.setDescription('Configuration ID of conform action record')
stnPmProfileCautionAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("deny", 1), ("permit", 2), ("markandforward", 3), ("shape", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileCautionAction.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileCautionAction.setDescription('Type of action to take for caution frames')
stnPmProfileConformOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileConformOctets.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileConformOctets.setDescription('Number of octets in conformant frames that have arrived.')
stnPmProfileConformPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileConformPkts.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileConformPkts.setDescription('Number of conformant frames that have arrived.')
stnPmProfileCautionActionID = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileCautionActionID.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileCautionActionID.setDescription('Configuration ID of caution action record')
stnPmProfileExceedAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("deny", 1), ("permit", 2), ("markandforward", 3), ("shape", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileExceedAction.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileExceedAction.setDescription('Type of action to take for exceeding frames')
stnPmProfileCautionOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileCautionOctets.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileCautionOctets.setDescription('Number of octets in caution frames that have arrived.')
stnPmProfileCautionPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 16), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileCautionPkts.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileCautionPkts.setDescription('Number of caution frames that have arrived.')
stnPmProfileExceedActionID = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileExceedActionID.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileExceedActionID.setDescription('Configuration ID of exceeding action record')
stnPmProfileExceedOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 18), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileExceedOctets.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileExceedOctets.setDescription('Number of octets in exceeding frames that have arrived.')
stnPmProfileExceedPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 19), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmProfileExceedPkts.setStatus('current')
if mibBuilder.loadTexts: stnPmProfileExceedPkts.setDescription('Number of exceeding frames that have arrived.')
stnPmQueueTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1), )
if mibBuilder.loadTexts: stnPmQueueTable.setStatus('current')
if mibBuilder.loadTexts: stnPmQueueTable.setDescription('Entry contains information about a particular Queue entry.')
stnPmQueueEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmQueueIndex"))
if mibBuilder.loadTexts: stnPmQueueEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmQueueEntry.setDescription('Entry contains information about a particular Queue entry.')
stnPmQueueIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmQueueIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmQueueIndex.setDescription('Queue index')
stnPmQueueName = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmQueueName.setStatus('current')
if mibBuilder.loadTexts: stnPmQueueName.setDescription('Description of Queue entry')
stnPmQueueThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmQueueThreshold.setStatus('current')
if mibBuilder.loadTexts: stnPmQueueThreshold.setDescription('Queue Drop Threshold')
stnPmQueueDropType = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("tailDrop", 2), ("headDrop", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmQueueDropType.setStatus('current')
if mibBuilder.loadTexts: stnPmQueueDropType.setDescription('Type of algorithm used to drop packets when threshold is reached')
stnPmQueueDropHCOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmQueueDropHCOctets.setStatus('current')
if mibBuilder.loadTexts: stnPmQueueDropHCOctets.setDescription('Number of octets that have been dropped this queue.')
stnPmQueueDropHCPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmQueueDropHCPkts.setStatus('current')
if mibBuilder.loadTexts: stnPmQueueDropHCPkts.setDescription('Number of packets that have been dropped this queue.')
stnPmQueueQueueLen = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmQueueQueueLen.setStatus('current')
if mibBuilder.loadTexts: stnPmQueueQueueLen.setDescription('Number of packets currently in the queue.')
stnPmQueueMaxQueueLen = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmQueueMaxQueueLen.setStatus('current')
if mibBuilder.loadTexts: stnPmQueueMaxQueueLen.setDescription('Maximum number of packets in queue since last statistics reset.')
stnPmFirewallEventLogMsg = MibScalar((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallEventLogMsg.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallEventLogMsg.setDescription('Describes SNMP Trap generated by STN Firewall')
stnPmFirewallLog = NotificationType((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 1, 2, 0, 1)).setObjects(("STN-ROUTER-MIB", "stnRouterIndex"), ("STN-POLICY-MIB", "stnPmServiceIndex"), ("STN-POLICY-MIB", "stnPmPolicyIndex"), ("STN-POLICY-MIB", "stnPmFirewallEventLogMsg"))
if mibBuilder.loadTexts: stnPmFirewallLog.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallLog.setDescription("This trap is generated by Policy manager's Firewall subsystem. This SNMP trap is generated in response to firewall event logging.")
stnPmFirewallTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1), )
if mibBuilder.loadTexts: stnPmFirewallTable.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallTable.setDescription('Entry contains information about a particular Firewall entry.')
stnPmFirewallEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmFirewallIndex"))
if mibBuilder.loadTexts: stnPmFirewallEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallEntry.setDescription('Entry contains information about a particular Firewall entry.')
stnPmFirewallIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallIndex.setDescription('Firewall index')
stnPmFirewallName = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallName.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallName.setDescription('Description of firewall entry')
stnPmFirewallAcceptOtherIPOptions = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallAcceptOtherIPOptions.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallAcceptOtherIPOptions.setDescription('Accept packets with other IP options (non source routing).')
stnPmFirewallAcceptSourceRouting = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 4), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallAcceptSourceRouting.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallAcceptSourceRouting.setDescription('Accept packets with source routing options')
stnPmFirewallTcpAckLifeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallTcpAckLifeTime.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallTcpAckLifeTime.setDescription('TCP ACK lifetime')
stnPmFirewallTcpSynLifeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallTcpSynLifeTime.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallTcpSynLifeTime.setDescription('TCP SYN lifetime')
stnPmFirewallTcpFinLifeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallTcpFinLifeTime.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallTcpFinLifeTime.setDescription('TCP FIN lifetime')
stnPmFirewallTcpRstLifeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallTcpRstLifeTime.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallTcpRstLifeTime.setDescription('TCP RST lifetime')
stnPmFirewallTcpInactivityLifeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallTcpInactivityLifeTime.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallTcpInactivityLifeTime.setDescription('TCP inactivity lifetime')
stnPmFirewallUdpInactivityLifeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallUdpInactivityLifeTime.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallUdpInactivityLifeTime.setDescription('UDP inactivity lifetime')
stnPmFirewallSynAttackDetection = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 11), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallSynAttackDetection.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallSynAttackDetection.setDescription('Enable SYN attack detection')
stnPmFirewallLandAttackDetection = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 12), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallLandAttackDetection.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallLandAttackDetection.setDescription('Enable Land attack detection')
stnPmFirewallPingFloodingDetection = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 13), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallPingFloodingDetection.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallPingFloodingDetection.setDescription('Enable ping flooding attack detection')
stnPmFirewallPingOfDeathDetection = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 14), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallPingOfDeathDetection.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallPingOfDeathDetection.setDescription('Enable ping of death attack detection')
stnPmFirewallPortScanDetection = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 15), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallPortScanDetection.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallPortScanDetection.setDescription('Enable port scan attack detection')
stnPmFirewallPingScanDetection = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 16), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallPingScanDetection.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallPingScanDetection.setDescription('Enable ping scan/sweep attack detection')
stnPmFirewallTcpSynBacklogQueueSize = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallTcpSynBacklogQueueSize.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallTcpSynBacklogQueueSize.setDescription('Size of the SYN backlog queue')
stnPmFirewallPingsPerMinute = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 18), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallPingsPerMinute.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallPingsPerMinute.setDescription('Maximum number of pings allowed per minute')
stnPmFirewallMaxPingSize = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 19), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallMaxPingSize.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallMaxPingSize.setDescription('Maximum allowable size for ping')
stnPmFirewallEnableDynamicPortApps = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 20), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallEnableDynamicPortApps.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallEnableDynamicPortApps.setDescription('Enabled Dynamic port applications expressed as bit-map.')
stnPmFirewallMaxDynHashTableSize = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 21), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallMaxDynHashTableSize.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallMaxDynHashTableSize.setDescription('Max dynamic hash table size - must be a power of 2.')
stnPmFirewallMinLogPeriod = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 22), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallMinLogPeriod.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallMinLogPeriod.setDescription('Minimim period between event logs')
stnPmFirewallActionTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1), )
if mibBuilder.loadTexts: stnPmFirewallActionTable.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallActionTable.setDescription('Entry contains information about a particular Firewall Action entry.')
stnPmFirewallActionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmFirewallActionIndex"))
if mibBuilder.loadTexts: stnPmFirewallActionEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallActionEntry.setDescription('Entry contains information about a particular Firewall Action entry.')
stnPmFirewallActionIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallActionIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallActionIndex.setDescription('Firewall Action index')
stnPmFirewallActionName = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallActionName.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallActionName.setDescription('Description of firewall entry')
stnPmFirewallActionTrackingType = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("short", 2), ("long", 3), ("trap", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallActionTrackingType.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallActionTrackingType.setDescription('TCP ACK lifetime')
stnPmFirewallActionStateful = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1, 4), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallActionStateful.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallActionStateful.setDescription('Perform stateful processing')
stnPmFirewallActionInactivityLifeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallActionInactivityLifeTime.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallActionInactivityLifeTime.setDescription('Inactivity lifetime')
stnPmFirewallActionRejectAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("icmpUnreachPort", 2), ("tcpReset", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmFirewallActionRejectAction.setStatus('current')
if mibBuilder.loadTexts: stnPmFirewallActionRejectAction.setDescription('Firewall policy reject action.')
stnPmServiceListTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1), )
if mibBuilder.loadTexts: stnPmServiceListTable.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceListTable.setDescription('Entry contains information about a particular Firewall Action entry.')
stnPmServiceListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmServiceListIndex"))
if mibBuilder.loadTexts: stnPmServiceListEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceListEntry.setDescription('Entry contains information about a particular Firewall Action entry.')
stnPmServiceListIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmServiceListIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceListIndex.setDescription('Service List Action index')
stnPmServiceListName = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmServiceListName.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceListName.setDescription('Description of service list entry')
stnPmServiceListConnIdleTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmServiceListConnIdleTimeout.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceListConnIdleTimeout.setDescription('Idle timeout')
stnPmServiceListNumServices = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmServiceListNumServices.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceListNumServices.setDescription('Number of services in this serviceList')
stnPmServiceListEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmServiceListEnabled.setStatus('current')
if mibBuilder.loadTexts: stnPmServiceListEnabled.setDescription('Flag to indicate if service is enabled')
stnPmSLServiceTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1), )
if mibBuilder.loadTexts: stnPmSLServiceTable.setStatus('current')
if mibBuilder.loadTexts: stnPmSLServiceTable.setDescription('A list of PM service entries.')
stnPmSLServiceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmSLIndex"), (0, "STN-POLICY-MIB", "stnPmSLServiceIndex"))
if mibBuilder.loadTexts: stnPmSLServiceEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmSLServiceEntry.setDescription('Entry contains information about a particular policy manager service.')
stnPmSLIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmSLIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmSLIndex.setDescription('Index into service-list table')
stnPmSLServiceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmSLServiceIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmSLServiceIndex.setDescription('Index into service table')
stnPmSLServiceName = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 65))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmSLServiceName.setStatus('current')
if mibBuilder.loadTexts: stnPmSLServiceName.setDescription('Name of service')
stnPmSLServiceIdleTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmSLServiceIdleTimeout.setStatus('current')
if mibBuilder.loadTexts: stnPmSLServiceIdleTimeout.setDescription('Idle timeout for service')
stnPmSLServiceNumPolicies = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmSLServiceNumPolicies.setStatus('current')
if mibBuilder.loadTexts: stnPmSLServiceNumPolicies.setDescription('Number of policies in this service')
stnPmSLServiceEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 6), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmSLServiceEnabled.setStatus('current')
if mibBuilder.loadTexts: stnPmSLServiceEnabled.setDescription('Flag to indicate if service is enabled')
stnPmSLServiceType = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("vpn", 1), ("firewall", 2), ("ip-fileter", 3), ("forwarding", 4), ("qos", 5), ("mpls", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmSLServiceType.setStatus('current')
if mibBuilder.loadTexts: stnPmSLServiceType.setDescription('Type of service')
stnPmSLServiceFirewallID = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmSLServiceFirewallID.setStatus('current')
if mibBuilder.loadTexts: stnPmSLServiceFirewallID.setDescription("Instance of service's firewall record")
stnPmClassTable = MibTable((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1), )
if mibBuilder.loadTexts: stnPmClassTable.setStatus('current')
if mibBuilder.loadTexts: stnPmClassTable.setDescription("This table is a 'flattened' version of a hierarchical class trees that specify the bandwidth allocation for the CBQ interfaces of the system. Each tree is rooted at an interface. A class may either be a leaf, meaning it has no children, or it may be an interior class which has children. As packets are forwarded out an interface, they are compared to the 'flow definition' of each class down the tree until a matching leaf is found or until all classes are traversed. Once a matching class is found, the packet is transmitted or not based on the constraints configured for the class, most importantly the allocated bandwidth as identified by stnPmClassRate. If no matching class is found, the packet is dropped.")
stnPmClassEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1), ).setIndexNames((0, "STN-POLICY-MIB", "stnPmIfIndex"), (0, "STN-POLICY-MIB", "stnPmTxclassInstance"))
if mibBuilder.loadTexts: stnPmClassEntry.setStatus('current')
if mibBuilder.loadTexts: stnPmClassEntry.setDescription("Information about a single traffic class. Traffic classes are identified by their associated interface's ifIndex and their name. (Which means class names must be unique for a particular interface.) Finally, the following objects cannot be modified once the row is active: stnPmClassParent, and stnPmClassQueueElasticityFactor.")
stnPmIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 1), InterfaceIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmIfIndex.setStatus('current')
if mibBuilder.loadTexts: stnPmIfIndex.setDescription('A sequence number that identifies a particular interface the class has been installed on.')
stnPmTxclassInstance = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmTxclassInstance.setStatus('current')
if mibBuilder.loadTexts: stnPmTxclassInstance.setDescription('The instance of the configuration record for the tranmsit class that the interface is using.')
stnPmClassName = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassName.setStatus('current')
if mibBuilder.loadTexts: stnPmClassName.setDescription("A user-defined name for the traffic class. This is the unique identifier for the class within the scope of the interface. For example, the class that defines the IP address range for a particular customer might be 'Customer Fred Co.'")
stnPmClassParent = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 64)).clone('interface')).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassParent.setStatus('current')
if mibBuilder.loadTexts: stnPmClassParent.setDescription('Name of class parent')
stnPmClassRate = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 5), StnPmBitRate()).setUnits('bits per second').setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassRate.setStatus('current')
if mibBuilder.loadTexts: stnPmClassRate.setDescription("A fraction of the bandwidth of the root interface to be allocated to this traffic class. Note that specifying 0 bits/second effectively filters all traffic that matches this class' flow specification. Also note that the sum of bit rates for all classes defined under the same class must be less than or equal to stnPmClassRate of the parent.")
stnPmClassPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 7)).clone(3)).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassPriority.setStatus('current')
if mibBuilder.loadTexts: stnPmClassPriority.setDescription('The priority for this class. The smaller the value, the higher the priority. Delay-sensitive flows (such as video or audio) should be given higher priority values.')
stnPmClassMaxIdle = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 7), Integer32()).setUnits('tens of nanoseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassMaxIdle.setStatus('current')
if mibBuilder.loadTexts: stnPmClassMaxIdle.setDescription("An upper bound for the average idle time (see the DESCRIPTION of stnPmClassStatsIdle). Thus, stnPmClassMaxIdle limits the 'credit' given to a class that has recently been under its allocation.")
stnPmClassMinIdle = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 8), Integer32()).setUnits('tens of nanoseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassMinIdle.setStatus('current')
if mibBuilder.loadTexts: stnPmClassMinIdle.setDescription("The negative lower bound of the average idle. Thus, a negative minidle lets the router 'remember' that a class has recently used more than its allocated bandwidth.")
stnPmClassMaxQueueLen = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200)).clone(100)).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassMaxQueueLen.setStatus('current')
if mibBuilder.loadTexts: stnPmClassMaxQueueLen.setDescription('A factor used to influence whether this traffic class gets a proportionally larger or smaller queue size than other classes. Other factors in the queue size include the percent bandwidth allocated to this class and the priority.')
stnPmClassOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("downConflict", 3), ("autoClassActive", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassOperStatus.setStatus('current')
if mibBuilder.loadTexts: stnPmClassOperStatus.setDescription("The actual operational status of the traffic class. The value 'up(1)' means this traffic class is in use, the value 'down(2)' indicates the traffic class is not in use either due to an internal problem or because it (or an ancestor) is administratively disabled, and the value 'downConflict(3)' indicates the class definition conflicts with those of its siblings. The value autoClassActive(4) means that the class is a dynamically created AutoClass, which may not be modified in any way until it is saved to Non-Volatile configuration memory. After an AutoClass is saved to NVRAM, it's operational status will transistion to up (1).")
stnPmClassBwUse = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("atLimit", 1), ("underLimit", 2), ("overLimit", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassBwUse.setStatus('current')
if mibBuilder.loadTexts: stnPmClassBwUse.setDescription("An indication of whether this traffic class has used its allocated bandwidth, has not used its allocated bandwidth or has used more than its allocated bandwidth and is therefore 'atLimit(1)', 'underLimit(2)', or 'overLimit(3)' respectively.")
stnPmClassUnsatisfied = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 12), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassUnsatisfied.setStatus('current')
if mibBuilder.loadTexts: stnPmClassUnsatisfied.setDescription("An indication of whether this traffic class is 'unsatisfied'. The value of this object is 'true(1)' if it is underLimit and has a persistent backlog, meaning it has packets waiting in its queue. The value is 'false(1)' otherwise. Note that a class can be considered satisfied if it is underLimit and it just hasn't had anything to transmit. The presence of an unsatisfied class indicates that some other class is overLimit and 'hogging' bandwidth. Persistently unsatisfied classes indicate that tuning some of the parameters (such as stnPmClassMaxIdle or stnPmClassBounded) may be necessary.")
stnPmClassQueueSize = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 13), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 2048))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassQueueSize.setStatus('current')
if mibBuilder.loadTexts: stnPmClassQueueSize.setDescription('The size of the queue associated with this traffic class. This is the maximum number of packets that can be in the queue, not the number that are currently queued (see stnPmClassStatsQueuedPkts).')
stnPmClassMaxRate = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 14), StnPmBitRate()).setUnits('bits per second').setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassMaxRate.setStatus('current')
if mibBuilder.loadTexts: stnPmClassMaxRate.setDescription("The maximum bandwidth the class may achieve, including bandwidth allocated to this class, and any bandwidth that may be borrowed. A value of zero (0) indicates that this feature is not being used. The stnPmClassMaxRate must be set to a value higher than the stnPmClassRate, but may also exceed the parent class's stnPmClassRate.")
stnPmClassDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 15), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassDescription.setStatus('current')
if mibBuilder.loadTexts: stnPmClassDescription.setDescription('Textual name associated with this class.')
stnPmClassStatsHighWater = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsHighWater.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsHighWater.setDescription('The historical maximum number of packets that were queued for this class since the system was last reinitialized.')
stnPmClassStatsIdle = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 17), Integer32()).setUnits('tens of nanoseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsIdle.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsIdle.setDescription('The difference between the desired time and the measured actual time between the most recent packet transmissions for the last two packets sent from this class. When the connection is sending perfectly at its allocated rate, then stnPmClassIdle is zero. When the connection is sending more than its allocated bandwidth, then stnPmClassIdle is negative.')
stnPmClassStatsQueuedPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 18), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsQueuedPkts.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsQueuedPkts.setDescription("The current number of packets in the class' queue.")
stnPmClassStatsOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsOctets.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsOctets.setDescription("The number of bytes transmitted for this traffic class. Note that a class with a configured stnPmClassRate of 0 bits/second will never transmit any octets and therefore this object's value will be 0. These filtered octets will be counted as part of stnPmClassStatsDroppedOctets.")
stnPmClassStatsPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsPkts.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsPkts.setDescription("The number of packets transmitted for this traffic class. Note that a class with a configured stnPmClassRate of 0 bits/second will never transmit any packets and therefore this object's value will be 0. These filtered packets will be counted as part of stnPmClassStatsDroppedPkts.")
stnPmClassStatsOverLimits = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsOverLimits.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsOverLimits.setDescription('A count of the number of times the class used more than its allocated bandwidth.')
stnPmClassStatsBorrowAttempts = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsBorrowAttempts.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsBorrowAttempts.setDescription("A count of the number of times the class attempted to 'borrow' bandwidth from another class.")
stnPmClassStatsDroppedOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsDroppedOctets.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsDroppedOctets.setDescription('A count of the number of octets dropped for this class because of lack of buffer space in the queue or because the class exceeded its allocated bandwidth.')
stnPmClassStatsDroppedPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsDroppedPkts.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsDroppedPkts.setDescription('A count of the number of packets dropped for this class because of lack of buffer space in the queue or because the class exceeded its allocated bandwidth.')
stnPmClassStatsThrottles = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsThrottles.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsThrottles.setDescription('A count of the number of times the class was throttled (not allowed to transmit packets) by the link-sharing algorithm.')
stnPmClassStatsUnsatisfieds = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsUnsatisfieds.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsUnsatisfieds.setDescription('A count of the number of times the class was unsatisfied, as indicated by the stnPmClassUnsatisfied object.')
stnPmClassStatsAggrOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsAggrOctets.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsAggrOctets.setDescription('The aggregate number of bytes transmitted by the children of this traffic class.')
stnPmClassStatsAggrPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: stnPmClassStatsAggrPkts.setStatus('current')
if mibBuilder.loadTexts: stnPmClassStatsAggrPkts.setDescription('The aggregate number of packets transmitted by the children of this traffic class.')
mibBuilder.exportSymbols("STN-POLICY-MIB", stnPmManualSaEspAuthKey=stnPmManualSaEspAuthKey, stnPmFirewallPingFloodingDetection=stnPmFirewallPingFloodingDetection, stnPmSLServiceTable=stnPmSLServiceTable, stnPmPreferenceLifeTime=stnPmPreferenceLifeTime, stnPmProfileExceedOctets=stnPmProfileExceedOctets, stnPmMibConformance=stnPmMibConformance, stnPmServiceName=stnPmServiceName, stnPmFirewallMaxDynHashTableSize=stnPmFirewallMaxDynHashTableSize, stnPmPolicyDirection=stnPmPolicyDirection, stnPmQueueEntry=stnPmQueueEntry, stnPmPolicyTosByteValue=stnPmPolicyTosByteValue, stnPmMarkerByteValue=stnPmMarkerByteValue, stnPmServiceEntry=stnPmServiceEntry, stnPmClass=stnPmClass, stnPmPolicyDestMask=stnPmPolicyDestMask, stnPmFirewallActionName=stnPmFirewallActionName, stnPmClassStatsAggrOctets=stnPmClassStatsAggrOctets, stnPmEncapsEntry=stnPmEncapsEntry, stnPmPolicyMarkedOctets=stnPmPolicyMarkedOctets, stnPmManualSaEspEncrAlg=stnPmManualSaEspEncrAlg, stnPmFirewallSynAttackDetection=stnPmFirewallSynAttackDetection, stnPmQosLastDroppedPacket=stnPmQosLastDroppedPacket, stnPmManualSaTable=stnPmManualSaTable, stnPmServiceListTable=stnPmServiceListTable, stnPmServiceType=stnPmServiceType, stnPmFirewallActionInactivityLifeTime=stnPmFirewallActionInactivityLifeTime, stnPmClassRate=stnPmClassRate, stnPmProfileIndex=stnPmProfileIndex, stnPmPolicyMatches=stnPmPolicyMatches, stnPmMarkerName=stnPmMarkerName, stnPmFirewallActionIndex=stnPmFirewallActionIndex, stnPmServiceFirewallID=stnPmServiceFirewallID, stnPmPolicyName=stnPmPolicyName, stnPmPolicyProtocol=stnPmPolicyProtocol, stnPmPolicyMisses=stnPmPolicyMisses, stnPmManualSaIPsecID=stnPmManualSaIPsecID, stnPmQosLatestFlowCB=stnPmQosLatestFlowCB, stnPmClassMaxQueueLen=stnPmClassMaxQueueLen, stnPmServiceTable=stnPmServiceTable, PYSNMP_MODULE_ID=stnPm, stnPmPolicySrcAddrSelector=stnPmPolicySrcAddrSelector, stnPmPreferenceEspEncrAlg=stnPmPreferenceEspEncrAlg, stnPmQueueDropHCOctets=stnPmQueueDropHCOctets, stnPmClassStatsThrottles=stnPmClassStatsThrottles, stnPmSLServiceIdleTimeout=stnPmSLServiceIdleTimeout, stnPmManualSaIndex=stnPmManualSaIndex, stnPmQosFlowCBCreated=stnPmQosFlowCBCreated, stnPmFirewallPingScanDetection=stnPmFirewallPingScanDetection, stnPmManualSaEntry=stnPmManualSaEntry, stnPmEncapsGREKey=stnPmEncapsGREKey, stnPmPreferenceEntry=stnPmPreferenceEntry, stnPmProfileCommittedRate=stnPmProfileCommittedRate, stnPmServiceListName=stnPmServiceListName, stnPmPolicySrcEndAddr=stnPmPolicySrcEndAddr, stnPmPolicyMarkerID=stnPmPolicyMarkerID, stnPmManualSaAhAlg=stnPmManualSaAhAlg, stnPmManualSaAhKey=stnPmManualSaAhKey, stnPmProfileExceedAction=stnPmProfileExceedAction, stnPmProfileExceedActionID=stnPmProfileExceedActionID, stnPmQueueMaxQueueLen=stnPmQueueMaxQueueLen, stnPmClassStatsPkts=stnPmClassStatsPkts, stnPmClassStatsDroppedPkts=stnPmClassStatsDroppedPkts, stnPmFirewallTable=stnPmFirewallTable, stnPmFirewallEntry=stnPmFirewallEntry, stnPmFirewallActionTrackingType=stnPmFirewallActionTrackingType, stnPmClassMinIdle=stnPmClassMinIdle, stnPmPolicyDestAddrMatchType=stnPmPolicyDestAddrMatchType, stnPMProxyTunnel=stnPMProxyTunnel, stnPmFirewallName=stnPmFirewallName, stnPmPolicyActionID=stnPmPolicyActionID, StnPmAuthAlg=StnPmAuthAlg, stnPmServiceIndex=stnPmServiceIndex, stnPmMarkerEntry=stnPmMarkerEntry, stnPmSLServiceEntry=stnPmSLServiceEntry, stnPmPolicySrcPortMatchType=stnPmPolicySrcPortMatchType, stnPmPolicySrcEndPort=stnPmPolicySrcEndPort, stnPmIPsecEntry=stnPmIPsecEntry, stnPmManualSaSPI=stnPmManualSaSPI, stnPmQueueDropType=stnPmQueueDropType, stnPmPolicySrcMask=stnPmPolicySrcMask, stnPmPreferenceLifeBytes=stnPmPreferenceLifeBytes, stnPmPolicyTosByteMatchType=stnPmPolicyTosByteMatchType, stnPmPolicy=stnPmPolicy, stnPmEncapsLocalIpAddr=stnPmEncapsLocalIpAddr, stnPmProfileEnabled=stnPmProfileEnabled, stnPmPolicyDestPortMatchType=stnPmPolicyDestPortMatchType, stnPmFirewallActionStateful=stnPmFirewallActionStateful, stnPmFirewallAction=stnPmFirewallAction, stnPmPolicyTable=stnPmPolicyTable, stnPmPreferenceDescription=stnPmPreferenceDescription, stnPmProfileCommittedBurst=stnPmProfileCommittedBurst, stnPmQueueDropHCPkts=stnPmQueueDropHCPkts, stnPmFirewallMaxPingSize=stnPmFirewallMaxPingSize, stnPmProfileCautionActionID=stnPmProfileCautionActionID, stnPmMarker=stnPmMarker, stnPmManualSaEspAuthAlg=stnPmManualSaEspAuthAlg, stnPmIPsecName=stnPmIPsecName, stnPmClassUnsatisfied=stnPmClassUnsatisfied, stnPmPreferenceIndex=stnPmPreferenceIndex, stnPmServiceNumPolicies=stnPmServiceNumPolicies, stnPmIPsecPeerIpAddr=stnPmIPsecPeerIpAddr, stnPmFirewallEventLogMsg=stnPmFirewallEventLogMsg, stnPmClassStatsBorrowAttempts=stnPmClassStatsBorrowAttempts, stnPmFirewallAcceptSourceRouting=stnPmFirewallAcceptSourceRouting, stnPmPolicyDestAddrSelector=stnPmPolicyDestAddrSelector, stnPmIfIndex=stnPmIfIndex, stnPmFirewallTcpInactivityLifeTime=stnPmFirewallTcpInactivityLifeTime, stnPmManualSaEspEncrKey=stnPmManualSaEspEncrKey, stnPmFirewallMinLogPeriod=stnPmFirewallMinLogPeriod, stnPmQueueThreshold=stnPmQueueThreshold, stnPmFirewallActionTable=stnPmFirewallActionTable, stnPmSLService=stnPmSLService, stnPmClassParent=stnPmClassParent, stnPmQosShapingPacketDiscard=stnPmQosShapingPacketDiscard, stnPmProfileName=stnPmProfileName, stnPmProfileConformPkts=stnPmProfileConformPkts, stnPmFirewallEnableDynamicPortApps=stnPmFirewallEnableDynamicPortApps, stnPmPolicyDestEndPort=stnPmPolicyDestEndPort, stnPmPreferencePFSGroup=stnPmPreferencePFSGroup, stnPmServiceListEntry=stnPmServiceListEntry, stnPmPolicyProtocolMatchType=stnPmPolicyProtocolMatchType, stnPmMarkerByteMask=stnPmMarkerByteMask, stnPmPolicySrcPort=stnPmPolicySrcPort, stnPmSLIndex=stnPmSLIndex, stnPmFirewallNotification=stnPmFirewallNotification, stnPmServiceEnabled=stnPmServiceEnabled, stnPmService=stnPmService, stnPmEncapsPeerIpAddr=stnPmEncapsPeerIpAddr, stnPmQueueIndex=stnPmQueueIndex, stnPmFirewallPortScanDetection=stnPmFirewallPortScanDetection, stnPmFirewallTcpSynBacklogQueueSize=stnPmFirewallTcpSynBacklogQueueSize, stnPmPreferenceAhAlg=stnPmPreferenceAhAlg, stnPmEncapsTable=stnPmEncapsTable, stnPmFirewallLog=stnPmFirewallLog, stnPmFirewallAcceptOtherIPOptions=stnPmFirewallAcceptOtherIPOptions, stnPmClassMaxRate=stnPmClassMaxRate, stnPmClassEntry=stnPmClassEntry, stnPmServiceListEnabled=stnPmServiceListEnabled, stnPmManualSa=stnPmManualSa, stnPmPreferenceNum=stnPmPreferenceNum, stnPmPreferenceIPsecID=stnPmPreferenceIPsecID, stnPmFirewallActionRejectAction=stnPmFirewallActionRejectAction, stnPm=stnPm, stnPmIPsec=stnPmIPsec, stnPmEncaps=stnPmEncaps, stnPmFirewallTrapVars=stnPmFirewallTrapVars, stnPmIPsecMode=stnPmIPsecMode, stnPmQueueQueueLen=stnPmQueueQueueLen, stnPmClassStatsIdle=stnPmClassStatsIdle, StnPmEncrAlg=StnPmEncrAlg, stnPmIPsecIndex=stnPmIPsecIndex, stnPmTxclassInstance=stnPmTxclassInstance, stnPmQosTrapVars=stnPmQosTrapVars, stnPmServiceList=stnPmServiceList, stnPmClassPriority=stnPmClassPriority, stnPmSLServiceName=stnPmSLServiceName, stnPmQueueTable=stnPmQueueTable, stnPmSLServiceFirewallID=stnPmSLServiceFirewallID, stnPmPolicyAction=stnPmPolicyAction, StnPmSelectorType=StnPmSelectorType, stnPmPolicySrcAddr=stnPmPolicySrcAddr, stnPmEncapsType=stnPmEncapsType, stnPmFirewallTcpFinLifeTime=stnPmFirewallTcpFinLifeTime, stnPmServiceIdleTimeout=stnPmServiceIdleTimeout, StnPmBitRate=StnPmBitRate, stnPmClassStatsHighWater=stnPmClassStatsHighWater, stnPmPolicyDestAddr=stnPmPolicyDestAddr, stnPmPolicyServiceIndex=stnPmPolicyServiceIndex, stnPmPolicyIndex=stnPmPolicyIndex, stnPmPolicyIcmpTypes=stnPmPolicyIcmpTypes, stnPmFirewallPingOfDeathDetection=stnPmFirewallPingOfDeathDetection, stnPmClassBwUse=stnPmClassBwUse, stnPmEncapsName=stnPmEncapsName, stnPmMarkerMarkedPkts=stnPmMarkerMarkedPkts, stnPmPolicyTxclassID=stnPmPolicyTxclassID, stnPmServiceListConnIdleTimeout=stnPmServiceListConnIdleTimeout, StnPmDirection=StnPmDirection, stnPmPolicyEntry=stnPmPolicyEntry, stnPmPreferenceEspAuthAlg=stnPmPreferenceEspAuthAlg, stnPmQueueName=stnPmQueueName, stnPmFirewallActionEntry=stnPmFirewallActionEntry, stnPmIPsecNumPreferences=stnPmIPsecNumPreferences, stnPmClassStatsAggrPkts=stnPmClassStatsAggrPkts, stnPmFirewallTrap=stnPmFirewallTrap, stnPmPolicyEnabled=stnPmPolicyEnabled, stnPmTraps=stnPmTraps, stnPmProfileEntry=stnPmProfileEntry, stnPmFirewallIndex=stnPmFirewallIndex, stnPmClassDescription=stnPmClassDescription, stnPmFirewallTcpAckLifeTime=stnPmFirewallTcpAckLifeTime, stnPmClassQueueSize=stnPmClassQueueSize, stnPmPolicyTosByteMask=stnPmPolicyTosByteMask, stnPmPolicyDestEndAddr=stnPmPolicyDestEndAddr, stnPmIPsecTable=stnPmIPsecTable, stnPmFirewallUdpInactivityLifeTime=stnPmFirewallUdpInactivityLifeTime, stnPmProfileCautionAction=stnPmProfileCautionAction, stnPmClassName=stnPmClassName, stnPmQueue=stnPmQueue, stnPmQosFlowCBRemoved=stnPmQosFlowCBRemoved, stnPmManualSaDescription=stnPmManualSaDescription, stnPmProfileConformAction=stnPmProfileConformAction, stnPmServiceListIndex=stnPmServiceListIndex, stnPmFirewall=stnPmFirewall, stnPmProfileExcessRate=stnPmProfileExcessRate, stnPmMarkerMarkedOctets=stnPmMarkerMarkedOctets, stnPmProfileExcessBurst=stnPmProfileExcessBurst, stnPmQosTrap=stnPmQosTrap, stnPmFirewallTcpSynLifeTime=stnPmFirewallTcpSynLifeTime, stnPmFirewallPingsPerMinute=stnPmFirewallPingsPerMinute, stnPmPreferenceTable=stnPmPreferenceTable, stnPmManualSaPeerIpAddr=stnPmManualSaPeerIpAddr, stnPmIPsecReplayDetectionEnabled=stnPmIPsecReplayDetectionEnabled, stnPmFirewallTcpRstLifeTime=stnPmFirewallTcpRstLifeTime, stnPmIPsecKeyNegType=stnPmIPsecKeyNegType, stnPmClassStatsOverLimits=stnPmClassStatsOverLimits, stnPmPreference=stnPmPreference, stnPmIPsecNumManualSAs=stnPmIPsecNumManualSAs, stnPmPolicyMarkedPkts=stnPmPolicyMarkedPkts, stnPmFirewallNotificationPrefix=stnPmFirewallNotificationPrefix, stnPmIPsecLocalIpAddr=stnPmIPsecLocalIpAddr, stnPmPolicyDestPort=stnPmPolicyDestPort, stnPmFirewallLandAttackDetection=stnPmFirewallLandAttackDetection, stnPmSLServiceEnabled=stnPmSLServiceEnabled, stnPmMarkerIndex=stnPmMarkerIndex, stnPmPolicySrcAddrMatchType=stnPmPolicySrcAddrMatchType, stnPmMarkerTable=stnPmMarkerTable, stnPmObjects=stnPmObjects, stnPmEncapsIndex=stnPmEncapsIndex, stnPmProfileCautionPkts=stnPmProfileCautionPkts, stnPmProfileConformActionID=stnPmProfileConformActionID, stnPmQosNotificationPrefix=stnPmQosNotificationPrefix, stnPmServiceListNumServices=stnPmServiceListNumServices, stnPmQosThresholdPacketDiscard=stnPmQosThresholdPacketDiscard, stnPmClassStatsQueuedPkts=stnPmClassStatsQueuedPkts, stnPmProfileExceedPkts=stnPmProfileExceedPkts, stnPmProfile=stnPmProfile, stnPmQosNotification=stnPmQosNotification, stnPmSLServiceType=stnPmSLServiceType, stnPmClassStatsDroppedOctets=stnPmClassStatsDroppedOctets, StnPmPolicyMatchType=StnPmPolicyMatchType, stnPmProfileTable=stnPmProfileTable, stnPmClassMaxIdle=stnPmClassMaxIdle, stnPmProfileCautionOctets=stnPmProfileCautionOctets, stnPmClassTable=stnPmClassTable, stnPmClassStatsOctets=stnPmClassStatsOctets, stnPmClassStatsUnsatisfieds=stnPmClassStatsUnsatisfieds, stnPmSLServiceIndex=stnPmSLServiceIndex, stnPmClassOperStatus=stnPmClassOperStatus, stnPmPolicyCreateMirror=stnPmPolicyCreateMirror, stnPmProfileConformOctets=stnPmProfileConformOctets, stnPmManualSaDirection=stnPmManualSaDirection, stnPmSLServiceNumPolicies=stnPmSLServiceNumPolicies)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, single_value_constraint, constraints_union, constraints_intersection, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint')
(interface_index,) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndex')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, gauge32, time_ticks, integer32, counter64, object_identity, iso, ip_address, mib_identifier, counter32, notification_type, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'Gauge32', 'TimeTicks', 'Integer32', 'Counter64', 'ObjectIdentity', 'iso', 'IpAddress', 'MibIdentifier', 'Counter32', 'NotificationType', 'Bits')
(textual_convention, truth_value, row_status, display_string, time_stamp) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'TruthValue', 'RowStatus', 'DisplayString', 'TimeStamp')
(stn_systems,) = mibBuilder.importSymbols('SPRING-TIDE-NETWORKS-SMI', 'stnSystems')
(stn_router_index,) = mibBuilder.importSymbols('STN-ROUTER-MIB', 'stnRouterIndex')
stn_pm = module_identity((1, 3, 6, 1, 4, 1, 3551, 2, 11))
stnPm.setRevisions(('1900-05-12 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
stnPm.setRevisionsDescriptions(('This MIB module describes managed objects of Spring Tide Networks policy module .',))
if mibBuilder.loadTexts:
stnPm.setLastUpdated('0012060000Z')
if mibBuilder.loadTexts:
stnPm.setOrganization('Spring Tide Networks, Inc.')
if mibBuilder.loadTexts:
stnPm.setContactInfo(' Spring Tide Networks, Inc. Customer Service Postal: 3 Clock Tower Place Maynard, MA 01754 Tel: 1 888-786-4357 Email: [email protected] ')
if mibBuilder.loadTexts:
stnPm.setDescription('Added stnPmClassTable')
stn_pm_objects = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1))
stn_pm_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 2))
stn_pm_service = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1))
stn_pm_policy = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2))
stn_pm_preference = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3))
stn_pm_i_psec = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4))
stn_pm_encaps = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5))
stn_pm_manual_sa = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6))
stn_pm_marker = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7))
stn_pm_profile = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8))
stn_pm_queue = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9))
stn_pm_traps = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10))
stn_pm_firewall = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11))
stn_pm_firewall_action = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12))
stn_pm_service_list = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13))
stn_pm_sl_service = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14))
stn_pm_class = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15))
stn_pm_proxy_tunnel = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 16))
stn_pm_firewall_trap = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 1))
stn_pm_qos_trap = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2))
stn_pm_firewall_trap_vars = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 1, 1))
stn_pm_firewall_notification_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 1, 2))
stn_pm_firewall_notification = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 1, 2, 0))
stn_pm_qos_trap_vars = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 1))
stn_pm_qos_notification_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 2))
stn_pm_qos_notification = mib_identifier((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 2, 0))
class Stnpmpolicymatchtype(TextualConvention, Integer32):
description = 'Types of match criteria for policy'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5))
named_values = named_values(('any', 1), ('single', 2), ('range', 3), ('dynamic', 4), ('subnet', 5))
class Stnpmselectortype(TextualConvention, Integer32):
description = 'Selector type to use for connection'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('policy', 1), ('packet', 2))
class Stnpmauthalg(TextualConvention, Integer32):
description = 'Types of authentication algorithms'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('none', 1), ('hmac-md5', 2), ('hmac-sha', 3))
class Stnpmencralg(TextualConvention, Integer32):
description = 'Types of encryption algorithms'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('none', 1), ('des', 2), ('des3', 3))
class Stnpmdirection(TextualConvention, Integer32):
description = 'Types of directions'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('inbound', 1), ('outbound', 2))
class Stnpmbitrate(TextualConvention, Integer32):
description = 'A data rate in bits/second.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(0, 2147483647)
stn_pm_service_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1))
if mibBuilder.loadTexts:
stnPmServiceTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceTable.setDescription('A list of PM service entries.')
stn_pm_service_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmServiceIndex'))
if mibBuilder.loadTexts:
stnPmServiceEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceEntry.setDescription('Entry contains information about a particular policy manager service.')
stn_pm_service_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmServiceIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceIndex.setDescription('Index into service table')
stn_pm_service_name = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmServiceName.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceName.setDescription('Name of service')
stn_pm_service_idle_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmServiceIdleTimeout.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceIdleTimeout.setDescription('Idle timeout for service')
stn_pm_service_num_policies = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmServiceNumPolicies.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceNumPolicies.setDescription('Number of policies in this service')
stn_pm_service_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 5), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmServiceEnabled.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceEnabled.setDescription('Flag to indicate if service is enabled')
stn_pm_service_type = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('vpn', 1), ('firewall', 2), ('ip-fileter', 3), ('forwarding', 4), ('qos', 5), ('mpls', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmServiceType.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceType.setDescription('Type of service')
stn_pm_service_firewall_id = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 1, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmServiceFirewallID.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceFirewallID.setDescription("Instance of service's firewall record")
stn_pm_policy_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1))
if mibBuilder.loadTexts:
stnPmPolicyTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyTable.setDescription('A list of policy entries.')
stn_pm_policy_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmPolicyServiceIndex'), (0, 'STN-POLICY-MIB', 'stnPmPolicyIndex'))
if mibBuilder.loadTexts:
stnPmPolicyEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyEntry.setDescription('Entry contains information about a particular policy.')
stn_pm_policy_service_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyServiceIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyServiceIndex.setDescription('Service index of policy')
stn_pm_policy_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyIndex.setDescription('Policy index of policy')
stn_pm_policy_name = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyName.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyName.setDescription('Policy name')
stn_pm_policy_src_addr_match_type = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 4), stn_pm_policy_match_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicySrcAddrMatchType.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicySrcAddrMatchType.setDescription('Type of match for source address')
stn_pm_policy_src_addr = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicySrcAddr.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicySrcAddr.setDescription('Source address to match')
stn_pm_policy_src_mask = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicySrcMask.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicySrcMask.setDescription('Source IP netmask to match')
stn_pm_policy_src_end_addr = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 7), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicySrcEndAddr.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicySrcEndAddr.setDescription('End of source address range to match')
stn_pm_policy_dest_addr_match_type = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 8), stn_pm_policy_match_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyDestAddrMatchType.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyDestAddrMatchType.setDescription('Type of match for source address')
stn_pm_policy_dest_addr = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 9), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyDestAddr.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyDestAddr.setDescription('Source address to match')
stn_pm_policy_dest_mask = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 10), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyDestMask.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyDestMask.setDescription('Source IP netmask to match')
stn_pm_policy_dest_end_addr = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 11), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyDestEndAddr.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyDestEndAddr.setDescription('End of source address range to match')
stn_pm_policy_src_port_match_type = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 12), stn_pm_policy_match_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicySrcPortMatchType.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicySrcPortMatchType.setDescription('Type of match for source port')
stn_pm_policy_src_port = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicySrcPort.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicySrcPort.setDescription('Source port to match')
stn_pm_policy_src_end_port = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicySrcEndPort.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicySrcEndPort.setDescription('End of source port range to match')
stn_pm_policy_dest_port_match_type = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 15), stn_pm_policy_match_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyDestPortMatchType.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyDestPortMatchType.setDescription('Type of match for destination port')
stn_pm_policy_dest_port = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyDestPort.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyDestPort.setDescription('Destination port to match')
stn_pm_policy_dest_end_port = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyDestEndPort.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyDestEndPort.setDescription('End of destination port range to match')
stn_pm_policy_protocol_match_type = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 18), stn_pm_policy_match_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyProtocolMatchType.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyProtocolMatchType.setDescription('Type of match for protocol')
stn_pm_policy_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 6, 17, 50, 51, 108))).clone(namedValues=named_values(('icmp', 1), ('tcp', 6), ('udp', 17), ('esp', 50), ('ah', 51), ('ipcomp', 108)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyProtocol.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyProtocol.setDescription('Protocol to match')
stn_pm_policy_action = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('deny', 1), ('permit', 2), ('secure', 3), ('encaps', 4), ('reject', 5), ('fec', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyAction.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyAction.setDescription('Type of action to take upon policy match')
stn_pm_policy_action_id = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 21), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyActionID.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyActionID.setDescription('Configuration ID of action record')
stn_pm_policy_direction = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 22), stn_pm_direction()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyDirection.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyDirection.setDescription('Direction of policy')
stn_pm_policy_create_mirror = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 23), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyCreateMirror.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyCreateMirror.setDescription('Mirror policy flag')
stn_pm_policy_src_addr_selector = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 24), stn_pm_selector_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicySrcAddrSelector.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicySrcAddrSelector.setDescription('Source selector to choose for policy matching')
stn_pm_policy_dest_addr_selector = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 25), stn_pm_selector_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyDestAddrSelector.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyDestAddrSelector.setDescription('Destination selector to choose for policy matching')
stn_pm_policy_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 26), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyEnabled.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyEnabled.setDescription('Flag to indicate if policy is enabled')
stn_pm_policy_matches = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 27), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyMatches.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyMatches.setDescription('Number of times policy search matched this policy')
stn_pm_policy_misses = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 28), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyMisses.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyMisses.setDescription('Number of times policy search did not match this policy')
stn_pm_policy_marked_octets = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 29), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyMarkedOctets.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyMarkedOctets.setDescription('Number of octets that have been marked for this policy.')
stn_pm_policy_marked_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 30), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyMarkedPkts.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyMarkedPkts.setDescription('Number of packets that have been marked for this policy.')
stn_pm_policy_icmp_types = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 31), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyIcmpTypes.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyIcmpTypes.setDescription('ICMP Types matching the policy entry expressed as bit-map.')
stn_pm_policy_tos_byte_match_type = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 32), stn_pm_policy_match_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyTosByteMatchType.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyTosByteMatchType.setDescription('Type of match for TOS Byte')
stn_pm_policy_tos_byte_value = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 33), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyTosByteValue.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyTosByteValue.setDescription('Value containing bits to set in TOS Byte')
stn_pm_policy_tos_byte_mask = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 34), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyTosByteMask.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyTosByteMask.setDescription('Mask indicating bits to match in TOS byte')
stn_pm_policy_marker_id = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 35), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyMarkerID.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyMarkerID.setDescription('Configuration ID of marker to apply')
stn_pm_policy_txclass_id = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 2, 1, 1, 36), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPolicyTxclassID.setStatus('current')
if mibBuilder.loadTexts:
stnPmPolicyTxclassID.setDescription('Configuration ID of transmit class to assign packet to')
stn_pm_preference_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1))
if mibBuilder.loadTexts:
stnPmPreferenceTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmPreferenceTable.setDescription('Entry contains information about a particular preference entry.')
stn_pm_preference_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmPreferenceIndex'))
if mibBuilder.loadTexts:
stnPmPreferenceEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmPreferenceEntry.setDescription('Entry contains information about a particular preference.')
stn_pm_preference_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPreferenceIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmPreferenceIndex.setDescription('Preference index')
stn_pm_preference_num = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPreferenceNum.setStatus('current')
if mibBuilder.loadTexts:
stnPmPreferenceNum.setDescription('Preference number')
stn_pm_preference_ah_alg = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 3), stn_pm_auth_alg()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPreferenceAhAlg.setStatus('current')
if mibBuilder.loadTexts:
stnPmPreferenceAhAlg.setDescription('AH authentication algorithm')
stn_pm_preference_esp_auth_alg = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 4), stn_pm_auth_alg()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPreferenceEspAuthAlg.setStatus('current')
if mibBuilder.loadTexts:
stnPmPreferenceEspAuthAlg.setDescription('ESP authentication algorithm')
stn_pm_preference_esp_encr_alg = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 5), stn_pm_encr_alg()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPreferenceEspEncrAlg.setStatus('current')
if mibBuilder.loadTexts:
stnPmPreferenceEspEncrAlg.setDescription('ESP encryption algorithm')
stn_pm_preference_life_time = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPreferenceLifeTime.setStatus('current')
if mibBuilder.loadTexts:
stnPmPreferenceLifeTime.setDescription('Life time in minutes')
stn_pm_preference_life_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPreferenceLifeBytes.setStatus('current')
if mibBuilder.loadTexts:
stnPmPreferenceLifeBytes.setDescription('Life value in kilobytes')
stn_pm_preference_i_psec_id = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPreferenceIPsecID.setStatus('current')
if mibBuilder.loadTexts:
stnPmPreferenceIPsecID.setDescription('ID of corresponding IPSEC record')
stn_pm_preference_pfs_group = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 5))).clone(namedValues=named_values(('group1', 1), ('group2', 2), ('group5', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPreferencePFSGroup.setStatus('current')
if mibBuilder.loadTexts:
stnPmPreferencePFSGroup.setDescription('ESP encryption algorithm')
stn_pm_preference_description = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 3, 1, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmPreferenceDescription.setStatus('current')
if mibBuilder.loadTexts:
stnPmPreferenceDescription.setDescription('Description of preference')
stn_pm_i_psec_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1))
if mibBuilder.loadTexts:
stnPmIPsecTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmIPsecTable.setDescription('Entry contains information about a particular IPsec entry.')
stn_pm_i_psec_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmIPsecIndex'))
if mibBuilder.loadTexts:
stnPmIPsecEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmIPsecEntry.setDescription('Entry contains information about a particular IPsec entry.')
stn_pm_i_psec_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmIPsecIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmIPsecIndex.setDescription('IPsec index')
stn_pm_i_psec_peer_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmIPsecPeerIpAddr.setStatus('current')
if mibBuilder.loadTexts:
stnPmIPsecPeerIpAddr.setDescription('IP address of peer for tunnel endpoint')
stn_pm_i_psec_local_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmIPsecLocalIpAddr.setStatus('current')
if mibBuilder.loadTexts:
stnPmIPsecLocalIpAddr.setDescription('Local IP address for tunnel endpoint')
stn_pm_i_psec_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('tunnel', 1), ('transport', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmIPsecMode.setStatus('current')
if mibBuilder.loadTexts:
stnPmIPsecMode.setDescription('Type of IPsec connection to create')
stn_pm_i_psec_key_neg_type = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ike', 1), ('manual', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmIPsecKeyNegType.setStatus('current')
if mibBuilder.loadTexts:
stnPmIPsecKeyNegType.setDescription('Key negotiation method for IPsec Sa')
stn_pm_i_psec_name = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmIPsecName.setStatus('current')
if mibBuilder.loadTexts:
stnPmIPsecName.setDescription('Description of IPsec entry')
stn_pm_i_psec_num_manual_s_as = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmIPsecNumManualSAs.setStatus('current')
if mibBuilder.loadTexts:
stnPmIPsecNumManualSAs.setDescription('Number of manual SAs assigned to this IPsec record')
stn_pm_i_psec_num_preferences = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmIPsecNumPreferences.setStatus('current')
if mibBuilder.loadTexts:
stnPmIPsecNumPreferences.setDescription('Number of preferences assigned to this IPsec record')
stn_pm_i_psec_replay_detection_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 4, 1, 1, 9), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmIPsecReplayDetectionEnabled.setStatus('current')
if mibBuilder.loadTexts:
stnPmIPsecReplayDetectionEnabled.setDescription('Enable Replay detection.')
stn_pm_encaps_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1))
if mibBuilder.loadTexts:
stnPmEncapsTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmEncapsTable.setDescription('Entry contains information about a particular Encaps entry.')
stn_pm_encaps_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmEncapsIndex'))
if mibBuilder.loadTexts:
stnPmEncapsEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmEncapsEntry.setDescription('Entry contains information about a particular Encaps entry.')
stn_pm_encaps_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmEncapsIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmEncapsIndex.setDescription('Encaps index')
stn_pm_encaps_peer_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmEncapsPeerIpAddr.setStatus('current')
if mibBuilder.loadTexts:
stnPmEncapsPeerIpAddr.setDescription('IP address of peer for tunnel endpoint')
stn_pm_encaps_local_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmEncapsLocalIpAddr.setStatus('current')
if mibBuilder.loadTexts:
stnPmEncapsLocalIpAddr.setDescription('Local IP address for tunnel endpoint')
stn_pm_encaps_type = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ip-ip', 1), ('ip-gre', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmEncapsType.setStatus('current')
if mibBuilder.loadTexts:
stnPmEncapsType.setDescription('Type of Encaps connection to create')
stn_pm_encaps_gre_key = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmEncapsGREKey.setStatus('current')
if mibBuilder.loadTexts:
stnPmEncapsGREKey.setDescription('GRE key')
stn_pm_encaps_name = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 5, 1, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmEncapsName.setStatus('current')
if mibBuilder.loadTexts:
stnPmEncapsName.setDescription('Description of Encaps entry')
stn_pm_manual_sa_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1))
if mibBuilder.loadTexts:
stnPmManualSaTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaTable.setDescription('Entry contains information about a particular ManualSa entry.')
stn_pm_manual_sa_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmManualSaIndex'))
if mibBuilder.loadTexts:
stnPmManualSaEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaEntry.setDescription('Entry contains information about a particular ManualSa entry.')
stn_pm_manual_sa_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmManualSaIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaIndex.setDescription('ManualSa index')
stn_pm_manual_sa_peer_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmManualSaPeerIpAddr.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaPeerIpAddr.setDescription('IP address of peer for tunnel endpoint')
stn_pm_manual_sa_direction = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 3), stn_pm_direction()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmManualSaDirection.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaDirection.setDescription('Direction of manual SA')
stn_pm_manual_sa_spi = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmManualSaSPI.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaSPI.setDescription('SPI of manual SA')
stn_pm_manual_sa_ah_alg = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 5), stn_pm_auth_alg()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmManualSaAhAlg.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaAhAlg.setDescription('AH authentication algorithm')
stn_pm_manual_sa_ah_key = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmManualSaAhKey.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaAhKey.setDescription('Authentication key for AH protocol')
stn_pm_manual_sa_esp_auth_alg = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 7), stn_pm_auth_alg()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmManualSaEspAuthAlg.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaEspAuthAlg.setDescription('ESP authentication algorithm')
stn_pm_manual_sa_esp_auth_key = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmManualSaEspAuthKey.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaEspAuthKey.setDescription('Authentication key for ESP protocol')
stn_pm_manual_sa_esp_encr_alg = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 9), stn_pm_encr_alg()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmManualSaEspEncrAlg.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaEspEncrAlg.setDescription('ESP encryption algorithm')
stn_pm_manual_sa_esp_encr_key = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmManualSaEspEncrKey.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaEspEncrKey.setDescription('Encryption key for ESP protocol')
stn_pm_manual_sa_i_psec_id = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmManualSaIPsecID.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaIPsecID.setDescription('Index or corresponding IPsec record')
stn_pm_manual_sa_description = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 6, 1, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmManualSaDescription.setStatus('current')
if mibBuilder.loadTexts:
stnPmManualSaDescription.setDescription('Description of manual SA entry')
stn_pm_qos_latest_flow_cb = mib_scalar((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmQosLatestFlowCB.setStatus('current')
if mibBuilder.loadTexts:
stnPmQosLatestFlowCB.setDescription('Value of the FlowCB Created')
stn_pm_qos_last_dropped_packet = mib_scalar((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmQosLastDroppedPacket.setStatus('current')
if mibBuilder.loadTexts:
stnPmQosLastDroppedPacket.setDescription('Value of a dropped packet')
stn_pm_qos_flow_cb_created = notification_type((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 2, 0, 1)).setObjects(('STN-ROUTER-MIB', 'stnRouterIndex'), ('STN-POLICY-MIB', 'stnPmQosLatestFlowCB'))
if mibBuilder.loadTexts:
stnPmQosFlowCBCreated.setStatus('current')
if mibBuilder.loadTexts:
stnPmQosFlowCBCreated.setDescription("This trap is generated by Policy manager's QoS subsystem. This SNMP trap is generated in response to QoS creating and installing a flow.")
stn_pm_qos_flow_cb_removed = notification_type((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 2, 0, 2)).setObjects(('STN-ROUTER-MIB', 'stnRouterIndex'), ('STN-POLICY-MIB', 'stnPmQosLatestFlowCB'))
if mibBuilder.loadTexts:
stnPmQosFlowCBRemoved.setStatus('current')
if mibBuilder.loadTexts:
stnPmQosFlowCBRemoved.setDescription("This trap is generated by Policy manager's QoS subsystem. This SNMP trap is generated in response to QoS removing a flow.")
stn_pm_qos_shaping_packet_discard = notification_type((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 2, 0, 3)).setObjects(('STN-ROUTER-MIB', 'stnRouterIndex'), ('STN-POLICY-MIB', 'stnPmQosLastDroppedPacket'))
if mibBuilder.loadTexts:
stnPmQosShapingPacketDiscard.setStatus('current')
if mibBuilder.loadTexts:
stnPmQosShapingPacketDiscard.setDescription("This trap is generated by Policy manager's QoS subsystem. This SNMP trap is generated in response to QoS dropping a packet due to rate shaping.")
stn_pm_qos_threshold_packet_discard = notification_type((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 2, 2, 0, 4)).setObjects(('STN-ROUTER-MIB', 'stnRouterIndex'), ('STN-POLICY-MIB', 'stnPmQosLastDroppedPacket'))
if mibBuilder.loadTexts:
stnPmQosThresholdPacketDiscard.setStatus('current')
if mibBuilder.loadTexts:
stnPmQosThresholdPacketDiscard.setDescription("This trap is generated by Policy manager's QoS subsystem. This SNMP trap is generated in response to QoS dropping a packet due to exceeding a threshold.")
stn_pm_marker_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1))
if mibBuilder.loadTexts:
stnPmMarkerTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmMarkerTable.setDescription('Entry contains information about a particular Marker entry.')
stn_pm_marker_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmMarkerIndex'))
if mibBuilder.loadTexts:
stnPmMarkerEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmMarkerEntry.setDescription('Entry contains information about a particular Marker entry.')
stn_pm_marker_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmMarkerIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmMarkerIndex.setDescription('Marker index')
stn_pm_marker_name = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmMarkerName.setStatus('current')
if mibBuilder.loadTexts:
stnPmMarkerName.setDescription('Description of Marker entry')
stn_pm_marker_byte_value = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmMarkerByteValue.setStatus('current')
if mibBuilder.loadTexts:
stnPmMarkerByteValue.setDescription('Value that the masked TOS byte must match')
stn_pm_marker_byte_mask = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmMarkerByteMask.setStatus('current')
if mibBuilder.loadTexts:
stnPmMarkerByteMask.setDescription('Mask applied to TOS byte for match')
stn_pm_marker_marked_octets = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmMarkerMarkedOctets.setStatus('current')
if mibBuilder.loadTexts:
stnPmMarkerMarkedOctets.setDescription('Number of octets marked by this Marker.')
stn_pm_marker_marked_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 7, 1, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmMarkerMarkedPkts.setStatus('current')
if mibBuilder.loadTexts:
stnPmMarkerMarkedPkts.setDescription('Number of packets marked by this Marker.')
stn_pm_profile_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1))
if mibBuilder.loadTexts:
stnPmProfileTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileTable.setDescription('Entry contains information about a particular Profile entry.')
stn_pm_profile_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmProfileIndex'))
if mibBuilder.loadTexts:
stnPmProfileEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileEntry.setDescription('Entry contains information about a particular Profile entry.')
stn_pm_profile_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileIndex.setDescription('Profile index')
stn_pm_profile_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 2), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileEnabled.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileEnabled.setDescription('Flag to indicate if profile is enabled')
stn_pm_profile_name = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileName.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileName.setDescription('Description of Profile entry')
stn_pm_profile_committed_rate = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileCommittedRate.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileCommittedRate.setDescription('Rate in kbits per second the user or network is committed to transmit.')
stn_pm_profile_committed_burst = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileCommittedBurst.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileCommittedBurst.setDescription('Maximum number of kbytes in a single transmission burst')
stn_pm_profile_excess_rate = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileExcessRate.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileExcessRate.setDescription('Maximum acceptable rate in kbits per second the user or network is committed to transmit')
stn_pm_profile_excess_burst = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileExcessBurst.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileExcessBurst.setDescription('Maximum number of bytes in a single maximum transmission burst')
stn_pm_profile_conform_action = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('deny', 1), ('permit', 2), ('markandforward', 3), ('shape', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileConformAction.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileConformAction.setDescription('Type of action to take for conformant frames')
stn_pm_profile_conform_action_id = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileConformActionID.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileConformActionID.setDescription('Configuration ID of conform action record')
stn_pm_profile_caution_action = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('deny', 1), ('permit', 2), ('markandforward', 3), ('shape', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileCautionAction.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileCautionAction.setDescription('Type of action to take for caution frames')
stn_pm_profile_conform_octets = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileConformOctets.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileConformOctets.setDescription('Number of octets in conformant frames that have arrived.')
stn_pm_profile_conform_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileConformPkts.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileConformPkts.setDescription('Number of conformant frames that have arrived.')
stn_pm_profile_caution_action_id = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileCautionActionID.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileCautionActionID.setDescription('Configuration ID of caution action record')
stn_pm_profile_exceed_action = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('deny', 1), ('permit', 2), ('markandforward', 3), ('shape', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileExceedAction.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileExceedAction.setDescription('Type of action to take for exceeding frames')
stn_pm_profile_caution_octets = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 15), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileCautionOctets.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileCautionOctets.setDescription('Number of octets in caution frames that have arrived.')
stn_pm_profile_caution_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 16), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileCautionPkts.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileCautionPkts.setDescription('Number of caution frames that have arrived.')
stn_pm_profile_exceed_action_id = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileExceedActionID.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileExceedActionID.setDescription('Configuration ID of exceeding action record')
stn_pm_profile_exceed_octets = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 18), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileExceedOctets.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileExceedOctets.setDescription('Number of octets in exceeding frames that have arrived.')
stn_pm_profile_exceed_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 8, 1, 1, 19), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmProfileExceedPkts.setStatus('current')
if mibBuilder.loadTexts:
stnPmProfileExceedPkts.setDescription('Number of exceeding frames that have arrived.')
stn_pm_queue_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1))
if mibBuilder.loadTexts:
stnPmQueueTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmQueueTable.setDescription('Entry contains information about a particular Queue entry.')
stn_pm_queue_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmQueueIndex'))
if mibBuilder.loadTexts:
stnPmQueueEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmQueueEntry.setDescription('Entry contains information about a particular Queue entry.')
stn_pm_queue_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmQueueIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmQueueIndex.setDescription('Queue index')
stn_pm_queue_name = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmQueueName.setStatus('current')
if mibBuilder.loadTexts:
stnPmQueueName.setDescription('Description of Queue entry')
stn_pm_queue_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmQueueThreshold.setStatus('current')
if mibBuilder.loadTexts:
stnPmQueueThreshold.setDescription('Queue Drop Threshold')
stn_pm_queue_drop_type = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('tailDrop', 2), ('headDrop', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmQueueDropType.setStatus('current')
if mibBuilder.loadTexts:
stnPmQueueDropType.setDescription('Type of algorithm used to drop packets when threshold is reached')
stn_pm_queue_drop_hc_octets = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmQueueDropHCOctets.setStatus('current')
if mibBuilder.loadTexts:
stnPmQueueDropHCOctets.setDescription('Number of octets that have been dropped this queue.')
stn_pm_queue_drop_hc_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmQueueDropHCPkts.setStatus('current')
if mibBuilder.loadTexts:
stnPmQueueDropHCPkts.setDescription('Number of packets that have been dropped this queue.')
stn_pm_queue_queue_len = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmQueueQueueLen.setStatus('current')
if mibBuilder.loadTexts:
stnPmQueueQueueLen.setDescription('Number of packets currently in the queue.')
stn_pm_queue_max_queue_len = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 9, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmQueueMaxQueueLen.setStatus('current')
if mibBuilder.loadTexts:
stnPmQueueMaxQueueLen.setDescription('Maximum number of packets in queue since last statistics reset.')
stn_pm_firewall_event_log_msg = mib_scalar((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallEventLogMsg.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallEventLogMsg.setDescription('Describes SNMP Trap generated by STN Firewall')
stn_pm_firewall_log = notification_type((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 10, 1, 2, 0, 1)).setObjects(('STN-ROUTER-MIB', 'stnRouterIndex'), ('STN-POLICY-MIB', 'stnPmServiceIndex'), ('STN-POLICY-MIB', 'stnPmPolicyIndex'), ('STN-POLICY-MIB', 'stnPmFirewallEventLogMsg'))
if mibBuilder.loadTexts:
stnPmFirewallLog.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallLog.setDescription("This trap is generated by Policy manager's Firewall subsystem. This SNMP trap is generated in response to firewall event logging.")
stn_pm_firewall_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1))
if mibBuilder.loadTexts:
stnPmFirewallTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallTable.setDescription('Entry contains information about a particular Firewall entry.')
stn_pm_firewall_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmFirewallIndex'))
if mibBuilder.loadTexts:
stnPmFirewallEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallEntry.setDescription('Entry contains information about a particular Firewall entry.')
stn_pm_firewall_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallIndex.setDescription('Firewall index')
stn_pm_firewall_name = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallName.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallName.setDescription('Description of firewall entry')
stn_pm_firewall_accept_other_ip_options = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 3), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallAcceptOtherIPOptions.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallAcceptOtherIPOptions.setDescription('Accept packets with other IP options (non source routing).')
stn_pm_firewall_accept_source_routing = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 4), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallAcceptSourceRouting.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallAcceptSourceRouting.setDescription('Accept packets with source routing options')
stn_pm_firewall_tcp_ack_life_time = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallTcpAckLifeTime.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallTcpAckLifeTime.setDescription('TCP ACK lifetime')
stn_pm_firewall_tcp_syn_life_time = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallTcpSynLifeTime.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallTcpSynLifeTime.setDescription('TCP SYN lifetime')
stn_pm_firewall_tcp_fin_life_time = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallTcpFinLifeTime.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallTcpFinLifeTime.setDescription('TCP FIN lifetime')
stn_pm_firewall_tcp_rst_life_time = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallTcpRstLifeTime.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallTcpRstLifeTime.setDescription('TCP RST lifetime')
stn_pm_firewall_tcp_inactivity_life_time = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallTcpInactivityLifeTime.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallTcpInactivityLifeTime.setDescription('TCP inactivity lifetime')
stn_pm_firewall_udp_inactivity_life_time = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallUdpInactivityLifeTime.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallUdpInactivityLifeTime.setDescription('UDP inactivity lifetime')
stn_pm_firewall_syn_attack_detection = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 11), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallSynAttackDetection.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallSynAttackDetection.setDescription('Enable SYN attack detection')
stn_pm_firewall_land_attack_detection = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 12), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallLandAttackDetection.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallLandAttackDetection.setDescription('Enable Land attack detection')
stn_pm_firewall_ping_flooding_detection = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 13), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallPingFloodingDetection.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallPingFloodingDetection.setDescription('Enable ping flooding attack detection')
stn_pm_firewall_ping_of_death_detection = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 14), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallPingOfDeathDetection.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallPingOfDeathDetection.setDescription('Enable ping of death attack detection')
stn_pm_firewall_port_scan_detection = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 15), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallPortScanDetection.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallPortScanDetection.setDescription('Enable port scan attack detection')
stn_pm_firewall_ping_scan_detection = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 16), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallPingScanDetection.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallPingScanDetection.setDescription('Enable ping scan/sweep attack detection')
stn_pm_firewall_tcp_syn_backlog_queue_size = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallTcpSynBacklogQueueSize.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallTcpSynBacklogQueueSize.setDescription('Size of the SYN backlog queue')
stn_pm_firewall_pings_per_minute = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 18), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallPingsPerMinute.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallPingsPerMinute.setDescription('Maximum number of pings allowed per minute')
stn_pm_firewall_max_ping_size = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 19), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallMaxPingSize.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallMaxPingSize.setDescription('Maximum allowable size for ping')
stn_pm_firewall_enable_dynamic_port_apps = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 20), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallEnableDynamicPortApps.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallEnableDynamicPortApps.setDescription('Enabled Dynamic port applications expressed as bit-map.')
stn_pm_firewall_max_dyn_hash_table_size = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 21), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallMaxDynHashTableSize.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallMaxDynHashTableSize.setDescription('Max dynamic hash table size - must be a power of 2.')
stn_pm_firewall_min_log_period = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 11, 1, 1, 22), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallMinLogPeriod.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallMinLogPeriod.setDescription('Minimim period between event logs')
stn_pm_firewall_action_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1))
if mibBuilder.loadTexts:
stnPmFirewallActionTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallActionTable.setDescription('Entry contains information about a particular Firewall Action entry.')
stn_pm_firewall_action_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmFirewallActionIndex'))
if mibBuilder.loadTexts:
stnPmFirewallActionEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallActionEntry.setDescription('Entry contains information about a particular Firewall Action entry.')
stn_pm_firewall_action_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallActionIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallActionIndex.setDescription('Firewall Action index')
stn_pm_firewall_action_name = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallActionName.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallActionName.setDescription('Description of firewall entry')
stn_pm_firewall_action_tracking_type = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('short', 2), ('long', 3), ('trap', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallActionTrackingType.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallActionTrackingType.setDescription('TCP ACK lifetime')
stn_pm_firewall_action_stateful = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1, 4), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallActionStateful.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallActionStateful.setDescription('Perform stateful processing')
stn_pm_firewall_action_inactivity_life_time = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallActionInactivityLifeTime.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallActionInactivityLifeTime.setDescription('Inactivity lifetime')
stn_pm_firewall_action_reject_action = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 12, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('icmpUnreachPort', 2), ('tcpReset', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmFirewallActionRejectAction.setStatus('current')
if mibBuilder.loadTexts:
stnPmFirewallActionRejectAction.setDescription('Firewall policy reject action.')
stn_pm_service_list_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1))
if mibBuilder.loadTexts:
stnPmServiceListTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceListTable.setDescription('Entry contains information about a particular Firewall Action entry.')
stn_pm_service_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmServiceListIndex'))
if mibBuilder.loadTexts:
stnPmServiceListEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceListEntry.setDescription('Entry contains information about a particular Firewall Action entry.')
stn_pm_service_list_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmServiceListIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceListIndex.setDescription('Service List Action index')
stn_pm_service_list_name = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmServiceListName.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceListName.setDescription('Description of service list entry')
stn_pm_service_list_conn_idle_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmServiceListConnIdleTimeout.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceListConnIdleTimeout.setDescription('Idle timeout')
stn_pm_service_list_num_services = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmServiceListNumServices.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceListNumServices.setDescription('Number of services in this serviceList')
stn_pm_service_list_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 13, 1, 1, 5), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmServiceListEnabled.setStatus('current')
if mibBuilder.loadTexts:
stnPmServiceListEnabled.setDescription('Flag to indicate if service is enabled')
stn_pm_sl_service_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1))
if mibBuilder.loadTexts:
stnPmSLServiceTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmSLServiceTable.setDescription('A list of PM service entries.')
stn_pm_sl_service_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmSLIndex'), (0, 'STN-POLICY-MIB', 'stnPmSLServiceIndex'))
if mibBuilder.loadTexts:
stnPmSLServiceEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmSLServiceEntry.setDescription('Entry contains information about a particular policy manager service.')
stn_pm_sl_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmSLIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmSLIndex.setDescription('Index into service-list table')
stn_pm_sl_service_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmSLServiceIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmSLServiceIndex.setDescription('Index into service table')
stn_pm_sl_service_name = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 65))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmSLServiceName.setStatus('current')
if mibBuilder.loadTexts:
stnPmSLServiceName.setDescription('Name of service')
stn_pm_sl_service_idle_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmSLServiceIdleTimeout.setStatus('current')
if mibBuilder.loadTexts:
stnPmSLServiceIdleTimeout.setDescription('Idle timeout for service')
stn_pm_sl_service_num_policies = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmSLServiceNumPolicies.setStatus('current')
if mibBuilder.loadTexts:
stnPmSLServiceNumPolicies.setDescription('Number of policies in this service')
stn_pm_sl_service_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 6), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmSLServiceEnabled.setStatus('current')
if mibBuilder.loadTexts:
stnPmSLServiceEnabled.setDescription('Flag to indicate if service is enabled')
stn_pm_sl_service_type = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('vpn', 1), ('firewall', 2), ('ip-fileter', 3), ('forwarding', 4), ('qos', 5), ('mpls', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmSLServiceType.setStatus('current')
if mibBuilder.loadTexts:
stnPmSLServiceType.setDescription('Type of service')
stn_pm_sl_service_firewall_id = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 14, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmSLServiceFirewallID.setStatus('current')
if mibBuilder.loadTexts:
stnPmSLServiceFirewallID.setDescription("Instance of service's firewall record")
stn_pm_class_table = mib_table((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1))
if mibBuilder.loadTexts:
stnPmClassTable.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassTable.setDescription("This table is a 'flattened' version of a hierarchical class trees that specify the bandwidth allocation for the CBQ interfaces of the system. Each tree is rooted at an interface. A class may either be a leaf, meaning it has no children, or it may be an interior class which has children. As packets are forwarded out an interface, they are compared to the 'flow definition' of each class down the tree until a matching leaf is found or until all classes are traversed. Once a matching class is found, the packet is transmitted or not based on the constraints configured for the class, most importantly the allocated bandwidth as identified by stnPmClassRate. If no matching class is found, the packet is dropped.")
stn_pm_class_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1)).setIndexNames((0, 'STN-POLICY-MIB', 'stnPmIfIndex'), (0, 'STN-POLICY-MIB', 'stnPmTxclassInstance'))
if mibBuilder.loadTexts:
stnPmClassEntry.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassEntry.setDescription("Information about a single traffic class. Traffic classes are identified by their associated interface's ifIndex and their name. (Which means class names must be unique for a particular interface.) Finally, the following objects cannot be modified once the row is active: stnPmClassParent, and stnPmClassQueueElasticityFactor.")
stn_pm_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 1), interface_index()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmIfIndex.setStatus('current')
if mibBuilder.loadTexts:
stnPmIfIndex.setDescription('A sequence number that identifies a particular interface the class has been installed on.')
stn_pm_txclass_instance = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmTxclassInstance.setStatus('current')
if mibBuilder.loadTexts:
stnPmTxclassInstance.setDescription('The instance of the configuration record for the tranmsit class that the interface is using.')
stn_pm_class_name = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(1, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassName.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassName.setDescription("A user-defined name for the traffic class. This is the unique identifier for the class within the scope of the interface. For example, the class that defines the IP address range for a particular customer might be 'Customer Fred Co.'")
stn_pm_class_parent = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(1, 64)).clone('interface')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassParent.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassParent.setDescription('Name of class parent')
stn_pm_class_rate = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 5), stn_pm_bit_rate()).setUnits('bits per second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassRate.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassRate.setDescription("A fraction of the bandwidth of the root interface to be allocated to this traffic class. Note that specifying 0 bits/second effectively filters all traffic that matches this class' flow specification. Also note that the sum of bit rates for all classes defined under the same class must be less than or equal to stnPmClassRate of the parent.")
stn_pm_class_priority = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 7)).clone(3)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassPriority.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassPriority.setDescription('The priority for this class. The smaller the value, the higher the priority. Delay-sensitive flows (such as video or audio) should be given higher priority values.')
stn_pm_class_max_idle = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 7), integer32()).setUnits('tens of nanoseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassMaxIdle.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassMaxIdle.setDescription("An upper bound for the average idle time (see the DESCRIPTION of stnPmClassStatsIdle). Thus, stnPmClassMaxIdle limits the 'credit' given to a class that has recently been under its allocation.")
stn_pm_class_min_idle = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 8), integer32()).setUnits('tens of nanoseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassMinIdle.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassMinIdle.setDescription("The negative lower bound of the average idle. Thus, a negative minidle lets the router 'remember' that a class has recently used more than its allocated bandwidth.")
stn_pm_class_max_queue_len = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 200)).clone(100)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassMaxQueueLen.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassMaxQueueLen.setDescription('A factor used to influence whether this traffic class gets a proportionally larger or smaller queue size than other classes. Other factors in the queue size include the percent bandwidth allocated to this class and the priority.')
stn_pm_class_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('up', 1), ('down', 2), ('downConflict', 3), ('autoClassActive', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassOperStatus.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassOperStatus.setDescription("The actual operational status of the traffic class. The value 'up(1)' means this traffic class is in use, the value 'down(2)' indicates the traffic class is not in use either due to an internal problem or because it (or an ancestor) is administratively disabled, and the value 'downConflict(3)' indicates the class definition conflicts with those of its siblings. The value autoClassActive(4) means that the class is a dynamically created AutoClass, which may not be modified in any way until it is saved to Non-Volatile configuration memory. After an AutoClass is saved to NVRAM, it's operational status will transistion to up (1).")
stn_pm_class_bw_use = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('atLimit', 1), ('underLimit', 2), ('overLimit', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassBwUse.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassBwUse.setDescription("An indication of whether this traffic class has used its allocated bandwidth, has not used its allocated bandwidth or has used more than its allocated bandwidth and is therefore 'atLimit(1)', 'underLimit(2)', or 'overLimit(3)' respectively.")
stn_pm_class_unsatisfied = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 12), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassUnsatisfied.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassUnsatisfied.setDescription("An indication of whether this traffic class is 'unsatisfied'. The value of this object is 'true(1)' if it is underLimit and has a persistent backlog, meaning it has packets waiting in its queue. The value is 'false(1)' otherwise. Note that a class can be considered satisfied if it is underLimit and it just hasn't had anything to transmit. The presence of an unsatisfied class indicates that some other class is overLimit and 'hogging' bandwidth. Persistently unsatisfied classes indicate that tuning some of the parameters (such as stnPmClassMaxIdle or stnPmClassBounded) may be necessary.")
stn_pm_class_queue_size = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 13), gauge32().subtype(subtypeSpec=value_range_constraint(0, 2048))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassQueueSize.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassQueueSize.setDescription('The size of the queue associated with this traffic class. This is the maximum number of packets that can be in the queue, not the number that are currently queued (see stnPmClassStatsQueuedPkts).')
stn_pm_class_max_rate = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 14), stn_pm_bit_rate()).setUnits('bits per second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassMaxRate.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassMaxRate.setDescription("The maximum bandwidth the class may achieve, including bandwidth allocated to this class, and any bandwidth that may be borrowed. A value of zero (0) indicates that this feature is not being used. The stnPmClassMaxRate must be set to a value higher than the stnPmClassRate, but may also exceed the parent class's stnPmClassRate.")
stn_pm_class_description = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 15), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassDescription.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassDescription.setDescription('Textual name associated with this class.')
stn_pm_class_stats_high_water = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsHighWater.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsHighWater.setDescription('The historical maximum number of packets that were queued for this class since the system was last reinitialized.')
stn_pm_class_stats_idle = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 17), integer32()).setUnits('tens of nanoseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsIdle.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsIdle.setDescription('The difference between the desired time and the measured actual time between the most recent packet transmissions for the last two packets sent from this class. When the connection is sending perfectly at its allocated rate, then stnPmClassIdle is zero. When the connection is sending more than its allocated bandwidth, then stnPmClassIdle is negative.')
stn_pm_class_stats_queued_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 18), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsQueuedPkts.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsQueuedPkts.setDescription("The current number of packets in the class' queue.")
stn_pm_class_stats_octets = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsOctets.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsOctets.setDescription("The number of bytes transmitted for this traffic class. Note that a class with a configured stnPmClassRate of 0 bits/second will never transmit any octets and therefore this object's value will be 0. These filtered octets will be counted as part of stnPmClassStatsDroppedOctets.")
stn_pm_class_stats_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsPkts.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsPkts.setDescription("The number of packets transmitted for this traffic class. Note that a class with a configured stnPmClassRate of 0 bits/second will never transmit any packets and therefore this object's value will be 0. These filtered packets will be counted as part of stnPmClassStatsDroppedPkts.")
stn_pm_class_stats_over_limits = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsOverLimits.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsOverLimits.setDescription('A count of the number of times the class used more than its allocated bandwidth.')
stn_pm_class_stats_borrow_attempts = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsBorrowAttempts.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsBorrowAttempts.setDescription("A count of the number of times the class attempted to 'borrow' bandwidth from another class.")
stn_pm_class_stats_dropped_octets = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsDroppedOctets.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsDroppedOctets.setDescription('A count of the number of octets dropped for this class because of lack of buffer space in the queue or because the class exceeded its allocated bandwidth.')
stn_pm_class_stats_dropped_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsDroppedPkts.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsDroppedPkts.setDescription('A count of the number of packets dropped for this class because of lack of buffer space in the queue or because the class exceeded its allocated bandwidth.')
stn_pm_class_stats_throttles = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsThrottles.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsThrottles.setDescription('A count of the number of times the class was throttled (not allowed to transmit packets) by the link-sharing algorithm.')
stn_pm_class_stats_unsatisfieds = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsUnsatisfieds.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsUnsatisfieds.setDescription('A count of the number of times the class was unsatisfied, as indicated by the stnPmClassUnsatisfied object.')
stn_pm_class_stats_aggr_octets = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsAggrOctets.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsAggrOctets.setDescription('The aggregate number of bytes transmitted by the children of this traffic class.')
stn_pm_class_stats_aggr_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 3551, 2, 11, 1, 15, 1, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
stnPmClassStatsAggrPkts.setStatus('current')
if mibBuilder.loadTexts:
stnPmClassStatsAggrPkts.setDescription('The aggregate number of packets transmitted by the children of this traffic class.')
mibBuilder.exportSymbols('STN-POLICY-MIB', stnPmManualSaEspAuthKey=stnPmManualSaEspAuthKey, stnPmFirewallPingFloodingDetection=stnPmFirewallPingFloodingDetection, stnPmSLServiceTable=stnPmSLServiceTable, stnPmPreferenceLifeTime=stnPmPreferenceLifeTime, stnPmProfileExceedOctets=stnPmProfileExceedOctets, stnPmMibConformance=stnPmMibConformance, stnPmServiceName=stnPmServiceName, stnPmFirewallMaxDynHashTableSize=stnPmFirewallMaxDynHashTableSize, stnPmPolicyDirection=stnPmPolicyDirection, stnPmQueueEntry=stnPmQueueEntry, stnPmPolicyTosByteValue=stnPmPolicyTosByteValue, stnPmMarkerByteValue=stnPmMarkerByteValue, stnPmServiceEntry=stnPmServiceEntry, stnPmClass=stnPmClass, stnPmPolicyDestMask=stnPmPolicyDestMask, stnPmFirewallActionName=stnPmFirewallActionName, stnPmClassStatsAggrOctets=stnPmClassStatsAggrOctets, stnPmEncapsEntry=stnPmEncapsEntry, stnPmPolicyMarkedOctets=stnPmPolicyMarkedOctets, stnPmManualSaEspEncrAlg=stnPmManualSaEspEncrAlg, stnPmFirewallSynAttackDetection=stnPmFirewallSynAttackDetection, stnPmQosLastDroppedPacket=stnPmQosLastDroppedPacket, stnPmManualSaTable=stnPmManualSaTable, stnPmServiceListTable=stnPmServiceListTable, stnPmServiceType=stnPmServiceType, stnPmFirewallActionInactivityLifeTime=stnPmFirewallActionInactivityLifeTime, stnPmClassRate=stnPmClassRate, stnPmProfileIndex=stnPmProfileIndex, stnPmPolicyMatches=stnPmPolicyMatches, stnPmMarkerName=stnPmMarkerName, stnPmFirewallActionIndex=stnPmFirewallActionIndex, stnPmServiceFirewallID=stnPmServiceFirewallID, stnPmPolicyName=stnPmPolicyName, stnPmPolicyProtocol=stnPmPolicyProtocol, stnPmPolicyMisses=stnPmPolicyMisses, stnPmManualSaIPsecID=stnPmManualSaIPsecID, stnPmQosLatestFlowCB=stnPmQosLatestFlowCB, stnPmClassMaxQueueLen=stnPmClassMaxQueueLen, stnPmServiceTable=stnPmServiceTable, PYSNMP_MODULE_ID=stnPm, stnPmPolicySrcAddrSelector=stnPmPolicySrcAddrSelector, stnPmPreferenceEspEncrAlg=stnPmPreferenceEspEncrAlg, stnPmQueueDropHCOctets=stnPmQueueDropHCOctets, stnPmClassStatsThrottles=stnPmClassStatsThrottles, stnPmSLServiceIdleTimeout=stnPmSLServiceIdleTimeout, stnPmManualSaIndex=stnPmManualSaIndex, stnPmQosFlowCBCreated=stnPmQosFlowCBCreated, stnPmFirewallPingScanDetection=stnPmFirewallPingScanDetection, stnPmManualSaEntry=stnPmManualSaEntry, stnPmEncapsGREKey=stnPmEncapsGREKey, stnPmPreferenceEntry=stnPmPreferenceEntry, stnPmProfileCommittedRate=stnPmProfileCommittedRate, stnPmServiceListName=stnPmServiceListName, stnPmPolicySrcEndAddr=stnPmPolicySrcEndAddr, stnPmPolicyMarkerID=stnPmPolicyMarkerID, stnPmManualSaAhAlg=stnPmManualSaAhAlg, stnPmManualSaAhKey=stnPmManualSaAhKey, stnPmProfileExceedAction=stnPmProfileExceedAction, stnPmProfileExceedActionID=stnPmProfileExceedActionID, stnPmQueueMaxQueueLen=stnPmQueueMaxQueueLen, stnPmClassStatsPkts=stnPmClassStatsPkts, stnPmClassStatsDroppedPkts=stnPmClassStatsDroppedPkts, stnPmFirewallTable=stnPmFirewallTable, stnPmFirewallEntry=stnPmFirewallEntry, stnPmFirewallActionTrackingType=stnPmFirewallActionTrackingType, stnPmClassMinIdle=stnPmClassMinIdle, stnPmPolicyDestAddrMatchType=stnPmPolicyDestAddrMatchType, stnPMProxyTunnel=stnPMProxyTunnel, stnPmFirewallName=stnPmFirewallName, stnPmPolicyActionID=stnPmPolicyActionID, StnPmAuthAlg=StnPmAuthAlg, stnPmServiceIndex=stnPmServiceIndex, stnPmMarkerEntry=stnPmMarkerEntry, stnPmSLServiceEntry=stnPmSLServiceEntry, stnPmPolicySrcPortMatchType=stnPmPolicySrcPortMatchType, stnPmPolicySrcEndPort=stnPmPolicySrcEndPort, stnPmIPsecEntry=stnPmIPsecEntry, stnPmManualSaSPI=stnPmManualSaSPI, stnPmQueueDropType=stnPmQueueDropType, stnPmPolicySrcMask=stnPmPolicySrcMask, stnPmPreferenceLifeBytes=stnPmPreferenceLifeBytes, stnPmPolicyTosByteMatchType=stnPmPolicyTosByteMatchType, stnPmPolicy=stnPmPolicy, stnPmEncapsLocalIpAddr=stnPmEncapsLocalIpAddr, stnPmProfileEnabled=stnPmProfileEnabled, stnPmPolicyDestPortMatchType=stnPmPolicyDestPortMatchType, stnPmFirewallActionStateful=stnPmFirewallActionStateful, stnPmFirewallAction=stnPmFirewallAction, stnPmPolicyTable=stnPmPolicyTable, stnPmPreferenceDescription=stnPmPreferenceDescription, stnPmProfileCommittedBurst=stnPmProfileCommittedBurst, stnPmQueueDropHCPkts=stnPmQueueDropHCPkts, stnPmFirewallMaxPingSize=stnPmFirewallMaxPingSize, stnPmProfileCautionActionID=stnPmProfileCautionActionID, stnPmMarker=stnPmMarker, stnPmManualSaEspAuthAlg=stnPmManualSaEspAuthAlg, stnPmIPsecName=stnPmIPsecName, stnPmClassUnsatisfied=stnPmClassUnsatisfied, stnPmPreferenceIndex=stnPmPreferenceIndex, stnPmServiceNumPolicies=stnPmServiceNumPolicies, stnPmIPsecPeerIpAddr=stnPmIPsecPeerIpAddr, stnPmFirewallEventLogMsg=stnPmFirewallEventLogMsg, stnPmClassStatsBorrowAttempts=stnPmClassStatsBorrowAttempts, stnPmFirewallAcceptSourceRouting=stnPmFirewallAcceptSourceRouting, stnPmPolicyDestAddrSelector=stnPmPolicyDestAddrSelector, stnPmIfIndex=stnPmIfIndex, stnPmFirewallTcpInactivityLifeTime=stnPmFirewallTcpInactivityLifeTime, stnPmManualSaEspEncrKey=stnPmManualSaEspEncrKey, stnPmFirewallMinLogPeriod=stnPmFirewallMinLogPeriod, stnPmQueueThreshold=stnPmQueueThreshold, stnPmFirewallActionTable=stnPmFirewallActionTable, stnPmSLService=stnPmSLService, stnPmClassParent=stnPmClassParent, stnPmQosShapingPacketDiscard=stnPmQosShapingPacketDiscard, stnPmProfileName=stnPmProfileName, stnPmProfileConformPkts=stnPmProfileConformPkts, stnPmFirewallEnableDynamicPortApps=stnPmFirewallEnableDynamicPortApps, stnPmPolicyDestEndPort=stnPmPolicyDestEndPort, stnPmPreferencePFSGroup=stnPmPreferencePFSGroup, stnPmServiceListEntry=stnPmServiceListEntry, stnPmPolicyProtocolMatchType=stnPmPolicyProtocolMatchType, stnPmMarkerByteMask=stnPmMarkerByteMask, stnPmPolicySrcPort=stnPmPolicySrcPort, stnPmSLIndex=stnPmSLIndex, stnPmFirewallNotification=stnPmFirewallNotification, stnPmServiceEnabled=stnPmServiceEnabled, stnPmService=stnPmService, stnPmEncapsPeerIpAddr=stnPmEncapsPeerIpAddr, stnPmQueueIndex=stnPmQueueIndex, stnPmFirewallPortScanDetection=stnPmFirewallPortScanDetection, stnPmFirewallTcpSynBacklogQueueSize=stnPmFirewallTcpSynBacklogQueueSize, stnPmPreferenceAhAlg=stnPmPreferenceAhAlg, stnPmEncapsTable=stnPmEncapsTable, stnPmFirewallLog=stnPmFirewallLog, stnPmFirewallAcceptOtherIPOptions=stnPmFirewallAcceptOtherIPOptions, stnPmClassMaxRate=stnPmClassMaxRate, stnPmClassEntry=stnPmClassEntry, stnPmServiceListEnabled=stnPmServiceListEnabled, stnPmManualSa=stnPmManualSa, stnPmPreferenceNum=stnPmPreferenceNum, stnPmPreferenceIPsecID=stnPmPreferenceIPsecID, stnPmFirewallActionRejectAction=stnPmFirewallActionRejectAction, stnPm=stnPm, stnPmIPsec=stnPmIPsec, stnPmEncaps=stnPmEncaps, stnPmFirewallTrapVars=stnPmFirewallTrapVars, stnPmIPsecMode=stnPmIPsecMode, stnPmQueueQueueLen=stnPmQueueQueueLen, stnPmClassStatsIdle=stnPmClassStatsIdle, StnPmEncrAlg=StnPmEncrAlg, stnPmIPsecIndex=stnPmIPsecIndex, stnPmTxclassInstance=stnPmTxclassInstance, stnPmQosTrapVars=stnPmQosTrapVars, stnPmServiceList=stnPmServiceList, stnPmClassPriority=stnPmClassPriority, stnPmSLServiceName=stnPmSLServiceName, stnPmQueueTable=stnPmQueueTable, stnPmSLServiceFirewallID=stnPmSLServiceFirewallID, stnPmPolicyAction=stnPmPolicyAction, StnPmSelectorType=StnPmSelectorType, stnPmPolicySrcAddr=stnPmPolicySrcAddr, stnPmEncapsType=stnPmEncapsType, stnPmFirewallTcpFinLifeTime=stnPmFirewallTcpFinLifeTime, stnPmServiceIdleTimeout=stnPmServiceIdleTimeout, StnPmBitRate=StnPmBitRate, stnPmClassStatsHighWater=stnPmClassStatsHighWater, stnPmPolicyDestAddr=stnPmPolicyDestAddr, stnPmPolicyServiceIndex=stnPmPolicyServiceIndex, stnPmPolicyIndex=stnPmPolicyIndex, stnPmPolicyIcmpTypes=stnPmPolicyIcmpTypes, stnPmFirewallPingOfDeathDetection=stnPmFirewallPingOfDeathDetection, stnPmClassBwUse=stnPmClassBwUse, stnPmEncapsName=stnPmEncapsName, stnPmMarkerMarkedPkts=stnPmMarkerMarkedPkts, stnPmPolicyTxclassID=stnPmPolicyTxclassID, stnPmServiceListConnIdleTimeout=stnPmServiceListConnIdleTimeout, StnPmDirection=StnPmDirection, stnPmPolicyEntry=stnPmPolicyEntry, stnPmPreferenceEspAuthAlg=stnPmPreferenceEspAuthAlg, stnPmQueueName=stnPmQueueName, stnPmFirewallActionEntry=stnPmFirewallActionEntry, stnPmIPsecNumPreferences=stnPmIPsecNumPreferences, stnPmClassStatsAggrPkts=stnPmClassStatsAggrPkts, stnPmFirewallTrap=stnPmFirewallTrap, stnPmPolicyEnabled=stnPmPolicyEnabled, stnPmTraps=stnPmTraps, stnPmProfileEntry=stnPmProfileEntry, stnPmFirewallIndex=stnPmFirewallIndex, stnPmClassDescription=stnPmClassDescription, stnPmFirewallTcpAckLifeTime=stnPmFirewallTcpAckLifeTime, stnPmClassQueueSize=stnPmClassQueueSize, stnPmPolicyTosByteMask=stnPmPolicyTosByteMask, stnPmPolicyDestEndAddr=stnPmPolicyDestEndAddr, stnPmIPsecTable=stnPmIPsecTable, stnPmFirewallUdpInactivityLifeTime=stnPmFirewallUdpInactivityLifeTime, stnPmProfileCautionAction=stnPmProfileCautionAction, stnPmClassName=stnPmClassName, stnPmQueue=stnPmQueue, stnPmQosFlowCBRemoved=stnPmQosFlowCBRemoved, stnPmManualSaDescription=stnPmManualSaDescription, stnPmProfileConformAction=stnPmProfileConformAction, stnPmServiceListIndex=stnPmServiceListIndex, stnPmFirewall=stnPmFirewall, stnPmProfileExcessRate=stnPmProfileExcessRate, stnPmMarkerMarkedOctets=stnPmMarkerMarkedOctets, stnPmProfileExcessBurst=stnPmProfileExcessBurst, stnPmQosTrap=stnPmQosTrap, stnPmFirewallTcpSynLifeTime=stnPmFirewallTcpSynLifeTime, stnPmFirewallPingsPerMinute=stnPmFirewallPingsPerMinute, stnPmPreferenceTable=stnPmPreferenceTable, stnPmManualSaPeerIpAddr=stnPmManualSaPeerIpAddr, stnPmIPsecReplayDetectionEnabled=stnPmIPsecReplayDetectionEnabled, stnPmFirewallTcpRstLifeTime=stnPmFirewallTcpRstLifeTime, stnPmIPsecKeyNegType=stnPmIPsecKeyNegType, stnPmClassStatsOverLimits=stnPmClassStatsOverLimits, stnPmPreference=stnPmPreference, stnPmIPsecNumManualSAs=stnPmIPsecNumManualSAs, stnPmPolicyMarkedPkts=stnPmPolicyMarkedPkts, stnPmFirewallNotificationPrefix=stnPmFirewallNotificationPrefix, stnPmIPsecLocalIpAddr=stnPmIPsecLocalIpAddr, stnPmPolicyDestPort=stnPmPolicyDestPort, stnPmFirewallLandAttackDetection=stnPmFirewallLandAttackDetection, stnPmSLServiceEnabled=stnPmSLServiceEnabled, stnPmMarkerIndex=stnPmMarkerIndex, stnPmPolicySrcAddrMatchType=stnPmPolicySrcAddrMatchType, stnPmMarkerTable=stnPmMarkerTable, stnPmObjects=stnPmObjects, stnPmEncapsIndex=stnPmEncapsIndex, stnPmProfileCautionPkts=stnPmProfileCautionPkts, stnPmProfileConformActionID=stnPmProfileConformActionID, stnPmQosNotificationPrefix=stnPmQosNotificationPrefix, stnPmServiceListNumServices=stnPmServiceListNumServices, stnPmQosThresholdPacketDiscard=stnPmQosThresholdPacketDiscard, stnPmClassStatsQueuedPkts=stnPmClassStatsQueuedPkts, stnPmProfileExceedPkts=stnPmProfileExceedPkts, stnPmProfile=stnPmProfile, stnPmQosNotification=stnPmQosNotification, stnPmSLServiceType=stnPmSLServiceType, stnPmClassStatsDroppedOctets=stnPmClassStatsDroppedOctets, StnPmPolicyMatchType=StnPmPolicyMatchType, stnPmProfileTable=stnPmProfileTable, stnPmClassMaxIdle=stnPmClassMaxIdle, stnPmProfileCautionOctets=stnPmProfileCautionOctets, stnPmClassTable=stnPmClassTable, stnPmClassStatsOctets=stnPmClassStatsOctets, stnPmClassStatsUnsatisfieds=stnPmClassStatsUnsatisfieds, stnPmSLServiceIndex=stnPmSLServiceIndex, stnPmClassOperStatus=stnPmClassOperStatus, stnPmPolicyCreateMirror=stnPmPolicyCreateMirror, stnPmProfileConformOctets=stnPmProfileConformOctets, stnPmManualSaDirection=stnPmManualSaDirection, stnPmSLServiceNumPolicies=stnPmSLServiceNumPolicies) |
def main():
# input
N, M = map(int, input().split())
scs = [list(map(int, input().split())) for _ in range(M)]
# compute
if N == 1:
numbers = range(0, 10)
elif N == 2:
numbers = range(10, 100)
else:
numbers = range(100, 1000)
for i in numbers:
flag = True
number = list(map(int, str(i)))
for s,c in scs:
if number[s-1] == c:
pass
else:
flag = False
if flag:
print(''.join(list(map(str, number))))
exit()
else:
pass
# output
print(-1)
if __name__ == '__main__':
main()
| def main():
(n, m) = map(int, input().split())
scs = [list(map(int, input().split())) for _ in range(M)]
if N == 1:
numbers = range(0, 10)
elif N == 2:
numbers = range(10, 100)
else:
numbers = range(100, 1000)
for i in numbers:
flag = True
number = list(map(int, str(i)))
for (s, c) in scs:
if number[s - 1] == c:
pass
else:
flag = False
if flag:
print(''.join(list(map(str, number))))
exit()
else:
pass
print(-1)
if __name__ == '__main__':
main() |
#Crie um programa que diga 'Hello World'
msg = 'Hello World!'
print( msg )
| msg = 'Hello World!'
print(msg) |
class car:
def __init__(self):
self.__fuelling()
def drive(self):
print("Driving..!!")
def __fuelling(self):
print("Refilling Gas")
volvo=car()
volvo.drive()
volvo._car__fuelling() | class Car:
def __init__(self):
self.__fuelling()
def drive(self):
print('Driving..!!')
def __fuelling(self):
print('Refilling Gas')
volvo = car()
volvo.drive()
volvo._car__fuelling() |
def dump_vector(x):
return ",".join(map(str, x))
def dump_matrix(xs):
vs = map(dump_vector, xs)
return "{0}#{1}#{2}".format(xs.shape[0], xs.shape[1], "|".join(vs))
def dump_pca(pca):
return "{0}\n{1}".format(dump_matrix(pca.components_.T), dump_vector(pca.mean_))
def dump_mlp(mlp):
activation = mlp.activation
layers = []
for c, b in zip(mlp.coefs_, mlp.intercepts_):
layers.append(dump_matrix(c.T))
layers.append(dump_vector(b))
return "{0}\n{1}\n{2}".format(activation, int(len(layers) / 2), "\n".join(layers))
def save_pca(pca, path):
with open(path, "w") as f:
f.write(dump_pca(pca))
f.close()
def save_mlp(mlp, path):
with open(path, "w") as f:
f.write(dump_mlp(mlp))
f.close()
| def dump_vector(x):
return ','.join(map(str, x))
def dump_matrix(xs):
vs = map(dump_vector, xs)
return '{0}#{1}#{2}'.format(xs.shape[0], xs.shape[1], '|'.join(vs))
def dump_pca(pca):
return '{0}\n{1}'.format(dump_matrix(pca.components_.T), dump_vector(pca.mean_))
def dump_mlp(mlp):
activation = mlp.activation
layers = []
for (c, b) in zip(mlp.coefs_, mlp.intercepts_):
layers.append(dump_matrix(c.T))
layers.append(dump_vector(b))
return '{0}\n{1}\n{2}'.format(activation, int(len(layers) / 2), '\n'.join(layers))
def save_pca(pca, path):
with open(path, 'w') as f:
f.write(dump_pca(pca))
f.close()
def save_mlp(mlp, path):
with open(path, 'w') as f:
f.write(dump_mlp(mlp))
f.close() |
def meets_criteria(number):
num_str = str(number)
# check to see if two number are the same next to each other
i = 1
previous = num_str[0]
while i < 6 :
if previous == num_str[i]:
break
previous = num_str[i]
i+=1
if i == 6:
return 0
# no more than 2 of the same number in a group
i = 1
found_double = 0
same = 0
previous = num_str[0]
while i < 6:
if previous == num_str[i]:
if same == 0:
same = 2
else:
same += 1
else:
if same == 2:
found_double = 1
same = 0
previous = num_str[i]
i += 1
#print ("Most same: {} Same: {}".format(found_double, same))
if same == 2:
found_double = 1
if not found_double:
return 0
i = 1
previous = num_str[0]
while i < 6 :
if previous > num_str[i]:
return 0
previous = num_str[i]
i+=1
return 1
min = 245318
max = 765747
valid = 0
for n in range(min, max):
if meets_criteria(n):
valid += 1
print('possible valid passwords: {}'.format(valid)) | def meets_criteria(number):
num_str = str(number)
i = 1
previous = num_str[0]
while i < 6:
if previous == num_str[i]:
break
previous = num_str[i]
i += 1
if i == 6:
return 0
i = 1
found_double = 0
same = 0
previous = num_str[0]
while i < 6:
if previous == num_str[i]:
if same == 0:
same = 2
else:
same += 1
else:
if same == 2:
found_double = 1
same = 0
previous = num_str[i]
i += 1
if same == 2:
found_double = 1
if not found_double:
return 0
i = 1
previous = num_str[0]
while i < 6:
if previous > num_str[i]:
return 0
previous = num_str[i]
i += 1
return 1
min = 245318
max = 765747
valid = 0
for n in range(min, max):
if meets_criteria(n):
valid += 1
print('possible valid passwords: {}'.format(valid)) |
___assertEqual(+False, 0)
___assertIsNot(+False, False)
___assertEqual(-False, 0)
___assertIsNot(-False, False)
___assertEqual(abs(False), 0)
___assertIsNot(abs(False), False)
___assertEqual(+True, 1)
___assertIsNot(+True, True)
___assertEqual(-True, -1)
___assertEqual(abs(True), 1)
___assertIsNot(abs(True), True)
___assertEqual(~False, -1)
___assertEqual(~True, -2)
___assertEqual(False+2, 2)
___assertEqual(True+2, 3)
___assertEqual(2+False, 2)
___assertEqual(2+True, 3)
___assertEqual(False+False, 0)
___assertIsNot(False+False, False)
___assertEqual(False+True, 1)
___assertIsNot(False+True, True)
___assertEqual(True+False, 1)
___assertIsNot(True+False, True)
___assertEqual(True+True, 2)
___assertEqual(True-True, 0)
___assertIsNot(True-True, False)
___assertEqual(False-False, 0)
___assertIsNot(False-False, False)
___assertEqual(True-False, 1)
___assertIsNot(True-False, True)
___assertEqual(False-True, -1)
___assertEqual(True*1, 1)
___assertEqual(False*1, 0)
___assertIsNot(False*1, False)
___assertEqual(True/1, 1)
___assertIsNot(True/1, True)
___assertEqual(False/1, 0)
___assertIsNot(False/1, False)
| ___assert_equal(+False, 0)
___assert_is_not(+False, False)
___assert_equal(-False, 0)
___assert_is_not(-False, False)
___assert_equal(abs(False), 0)
___assert_is_not(abs(False), False)
___assert_equal(+True, 1)
___assert_is_not(+True, True)
___assert_equal(-True, -1)
___assert_equal(abs(True), 1)
___assert_is_not(abs(True), True)
___assert_equal(~False, -1)
___assert_equal(~True, -2)
___assert_equal(False + 2, 2)
___assert_equal(True + 2, 3)
___assert_equal(2 + False, 2)
___assert_equal(2 + True, 3)
___assert_equal(False + False, 0)
___assert_is_not(False + False, False)
___assert_equal(False + True, 1)
___assert_is_not(False + True, True)
___assert_equal(True + False, 1)
___assert_is_not(True + False, True)
___assert_equal(True + True, 2)
___assert_equal(True - True, 0)
___assert_is_not(True - True, False)
___assert_equal(False - False, 0)
___assert_is_not(False - False, False)
___assert_equal(True - False, 1)
___assert_is_not(True - False, True)
___assert_equal(False - True, -1)
___assert_equal(True * 1, 1)
___assert_equal(False * 1, 0)
___assert_is_not(False * 1, False)
___assert_equal(True / 1, 1)
___assert_is_not(True / 1, True)
___assert_equal(False / 1, 0)
___assert_is_not(False / 1, False) |
# Will keep track of all the variables and their values
class SymbolTable:
def __init__(self):
self.symbols = {}
def get(self, name):
value = self.symbols.get(name, None)
return value
def set(self, name, value):
self.symbols[name] = value
def remove(self, name):
del self.symbols[name]
| class Symboltable:
def __init__(self):
self.symbols = {}
def get(self, name):
value = self.symbols.get(name, None)
return value
def set(self, name, value):
self.symbols[name] = value
def remove(self, name):
del self.symbols[name] |
class BoidRuleAvoid:
fear_factor = None
object = None
use_predict = None
| class Boidruleavoid:
fear_factor = None
object = None
use_predict = None |
#!/usr/bin/env python
# Whites/Pastels
snow = (255, 250, 250)
snow2 = (238, 233, 233)
snow3 = (205, 201, 201)
snow4 = (139, 137, 137)
ghost_white = (248, 248, 255)
white_smoke = (245, 245, 245)
gainsboro = (220, 220, 220)
white = (255, 255, 255)
# Grays
black = (0, 0, 0)
dark_slate_black = (49, 79, 79)
dim_gray = (105, 105, 105)
slate_gray = (112, 138, 144)
light_slate_gray = (119, 136, 153)
gray = (190, 190, 190)
light_gray = (211, 211, 211)
# Blues
cornflower_blue = (100, 149, 237)
dodger_blue = (30, 144, 255)
deep_sky_blue = (0, 191, 255)
sky_blue = (135, 206, 250)
blue = (0, 0, 255)
# Greens
green = (50, 205, 50)
pale_green = (152, 251, 152)
lime_green = (50, 205, 50)
# Yellows
# Browns
firebrick = (178, 34, 34)
# Oranges
red = (255, 0, 0)
pastels = ("snow",
"snow2",
"snow3",
"snow4",
"ghost_white"
"white_smoke",
"gainsboro",
"floral_white",
"old_lace",
"linen",
"antique_white",
"antique_white2",
"antique_white3",
"antique_white4",
"papaya_whip",
"balanced_almond",
"bisque",
"bisque2",
"bisque3",
"bisque4",
"peach_puff",
"peach_puff2",
"peach_puff3",
"peach_puff4",
"navajo_white",
"moccassin",
"cornsilk",
"cornsilk2",
"cornsilk3",
"cornsilk4",
"ivory",
"ivory2",
"ivory3",
"ivory4",
"lemon_chiffon",
"seashell",
"seashell2",
"seashell3",
"seashell4",
"honeydew",
"honeydew2",
"honeydew3",
"honeydew4",
"mint_cream",
"azure",
"alice_blue",
"lavender",
"lavender_blush",
"misty_rose",
"white")
grays = ("black",
"dark_slate_gray",
"dim_gray",
"slate_gray",
"light_slate_gray",
"gray",
"light_gray")
blues = ("cornflower_blue",
"dodger_blue",
"deep_sky_blue",
"sky_blue",
"blue")
| snow = (255, 250, 250)
snow2 = (238, 233, 233)
snow3 = (205, 201, 201)
snow4 = (139, 137, 137)
ghost_white = (248, 248, 255)
white_smoke = (245, 245, 245)
gainsboro = (220, 220, 220)
white = (255, 255, 255)
black = (0, 0, 0)
dark_slate_black = (49, 79, 79)
dim_gray = (105, 105, 105)
slate_gray = (112, 138, 144)
light_slate_gray = (119, 136, 153)
gray = (190, 190, 190)
light_gray = (211, 211, 211)
cornflower_blue = (100, 149, 237)
dodger_blue = (30, 144, 255)
deep_sky_blue = (0, 191, 255)
sky_blue = (135, 206, 250)
blue = (0, 0, 255)
green = (50, 205, 50)
pale_green = (152, 251, 152)
lime_green = (50, 205, 50)
firebrick = (178, 34, 34)
red = (255, 0, 0)
pastels = ('snow', 'snow2', 'snow3', 'snow4', 'ghost_whitewhite_smoke', 'gainsboro', 'floral_white', 'old_lace', 'linen', 'antique_white', 'antique_white2', 'antique_white3', 'antique_white4', 'papaya_whip', 'balanced_almond', 'bisque', 'bisque2', 'bisque3', 'bisque4', 'peach_puff', 'peach_puff2', 'peach_puff3', 'peach_puff4', 'navajo_white', 'moccassin', 'cornsilk', 'cornsilk2', 'cornsilk3', 'cornsilk4', 'ivory', 'ivory2', 'ivory3', 'ivory4', 'lemon_chiffon', 'seashell', 'seashell2', 'seashell3', 'seashell4', 'honeydew', 'honeydew2', 'honeydew3', 'honeydew4', 'mint_cream', 'azure', 'alice_blue', 'lavender', 'lavender_blush', 'misty_rose', 'white')
grays = ('black', 'dark_slate_gray', 'dim_gray', 'slate_gray', 'light_slate_gray', 'gray', 'light_gray')
blues = ('cornflower_blue', 'dodger_blue', 'deep_sky_blue', 'sky_blue', 'blue') |
# OSEK Builder Global Variables (OB Globals)
# ------------------------------------------
# list of column titles in TASK tab of OSEX-Builder.xlsx
TaskParams = ["Task Name", "PRIORITY", "SCHEDULE", "ACTIVATION", "AUTOSTART",
"RESOURCE", "EVENT", "MESSAGE", "STACK_SIZE"]
TNMI = 0
PRII = 1
SCHI = 2
ACTI = 3
ATSI = 4
RESI = 5
EVTI = 6
MSGI = 7
STSZ = 8
# list of column titles in TASK tab of OSEX-Builder.xlsx
CntrParams = ["Counter Name", "MINCYCLE", "MAXALLOWEDVALUE", "TICKSPERBASE",
"TICKDURATION"]
CNME = 0
# Column titles for Alarms
AlarmParams = ["Alarm Name", "COUNTER", "Action-Type", "arg1", "arg2", "IsAutostart",
"ALARMTIME", "CYCLETIME", "APPMODE[]" ]
ANME = 0
ACNT = 1
AAAT = 2
AAT1 = 3
AAT2 = 4
AIAS = 5
ATIM = 6
ACYT = 7
AAPM = 8
# Column titles for ISRs
ISR_Params = ["ISR Name", "IRQn", "CATEGORY", "RESOURCE", "MESSAGE"]
# FreeOSEK Parameters
OSEK_Params = ["STATUS", "STARTUPHOOK", "ERRORHOOK", "SHUTDOWNHOOK", "PRETASKHOOK", "POSTTASKHOOK",
"USEGETSERVICEID", "USEPARAMETERACCESS", "USERESSCHEDULER"]
FreeOSEK_Params = ["OS_STACK_SIZE", "OS_CTX_SAVE_SZ", "IRQ_STACK_SIZE", "TASK_STACK_SIZE"]
if __name__ == '__main__':
print("OSEK Builder Globals")
| task_params = ['Task Name', 'PRIORITY', 'SCHEDULE', 'ACTIVATION', 'AUTOSTART', 'RESOURCE', 'EVENT', 'MESSAGE', 'STACK_SIZE']
tnmi = 0
prii = 1
schi = 2
acti = 3
atsi = 4
resi = 5
evti = 6
msgi = 7
stsz = 8
cntr_params = ['Counter Name', 'MINCYCLE', 'MAXALLOWEDVALUE', 'TICKSPERBASE', 'TICKDURATION']
cnme = 0
alarm_params = ['Alarm Name', 'COUNTER', 'Action-Type', 'arg1', 'arg2', 'IsAutostart', 'ALARMTIME', 'CYCLETIME', 'APPMODE[]']
anme = 0
acnt = 1
aaat = 2
aat1 = 3
aat2 = 4
aias = 5
atim = 6
acyt = 7
aapm = 8
isr__params = ['ISR Name', 'IRQn', 'CATEGORY', 'RESOURCE', 'MESSAGE']
osek__params = ['STATUS', 'STARTUPHOOK', 'ERRORHOOK', 'SHUTDOWNHOOK', 'PRETASKHOOK', 'POSTTASKHOOK', 'USEGETSERVICEID', 'USEPARAMETERACCESS', 'USERESSCHEDULER']
free_osek__params = ['OS_STACK_SIZE', 'OS_CTX_SAVE_SZ', 'IRQ_STACK_SIZE', 'TASK_STACK_SIZE']
if __name__ == '__main__':
print('OSEK Builder Globals') |
# -*- coding: utf-8 -*-
{
'name': 'Chapter 14 code for the mail template recipe',
'depends': ['mail', 'report_py3o'],
'data': [
'views/library_book.xml',
'views/library_member.xml',
'data/py3o_server.xml',
'reports/book_loan_report.xml'
],
'demo': ['demo/demo.xml'],
}
| {'name': 'Chapter 14 code for the mail template recipe', 'depends': ['mail', 'report_py3o'], 'data': ['views/library_book.xml', 'views/library_member.xml', 'data/py3o_server.xml', 'reports/book_loan_report.xml'], 'demo': ['demo/demo.xml']} |
#Write a Python program to remove duplicates from a list.
sample_list = [10, 20, 30, 20, 10, 50, 60, 40, 80, 50, 40]
duplicate_items =set()
unique_list = []
for num in sample_list:
if num not in duplicate_items:
unique_list.append(num)
duplicate_items.add(num)
print(unique_list) | sample_list = [10, 20, 30, 20, 10, 50, 60, 40, 80, 50, 40]
duplicate_items = set()
unique_list = []
for num in sample_list:
if num not in duplicate_items:
unique_list.append(num)
duplicate_items.add(num)
print(unique_list) |
# coding: utf-8
class CartesianProduct:
def extract(self,val,row):
if isinstance(val, list):
for v in val:
row.append(v)
else:
row.append(val)
def combi(self,x, y, result):
#print("combi before",x,y,result)
row = []
for i in x:
for j in y:
self.extract(i,row)
row.append(j)
#print("row", row)
result.append(row)
row=[]
#print("result", result)
def execute(self,matrix,result):
for idx, x in enumerate(matrix):
if (idx == 0):
#print("0 times")
self.combi(matrix[idx], matrix[idx+1], result)
#print("result=",result)
elif (idx < len(matrix)-1):
#print("{0} times", idx)
tmp=[]
self.combi(result, matrix[idx+1], tmp)
#print("tmp=",tmp)
result = tmp
#print("exec() result=",result)
return result
#for r in result:
# print("result", r)
def to_csv(self,result):
for idx, r in enumerate(result):
print(idx, ":", r)
#print(idx, ":", split(r))
| class Cartesianproduct:
def extract(self, val, row):
if isinstance(val, list):
for v in val:
row.append(v)
else:
row.append(val)
def combi(self, x, y, result):
row = []
for i in x:
for j in y:
self.extract(i, row)
row.append(j)
result.append(row)
row = []
def execute(self, matrix, result):
for (idx, x) in enumerate(matrix):
if idx == 0:
self.combi(matrix[idx], matrix[idx + 1], result)
elif idx < len(matrix) - 1:
tmp = []
self.combi(result, matrix[idx + 1], tmp)
result = tmp
return result
def to_csv(self, result):
for (idx, r) in enumerate(result):
print(idx, ':', r) |
def keywordMatching(amazonTitle,wallmartTitles,wallmartPrices,wallmartIds):
#whitelist of letters
whitelist = set('abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ')
amazonTitle = ''.join(filter(whitelist.__contains__, amazonTitle))
titles = []
commonalities = []
for i in wallmartTitles:
#amount of words in common
commonWords = 0
wallmartTitle = ''.join(filter(whitelist.__contains__, i))
for x in wallmartTitle.split():
for y in amazonTitle.split():
if x == y:
commonWords += 1
titles.append(wallmartTitle)
commonalities.append(commonWords)
matchingTitleIndex = commonalities.index(max(commonalities))
wallmartMatchingProduct = {
'title': wallmartTitles[matchingTitleIndex],
'price': wallmartPrices[matchingTitleIndex],
'id': wallmartIds[matchingTitleIndex]
}
return wallmartMatchingProduct
| def keyword_matching(amazonTitle, wallmartTitles, wallmartPrices, wallmartIds):
whitelist = set('abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ')
amazon_title = ''.join(filter(whitelist.__contains__, amazonTitle))
titles = []
commonalities = []
for i in wallmartTitles:
common_words = 0
wallmart_title = ''.join(filter(whitelist.__contains__, i))
for x in wallmartTitle.split():
for y in amazonTitle.split():
if x == y:
common_words += 1
titles.append(wallmartTitle)
commonalities.append(commonWords)
matching_title_index = commonalities.index(max(commonalities))
wallmart_matching_product = {'title': wallmartTitles[matchingTitleIndex], 'price': wallmartPrices[matchingTitleIndex], 'id': wallmartIds[matchingTitleIndex]}
return wallmartMatchingProduct |
# -*- coding: utf-8 -*-
'''
File name: code\gozinta_chains\sol_548.py
Author: Vaidic Joshi
Date created: Oct 20, 2018
Python Version: 3.x
'''
# Solution to Project Euler Problem #548 :: Gozinta Chains
#
# For more information see:
# https://projecteuler.net/problem=548
# Problem Statement
'''
A gozinta chain for n is a sequence {1,a,b,...,n} where each element properly divides the next.
There are eight gozinta chains for 12:
{1,12} ,{1,2,12}, {1,2,4,12}, {1,2,6,12}, {1,3,12}, {1,3,6,12}, {1,4,12} and {1,6,12}.
Let g(n) be the number of gozinta chains for n, so g(12)=8.
g(48)=48 and g(120)=132.
Find the sum of the numbers n not exceeding 1016 for which g(n)=n.
'''
# Solution
# Solution Approach
'''
'''
| """
File name: code\\gozinta_chains\\sol_548.py
Author: Vaidic Joshi
Date created: Oct 20, 2018
Python Version: 3.x
"""
'\nA gozinta chain for n is a sequence {1,a,b,...,n} where each element properly divides the next.\nThere are eight gozinta chains for 12:\n{1,12} ,{1,2,12}, {1,2,4,12}, {1,2,6,12}, {1,3,12}, {1,3,6,12}, {1,4,12} and {1,6,12}. \nLet g(n) be the number of gozinta chains for n, so g(12)=8.\ng(48)=48 and g(120)=132.\n\n\nFind the sum of the numbers n not exceeding 1016 for which g(n)=n.\n'
'\n' |
class RandomVariable:
def __init__(self):
self._parametrization = None
def sample(self):
pass
def as_tensor(self):
pass
def make_parametrization(self):
pass
class Parametrization:
def __init__(self):
self._free_vars = []
self._trainable_params = []
self._observation = None
def log_prob(self, value, **vars):
pass
def forward(self, **free_vars):
pass
def backward(self, observed):
return NotImplemented
class DirectParametrization:
def __init__(self, dist):
self._dist = dist
self._free_vars = []
self._trainable_params = []
def log_prob(self, observed):
return self._dist.log_prob(observed)
class TransformedParametrization:
def __init__(self, dist, bijector):
self._bijector = bijector
self._dist = dist
def log_prob(self, observed):
raise NotImplementedError
| class Randomvariable:
def __init__(self):
self._parametrization = None
def sample(self):
pass
def as_tensor(self):
pass
def make_parametrization(self):
pass
class Parametrization:
def __init__(self):
self._free_vars = []
self._trainable_params = []
self._observation = None
def log_prob(self, value, **vars):
pass
def forward(self, **free_vars):
pass
def backward(self, observed):
return NotImplemented
class Directparametrization:
def __init__(self, dist):
self._dist = dist
self._free_vars = []
self._trainable_params = []
def log_prob(self, observed):
return self._dist.log_prob(observed)
class Transformedparametrization:
def __init__(self, dist, bijector):
self._bijector = bijector
self._dist = dist
def log_prob(self, observed):
raise NotImplementedError |
lines = [l.strip() for l in open('input.txt', 'r').readlines()]
p1, p2, first_player = [], [], True
for line in lines:
if 'Player 2' in line:
first_player = False
if not line or 'Player' in line:
continue
if first_player:
p1.append(int(line))
else:
p2.append(int(line))
def determine_winner(p1, p2):
memory = []
while len(p1) > 0 and len(p2) > 0:
if (p1, p2) in memory:
return p1, []
else:
memory.append((p1[:], p2[:]))
p1_card, p2_card = p1.pop(0), p2.pop(0)
if p1_card <= len(p1) and p2_card <= len(p2):
p1_sub, p2_sub = determine_winner(p1[:p1_card], p2[:p2_card])
if len(p1_sub) > 0:
p1 += [p1_card, p2_card]
else:
p2 += [p2_card, p1_card]
elif p1_card > p2_card:
p1 += [p1_card, p2_card]
else:
p2 += [p2_card, p1_card]
return p1, p2
p1, p2 = determine_winner(p1, p2)
winner = p1 if len(p1) > 0 else p2
print(sum([(len(winner) - i) * card for i, card in enumerate(winner)]))
| lines = [l.strip() for l in open('input.txt', 'r').readlines()]
(p1, p2, first_player) = ([], [], True)
for line in lines:
if 'Player 2' in line:
first_player = False
if not line or 'Player' in line:
continue
if first_player:
p1.append(int(line))
else:
p2.append(int(line))
def determine_winner(p1, p2):
memory = []
while len(p1) > 0 and len(p2) > 0:
if (p1, p2) in memory:
return (p1, [])
else:
memory.append((p1[:], p2[:]))
(p1_card, p2_card) = (p1.pop(0), p2.pop(0))
if p1_card <= len(p1) and p2_card <= len(p2):
(p1_sub, p2_sub) = determine_winner(p1[:p1_card], p2[:p2_card])
if len(p1_sub) > 0:
p1 += [p1_card, p2_card]
else:
p2 += [p2_card, p1_card]
elif p1_card > p2_card:
p1 += [p1_card, p2_card]
else:
p2 += [p2_card, p1_card]
return (p1, p2)
(p1, p2) = determine_winner(p1, p2)
winner = p1 if len(p1) > 0 else p2
print(sum([(len(winner) - i) * card for (i, card) in enumerate(winner)])) |
# fibonacci: int -> int
# calcula el n-esimo numero de la sucesion de fibonacci
# ejemplo: fibonacci(7) debe dar 13
def fibonacci(n):
assert type(n) == int and n>=0
if n<2:
# caso base
return n
else:
# caso recursivo
return fibonacci(n-1) + fibonacci(n-2)
# test:
assert fibonacci(0) == 0
assert fibonacci(1) == 1
assert fibonacci(2) == 1
assert fibonacci(7) == 13
| def fibonacci(n):
assert type(n) == int and n >= 0
if n < 2:
return n
else:
return fibonacci(n - 1) + fibonacci(n - 2)
assert fibonacci(0) == 0
assert fibonacci(1) == 1
assert fibonacci(2) == 1
assert fibonacci(7) == 13 |
def get_gnn_config(parser):
parser.add_argument('--ggnn_keep_prob', type=float, default=0.8)
parser.add_argument('--t_step', type=int, default=3)
parser.add_argument('--embed_layer', type=int, default=1)
parser.add_argument('--embed_neuron', type=int, default=256)
parser.add_argument('--prop_layer', type=int, default=1)
parser.add_argument('--prop_neuron', type=int, default=1024)
parser.add_argument('--output_layer', type=int, default=1)
parser.add_argument('--output_neuron', type=int, default=1024)
parser.add_argument('--prop_normalize', action='store_true')
parser.add_argument('--d_output', action='store_true')
parser.add_argument('--d_bins', type=int, default=51)
return parser
| def get_gnn_config(parser):
parser.add_argument('--ggnn_keep_prob', type=float, default=0.8)
parser.add_argument('--t_step', type=int, default=3)
parser.add_argument('--embed_layer', type=int, default=1)
parser.add_argument('--embed_neuron', type=int, default=256)
parser.add_argument('--prop_layer', type=int, default=1)
parser.add_argument('--prop_neuron', type=int, default=1024)
parser.add_argument('--output_layer', type=int, default=1)
parser.add_argument('--output_neuron', type=int, default=1024)
parser.add_argument('--prop_normalize', action='store_true')
parser.add_argument('--d_output', action='store_true')
parser.add_argument('--d_bins', type=int, default=51)
return parser |
BLACK = 0x000000
WHITE = 0xFFFFFF
GRAY = 0x888888
DARKGRAY = 0x484848
ORANGE = 0xFF8800
DARKORANGE = 0xF18701
LIGHTBLUE = 0x5C92D1
BLUE = 0x0000C0
GREEN = 0x00FF00
PASTEL_GREEN = 0x19DF82
SMOKY_GREEN = 0x03876D
PINK = 0xD643BB
PURPLE = 0x952489
DEEP_PURPLE = 0x890C32
YELLOW = 0xF4ED06
# RED = 0xC80A24
RED = 0xDE0A07
BROWN = 0x9B3E25
| black = 0
white = 16777215
gray = 8947848
darkgray = 4737096
orange = 16746496
darkorange = 15828737
lightblue = 6066897
blue = 192
green = 65280
pastel_green = 1695618
smoky_green = 231277
pink = 14042043
purple = 9774217
deep_purple = 8981554
yellow = 16051462
red = 14551559
brown = 10173989 |
# pytools/recursion/subsets.py
#
# Author: Daniel Clark, 2016
'''
This module contains functions to return all of the subsets of a given
set
'''
def subsets_reduce(input_set):
'''
Reduce function method for returning all subsets of a set
'''
return reduce(lambda z, x: z + [y + [x] for y in z],
input_set, [[]])
def subsets(input_set):
'''
Return all subsets of a given set by returning a generator
'''
# Init list set
list_set = list(input_set)
# If it's < 1, yield itself and break
if len(list_set) < 1:
yield list_set
return
# Return last element from list as a list of 1
el = [list_set.pop()]
# We can iterate over a generator
for sub in subsets(list_set):
yield sub
yield sub+el
def subsets_binary(input_set):
'''
Iterate through all combinations of yes/no for each item in set
via a bit mask combination
'''
# Init maximum subset size
max_num = 1 << len(input_set)
all_subsets = []
# For each subset
for num in range(max_num):
# Init subset
subset = []
mask = num
idx = 0
# While mask has some 1's in it
while mask > 0:
# If LSB is set, grab set at idx
if (mask & 1) > 0:
subset.append(input_set[idx])
# Shift mask down one
mask >>= 1
# Reflect mask shift by incrementing index we'll grab next time
idx += 1
# And add newly compounded subset to output
all_subsets.append(subset)
# Return all subsets found
return all_subsets
| """
This module contains functions to return all of the subsets of a given
set
"""
def subsets_reduce(input_set):
"""
Reduce function method for returning all subsets of a set
"""
return reduce(lambda z, x: z + [y + [x] for y in z], input_set, [[]])
def subsets(input_set):
"""
Return all subsets of a given set by returning a generator
"""
list_set = list(input_set)
if len(list_set) < 1:
yield list_set
return
el = [list_set.pop()]
for sub in subsets(list_set):
yield sub
yield (sub + el)
def subsets_binary(input_set):
"""
Iterate through all combinations of yes/no for each item in set
via a bit mask combination
"""
max_num = 1 << len(input_set)
all_subsets = []
for num in range(max_num):
subset = []
mask = num
idx = 0
while mask > 0:
if mask & 1 > 0:
subset.append(input_set[idx])
mask >>= 1
idx += 1
all_subsets.append(subset)
return all_subsets |
number_grid = [ [1, 2, 4],
[2, 5, 6],
[3, 4, 6] ]
print(number_grid[0][0])
print(number_grid[2][2])
| number_grid = [[1, 2, 4], [2, 5, 6], [3, 4, 6]]
print(number_grid[0][0])
print(number_grid[2][2]) |
def partition(lst, low, high):
# pick last element as pivot
pivot = lst[high]
# index of where pivot should be
index = low
for j in range(low, high):
if lst[j] < pivot:
lst[index], lst[j] = lst[j], lst[index]
index += 1
# place pivot at index
lst[index], lst[high] = lst[high], lst[index]
return index
def quick_sort(lst, low, high):
if low < high:
index = partition(lst, low, high)
quick_sort(lst, low, index - 1)
quick_sort(lst, index + 1, high)
return lst
| def partition(lst, low, high):
pivot = lst[high]
index = low
for j in range(low, high):
if lst[j] < pivot:
(lst[index], lst[j]) = (lst[j], lst[index])
index += 1
(lst[index], lst[high]) = (lst[high], lst[index])
return index
def quick_sort(lst, low, high):
if low < high:
index = partition(lst, low, high)
quick_sort(lst, low, index - 1)
quick_sort(lst, index + 1, high)
return lst |
USERNAME = None
PASSWORD = None
REQUESTS_URL = 'https://ebusiness.dpb.nhs.uk/claimsrequests.asp'
RESPONSE_URL = 'https://ebusiness.dpb.nhs.uk/claimsresponses.asp'
| username = None
password = None
requests_url = 'https://ebusiness.dpb.nhs.uk/claimsrequests.asp'
response_url = 'https://ebusiness.dpb.nhs.uk/claimsresponses.asp' |
# name_to_binary.py
def to_binary(name):
text = ''
for let in name:
code = ord(let)
text += bin(code).replace('0b', '')
return text
# __main__
string = input("Enter a name: ")
binary = to_binary(string)
print(binary)
| def to_binary(name):
text = ''
for let in name:
code = ord(let)
text += bin(code).replace('0b', '')
return text
string = input('Enter a name: ')
binary = to_binary(string)
print(binary) |
class Config(object):
_config = {}
@classmethod
def get_config(cls, name):
return cls._config.get(name, None)
@classmethod
def set_config(cls, name, config):
config_dict = {key: getattr(config, key) for key in dir(config) if
not key.startswith('__') and not callable(key)}
cls._config[name] = config_dict
| class Config(object):
_config = {}
@classmethod
def get_config(cls, name):
return cls._config.get(name, None)
@classmethod
def set_config(cls, name, config):
config_dict = {key: getattr(config, key) for key in dir(config) if not key.startswith('__') and (not callable(key))}
cls._config[name] = config_dict |
#choose 4-9.py
cubes=[value**3 for value in range(1,11)]
print(cubes)
print("The first three items in the list are: "+str(cubes[:3]))
print("Three items from the middle of the list are: "+str(cubes[4:7]))
print("The last three items in the list are: "+str(cubes[-3:]))
| cubes = [value ** 3 for value in range(1, 11)]
print(cubes)
print('The first three items in the list are: ' + str(cubes[:3]))
print('Three items from the middle of the list are: ' + str(cubes[4:7]))
print('The last three items in the list are: ' + str(cubes[-3:])) |
def extract_shapekey(c):
d=c.split(",")
e=d[0]
f=d[1]
g=e.split("(")
h=f.split(")")
part_1=g[1]
part_2=h[0]
shapekey=(int(part_1),int(part_2))
return shapekey | def extract_shapekey(c):
d = c.split(',')
e = d[0]
f = d[1]
g = e.split('(')
h = f.split(')')
part_1 = g[1]
part_2 = h[0]
shapekey = (int(part_1), int(part_2))
return shapekey |
def fact(n):
fact=1
for i in range(1,n+1):
fact=fact*i
return fact
num=int(input("enter a number: "))
factorial=fact(num)
print(factorial)
| def fact(n):
fact = 1
for i in range(1, n + 1):
fact = fact * i
return fact
num = int(input('enter a number: '))
factorial = fact(num)
print(factorial) |
_base_ = [
'../_base_/models/mask_rcnn_r50_fpn_22cls.py',
'../_base_/datasets/trashcan_instance.py',
'../_base_/schedules/schedule_1x.py', '../_base_/default_runtime.py'
]
| _base_ = ['../_base_/models/mask_rcnn_r50_fpn_22cls.py', '../_base_/datasets/trashcan_instance.py', '../_base_/schedules/schedule_1x.py', '../_base_/default_runtime.py'] |
def compute_potential_drain(height_change, rover):
mars_grav_constant = 3.177
potential_change = height_change * rover.mass * mars_grav_constant / 10
return (0, potential_change)[potential_change > 0]
def compute_energy_drain(old_loc, new_loc, rover):
min_adjust = rover.battery_base_movement
min_adjust += compute_potential_drain(new_loc[2] - old_loc[2], rover)
return min_adjust
| def compute_potential_drain(height_change, rover):
mars_grav_constant = 3.177
potential_change = height_change * rover.mass * mars_grav_constant / 10
return (0, potential_change)[potential_change > 0]
def compute_energy_drain(old_loc, new_loc, rover):
min_adjust = rover.battery_base_movement
min_adjust += compute_potential_drain(new_loc[2] - old_loc[2], rover)
return min_adjust |
# http://www.django-rest-framework.org/
REST_FRAMEWORK = {
'DEFAULT_PAGINATION_CLASS': 'ara.classes.pagination.PageNumberPagination',
'DEFAULT_FILTER_BACKENDS': (
'rest_framework_filters.backends.RestFrameworkFilterBackend',
),
'DEFAULT_PERMISSION_CLASSES': (
'rest_framework.permissions.AllowAny',
),
'PAGE_SIZE': 15,
'SERIALIZER_EXTENSIONS': {
'AUTO_OPTIMIZE': True,
},
}
| rest_framework = {'DEFAULT_PAGINATION_CLASS': 'ara.classes.pagination.PageNumberPagination', 'DEFAULT_FILTER_BACKENDS': ('rest_framework_filters.backends.RestFrameworkFilterBackend',), 'DEFAULT_PERMISSION_CLASSES': ('rest_framework.permissions.AllowAny',), 'PAGE_SIZE': 15, 'SERIALIZER_EXTENSIONS': {'AUTO_OPTIMIZE': True}} |
def iq_test(numbers):
lst=numbers.split(" ")
odd=0
even = 0
for i in lst:
if float(i)%2==0:
even=even+1
else:
odd+=1
u="e" if even>odd else "o"
if u=="e":
for i in lst:
if float(i)%2!=0:
indexval=lst.index(i)
print(indexval+1)
break
else:
for i in lst:
if float(i)%2==0:
indexval=lst.index(i)
print(indexval+1)
break
iq_test("1 2 2")
| def iq_test(numbers):
lst = numbers.split(' ')
odd = 0
even = 0
for i in lst:
if float(i) % 2 == 0:
even = even + 1
else:
odd += 1
u = 'e' if even > odd else 'o'
if u == 'e':
for i in lst:
if float(i) % 2 != 0:
indexval = lst.index(i)
print(indexval + 1)
break
else:
for i in lst:
if float(i) % 2 == 0:
indexval = lst.index(i)
print(indexval + 1)
break
iq_test('1 2 2') |
# do not change this line manually
# this is managed by git tag and updated on every release
__version__ = '0.0.46'
# do not change this line manually
# this is managed by shell/make-proto.sh and updated on every execution
__proto_version__ = '0.0.10'
| __version__ = '0.0.46'
__proto_version__ = '0.0.10' |
YES_NO = ["No", "Yes"]
FEATURES = [
("Name", None),
("Does it have fur?", YES_NO),
("Does it have feathers?", YES_NO),
("Does it lay eggs?", YES_NO),
("Does it produce milk?", YES_NO),
("Can it fly?", YES_NO),
("Can it swim?", YES_NO),
("Is it a predator?", YES_NO),
("Does it have teeth?", YES_NO),
("Does it have a backbone?", YES_NO),
("Does it breathe air?", YES_NO),
("Is it venomous?", YES_NO),
("Does it have fins?", YES_NO),
("Does it have {} legs?",
['no', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight']),
("Does it have a tail?", YES_NO),
("Has it been domesticated?", YES_NO),
("Is it larger than a cat?", YES_NO),
("Is it a {}?", ["mammal", "bird", "reptile", "fish", "amphibian", "insect"]),
]
| yes_no = ['No', 'Yes']
features = [('Name', None), ('Does it have fur?', YES_NO), ('Does it have feathers?', YES_NO), ('Does it lay eggs?', YES_NO), ('Does it produce milk?', YES_NO), ('Can it fly?', YES_NO), ('Can it swim?', YES_NO), ('Is it a predator?', YES_NO), ('Does it have teeth?', YES_NO), ('Does it have a backbone?', YES_NO), ('Does it breathe air?', YES_NO), ('Is it venomous?', YES_NO), ('Does it have fins?', YES_NO), ('Does it have {} legs?', ['no', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight']), ('Does it have a tail?', YES_NO), ('Has it been domesticated?', YES_NO), ('Is it larger than a cat?', YES_NO), ('Is it a {}?', ['mammal', 'bird', 'reptile', 'fish', 'amphibian', 'insect'])] |
'''
See:
http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
'''
class HttpStatusCode(object):
# 1xx
CONTINUE = 100
SWITCHING_PROTOCOLS = 101
PROCESSING = 102
# 2xx
OK = 200
CREATED = 201
ACCEPTED = 202
NON_AUTHORITATIVE_INFORMATION = 203
NO_CONTENT = 204
RESET_CONTENT = 205
PARTIAL_CONTENT = 206
MULTI_STATUS = 207
ALREADY_REPORTED = 208
IM_USED = 226
# 3xx
MULTIPLE_CHOICES = 300
MOVED_PERMANENTLY = 301
FOUND = 302
SEE_OTHER = 303
NOT_MODIFIED = 304
USE_PROXY = 305
SWITCH_PROXY = 306
TEMPORARY_REDIRECT = 307
PERMANENT_REDIRECT = 308
# 4xx
BAD_REQUEST = 400
UNAUTHORIZED = 401
PAYMENT_REQUIRED = 402
FORBIDDEN = 403
NOT_FOUND = 404
METHOD_NOT_ALLOWED = 405
NOT_ACCEPTABLE = 406
PROXY_AUTHENTICATION_REQUIRED = 407
REQUEST_TIMEOUT = 408
CONFLICT = 409
GONE = 410
LENGTH_REQUIRED = 411
PRECONDITION_FAILED = 412
REQUEST_ENTITY_TOO_LARGE = 413
REQUEST_URI_TOO_LONG = 414
UNSUPPORTED_MEDIA_TYPE = 415
REQUESTED_RANGE_NOT_SATISFIABLE = 416
EXPECTATION_FAILED = 417
I_AM_A_TEAPOT = 418
AUTHENTICATION_TIMEOUT = 419
METHOD_FAILURE = 420
ENHANCE_YOUR_CALM = 420
UNPROCESSABLE_ENTITY = 422
LOCKED = 423
FAILED_DEPENDENCY = 424
UPGRADE_REQUIRED = 426
PRECONDITION_REQUIRED = 428
TOO_MANY_REQUESTS = 429
REQUEST_HEADER_FIELDS_TOO_LARGE = 431
LOGIN_TIMEOUT = 440
NO_RESPONSE = 444
RETRY_WITH = 449
BLOCKED_BY_WINDOWS_PARENTAL_CONTROLS = 450
UNAVAILABLE_FOR_LEGAL_REASONS = 451
REQUEST_HEADER_TOO_LARGE = 494
CERT_ERROR = 495
NO_CERT = 496
HTTP_TO_HTTPS = 497
TOKEN_EXPIRED_INVALID = 498
CLIENT_CLOSED_REQUEST = 499
TOKEN_REQUIRED = 499
# 5xx
INTERNAL_SERVER_ERROR = 500
NOT_IMPLEMENTED = 501
BAD_GATEWAY = 502
SERVICE_UNAVAILABLE = 503
GATEWAY_TIMEOUT = 504
HTTP_VERSION_NOT_SUPPORTED = 505
VARIANT_ALSO_NEGOTIATES = 506
INSUFFICIENT_STORAGE = 507
LOOP_DETECTED = 508
BANDWIDTH_LIMIT_EXCEEDED = 509
NOT_EXTENDED = 510
NETWORK_AUTHENTICATION_REQUIRED = 511
ORIGIN_ERROR = 520
WEB_SERVER_IS_DOWN = 521
CONNECTION_TIMED_OUT = 522
PROXY_DECLINED_REQUEST = 523
A_TIMEOUT_OCCURRED = 524
NETWORK_READ_TIMEOUT_ERROR = 598
NETWORK_CONNECT_TIMEOUT_ERROR = 599
| """
See:
http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
"""
class Httpstatuscode(object):
continue = 100
switching_protocols = 101
processing = 102
ok = 200
created = 201
accepted = 202
non_authoritative_information = 203
no_content = 204
reset_content = 205
partial_content = 206
multi_status = 207
already_reported = 208
im_used = 226
multiple_choices = 300
moved_permanently = 301
found = 302
see_other = 303
not_modified = 304
use_proxy = 305
switch_proxy = 306
temporary_redirect = 307
permanent_redirect = 308
bad_request = 400
unauthorized = 401
payment_required = 402
forbidden = 403
not_found = 404
method_not_allowed = 405
not_acceptable = 406
proxy_authentication_required = 407
request_timeout = 408
conflict = 409
gone = 410
length_required = 411
precondition_failed = 412
request_entity_too_large = 413
request_uri_too_long = 414
unsupported_media_type = 415
requested_range_not_satisfiable = 416
expectation_failed = 417
i_am_a_teapot = 418
authentication_timeout = 419
method_failure = 420
enhance_your_calm = 420
unprocessable_entity = 422
locked = 423
failed_dependency = 424
upgrade_required = 426
precondition_required = 428
too_many_requests = 429
request_header_fields_too_large = 431
login_timeout = 440
no_response = 444
retry_with = 449
blocked_by_windows_parental_controls = 450
unavailable_for_legal_reasons = 451
request_header_too_large = 494
cert_error = 495
no_cert = 496
http_to_https = 497
token_expired_invalid = 498
client_closed_request = 499
token_required = 499
internal_server_error = 500
not_implemented = 501
bad_gateway = 502
service_unavailable = 503
gateway_timeout = 504
http_version_not_supported = 505
variant_also_negotiates = 506
insufficient_storage = 507
loop_detected = 508
bandwidth_limit_exceeded = 509
not_extended = 510
network_authentication_required = 511
origin_error = 520
web_server_is_down = 521
connection_timed_out = 522
proxy_declined_request = 523
a_timeout_occurred = 524
network_read_timeout_error = 598
network_connect_timeout_error = 599 |
class Mission:
def __init__(self, name, func):
self.name = name
self._func = func
def run(self):
self._func() | class Mission:
def __init__(self, name, func):
self.name = name
self._func = func
def run(self):
self._func() |
# -*- coding: utf-8 -*-
# Load appconfid
default_app_config = 'devilry.devilry_qualifiesforexam_plugin_points.apps.DevilryQualifiesForExamPointsAppConfig'
| default_app_config = 'devilry.devilry_qualifiesforexam_plugin_points.apps.DevilryQualifiesForExamPointsAppConfig' |
def P_G(G, i, n):
t = (1 + i) ** n
return (G / i) * (((t - 1) / (i * t)) - (n / t))
def A_G(G, i, n):
t = (1 + i) ** n
return G * ((1/i) - (n / (t - 1)))
| def p_g(G, i, n):
t = (1 + i) ** n
return G / i * ((t - 1) / (i * t) - n / t)
def a_g(G, i, n):
t = (1 + i) ** n
return G * (1 / i - n / (t - 1)) |
def checkio(number: int) -> str:
res = str(number);
if(number % 5 == 0 and number % 3 == 0):
return "Fizz Buzz";
elif(number % 3 == 0):
return "Fizz";
elif(number % 5 == 0):
return "Buzz";
return res; | def checkio(number: int) -> str:
res = str(number)
if number % 5 == 0 and number % 3 == 0:
return 'Fizz Buzz'
elif number % 3 == 0:
return 'Fizz'
elif number % 5 == 0:
return 'Buzz'
return res |
# -*- coding: utf-8 -*-
# Scrapy settings; see https://doc.scrapy.org/en/latest/topics/settings.html#
BOT_NAME = 'jailscraper'
SPIDER_MODULES = ['jailscraper.spiders']
NEWSPIDER_MODULE = 'jailscraper.spiders'
RETRY_ENABLED = False
USER_AGENT = 'ProPublica Cook County Jail Scraper - contact [email protected] for details'
COOKIES_ENABLED = False
ROBOTSTXT_OBEY = True
CONCURRENT_REQUESTS = 12
AUTOTHROTTLE_ENABLED = True
AUTOTHROTTLE_START_DELAY = 1
AUTOTHROTTLE_TARGET_CONCURRENCY = 12.0
| bot_name = 'jailscraper'
spider_modules = ['jailscraper.spiders']
newspider_module = 'jailscraper.spiders'
retry_enabled = False
user_agent = 'ProPublica Cook County Jail Scraper - contact [email protected] for details'
cookies_enabled = False
robotstxt_obey = True
concurrent_requests = 12
autothrottle_enabled = True
autothrottle_start_delay = 1
autothrottle_target_concurrency = 12.0 |
FEA_DIMENSION = 80
label_dict = {'alv': 0, 'fas': 1, 'prs': 2, 'pus': 3, 'urd': 4, 'mul': 5}
path_conf = {
"dev_data": '',
"dev_labels": '',
"train_list": '',
}
log_conf = {
"base_dir": '',
"file_name": '',
}
summary_conf = {
"checkpoint_dir": '',
"model_directory": '',
"model_name": '',
}
model_conf = {
"gru_layer1_units": 256,
"gru_layer2_units": 256,
"bigru_units": 256,
"attention_size": 128,
"dense_dim_3s": 512,
"dense_dim_10s": 512,
"num_of_classes": 6,
"learning_rate": 1e-4,
}
train_conf = {
"train_batch_size": 64,
"val_batch_size": 70,
"num_classes": 6,
"num_epochs": 100,
"num_batches": 1000,
"window": 20,
"hop": 10,
"sample_len": 3010,
}
| fea_dimension = 80
label_dict = {'alv': 0, 'fas': 1, 'prs': 2, 'pus': 3, 'urd': 4, 'mul': 5}
path_conf = {'dev_data': '', 'dev_labels': '', 'train_list': ''}
log_conf = {'base_dir': '', 'file_name': ''}
summary_conf = {'checkpoint_dir': '', 'model_directory': '', 'model_name': ''}
model_conf = {'gru_layer1_units': 256, 'gru_layer2_units': 256, 'bigru_units': 256, 'attention_size': 128, 'dense_dim_3s': 512, 'dense_dim_10s': 512, 'num_of_classes': 6, 'learning_rate': 0.0001}
train_conf = {'train_batch_size': 64, 'val_batch_size': 70, 'num_classes': 6, 'num_epochs': 100, 'num_batches': 1000, 'window': 20, 'hop': 10, 'sample_len': 3010} |
#
# PySNMP MIB module IPOMANII-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/IPOMANII-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 19:45:07 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, SingleValueConstraint, ConstraintsUnion, ValueRangeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsUnion", "ValueRangeConstraint", "ConstraintsIntersection")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, Integer32, TimeTicks, NotificationType, ModuleIdentity, iso, enterprises, NotificationType, Counter64, Gauge32, ObjectIdentity, Unsigned32, IpAddress, Counter32, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Integer32", "TimeTicks", "NotificationType", "ModuleIdentity", "iso", "enterprises", "NotificationType", "Counter64", "Gauge32", "ObjectIdentity", "Unsigned32", "IpAddress", "Counter32", "Bits")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
ingrasys = MibIdentifier((1, 3, 6, 1, 4, 1, 2468))
product = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1))
pduAgent = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4))
iPoManII = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2))
ipmObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1))
ipmTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2))
ipmIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 1))
ipmAgent = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2))
ipmDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3))
ipmSlave = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4))
ipmEnv = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5))
ipmIdentManufacturer = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmIdentManufacturer.setStatus('mandatory')
ipmIdentModel = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmIdentModel.setStatus('mandatory')
ipmIdentAgentSoftwareVersion = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 63))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipmIdentAgentSoftwareVersion.setStatus('mandatory')
ipmIdentName = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmIdentName.setStatus('mandatory')
ipmAgentConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1))
ipmAgentMibVersion = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipmAgentMibVersion.setStatus('mandatory')
ipmAgentTime = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2))
ipmAgentTimeDate = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(10, 10)).setFixedLength(10)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentTimeDate.setStatus('mandatory')
ipmAgentTimeTime = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentTimeTime.setStatus('mandatory')
ipmAgentTimerFromNtp = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentTimerFromNtp.setStatus('mandatory')
ipmAgentNtpIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentNtpIpAddress.setStatus('mandatory')
ipmAgentNtpTimeZone = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28))).clone(namedValues=NamedValues(("gMT-1200", 1), ("gMT-1100", 2), ("gMT-1000", 3), ("gMT-0900", 4), ("gMT-0800", 5), ("gMT-0700", 6), ("gMT-0600", 7), ("gMT-0500", 8), ("gMT-0400", 9), ("gMT-0330", 10), ("gMT-0300", 11), ("gMT-0200", 12), ("gMT-0100", 13), ("gMT-0000", 14), ("gMT0100", 15), ("gMT0200", 16), ("gMT0300", 17), ("gMT0330", 18), ("gMT0400", 19), ("gMT0500", 20), ("gMT0530", 21), ("gMT0600", 22), ("gMT0700", 23), ("gMT0800", 24), ("gMT0900", 25), ("gMT1000", 26), ("gMT1100", 27), ("gMT1200", 28)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentNtpTimeZone.setStatus('mandatory')
ipmAgentDayLightSaving = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentDayLightSaving.setStatus('mandatory')
ipmAgentNetwork = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3))
ipmAgentNetworkIp = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 1))
ipmAgentNetworkIpAdress = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentNetworkIpAdress.setStatus('mandatory')
ipmAgentNetworkIpGateway = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentNetworkIpGateway.setStatus('mandatory')
ipmAgentNetworkIpSubnet = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentNetworkIpSubnet.setStatus('mandatory')
ipmAgentNetworkDhcpControl = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentNetworkDhcpControl.setStatus('mandatory')
ipmAgentNetworkPingControl = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentNetworkPingControl.setStatus('mandatory')
ipmAgentNetworkTftpControl = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentNetworkTftpControl.setStatus('mandatory')
ipmAgentNetworkTelnet = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 5))
ipmAgentTelnetControl = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 5, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentTelnetControl.setStatus('mandatory')
ipmAgentTelnetPort = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 5, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentTelnetPort.setStatus('mandatory')
ipmAgentNetworkHttp = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 6))
ipmAgentHttpControl = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 6, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentHttpControl.setStatus('mandatory')
ipmAgentHttpPort = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 6, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentHttpPort.setStatus('mandatory')
ipmAgentNetworkSnmp = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 7))
ipmAgentSnmpControl = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 7, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentSnmpControl.setStatus('mandatory')
ipmAgentSnmpPort = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentSnmpPort.setStatus('mandatory')
ipmAgentLog = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 4))
pduAgentDataLogInterval = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 4, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(60, 28800))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pduAgentDataLogInterval.setStatus('mandatory')
ipmAgentControl = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 5))
ipmAgentControlDefault = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 5, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("reset", 1), ("nothing", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentControlDefault.setStatus('mandatory')
ipmAgentControlRestart = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 5, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("restart", 1), ("nothing", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentControlRestart.setStatus('mandatory')
ipmAgentTrap = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 6))
ipmAgentTrapRetryCount = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 6, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentTrapRetryCount.setStatus('mandatory')
ipmAgentTrapRetryTime = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 6, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentTrapRetryTime.setStatus('mandatory')
ipmAgentTrapAckSignature = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 6, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmAgentTrapAckSignature.setStatus('mandatory')
ipmAgentTrapsReceiversTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7), )
if mibBuilder.loadTexts: ipmAgentTrapsReceiversTable.setStatus('mandatory')
ipmAgentTrapsReceiversEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1), ).setIndexNames((0, "IPOMANII-MIB", "trapsIndex"))
if mibBuilder.loadTexts: ipmAgentTrapsReceiversEntry.setStatus('mandatory')
trapsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: trapsIndex.setStatus('mandatory')
trapsReceiverAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: trapsReceiverAddr.setStatus('mandatory')
receiverCommunityString = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: receiverCommunityString.setStatus('mandatory')
receiverNmsType = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("iPoManII-trap", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: receiverNmsType.setStatus('mandatory')
receiverSeverityLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("informational", 1), ("warning", 2), ("severe", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: receiverSeverityLevel.setStatus('mandatory')
receiverDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: receiverDescription.setStatus('mandatory')
ipmAgentAccessControlTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 8), )
if mibBuilder.loadTexts: ipmAgentAccessControlTable.setStatus('mandatory')
ipmAgentAccessControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 8, 1), ).setIndexNames((0, "IPOMANII-MIB", "accessIndex"))
if mibBuilder.loadTexts: ipmAgentAccessControlEntry.setStatus('mandatory')
accessIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 8, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: accessIndex.setStatus('mandatory')
accessControlAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 8, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: accessControlAddr.setStatus('mandatory')
accessControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 8, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permitted", 1), ("denied", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: accessControlMode.setStatus('mandatory')
ipmDeviceInlet = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1))
ipmDeviceInletNumber = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipmDeviceInletNumber.setStatus('mandatory')
ipmDeviceInletConfigTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2), )
if mibBuilder.loadTexts: ipmDeviceInletConfigTable.setStatus('mandatory')
ipmDeviceInletConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1), ).setIndexNames((0, "IPOMANII-MIB", "inletConfigIndex"))
if mibBuilder.loadTexts: ipmDeviceInletConfigEntry.setStatus('mandatory')
inletConfigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletConfigIndex.setStatus('mandatory')
inletConfigDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inletConfigDesc.setStatus('mandatory')
inletConfigVoltageHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inletConfigVoltageHigh.setStatus('mandatory')
inletConfigVoltageHighAction = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("outletsOff", 1), ("nothing", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inletConfigVoltageHighAction.setStatus('mandatory')
inletConfigVoltageLow = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inletConfigVoltageLow.setStatus('mandatory')
inletConfigVoltageLowAction = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("outletsOff", 1), ("nothing", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inletConfigVoltageLowAction.setStatus('mandatory')
inletConfigCurrentHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 160))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inletConfigCurrentHigh.setStatus('mandatory')
inletConfigCurrentHighAction = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("outletsOff", 1), ("nothing", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inletConfigCurrentHighAction.setStatus('mandatory')
inletConfigFrequencyHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inletConfigFrequencyHigh.setStatus('mandatory')
inletConfigfrequencyHighAction = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("outletsOff", 1), ("nothing", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inletConfigfrequencyHighAction.setStatus('mandatory')
inletConfigFrequencyLow = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inletConfigFrequencyLow.setStatus('mandatory')
inletConfigfrequencyLowAction = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("outletsOff", 1), ("nothing", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inletConfigfrequencyLowAction.setStatus('mandatory')
ipmDeviceInletStatusTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3), )
if mibBuilder.loadTexts: ipmDeviceInletStatusTable.setStatus('mandatory')
ipmDeviceInletStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1), ).setIndexNames((0, "IPOMANII-MIB", "inletStatusIndex"))
if mibBuilder.loadTexts: ipmDeviceInletStatusEntry.setStatus('mandatory')
inletStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletStatusIndex.setStatus('mandatory')
inletStatusVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletStatusVoltage.setStatus('mandatory')
inletStatusCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletStatusCurrent.setStatus('mandatory')
inletStatusFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletStatusFrequency.setStatus('mandatory')
inletStatusKwatt = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletStatusKwatt.setStatus('mandatory')
inletStatusWH = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletStatusWH.setStatus('mandatory')
inletWattReset = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("inlet1", 2), ("inlet2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inletWattReset.setStatus('mandatory')
ipmDeviceOutlet = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2))
ipmDeviceOutletNumber = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipmDeviceOutletNumber.setStatus('mandatory')
ipmDeviceOutletConfigTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2), )
if mibBuilder.loadTexts: ipmDeviceOutletConfigTable.setStatus('mandatory')
ipmDeviceOutletConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1), ).setIndexNames((0, "IPOMANII-MIB", "inletConfigIndex"))
if mibBuilder.loadTexts: ipmDeviceOutletConfigEntry.setStatus('mandatory')
outletConfigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletConfigIndex.setStatus('mandatory')
outletConfigDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletConfigDesc.setStatus('mandatory')
outletConfigLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletConfigLocation.setStatus('mandatory')
outletConfigOnDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletConfigOnDelay.setStatus('mandatory')
outletConfigOffDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletConfigOffDelay.setStatus('mandatory')
outletConfigCurrentHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletConfigCurrentHigh.setStatus('mandatory')
outletConfigCurrentHighAction = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("outletOff", 1), ("nothing", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletConfigCurrentHighAction.setStatus('mandatory')
ipmDeviceOutletStatusTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3), )
if mibBuilder.loadTexts: ipmDeviceOutletStatusTable.setStatus('mandatory')
ipmDeviceOutletStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1), ).setIndexNames((0, "IPOMANII-MIB", "outletStatusIndex"))
if mibBuilder.loadTexts: ipmDeviceOutletStatusEntry.setStatus('mandatory')
outletStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletStatusIndex.setStatus('mandatory')
outletStatusStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknow", 1), ("outletOff", 2), ("outletOn", 3), ("outletOffToOn", 4), ("outletOnToOff", 5), ("outletCycling", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletStatusStatus.setStatus('mandatory')
outletStatusCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletStatusCurrent.setStatus('mandatory')
outletStatusKwatt = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletStatusKwatt.setStatus('mandatory')
outletStatusWH = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletStatusWH.setStatus('mandatory')
outletStatusStateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletStatusStateTime.setStatus('mandatory')
outletStatusTimeToGo = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletStatusTimeToGo.setStatus('mandatory')
ipmDeviceOutletControlTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 4), )
if mibBuilder.loadTexts: ipmDeviceOutletControlTable.setStatus('mandatory')
ipmDeviceOutletControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 4, 1), ).setIndexNames((0, "IPOMANII-MIB", "outletControlIndex"))
if mibBuilder.loadTexts: ipmDeviceOutletControlEntry.setStatus('mandatory')
outletControlIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletControlIndex.setStatus('mandatory')
outletControlControl = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletControlControl.setStatus('mandatory')
ipmDeviceOutletControlAll = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimers", 6), ("offByActionTimers", 7), ("cycleByActionTimers", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmDeviceOutletControlAll.setStatus('mandatory')
ipmDeviceOutletWattReset = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=NamedValues(("none", 1), ("outleta", 2), ("outletb", 3), ("outletc", 4), ("outletd", 5), ("outlete", 6), ("outletf", 7), ("outletg", 8), ("outleth", 9), ("outleti", 10), ("outletj", 11), ("outletk", 12), ("outletl", 13)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmDeviceOutletWattReset.setStatus('mandatory')
ipmDeviceCcOut = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3))
ipmDeviceCcOutNumber = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipmDeviceCcOutNumber.setStatus('mandatory')
ipmDeviceCcOutConfigTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2), )
if mibBuilder.loadTexts: ipmDeviceCcOutConfigTable.setStatus('mandatory')
ipmDeviceCcOutConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2, 1), ).setIndexNames((0, "IPOMANII-MIB", "ccOutConfigIndex"))
if mibBuilder.loadTexts: ipmDeviceCcOutConfigEntry.setStatus('mandatory')
ccOutConfigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ccOutConfigIndex.setStatus('mandatory')
ccOutConfigDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ccOutConfigDesc.setStatus('mandatory')
ccOutConfigEventAction = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ccOutConfigEventAction.setStatus('mandatory')
ccOutConfigCloseDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ccOutConfigCloseDelay.setStatus('mandatory')
ccOutConfigOpenDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ccOutConfigOpenDelay.setStatus('mandatory')
ipmDeviceCcOutStatusTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 3), )
if mibBuilder.loadTexts: ipmDeviceCcOutStatusTable.setStatus('mandatory')
ipmDeviceCcOutStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 3, 1), ).setIndexNames((0, "IPOMANII-MIB", "ccOutStatusIndex"))
if mibBuilder.loadTexts: ipmDeviceCcOutStatusEntry.setStatus('mandatory')
ccOutStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ccOutStatusIndex.setStatus('mandatory')
ccOutStatusStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("closed", 1), ("open", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ccOutStatusStatus.setStatus('mandatory')
ccOutStatusTimeOnState = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ccOutStatusTimeOnState.setStatus('mandatory')
ipmDeviceCcOutControlTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 4), )
if mibBuilder.loadTexts: ipmDeviceCcOutControlTable.setStatus('mandatory')
ipmDeviceCcOutControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 4, 1), ).setIndexNames((0, "IPOMANII-MIB", "ccOutControlIndex"))
if mibBuilder.loadTexts: ipmDeviceCcOutControlEntry.setStatus('mandatory')
ccOutControlIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ccOutControlIndex.setStatus('mandatory')
ccOutControlControl = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("closeImmediately", 3), ("openImmediately", 4), ("cycleImmediately", 5), ("closeByCloseTimer", 6), ("openByOpenTimer", 7), ("cycleByActionTimer", 8), ("closeThenOpenByActionTimers", 9), ("openThenCloseByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ccOutControlControl.setStatus('mandatory')
ipmSlaveState = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 1))
ipmSlaveStateTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 1, 1), )
if mibBuilder.loadTexts: ipmSlaveStateTable.setStatus('mandatory')
ipmSlaveStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 1, 1, 1), ).setIndexNames((0, "IPOMANII-MIB", "slaveStateIndex"))
if mibBuilder.loadTexts: ipmSlaveStateEntry.setStatus('mandatory')
slaveStateIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveStateIndex.setStatus('mandatory')
slaveStateControl01 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disconnected", 1), ("connected", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveStateControl01.setStatus('mandatory')
ipmSlaveInlet = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2))
ipmSlaveInletStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1))
ipmDeviceSlaveInletStatusTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1), )
if mibBuilder.loadTexts: ipmDeviceSlaveInletStatusTable.setStatus('mandatory')
ipmDeviceSlaveInletStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1), ).setIndexNames((0, "IPOMANII-MIB", "inletStatusIndex"))
if mibBuilder.loadTexts: ipmDeviceSlaveInletStatusEntry.setStatus('mandatory')
inletSlaveStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletSlaveStatusIndex.setStatus('mandatory')
inletSlaveStatusVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletSlaveStatusVoltage.setStatus('mandatory')
inletSlaveStatusCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletSlaveStatusCurrent.setStatus('mandatory')
inletSlaveStatusFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletSlaveStatusFrequency.setStatus('mandatory')
inletSlaveStatusKwatt = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletSlaveStatusKwatt.setStatus('mandatory')
inletSlaveStatusWH = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletSlaveStatusWH.setStatus('mandatory')
inletSlaveStatusVoltage2 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletSlaveStatusVoltage2.setStatus('mandatory')
inletSlaveStatusCurrent2 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletSlaveStatusCurrent2.setStatus('mandatory')
inletSlaveStatusFrequency2 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletSlaveStatusFrequency2.setStatus('mandatory')
inletSlaveStatusKwatt2 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletSlaveStatusKwatt2.setStatus('mandatory')
inletSlaveStatusWH2 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inletSlaveStatusWH2.setStatus('mandatory')
ipmSlaveInletConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2))
ipmDeviceslaveInletConfigTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1), )
if mibBuilder.loadTexts: ipmDeviceslaveInletConfigTable.setStatus('mandatory')
ipmDeviceslaveInletConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1, 1), ).setIndexNames((0, "IPOMANII-MIB", "slaveInletConfigIndex"))
if mibBuilder.loadTexts: ipmDeviceslaveInletConfigEntry.setStatus('mandatory')
slaveInletConfigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveInletConfigIndex.setStatus('mandatory')
slaveInletConfigVoltageHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveInletConfigVoltageHigh.setStatus('mandatory')
slaveInletConfigVoltageLow = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveInletConfigVoltageLow.setStatus('mandatory')
slaveInlet2ConfigVoltageHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveInlet2ConfigVoltageHigh.setStatus('mandatory')
slaveInlet2ConfigVoltageLow = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65500))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveInlet2ConfigVoltageLow.setStatus('mandatory')
ipmSlaveOutlet = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3))
ipmSlaveOutletConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1))
ipmSlaveDeviceOutletNameTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1), )
if mibBuilder.loadTexts: ipmSlaveDeviceOutletNameTable.setStatus('mandatory')
ipmSlaveDeviceOutletNameEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1), ).setIndexNames((0, "IPOMANII-MIB", "slaveOutletNameIndex"))
if mibBuilder.loadTexts: ipmSlaveDeviceOutletNameEntry.setStatus('mandatory')
slaveOutletNameIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletNameIndex.setStatus('mandatory')
slaveOutletName01 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletName01.setStatus('mandatory')
slaveOutletName02 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletName02.setStatus('mandatory')
slaveOutletName03 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletName03.setStatus('mandatory')
slaveOutletName04 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletName04.setStatus('mandatory')
slaveOutletName05 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletName05.setStatus('mandatory')
slaveOutletName06 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletName06.setStatus('mandatory')
slaveOutletName07 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletName07.setStatus('mandatory')
slaveOutletName08 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletName08.setStatus('mandatory')
slaveOutletName09 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletName09.setStatus('mandatory')
slaveOutletName10 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletName10.setStatus('mandatory')
slaveOutletName11 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletName11.setStatus('mandatory')
slaveOutletName12 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 13), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletName12.setStatus('mandatory')
ipmSlaveDeviceOutletLocationTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2), )
if mibBuilder.loadTexts: ipmSlaveDeviceOutletLocationTable.setStatus('mandatory')
ipmSlaveDeviceOutletLocationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1), ).setIndexNames((0, "IPOMANII-MIB", "slaveOutletLocationIndex"))
if mibBuilder.loadTexts: ipmSlaveDeviceOutletLocationEntry.setStatus('mandatory')
slaveOutletLocationIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletLocationIndex.setStatus('mandatory')
slaveOutletLocation01 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletLocation01.setStatus('mandatory')
slaveOutletLocation02 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletLocation02.setStatus('mandatory')
slaveOutletLocation03 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletLocation03.setStatus('mandatory')
slaveOutletLocation04 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletLocation04.setStatus('mandatory')
slaveOutletLocation05 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletLocation05.setStatus('mandatory')
slaveOutletLocation06 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletLocation06.setStatus('mandatory')
slaveOutletLocation07 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletLocation07.setStatus('mandatory')
slaveOutletLocation08 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletLocation08.setStatus('mandatory')
slaveOutletLocation09 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletLocation09.setStatus('mandatory')
slaveOutletLocation10 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletLocation10.setStatus('mandatory')
slaveOutletLocation11 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletLocation11.setStatus('mandatory')
slaveOutletLocation12 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 13), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletLocation12.setStatus('mandatory')
ipmSlaveDeviceOutletOnTimeTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3), )
if mibBuilder.loadTexts: ipmSlaveDeviceOutletOnTimeTable.setStatus('mandatory')
ipmSlaveDeviceOutletOnTimeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1), ).setIndexNames((0, "IPOMANII-MIB", "slaveOutletOnTimeIndex"))
if mibBuilder.loadTexts: ipmSlaveDeviceOutletOnTimeEntry.setStatus('mandatory')
slaveOutletOnTimeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletOnTimeIndex.setStatus('mandatory')
slaveOutletOnTime01 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOnTime01.setStatus('mandatory')
slaveOutletOnTime02 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOnTime02.setStatus('mandatory')
slaveOutletOnTime03 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOnTime03.setStatus('mandatory')
slaveOutletOnTime04 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOnTime04.setStatus('mandatory')
slaveOutletOnTime05 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOnTime05.setStatus('mandatory')
slaveOutletOnTime06 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOnTime06.setStatus('mandatory')
slaveOutletOnTime07 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOnTime07.setStatus('mandatory')
slaveOutletOnTime08 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOnTime08.setStatus('mandatory')
slaveOutletOnTime09 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOnTime09.setStatus('mandatory')
slaveOutletOnTime10 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOnTime10.setStatus('mandatory')
slaveOutletOnTime11 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 12), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOnTime11.setStatus('mandatory')
slaveOutletOnTime12 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 13), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOnTime12.setStatus('mandatory')
ipmSlaveDeviceOutletOffTimeTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4), )
if mibBuilder.loadTexts: ipmSlaveDeviceOutletOffTimeTable.setStatus('mandatory')
ipmSlaveDeviceOutletOffTimeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1), ).setIndexNames((0, "IPOMANII-MIB", "slaveOutletOffTimeIndex"))
if mibBuilder.loadTexts: ipmSlaveDeviceOutletOffTimeEntry.setStatus('mandatory')
slaveOutletOffTimeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletOffTimeIndex.setStatus('mandatory')
slaveOutletOffTime01 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOffTime01.setStatus('mandatory')
slaveOutletOffTime02 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOffTime02.setStatus('mandatory')
slaveOutletOffTime03 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOffTime03.setStatus('mandatory')
slaveOutletOffTime04 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOffTime04.setStatus('mandatory')
slaveOutletOffTime05 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOffTime05.setStatus('mandatory')
slaveOutletOffTime06 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOffTime06.setStatus('mandatory')
slaveOutletOffTime07 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOffTime07.setStatus('mandatory')
slaveOutletOffTime08 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOffTime08.setStatus('mandatory')
slaveOutletOffTime09 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOffTime09.setStatus('mandatory')
slaveOutletOffTime10 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOffTime10.setStatus('mandatory')
slaveOutletOffTime11 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 12), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOffTime11.setStatus('mandatory')
slaveOutletOffTime12 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 13), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletOffTime12.setStatus('mandatory')
ipmSlaveDeviceOutletCurrThTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5), )
if mibBuilder.loadTexts: ipmSlaveDeviceOutletCurrThTable.setStatus('mandatory')
ipmSlaveDeviceOutletCurrThEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1), ).setIndexNames((0, "IPOMANII-MIB", "slaveOutletCurrThIndex"))
if mibBuilder.loadTexts: ipmSlaveDeviceOutletCurrThEntry.setStatus('mandatory')
slaveOutletCurrThIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrThIndex.setStatus('mandatory')
slaveOutletCurrTh01 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletCurrTh01.setStatus('mandatory')
slaveOutletCurrTh02 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletCurrTh02.setStatus('mandatory')
slaveOutletCurrTh03 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletCurrTh03.setStatus('mandatory')
slaveOutletCurrTh04 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletCurrTh04.setStatus('mandatory')
slaveOutletCurrTh05 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletCurrTh05.setStatus('mandatory')
slaveOutletCurrTh06 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletCurrTh06.setStatus('mandatory')
slaveOutletCurrTh07 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletCurrTh07.setStatus('mandatory')
slaveOutletCurrTh08 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletCurrTh08.setStatus('mandatory')
slaveOutletCurrTh09 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletCurrTh09.setStatus('mandatory')
slaveOutletCurrTh10 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletCurrTh10.setStatus('mandatory')
slaveOutletCurrTh11 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 12), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletCurrTh11.setStatus('mandatory')
slaveOutletCurrTh12 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 13), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletCurrTh12.setStatus('mandatory')
ipmSlaveOutletStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2))
ipmSlaveDeviceOutletCurrentTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1), )
if mibBuilder.loadTexts: ipmSlaveDeviceOutletCurrentTable.setStatus('mandatory')
ipmSlaveDeviceOutletCurrentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1), ).setIndexNames((0, "IPOMANII-MIB", "slaveOutletCurrentIndex"))
if mibBuilder.loadTexts: ipmSlaveDeviceOutletCurrentEntry.setStatus('mandatory')
slaveOutletCurrentIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrentIndex.setStatus('mandatory')
slaveOutletCurrent01 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrent01.setStatus('mandatory')
slaveOutletCurrent02 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrent02.setStatus('mandatory')
slaveOutletCurrent03 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrent03.setStatus('mandatory')
slaveOutletCurrent04 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrent04.setStatus('mandatory')
slaveOutletCurrent05 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrent05.setStatus('mandatory')
slaveOutletCurrent06 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrent06.setStatus('mandatory')
slaveOutletCurrent07 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrent07.setStatus('mandatory')
slaveOutletCurrent08 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrent08.setStatus('mandatory')
slaveOutletCurrent09 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrent09.setStatus('mandatory')
slaveOutletCurrent10 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrent10.setStatus('mandatory')
slaveOutletCurrent11 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrent11.setStatus('mandatory')
slaveOutletCurrent12 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletCurrent12.setStatus('mandatory')
ipmSlaveDeviceOutletWattTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2), )
if mibBuilder.loadTexts: ipmSlaveDeviceOutletWattTable.setStatus('mandatory')
ipmSlaveDeviceOutletWattEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1), ).setIndexNames((0, "IPOMANII-MIB", "slaveOutletWattIndex"))
if mibBuilder.loadTexts: ipmSlaveDeviceOutletWattEntry.setStatus('mandatory')
slaveOutletWattIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWattIndex.setStatus('mandatory')
slaveOutletWatt01 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWatt01.setStatus('mandatory')
slaveOutletWatt02 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWatt02.setStatus('mandatory')
slaveOutletWatt03 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWatt03.setStatus('mandatory')
slaveOutletWatt04 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWatt04.setStatus('mandatory')
slaveOutletWatt05 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWatt05.setStatus('mandatory')
slaveOutletWatt06 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWatt06.setStatus('mandatory')
slaveOutletWatt07 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWatt07.setStatus('mandatory')
slaveOutletWatt08 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWatt08.setStatus('mandatory')
slaveOutletWatt09 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWatt09.setStatus('mandatory')
slaveOutletWatt10 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWatt10.setStatus('mandatory')
slaveOutletWatt11 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWatt11.setStatus('mandatory')
slaveOutletWatt12 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletWatt12.setStatus('mandatory')
ipmSlaveDeviceOutletKwattTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3), )
if mibBuilder.loadTexts: ipmSlaveDeviceOutletKwattTable.setStatus('mandatory')
ipmSlaveDeviceOutletKwattEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1), ).setIndexNames((0, "IPOMANII-MIB", "slaveOutletKwattIndex"))
if mibBuilder.loadTexts: ipmSlaveDeviceOutletKwattEntry.setStatus('mandatory')
slaveOutletKwattIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwattIndex.setStatus('mandatory')
slaveOutletKwatt01 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwatt01.setStatus('mandatory')
slaveOutletKwatt02 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwatt02.setStatus('mandatory')
slaveOutletKwatt03 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwatt03.setStatus('mandatory')
slaveOutletKwatt04 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwatt04.setStatus('mandatory')
slaveOutletKwatt05 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwatt05.setStatus('mandatory')
slaveOutletKwatt06 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwatt06.setStatus('mandatory')
slaveOutletKwatt07 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwatt07.setStatus('mandatory')
slaveOutletKwatt08 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwatt08.setStatus('mandatory')
slaveOutletKwatt09 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwatt09.setStatus('mandatory')
slaveOutletKwatt10 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwatt10.setStatus('mandatory')
slaveOutletKwatt11 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwatt11.setStatus('mandatory')
slaveOutletKwatt12 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletKwatt12.setStatus('mandatory')
ipmSlaveOutletAction = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3))
ipmSlaveDeviceOutletActionTable = MibTable((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1), )
if mibBuilder.loadTexts: ipmSlaveDeviceOutletActionTable.setStatus('mandatory')
ipmSlaveDeviceOutletActionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1), ).setIndexNames((0, "IPOMANII-MIB", "slaveOutletActionIndex"))
if mibBuilder.loadTexts: ipmSlaveDeviceOutletActionEntry.setStatus('mandatory')
slaveOutletActionIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slaveOutletActionIndex.setStatus('mandatory')
slaveOutletAction01 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletAction01.setStatus('mandatory')
slaveOutletAction02 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletAction02.setStatus('mandatory')
slaveOutletAction03 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletAction03.setStatus('mandatory')
slaveOutletAction04 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletAction04.setStatus('mandatory')
slaveOutletAction05 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletAction05.setStatus('mandatory')
slaveOutletAction06 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletAction06.setStatus('mandatory')
slaveOutletAction07 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletAction07.setStatus('mandatory')
slaveOutletAction08 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletAction08.setStatus('mandatory')
slaveOutletAction09 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletAction09.setStatus('mandatory')
slaveOutletAction10 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletAction10.setStatus('mandatory')
slaveOutletAction11 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletAction11.setStatus('mandatory')
slaveOutletAction12 = MibTableColumn((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("none", 1), ("cancelAction", 2), ("onImmediately", 3), ("offImmediately", 4), ("cycleImmediately", 5), ("onByActionTimer", 6), ("offByActionTimer", 7), ("cycleByActionTimer", 8), ("onThenOffByActionTimers", 9), ("offThenOnByActionTimers", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: slaveOutletAction12.setStatus('mandatory')
ipmEnvEmd = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1))
ipmEnvEmdStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 1))
ipmEnvEmdStatusEmdType = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 1), ("disabled", 2), ("eMD-HT", 3), ("eMD-T", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipmEnvEmdStatusEmdType.setStatus('mandatory')
ipmEnvEmdStatusTemperature = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipmEnvEmdStatusTemperature.setStatus('mandatory')
ipmEnvEmdStatusHumidity = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipmEnvEmdStatusHumidity.setStatus('mandatory')
ipmEnvEmdStatusAlarm1 = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 1), ("disabled", 2), ("alarm", 3), ("normal", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipmEnvEmdStatusAlarm1.setStatus('mandatory')
ipmEnvEmdStatusAlarm2 = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 1), ("disabled", 2), ("alarm", 3), ("normal", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipmEnvEmdStatusAlarm2.setStatus('mandatory')
ipmEnvEmdConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2))
ipmEnvEmdConfigEmdPresence = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("autoDetect", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigEmdPresence.setStatus('mandatory')
ipmEnvEmdConfigEmdName = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigEmdName.setStatus('mandatory')
ipmEnvEmdConfigTemp = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3))
ipmEnvEmdConfigTempName = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigTempName.setStatus('mandatory')
ipmEnvEmdConfigTempHighSetPoint = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 65))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigTempHighSetPoint.setStatus('mandatory')
ipmEnvEmdConfigTempHighStatus = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigTempHighStatus.setStatus('mandatory')
ipmEnvEmdConfigTempLowSetPoint = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 65))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigTempLowSetPoint.setStatus('mandatory')
ipmEnvEmdConfigTempLowStatus = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigTempLowStatus.setStatus('mandatory')
ipmEnvEmdConfigTempOffset = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=NamedValues(("t0p0", 1), ("t0p5", 2), ("t1p0", 3), ("t1p5", 4), ("t2p0", 5), ("t2p5", 6), ("t3p0", 7), ("t-0p5", 8), ("t-1p0", 9), ("t-1p5", 10), ("t-2p0", 11), ("t-2p5", 12), ("t-3p0", 13)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigTempOffset.setStatus('mandatory')
ipmEnvEmdConfigHumi = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4))
ipmEnvEmdConfigHumiName = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigHumiName.setStatus('mandatory')
ipmEnvEmdConfigHumiHighSetPoint = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 95))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigHumiHighSetPoint.setStatus('mandatory')
ipmEnvEmdConfigHumiHighStatus = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigHumiHighStatus.setStatus('mandatory')
ipmEnvEmdConfigHumiLowSetPoint = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 95))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigHumiLowSetPoint.setStatus('mandatory')
ipmEnvEmdConfigHumiLowStatus = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigHumiLowStatus.setStatus('mandatory')
ipmEnvEmdConfigHumiOffset = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=NamedValues(("h0p0", 1), ("h1p0", 2), ("h2p0", 3), ("h3p0", 4), ("h4p0", 5), ("h5p0", 6), ("h6p0", 7), ("h-1p0", 8), ("h-2p0", 9), ("h-3p0", 10), ("h-4p0", 11), ("h-5p0", 12), ("h-6p0", 13)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigHumiOffset.setStatus('mandatory')
ipmEnvEmdConfigAlarm1 = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 5))
ipmEnvEmdConfigAlarm1Name = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 5, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigAlarm1Name.setStatus('mandatory')
ipmEnvEmdConfigAlarm1Type = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 5, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("normalOpen", 2), ("normalClose", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigAlarm1Type.setStatus('mandatory')
ipmEnvEmdConfigAlarm2 = MibIdentifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 6))
ipmEnvEmdConfigAlarm2Name = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 6, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigAlarm2Name.setStatus('mandatory')
ipmEnvEmdConfigAlarm2Type = MibScalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 6, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("normalOpen", 2), ("normalClose", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipmEnvEmdConfigAlarm2Type.setStatus('mandatory')
ipmInletVoltageTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,1)).setObjects(("IPOMANII-MIB", "inletConfigIndex"), ("IPOMANII-MIB", "inletStatusVoltage"), ("IPOMANII-MIB", "inletConfigVoltageHigh"), ("IPOMANII-MIB", "inletConfigDesc"))
ipmInletVoltageNotTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,2)).setObjects(("IPOMANII-MIB", "inletConfigIndex"), ("IPOMANII-MIB", "inletStatusVoltage"), ("IPOMANII-MIB", "inletConfigVoltageHigh"), ("IPOMANII-MIB", "inletConfigDesc"))
ipmInletVoltageTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,3)).setObjects(("IPOMANII-MIB", "inletConfigIndex"), ("IPOMANII-MIB", "inletStatusVoltage"), ("IPOMANII-MIB", "inletConfigVoltageLow"), ("IPOMANII-MIB", "inletConfigDesc"))
ipmInletVoltageNotTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,4)).setObjects(("IPOMANII-MIB", "inletConfigIndex"), ("IPOMANII-MIB", "inletStatusVoltage"), ("IPOMANII-MIB", "inletConfigVoltageLow"), ("IPOMANII-MIB", "inletConfigDesc"))
ipmInletCurrentTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,5)).setObjects(("IPOMANII-MIB", "inletConfigIndex"), ("IPOMANII-MIB", "inletStatusCurrent"), ("IPOMANII-MIB", "inletConfigCurrentHigh"), ("IPOMANII-MIB", "inletConfigDesc"))
ipmInletCurrentNotTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,6)).setObjects(("IPOMANII-MIB", "inletConfigIndex"), ("IPOMANII-MIB", "inletStatusCurrent"), ("IPOMANII-MIB", "inletConfigCurrentHigh"), ("IPOMANII-MIB", "inletConfigDesc"))
ipmInletFrequencyTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,7)).setObjects(("IPOMANII-MIB", "inletConfigIndex"), ("IPOMANII-MIB", "inletStatusFrequency"), ("IPOMANII-MIB", "inletConfigFrequencyHigh"), ("IPOMANII-MIB", "inletConfigDesc"))
ipmInletFrequencyNotTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,8)).setObjects(("IPOMANII-MIB", "inletConfigIndex"), ("IPOMANII-MIB", "inletStatusFrequency"), ("IPOMANII-MIB", "inletConfigFrequencyHigh"), ("IPOMANII-MIB", "inletConfigDesc"))
ipmInletFrequencyTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,9)).setObjects(("IPOMANII-MIB", "inletConfigIndex"), ("IPOMANII-MIB", "inletStatusFrequency"), ("IPOMANII-MIB", "inletConfigFrequencyLow"), ("IPOMANII-MIB", "inletConfigDesc"))
ipmInletFrequencyNotTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,10)).setObjects(("IPOMANII-MIB", "inletConfigIndex"), ("IPOMANII-MIB", "inletStatusFrequency"), ("IPOMANII-MIB", "inletConfigFrequencyLow"), ("IPOMANII-MIB", "inletConfigDesc"))
ipmOutletCurrentTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,11)).setObjects(("IPOMANII-MIB", "outletConfigIndex"), ("IPOMANII-MIB", "outletStatusCurrent"), ("IPOMANII-MIB", "outletConfigCurrentHigh"), ("IPOMANII-MIB", "outletConfigDesc"))
ipmOutletCurrentNotTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,12)).setObjects(("IPOMANII-MIB", "outletConfigIndex"), ("IPOMANII-MIB", "outletStatusCurrent"), ("IPOMANII-MIB", "outletConfigCurrentHigh"), ("IPOMANII-MIB", "outletConfigDesc"))
ipmOutletStateChanged = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,13)).setObjects(("IPOMANII-MIB", "outletConfigIndex"), ("IPOMANII-MIB", "outletStatusStatus"), ("IPOMANII-MIB", "outletConfigDesc"))
ipmEmdTemperatureNotHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,14)).setObjects(("IPOMANII-MIB", "ipmEnvEmdStatusTemperature"), ("IPOMANII-MIB", "ipmEnvEmdConfigTempHighSetPoint"), ("IPOMANII-MIB", "ipmEnvEmdConfigTempName"))
ipmEmdTemperatureTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,15)).setObjects(("IPOMANII-MIB", "ipmEnvEmdStatusTemperature"), ("IPOMANII-MIB", "ipmEnvEmdConfigTempHighSetPoint"), ("IPOMANII-MIB", "ipmEnvEmdConfigTempName"))
ipmEmdTemperatureNotLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,16)).setObjects(("IPOMANII-MIB", "ipmEnvEmdStatusTemperature"), ("IPOMANII-MIB", "ipmEnvEmdConfigTempLowSetPoint"), ("IPOMANII-MIB", "ipmEnvEmdConfigTempName"))
ipmEmdTemperatureTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,17)).setObjects(("IPOMANII-MIB", "ipmEnvEmdStatusTemperature"), ("IPOMANII-MIB", "ipmEnvEmdConfigTempLowSetPoint"), ("IPOMANII-MIB", "ipmEnvEmdConfigTempName"))
ipmEmdHumidityNotHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,18)).setObjects(("IPOMANII-MIB", "ipmEnvEmdStatusHumidity"), ("IPOMANII-MIB", "ipmEnvEmdConfigHumiHighSetPoint"), ("IPOMANII-MIB", "ipmEnvEmdConfigHumiName"))
ipmEmdHumidityTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,19)).setObjects(("IPOMANII-MIB", "ipmEnvEmdStatusHumidity"), ("IPOMANII-MIB", "ipmEnvEmdConfigHumiHighSetPoint"), ("IPOMANII-MIB", "ipmEnvEmdConfigHumiName"))
ipmEmdHumidityNotLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,20)).setObjects(("IPOMANII-MIB", "ipmEnvEmdStatusHumidity"), ("IPOMANII-MIB", "ipmEnvEmdConfigHumiLowSetPoint"), ("IPOMANII-MIB", "ipmEnvEmdConfigHumiName"))
ipmEmdHumidityTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,21)).setObjects(("IPOMANII-MIB", "ipmEnvEmdStatusHumidity"), ("IPOMANII-MIB", "ipmEnvEmdConfigHumiLowSetPoint"), ("IPOMANII-MIB", "ipmEnvEmdConfigHumiName"))
ipmEmdAlarm1Normal = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,22)).setObjects(("IPOMANII-MIB", "ipmEnvEmdConfigAlarm1Type"), ("IPOMANII-MIB", "ipmEnvEmdConfigAlarm1Name"))
ipmEmdAlarm1Active = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,23)).setObjects(("IPOMANII-MIB", "ipmEnvEmdConfigAlarm1Type"), ("IPOMANII-MIB", "ipmEnvEmdConfigAlarm1Name"))
ipmEmdAlarm2Normal = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,24)).setObjects(("IPOMANII-MIB", "ipmEnvEmdConfigAlarm2Type"), ("IPOMANII-MIB", "ipmEnvEmdConfigAlarm2Name"))
ipmEmdAlarm2Active = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,25)).setObjects(("IPOMANII-MIB", "ipmEnvEmdConfigAlarm2Type"), ("IPOMANII-MIB", "ipmEnvEmdConfigAlarm2Name"))
ipmSlave01Inlet01OverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,26))
ipmSlave01Inlet01NotOverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,27))
ipmSlave01Inlet02OverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,28))
ipmSlave01Inlet02NotOverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,29))
ipmSlave01Inlet01UnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,30))
ipmSlave01Inlet01NotUnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,31))
ipmSlave01Inlet02UnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,32))
ipmSlave01Inlet02NotUnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,33))
ipmSlave01Inlet01CurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,34))
ipmSlave01Inlet01NotCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,35))
ipmSlave01Inlet02CurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,36))
ipmSlave01Inlet02NotCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,37))
ipmSlave01EmdTemperatureNotHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,38))
ipmSlave01EmdTemperatureTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,39))
ipmSlave01EmdTemperatureNotLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,40))
ipmSlave01EmdTemperatureTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,41))
ipmSlave01EmdHumidityNotHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,42))
ipmSlave01EmdHumidityTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,43))
ipmSlave01EmdHumidityNotLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,44))
ipmSlave01EmdHumidityTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,45))
ipmSlave01EmdAlarm1Normal = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,46))
ipmSlave01EmdAlarm1Active = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,47))
ipmSlave01EmdAlarm2Normal = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,48))
ipmSlave01EmdAlarm2Active = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,49))
ipmSlave01OutletCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,50))
ipmSlave02Inlet01OverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,51))
ipmSlave02Inlet01NotOverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,52))
ipmSlave02Inlet02OverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,53))
ipmSlave02Inlet02NotOverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,54))
ipmSlave02Inlet01UnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,55))
ipmSlave02Inlet01NotUnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,56))
ipmSlave02Inlet02UnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,57))
ipmSlave02Inlet02NotUnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,58))
ipmSlave02Inlet01CurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,59))
ipmSlave02Inlet01NotCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,60))
ipmSlave02Inlet02CurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,61))
ipmSlave02Inlet02NotCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,62))
ipmSlave02EmdTemperatureNotHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,63))
ipmSlave02EmdTemperatureTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,64))
ipmSlave02EmdTemperatureNotLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,65))
ipmSlave02EmdTemperatureTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,66))
ipmSlave02EmdHumidityNotHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,67))
ipmSlave02EmdHumidityTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,68))
ipmSlave02EmdHumidityNotLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,69))
ipmSlave02EmdHumidityTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,70))
ipmSlave02EmdAlarm1Normal = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,71))
ipmSlave02EmdAlarm1Active = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,72))
ipmSlave02EmdAlarm2Normal = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,73))
ipmSlave02EmdAlarm2Active = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,74))
ipmSlave02OutletCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,75))
ipmSlave03Inlet01OverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,76))
ipmSlave03Inlet01NotOverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,77))
ipmSlave03Inlet02OverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,78))
ipmSlave03Inlet02NotOverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,79))
ipmSlave03Inlet01UnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,80))
ipmSlave03Inlet01NotUnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,81))
ipmSlave03Inlet02UnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,82))
ipmSlave03Inlet02NotUnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,83))
ipmSlave03Inlet01CurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,84))
ipmSlave03Inlet01NotCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,85))
ipmSlave03Inlet02CurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,86))
ipmSlave03Inlet02NotCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,87))
ipmSlave03EmdTemperatureNotHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,88))
ipmSlave03EmdTemperatureTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,89))
ipmSlave03EmdTemperatureNotLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,90))
ipmSlave03EmdTemperatureTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,91))
ipmSlave03EmdHumidityNotHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,92))
ipmSlave03EmdHumidityTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,93))
ipmSlave03EmdHumidityNotLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,94))
ipmSlave03EmdHumidityTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,95))
ipmSlave03EmdAlarm1Normal = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,96))
ipmSlave03EmdAlarm1Active = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,97))
ipmSlave03EmdAlarm2Normal = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,98))
ipmSlave03EmdAlarm2Active = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,99))
ipmSlave03OutletCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,100))
ipmSlave04Inlet01OverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,101))
ipmSlave04Inlet01NotOverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,102))
ipmSlave04Inlet02OverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,103))
ipmSlave04Inlet02NotOverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,104))
ipmSlave04Inlet01UnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,105))
ipmSlave04Inlet01NotUnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,106))
ipmSlave04Inlet02UnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,107))
ipmSlave04Inlet02NotUnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,108))
ipmSlave04Inlet01CurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,109))
ipmSlave04Inlet01NotCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,110))
ipmSlave04Inlet02CurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,111))
ipmSlave04Inlet02NotCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,112))
ipmSlave04EmdTemperatureNotHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,113))
ipmSlave04EmdTemperatureTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,114))
ipmSlave04EmdTemperatureNotLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,115))
ipmSlave04EmdTemperatureTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,116))
ipmSlave04EmdHumidityNotHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,117))
ipmSlave04EmdHumidityTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,118))
ipmSlave04EmdHumidityNotLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,119))
ipmSlave04EmdHumidityTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,120))
ipmSlave04EmdAlarm1Normal = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,121))
ipmSlave04EmdAlarm1Active = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,122))
ipmSlave04EmdAlarm2Normal = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,123))
ipmSlave04EmdAlarm2Active = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,124))
ipmSlave04OutletCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,125))
ipmSlave05Inlet01OverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,126))
ipmSlave05Inlet01NotOverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,127))
ipmSlave05Inlet02OverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,128))
ipmSlave05Inlet02NotOverHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,129))
ipmSlave05Inlet01UnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,130))
ipmSlave05Inlet01NotUnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,131))
ipmSlave05Inlet02UnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,132))
ipmSlave05Inlet02NotUnderLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,133))
ipmSlave05Inlet01CurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,134))
ipmSlave05Inlet01NotCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,135))
ipmSlave05Inlet02CurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,136))
ipmSlave05Inlet02NotCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,137))
ipmSlave05EmdTemperatureNotHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,138))
ipmSlave05EmdTemperatureTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,139))
ipmSlave05EmdTemperatureNotLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,140))
ipmSlave05EmdTemperatureTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,141))
ipmSlave05EmdHumidityNotHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,142))
ipmSlave05EmdHumidityTooHigh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,143))
ipmSlave05EmdHumidityNotLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,144))
ipmSlave05EmdHumidityTooLow = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,145))
ipmSlave05EmdAlarm1Normal = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,146))
ipmSlave05EmdAlarm1Active = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,147))
ipmSlave05EmdAlarm2Normal = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,148))
ipmSlave05EmdAlarm2Active = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,149))
ipmSlave05OutletCurrentOverTh = NotificationType((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0,150))
mibBuilder.exportSymbols("IPOMANII-MIB", ipmSlave03EmdHumidityNotHigh=ipmSlave03EmdHumidityNotHigh, slaveOutletName04=slaveOutletName04, ipmDeviceOutletConfigEntry=ipmDeviceOutletConfigEntry, inletSlaveStatusKwatt2=inletSlaveStatusKwatt2, ipmEnvEmdConfigAlarm2=ipmEnvEmdConfigAlarm2, inletConfigVoltageLow=inletConfigVoltageLow, outletStatusWH=outletStatusWH, ipmAgentSnmpControl=ipmAgentSnmpControl, slaveOutletCurrTh06=slaveOutletCurrTh06, inletConfigfrequencyLowAction=inletConfigfrequencyLowAction, ipmSlave05EmdHumidityTooLow=ipmSlave05EmdHumidityTooLow, ipmSlaveDeviceOutletOnTimeEntry=ipmSlaveDeviceOutletOnTimeEntry, slaveInletConfigIndex=slaveInletConfigIndex, ipmSlave05EmdAlarm1Active=ipmSlave05EmdAlarm1Active, ipmEnvEmdConfigHumi=ipmEnvEmdConfigHumi, ipmSlave02Inlet02UnderLow=ipmSlave02Inlet02UnderLow, slaveOutletLocation12=slaveOutletLocation12, ipmDeviceInletNumber=ipmDeviceInletNumber, ipmSlave03EmdTemperatureNotLow=ipmSlave03EmdTemperatureNotLow, ipmEmdHumidityNotHigh=ipmEmdHumidityNotHigh, ipmDeviceCcOutStatusTable=ipmDeviceCcOutStatusTable, slaveOutletOnTimeIndex=slaveOutletOnTimeIndex, ipmSlave05EmdHumidityNotLow=ipmSlave05EmdHumidityNotLow, ipmSlave01Inlet01CurrentOverTh=ipmSlave01Inlet01CurrentOverTh, slaveOutletName09=slaveOutletName09, accessIndex=accessIndex, ipmSlaveDeviceOutletLocationEntry=ipmSlaveDeviceOutletLocationEntry, slaveOutletLocation10=slaveOutletLocation10, ipmEnvEmdStatusEmdType=ipmEnvEmdStatusEmdType, inletConfigDesc=inletConfigDesc, ipmEnvEmdConfigEmdPresence=ipmEnvEmdConfigEmdPresence, ipmSlave03Inlet02UnderLow=ipmSlave03Inlet02UnderLow, ipmDeviceOutletControlEntry=ipmDeviceOutletControlEntry, slaveOutletWatt05=slaveOutletWatt05, ipmSlave01Inlet01OverHigh=ipmSlave01Inlet01OverHigh, ipmSlaveDeviceOutletOnTimeTable=ipmSlaveDeviceOutletOnTimeTable, ipmSlaveDeviceOutletKwattTable=ipmSlaveDeviceOutletKwattTable, ipmSlaveDeviceOutletActionTable=ipmSlaveDeviceOutletActionTable, ipmSlave01Inlet02OverHigh=ipmSlave01Inlet02OverHigh, ipmDeviceOutletStatusTable=ipmDeviceOutletStatusTable, ipmAgentNetworkHttp=ipmAgentNetworkHttp, slaveOutletCurrent10=slaveOutletCurrent10, ipmSlaveInlet=ipmSlaveInlet, ipmAgentNetworkIpGateway=ipmAgentNetworkIpGateway, ipmSlave02Inlet02NotUnderLow=ipmSlave02Inlet02NotUnderLow, ipmDeviceslaveInletConfigEntry=ipmDeviceslaveInletConfigEntry, ipmSlave04EmdHumidityNotLow=ipmSlave04EmdHumidityNotLow, slaveOutletCurrent05=slaveOutletCurrent05, ipmSlave05Inlet01NotOverHigh=ipmSlave05Inlet01NotOverHigh, product=product, ipmAgentDayLightSaving=ipmAgentDayLightSaving, inletStatusVoltage=inletStatusVoltage, inletStatusIndex=inletStatusIndex, slaveOutletCurrent02=slaveOutletCurrent02, ipmDeviceOutletWattReset=ipmDeviceOutletWattReset, ipmDeviceCcOutControlTable=ipmDeviceCcOutControlTable, ipmSlave01Inlet01NotCurrentOverTh=ipmSlave01Inlet01NotCurrentOverTh, ipmEnvEmdConfigHumiLowSetPoint=ipmEnvEmdConfigHumiLowSetPoint, ipmSlave01EmdHumidityTooHigh=ipmSlave01EmdHumidityTooHigh, ipmInletFrequencyTooLow=ipmInletFrequencyTooLow, inletStatusWH=inletStatusWH, ipmAgentTime=ipmAgentTime, slaveOutletWatt09=slaveOutletWatt09, ipmEnvEmdConfigTemp=ipmEnvEmdConfigTemp, inletSlaveStatusKwatt=inletSlaveStatusKwatt, slaveOutletCurrent01=slaveOutletCurrent01, ipmAgentLog=ipmAgentLog, ipmEnvEmdConfigAlarm1Type=ipmEnvEmdConfigAlarm1Type, slaveOutletCurrThIndex=slaveOutletCurrThIndex, ipmSlave02Inlet02NotCurrentOverTh=ipmSlave02Inlet02NotCurrentOverTh, ipmSlave03EmdHumidityNotLow=ipmSlave03EmdHumidityNotLow, ipmSlaveOutlet=ipmSlaveOutlet, iPoManII=iPoManII, ipmAgentNetworkSnmp=ipmAgentNetworkSnmp, slaveOutletLocation07=slaveOutletLocation07, slaveOutletLocation05=slaveOutletLocation05, ipmSlaveOutletAction=ipmSlaveOutletAction, outletStatusCurrent=outletStatusCurrent, slaveOutletOnTime02=slaveOutletOnTime02, ipmObjects=ipmObjects, ipmSlave02EmdAlarm1Normal=ipmSlave02EmdAlarm1Normal, ipmSlave04Inlet01CurrentOverTh=ipmSlave04Inlet01CurrentOverTh, ipmSlave02EmdAlarm2Normal=ipmSlave02EmdAlarm2Normal, ipmSlave05OutletCurrentOverTh=ipmSlave05OutletCurrentOverTh, slaveOutletCurrTh11=slaveOutletCurrTh11, ipmSlave05EmdTemperatureTooLow=ipmSlave05EmdTemperatureTooLow, ipmInletVoltageTooHigh=ipmInletVoltageTooHigh, inletSlaveStatusCurrent=inletSlaveStatusCurrent, slaveOutletCurrent12=slaveOutletCurrent12, ipmSlave03Inlet01CurrentOverTh=ipmSlave03Inlet01CurrentOverTh, slaveOutletWatt07=slaveOutletWatt07, ipmAgentHttpControl=ipmAgentHttpControl, ipmAgentControlDefault=ipmAgentControlDefault, slaveOutletCurrent07=slaveOutletCurrent07, ipmSlaveDeviceOutletActionEntry=ipmSlaveDeviceOutletActionEntry, accessControlMode=accessControlMode, ipmSlave01EmdTemperatureNotLow=ipmSlave01EmdTemperatureNotLow, ipmAgentTrapsReceiversTable=ipmAgentTrapsReceiversTable, trapsIndex=trapsIndex, ipmSlave05EmdAlarm2Active=ipmSlave05EmdAlarm2Active, ipmEnvEmdConfig=ipmEnvEmdConfig, ipmAgentNetworkIpAdress=ipmAgentNetworkIpAdress, ipmAgentConfig=ipmAgentConfig, ipmEnvEmdConfigTempLowStatus=ipmEnvEmdConfigTempLowStatus, ipmDeviceCcOut=ipmDeviceCcOut, receiverCommunityString=receiverCommunityString, ipmSlave01Inlet02NotCurrentOverTh=ipmSlave01Inlet02NotCurrentOverTh, slaveOutletName05=slaveOutletName05, ipmSlave04EmdTemperatureTooLow=ipmSlave04EmdTemperatureTooLow, ipmSlave05Inlet01OverHigh=ipmSlave05Inlet01OverHigh, slaveOutletKwattIndex=slaveOutletKwattIndex, slaveOutletWattIndex=slaveOutletWattIndex, ipmSlave05Inlet01NotUnderLow=ipmSlave05Inlet01NotUnderLow, ipmSlave02EmdHumidityNotLow=ipmSlave02EmdHumidityNotLow, ipmEnvEmdStatus=ipmEnvEmdStatus, ipmAgentHttpPort=ipmAgentHttpPort, ipmEnvEmdConfigTempHighSetPoint=ipmEnvEmdConfigTempHighSetPoint, ipmSlave03Inlet02NotUnderLow=ipmSlave03Inlet02NotUnderLow, inletConfigfrequencyHighAction=inletConfigfrequencyHighAction, ipmSlave02EmdTemperatureTooHigh=ipmSlave02EmdTemperatureTooHigh, slaveOutletWatt02=slaveOutletWatt02, ipmSlaveDeviceOutletCurrThTable=ipmSlaveDeviceOutletCurrThTable, slaveOutletAction05=slaveOutletAction05, ipmEmdAlarm2Active=ipmEmdAlarm2Active, slaveOutletAction10=slaveOutletAction10, slaveOutletLocation06=slaveOutletLocation06, slaveOutletCurrTh03=slaveOutletCurrTh03, ipmDeviceOutletStatusEntry=ipmDeviceOutletStatusEntry, slaveOutletAction06=slaveOutletAction06, ingrasys=ingrasys, ipmSlave01EmdAlarm2Normal=ipmSlave01EmdAlarm2Normal, outletControlControl=outletControlControl, slaveOutletCurrTh09=slaveOutletCurrTh09, outletConfigCurrentHigh=outletConfigCurrentHigh, ipmEnvEmdConfigAlarm1=ipmEnvEmdConfigAlarm1, ipmSlave04EmdAlarm2Active=ipmSlave04EmdAlarm2Active, ipmSlave05EmdHumidityNotHigh=ipmSlave05EmdHumidityNotHigh, slaveOutletAction01=slaveOutletAction01, ipmSlave02Inlet02OverHigh=ipmSlave02Inlet02OverHigh, ipmSlave05Inlet01UnderLow=ipmSlave05Inlet01UnderLow, ipmSlave05Inlet02NotOverHigh=ipmSlave05Inlet02NotOverHigh, slaveOutletAction11=slaveOutletAction11, ipmAgentNetworkIp=ipmAgentNetworkIp, inletSlaveStatusIndex=inletSlaveStatusIndex, ipmEnvEmdConfigHumiName=ipmEnvEmdConfigHumiName, ipmDeviceInletConfigEntry=ipmDeviceInletConfigEntry, ipmSlave04OutletCurrentOverTh=ipmSlave04OutletCurrentOverTh, ipmSlave01EmdHumidityTooLow=ipmSlave01EmdHumidityTooLow, inletConfigIndex=inletConfigIndex, ipmSlave02EmdAlarm2Active=ipmSlave02EmdAlarm2Active, ipmSlaveInletStatus=ipmSlaveInletStatus, outletStatusTimeToGo=outletStatusTimeToGo, ipmAgentTrapsReceiversEntry=ipmAgentTrapsReceiversEntry, ipmDeviceCcOutNumber=ipmDeviceCcOutNumber, ipmSlave04EmdAlarm2Normal=ipmSlave04EmdAlarm2Normal, ipmEnvEmdStatusAlarm2=ipmEnvEmdStatusAlarm2, slaveOutletCurrent11=slaveOutletCurrent11, ipmSlave01EmdHumidityNotLow=ipmSlave01EmdHumidityNotLow, ipmAgentNetworkTelnet=ipmAgentNetworkTelnet, ipmSlave05EmdTemperatureTooHigh=ipmSlave05EmdTemperatureTooHigh, inletStatusKwatt=inletStatusKwatt, ipmDeviceInletStatusEntry=ipmDeviceInletStatusEntry, outletStatusStateTime=outletStatusStateTime, ipmSlave02Inlet01UnderLow=ipmSlave02Inlet01UnderLow, slaveOutletLocation08=slaveOutletLocation08, ipmSlave03EmdHumidityTooHigh=ipmSlave03EmdHumidityTooHigh, ipmAgentTrapRetryCount=ipmAgentTrapRetryCount, slaveOutletOnTime12=slaveOutletOnTime12, slaveOutletOnTime03=slaveOutletOnTime03, slaveOutletOnTime08=slaveOutletOnTime08, slaveOutletCurrTh02=slaveOutletCurrTh02, ipmInletFrequencyNotTooHigh=ipmInletFrequencyNotTooHigh, inletConfigVoltageHighAction=inletConfigVoltageHighAction, ipmSlave01EmdAlarm1Active=ipmSlave01EmdAlarm1Active, ipmEnvEmdStatusTemperature=ipmEnvEmdStatusTemperature, ipmSlave=ipmSlave, slaveOutletOffTime01=slaveOutletOffTime01, slaveOutletWatt04=slaveOutletWatt04, ipmSlave04Inlet01UnderLow=ipmSlave04Inlet01UnderLow, slaveInlet2ConfigVoltageLow=slaveInlet2ConfigVoltageLow, slaveOutletName06=slaveOutletName06, ipmSlaveStateTable=ipmSlaveStateTable, ipmEnvEmdConfigTempHighStatus=ipmEnvEmdConfigTempHighStatus, slaveOutletAction04=slaveOutletAction04, slaveOutletName01=slaveOutletName01, ipmSlave01EmdAlarm1Normal=ipmSlave01EmdAlarm1Normal, slaveOutletKwatt03=slaveOutletKwatt03, slaveOutletActionIndex=slaveOutletActionIndex, slaveOutletOffTime05=slaveOutletOffTime05, ipmSlaveDeviceOutletOffTimeTable=ipmSlaveDeviceOutletOffTimeTable, slaveOutletKwatt04=slaveOutletKwatt04, ipmAgentControlRestart=ipmAgentControlRestart, inletConfigFrequencyLow=inletConfigFrequencyLow, ipmOutletCurrentTooHigh=ipmOutletCurrentTooHigh, ipmSlave03OutletCurrentOverTh=ipmSlave03OutletCurrentOverTh, slaveOutletOffTime09=slaveOutletOffTime09, ipmInletFrequencyTooHigh=ipmInletFrequencyTooHigh, slaveOutletWatt03=slaveOutletWatt03, inletConfigFrequencyHigh=inletConfigFrequencyHigh, inletStatusCurrent=inletStatusCurrent, ipmSlave01EmdTemperatureTooLow=ipmSlave01EmdTemperatureTooLow, slaveOutletOnTime10=slaveOutletOnTime10, slaveOutletAction03=slaveOutletAction03, slaveOutletCurrent08=slaveOutletCurrent08, ipmSlave02Inlet02CurrentOverTh=ipmSlave02Inlet02CurrentOverTh, ccOutControlIndex=ccOutControlIndex, ipmSlave02EmdHumidityNotHigh=ipmSlave02EmdHumidityNotHigh, slaveOutletKwatt12=slaveOutletKwatt12, slaveInlet2ConfigVoltageHigh=slaveInlet2ConfigVoltageHigh, ipmEnvEmdConfigAlarm2Type=ipmEnvEmdConfigAlarm2Type, inletSlaveStatusVoltage=inletSlaveStatusVoltage, ipmIdentModel=ipmIdentModel, outletConfigDesc=outletConfigDesc, slaveOutletCurrTh10=slaveOutletCurrTh10, ipmSlave03Inlet01OverHigh=ipmSlave03Inlet01OverHigh, ipmSlave04EmdTemperatureNotLow=ipmSlave04EmdTemperatureNotLow, ipmSlaveDeviceOutletKwattEntry=ipmSlaveDeviceOutletKwattEntry, slaveOutletOnTime04=slaveOutletOnTime04, ipmEnvEmdConfigTempOffset=ipmEnvEmdConfigTempOffset, receiverNmsType=receiverNmsType, ipmInletCurrentNotTooHigh=ipmInletCurrentNotTooHigh, ccOutConfigDesc=ccOutConfigDesc, pduAgentDataLogInterval=pduAgentDataLogInterval, slaveOutletAction02=slaveOutletAction02, inletSlaveStatusFrequency=inletSlaveStatusFrequency, slaveOutletLocationIndex=slaveOutletLocationIndex, slaveOutletOnTime09=slaveOutletOnTime09, ipmSlaveDeviceOutletCurrentTable=ipmSlaveDeviceOutletCurrentTable, ccOutConfigEventAction=ccOutConfigEventAction, slaveOutletCurrent03=slaveOutletCurrent03, ipmSlave01Inlet01NotOverHigh=ipmSlave01Inlet01NotOverHigh, ipmSlave02EmdHumidityTooHigh=ipmSlave02EmdHumidityTooHigh, ipmSlave05Inlet02NotCurrentOverTh=ipmSlave05Inlet02NotCurrentOverTh, outletStatusIndex=outletStatusIndex, ipmSlave02Inlet01NotOverHigh=ipmSlave02Inlet01NotOverHigh, ipmSlave03EmdTemperatureTooLow=ipmSlave03EmdTemperatureTooLow, ipmAgentSnmpPort=ipmAgentSnmpPort, ipmSlave04EmdTemperatureNotHigh=ipmSlave04EmdTemperatureNotHigh, slaveOutletWatt08=slaveOutletWatt08, ipmSlave05EmdAlarm2Normal=ipmSlave05EmdAlarm2Normal, ipmAgentTelnetControl=ipmAgentTelnetControl, ccOutStatusStatus=ccOutStatusStatus, slaveOutletLocation01=slaveOutletLocation01, ipmEmdTemperatureNotHigh=ipmEmdTemperatureNotHigh, ipmSlave03EmdTemperatureNotHigh=ipmSlave03EmdTemperatureNotHigh, ipmSlave04Inlet01OverHigh=ipmSlave04Inlet01OverHigh, ipmSlave05Inlet01NotCurrentOverTh=ipmSlave05Inlet01NotCurrentOverTh, slaveOutletOffTime02=slaveOutletOffTime02, slaveOutletCurrent09=slaveOutletCurrent09, ipmSlave02EmdAlarm1Active=ipmSlave02EmdAlarm1Active, ipmDeviceOutletControlTable=ipmDeviceOutletControlTable, ipmAgentTelnetPort=ipmAgentTelnetPort, ipmOutletStateChanged=ipmOutletStateChanged, slaveStateIndex=slaveStateIndex)
mibBuilder.exportSymbols("IPOMANII-MIB", ipmSlave05Inlet01CurrentOverTh=ipmSlave05Inlet01CurrentOverTh, inletStatusFrequency=inletStatusFrequency, slaveOutletOffTime11=slaveOutletOffTime11, inletSlaveStatusCurrent2=inletSlaveStatusCurrent2, ipmInletVoltageTooLow=ipmInletVoltageTooLow, ipmSlaveDeviceOutletWattTable=ipmSlaveDeviceOutletWattTable, ipmSlave02EmdTemperatureNotHigh=ipmSlave02EmdTemperatureNotHigh, slaveOutletCurrentIndex=slaveOutletCurrentIndex, pduAgent=pduAgent, ipmDeviceInletConfigTable=ipmDeviceInletConfigTable, ipmAgentTrapRetryTime=ipmAgentTrapRetryTime, ipmAgentNetworkPingControl=ipmAgentNetworkPingControl, ipmTraps=ipmTraps, ipmSlave04Inlet02UnderLow=ipmSlave04Inlet02UnderLow, ipmDeviceslaveInletConfigTable=ipmDeviceslaveInletConfigTable, outletStatusStatus=outletStatusStatus, slaveOutletNameIndex=slaveOutletNameIndex, slaveOutletKwatt11=slaveOutletKwatt11, ipmSlave01Inlet02NotOverHigh=ipmSlave01Inlet02NotOverHigh, ipmAgentTimerFromNtp=ipmAgentTimerFromNtp, slaveOutletKwatt09=slaveOutletKwatt09, ipmSlave01EmdTemperatureTooHigh=ipmSlave01EmdTemperatureTooHigh, ipmSlave03EmdAlarm2Normal=ipmSlave03EmdAlarm2Normal, ipmAgentTrap=ipmAgentTrap, ipmSlave01Inlet02CurrentOverTh=ipmSlave01Inlet02CurrentOverTh, ipmSlaveInletConfig=ipmSlaveInletConfig, slaveOutletOffTime04=slaveOutletOffTime04, inletSlaveStatusVoltage2=inletSlaveStatusVoltage2, slaveOutletKwatt10=slaveOutletKwatt10, ipmEmdHumidityNotLow=ipmEmdHumidityNotLow, receiverDescription=receiverDescription, ipmSlave03EmdHumidityTooLow=ipmSlave03EmdHumidityTooLow, ipmEnvEmdConfigTempName=ipmEnvEmdConfigTempName, inletWattReset=inletWattReset, slaveOutletName11=slaveOutletName11, ccOutConfigIndex=ccOutConfigIndex, ipmIdentManufacturer=ipmIdentManufacturer, ipmSlaveDeviceOutletCurrThEntry=ipmSlaveDeviceOutletCurrThEntry, ipmSlave01Inlet02UnderLow=ipmSlave01Inlet02UnderLow, ipmAgentNetwork=ipmAgentNetwork, slaveOutletOnTime07=slaveOutletOnTime07, ipmSlave04Inlet02NotUnderLow=ipmSlave04Inlet02NotUnderLow, slaveOutletOnTime01=slaveOutletOnTime01, ipmSlave01EmdTemperatureNotHigh=ipmSlave01EmdTemperatureNotHigh, ipmDeviceOutletConfigTable=ipmDeviceOutletConfigTable, ipmDeviceOutletControlAll=ipmDeviceOutletControlAll, ipmSlave05EmdTemperatureNotHigh=ipmSlave05EmdTemperatureNotHigh, slaveOutletLocation11=slaveOutletLocation11, slaveOutletWatt01=slaveOutletWatt01, slaveOutletWatt11=slaveOutletWatt11, ipmDevice=ipmDevice, slaveOutletCurrTh07=slaveOutletCurrTh07, ipmSlaveDeviceOutletOffTimeEntry=ipmSlaveDeviceOutletOffTimeEntry, slaveOutletOffTimeIndex=slaveOutletOffTimeIndex, ipmEmdAlarm2Normal=ipmEmdAlarm2Normal, receiverSeverityLevel=receiverSeverityLevel, ipmSlave04EmdAlarm1Normal=ipmSlave04EmdAlarm1Normal, ipmSlave03EmdAlarm1Active=ipmSlave03EmdAlarm1Active, ccOutStatusIndex=ccOutStatusIndex, ipmSlaveDeviceOutletNameEntry=ipmSlaveDeviceOutletNameEntry, ipmSlave02Inlet01OverHigh=ipmSlave02Inlet01OverHigh, ipmDeviceOutletNumber=ipmDeviceOutletNumber, slaveOutletAction08=slaveOutletAction08, outletConfigCurrentHighAction=outletConfigCurrentHighAction, slaveOutletOffTime06=slaveOutletOffTime06, ccOutControlControl=ccOutControlControl, slaveOutletOffTime10=slaveOutletOffTime10, slaveOutletName12=slaveOutletName12, ipmSlave03Inlet01NotOverHigh=ipmSlave03Inlet01NotOverHigh, ipmEmdTemperatureNotLow=ipmEmdTemperatureNotLow, ipmSlaveDeviceOutletNameTable=ipmSlaveDeviceOutletNameTable, ipmEnvEmdStatusAlarm1=ipmEnvEmdStatusAlarm1, outletControlIndex=outletControlIndex, ipmInletVoltageNotTooHigh=ipmInletVoltageNotTooHigh, ipmEnvEmdStatusHumidity=ipmEnvEmdStatusHumidity, slaveOutletKwatt06=slaveOutletKwatt06, ipmSlaveDeviceOutletLocationTable=ipmSlaveDeviceOutletLocationTable, ipmSlave04EmdHumidityTooLow=ipmSlave04EmdHumidityTooLow, ipmSlave03EmdAlarm1Normal=ipmSlave03EmdAlarm1Normal, ipmEnvEmd=ipmEnvEmd, ipmSlave01Inlet01NotUnderLow=ipmSlave01Inlet01NotUnderLow, ipmSlave01Inlet02NotUnderLow=ipmSlave01Inlet02NotUnderLow, ipmSlaveOutletConfig=ipmSlaveOutletConfig, outletConfigIndex=outletConfigIndex, outletConfigLocation=outletConfigLocation, ipmSlave02Inlet01CurrentOverTh=ipmSlave02Inlet01CurrentOverTh, slaveOutletName10=slaveOutletName10, slaveOutletAction07=slaveOutletAction07, slaveOutletCurrTh04=slaveOutletCurrTh04, ipmAgentAccessControlEntry=ipmAgentAccessControlEntry, ipmSlave03Inlet01UnderLow=ipmSlave03Inlet01UnderLow, ipmEnvEmdConfigHumiHighStatus=ipmEnvEmdConfigHumiHighStatus, ipmSlave04Inlet01NotCurrentOverTh=ipmSlave04Inlet01NotCurrentOverTh, ipmIdent=ipmIdent, slaveOutletKwatt01=slaveOutletKwatt01, slaveOutletName02=slaveOutletName02, slaveOutletAction09=slaveOutletAction09, ipmEnvEmdConfigEmdName=ipmEnvEmdConfigEmdName, outletStatusKwatt=outletStatusKwatt, ipmSlave02EmdTemperatureTooLow=ipmSlave02EmdTemperatureTooLow, slaveOutletAction12=slaveOutletAction12, ipmSlave04EmdHumidityNotHigh=ipmSlave04EmdHumidityNotHigh, ipmSlave04Inlet02OverHigh=ipmSlave04Inlet02OverHigh, slaveOutletCurrTh08=slaveOutletCurrTh08, ipmAgentNetworkIpSubnet=ipmAgentNetworkIpSubnet, ipmAgentNtpTimeZone=ipmAgentNtpTimeZone, ipmSlaveOutletStatus=ipmSlaveOutletStatus, ccOutConfigOpenDelay=ccOutConfigOpenDelay, slaveOutletCurrTh12=slaveOutletCurrTh12, ipmSlave02EmdTemperatureNotLow=ipmSlave02EmdTemperatureNotLow, slaveOutletWatt06=slaveOutletWatt06, ipmSlave04Inlet01NotOverHigh=ipmSlave04Inlet01NotOverHigh, ipmEmdTemperatureTooHigh=ipmEmdTemperatureTooHigh, slaveOutletKwatt08=slaveOutletKwatt08, ipmInletFrequencyNotTooLow=ipmInletFrequencyNotTooLow, slaveOutletName03=slaveOutletName03, ipmSlave03EmdAlarm2Active=ipmSlave03EmdAlarm2Active, slaveOutletLocation03=slaveOutletLocation03, slaveOutletOffTime08=slaveOutletOffTime08, ipmDeviceInletStatusTable=ipmDeviceInletStatusTable, slaveOutletLocation09=slaveOutletLocation09, ipmAgentNtpIpAddress=ipmAgentNtpIpAddress, ipmSlave05Inlet02NotUnderLow=ipmSlave05Inlet02NotUnderLow, ipmDeviceOutlet=ipmDeviceOutlet, ipmInletCurrentTooHigh=ipmInletCurrentTooHigh, slaveOutletKwatt07=slaveOutletKwatt07, ipmSlave03Inlet01NotUnderLow=ipmSlave03Inlet01NotUnderLow, slaveOutletOnTime11=slaveOutletOnTime11, ipmSlave05EmdHumidityTooHigh=ipmSlave05EmdHumidityTooHigh, ipmEmdHumidityTooLow=ipmEmdHumidityTooLow, inletSlaveStatusWH2=inletSlaveStatusWH2, ipmAgentNetworkDhcpControl=ipmAgentNetworkDhcpControl, slaveOutletLocation04=slaveOutletLocation04, ipmEnvEmdConfigHumiHighSetPoint=ipmEnvEmdConfigHumiHighSetPoint, slaveOutletOffTime12=slaveOutletOffTime12, ipmIdentAgentSoftwareVersion=ipmIdentAgentSoftwareVersion, ipmAgentAccessControlTable=ipmAgentAccessControlTable, ipmAgentNetworkTftpControl=ipmAgentNetworkTftpControl, outletConfigOffDelay=outletConfigOffDelay, ipmDeviceSlaveInletStatusEntry=ipmDeviceSlaveInletStatusEntry, ipmSlave03Inlet02OverHigh=ipmSlave03Inlet02OverHigh, ccOutStatusTimeOnState=ccOutStatusTimeOnState, ipmEmdHumidityTooHigh=ipmEmdHumidityTooHigh, ipmSlave03Inlet02CurrentOverTh=ipmSlave03Inlet02CurrentOverTh, ipmDeviceInlet=ipmDeviceInlet, ipmAgentMibVersion=ipmAgentMibVersion, ipmAgentTimeTime=ipmAgentTimeTime, slaveOutletOnTime06=slaveOutletOnTime06, ipmSlaveState=ipmSlaveState, ipmEnvEmdConfigAlarm2Name=ipmEnvEmdConfigAlarm2Name, ipmSlaveStateEntry=ipmSlaveStateEntry, ipmEnvEmdConfigTempLowSetPoint=ipmEnvEmdConfigTempLowSetPoint, ipmSlave04Inlet02CurrentOverTh=ipmSlave04Inlet02CurrentOverTh, ipmEnvEmdConfigHumiOffset=ipmEnvEmdConfigHumiOffset, slaveOutletOnTime05=slaveOutletOnTime05, ipmSlave04Inlet01NotUnderLow=ipmSlave04Inlet01NotUnderLow, slaveOutletOffTime03=slaveOutletOffTime03, ipmSlave04EmdTemperatureTooHigh=ipmSlave04EmdTemperatureTooHigh, ipmAgentTimeDate=ipmAgentTimeDate, ipmEmdAlarm1Active=ipmEmdAlarm1Active, inletConfigVoltageLowAction=inletConfigVoltageLowAction, accessControlAddr=accessControlAddr, slaveOutletCurrent04=slaveOutletCurrent04, ipmAgentTrapAckSignature=ipmAgentTrapAckSignature, inletSlaveStatusFrequency2=inletSlaveStatusFrequency2, ipmAgent=ipmAgent, ipmSlave04EmdHumidityTooHigh=ipmSlave04EmdHumidityTooHigh, ipmSlaveDeviceOutletCurrentEntry=ipmSlaveDeviceOutletCurrentEntry, ipmSlave05Inlet02OverHigh=ipmSlave05Inlet02OverHigh, inletSlaveStatusWH=inletSlaveStatusWH, ipmEnvEmdConfigAlarm1Name=ipmEnvEmdConfigAlarm1Name, ipmEmdTemperatureTooLow=ipmEmdTemperatureTooLow, ipmSlave02Inlet02NotOverHigh=ipmSlave02Inlet02NotOverHigh, ipmSlave05Inlet02CurrentOverTh=ipmSlave05Inlet02CurrentOverTh, ipmInletVoltageNotTooLow=ipmInletVoltageNotTooLow, ipmSlave05EmdAlarm1Normal=ipmSlave05EmdAlarm1Normal, inletConfigCurrentHigh=inletConfigCurrentHigh, slaveOutletName07=slaveOutletName07, inletConfigVoltageHigh=inletConfigVoltageHigh, ipmSlave03Inlet02NotCurrentOverTh=ipmSlave03Inlet02NotCurrentOverTh, outletConfigOnDelay=outletConfigOnDelay, slaveOutletCurrTh05=slaveOutletCurrTh05, ipmSlave05Inlet02UnderLow=ipmSlave05Inlet02UnderLow, ipmDeviceCcOutConfigTable=ipmDeviceCcOutConfigTable, ipmDeviceSlaveInletStatusTable=ipmDeviceSlaveInletStatusTable, ipmSlave04EmdAlarm1Active=ipmSlave04EmdAlarm1Active, slaveOutletKwatt05=slaveOutletKwatt05, ipmSlave01Inlet01UnderLow=ipmSlave01Inlet01UnderLow, slaveOutletLocation02=slaveOutletLocation02, ipmDeviceCcOutConfigEntry=ipmDeviceCcOutConfigEntry, slaveOutletName08=slaveOutletName08, ipmDeviceCcOutControlEntry=ipmDeviceCcOutControlEntry, slaveOutletCurrTh01=slaveOutletCurrTh01, ipmSlave02OutletCurrentOverTh=ipmSlave02OutletCurrentOverTh, ipmSlave02EmdHumidityTooLow=ipmSlave02EmdHumidityTooLow, slaveOutletWatt10=slaveOutletWatt10, ipmSlave01OutletCurrentOverTh=ipmSlave01OutletCurrentOverTh, ipmSlave02Inlet01NotCurrentOverTh=ipmSlave02Inlet01NotCurrentOverTh, ipmIdentName=ipmIdentName, ipmAgentControl=ipmAgentControl, ipmSlave01EmdHumidityNotHigh=ipmSlave01EmdHumidityNotHigh, ipmSlave05EmdTemperatureNotLow=ipmSlave05EmdTemperatureNotLow, slaveOutletOffTime07=slaveOutletOffTime07, ipmSlave04Inlet02NotCurrentOverTh=ipmSlave04Inlet02NotCurrentOverTh, ipmSlave03EmdTemperatureTooHigh=ipmSlave03EmdTemperatureTooHigh, ipmSlave03Inlet02NotOverHigh=ipmSlave03Inlet02NotOverHigh, slaveOutletCurrent06=slaveOutletCurrent06, ipmSlave01EmdAlarm2Active=ipmSlave01EmdAlarm2Active, slaveOutletWatt12=slaveOutletWatt12, slaveStateControl01=slaveStateControl01, slaveInletConfigVoltageLow=slaveInletConfigVoltageLow, inletConfigCurrentHighAction=inletConfigCurrentHighAction, ipmSlave03Inlet01NotCurrentOverTh=ipmSlave03Inlet01NotCurrentOverTh, ipmEnvEmdConfigHumiLowStatus=ipmEnvEmdConfigHumiLowStatus, slaveOutletKwatt02=slaveOutletKwatt02, ipmSlaveDeviceOutletWattEntry=ipmSlaveDeviceOutletWattEntry, ipmSlave02Inlet01NotUnderLow=ipmSlave02Inlet01NotUnderLow, ipmOutletCurrentNotTooHigh=ipmOutletCurrentNotTooHigh, ipmSlave04Inlet02NotOverHigh=ipmSlave04Inlet02NotOverHigh, ipmDeviceCcOutStatusEntry=ipmDeviceCcOutStatusEntry, ipmEmdAlarm1Normal=ipmEmdAlarm1Normal, ipmEnv=ipmEnv, ccOutConfigCloseDelay=ccOutConfigCloseDelay, trapsReceiverAddr=trapsReceiverAddr, slaveInletConfigVoltageHigh=slaveInletConfigVoltageHigh)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, single_value_constraint, constraints_union, value_range_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueRangeConstraint', 'ConstraintsIntersection')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, integer32, time_ticks, notification_type, module_identity, iso, enterprises, notification_type, counter64, gauge32, object_identity, unsigned32, ip_address, counter32, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Integer32', 'TimeTicks', 'NotificationType', 'ModuleIdentity', 'iso', 'enterprises', 'NotificationType', 'Counter64', 'Gauge32', 'ObjectIdentity', 'Unsigned32', 'IpAddress', 'Counter32', 'Bits')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
ingrasys = mib_identifier((1, 3, 6, 1, 4, 1, 2468))
product = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1))
pdu_agent = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4))
i_po_man_ii = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2))
ipm_objects = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1))
ipm_traps = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2))
ipm_ident = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 1))
ipm_agent = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2))
ipm_device = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3))
ipm_slave = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4))
ipm_env = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5))
ipm_ident_manufacturer = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmIdentManufacturer.setStatus('mandatory')
ipm_ident_model = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmIdentModel.setStatus('mandatory')
ipm_ident_agent_software_version = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 63))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipmIdentAgentSoftwareVersion.setStatus('mandatory')
ipm_ident_name = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmIdentName.setStatus('mandatory')
ipm_agent_config = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1))
ipm_agent_mib_version = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipmAgentMibVersion.setStatus('mandatory')
ipm_agent_time = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2))
ipm_agent_time_date = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2, 1), display_string().subtype(subtypeSpec=value_size_constraint(10, 10)).setFixedLength(10)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentTimeDate.setStatus('mandatory')
ipm_agent_time_time = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2, 2), display_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentTimeTime.setStatus('mandatory')
ipm_agent_timer_from_ntp = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentTimerFromNtp.setStatus('mandatory')
ipm_agent_ntp_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentNtpIpAddress.setStatus('mandatory')
ipm_agent_ntp_time_zone = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28))).clone(namedValues=named_values(('gMT-1200', 1), ('gMT-1100', 2), ('gMT-1000', 3), ('gMT-0900', 4), ('gMT-0800', 5), ('gMT-0700', 6), ('gMT-0600', 7), ('gMT-0500', 8), ('gMT-0400', 9), ('gMT-0330', 10), ('gMT-0300', 11), ('gMT-0200', 12), ('gMT-0100', 13), ('gMT-0000', 14), ('gMT0100', 15), ('gMT0200', 16), ('gMT0300', 17), ('gMT0330', 18), ('gMT0400', 19), ('gMT0500', 20), ('gMT0530', 21), ('gMT0600', 22), ('gMT0700', 23), ('gMT0800', 24), ('gMT0900', 25), ('gMT1000', 26), ('gMT1100', 27), ('gMT1200', 28)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentNtpTimeZone.setStatus('mandatory')
ipm_agent_day_light_saving = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 2, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentDayLightSaving.setStatus('mandatory')
ipm_agent_network = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3))
ipm_agent_network_ip = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 1))
ipm_agent_network_ip_adress = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentNetworkIpAdress.setStatus('mandatory')
ipm_agent_network_ip_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentNetworkIpGateway.setStatus('mandatory')
ipm_agent_network_ip_subnet = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentNetworkIpSubnet.setStatus('mandatory')
ipm_agent_network_dhcp_control = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentNetworkDhcpControl.setStatus('mandatory')
ipm_agent_network_ping_control = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentNetworkPingControl.setStatus('mandatory')
ipm_agent_network_tftp_control = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentNetworkTftpControl.setStatus('mandatory')
ipm_agent_network_telnet = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 5))
ipm_agent_telnet_control = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 5, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentTelnetControl.setStatus('mandatory')
ipm_agent_telnet_port = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 5, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentTelnetPort.setStatus('mandatory')
ipm_agent_network_http = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 6))
ipm_agent_http_control = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 6, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentHttpControl.setStatus('mandatory')
ipm_agent_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 6, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentHttpPort.setStatus('mandatory')
ipm_agent_network_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 7))
ipm_agent_snmp_control = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 7, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentSnmpControl.setStatus('mandatory')
ipm_agent_snmp_port = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentSnmpPort.setStatus('mandatory')
ipm_agent_log = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 4))
pdu_agent_data_log_interval = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 4, 1), integer32().subtype(subtypeSpec=value_range_constraint(60, 28800))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pduAgentDataLogInterval.setStatus('mandatory')
ipm_agent_control = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 5))
ipm_agent_control_default = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 5, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('reset', 1), ('nothing', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentControlDefault.setStatus('mandatory')
ipm_agent_control_restart = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 5, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('restart', 1), ('nothing', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentControlRestart.setStatus('mandatory')
ipm_agent_trap = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 6))
ipm_agent_trap_retry_count = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 6, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentTrapRetryCount.setStatus('mandatory')
ipm_agent_trap_retry_time = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 6, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentTrapRetryTime.setStatus('mandatory')
ipm_agent_trap_ack_signature = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 6, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmAgentTrapAckSignature.setStatus('mandatory')
ipm_agent_traps_receivers_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7))
if mibBuilder.loadTexts:
ipmAgentTrapsReceiversTable.setStatus('mandatory')
ipm_agent_traps_receivers_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1)).setIndexNames((0, 'IPOMANII-MIB', 'trapsIndex'))
if mibBuilder.loadTexts:
ipmAgentTrapsReceiversEntry.setStatus('mandatory')
traps_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trapsIndex.setStatus('mandatory')
traps_receiver_addr = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
trapsReceiverAddr.setStatus('mandatory')
receiver_community_string = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
receiverCommunityString.setStatus('mandatory')
receiver_nms_type = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('iPoManII-trap', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
receiverNmsType.setStatus('mandatory')
receiver_severity_level = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('informational', 1), ('warning', 2), ('severe', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
receiverSeverityLevel.setStatus('mandatory')
receiver_description = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 7, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
receiverDescription.setStatus('mandatory')
ipm_agent_access_control_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 8))
if mibBuilder.loadTexts:
ipmAgentAccessControlTable.setStatus('mandatory')
ipm_agent_access_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 8, 1)).setIndexNames((0, 'IPOMANII-MIB', 'accessIndex'))
if mibBuilder.loadTexts:
ipmAgentAccessControlEntry.setStatus('mandatory')
access_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 8, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accessIndex.setStatus('mandatory')
access_control_addr = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 8, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
accessControlAddr.setStatus('mandatory')
access_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 2, 1, 8, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permitted', 1), ('denied', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
accessControlMode.setStatus('mandatory')
ipm_device_inlet = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1))
ipm_device_inlet_number = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipmDeviceInletNumber.setStatus('mandatory')
ipm_device_inlet_config_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2))
if mibBuilder.loadTexts:
ipmDeviceInletConfigTable.setStatus('mandatory')
ipm_device_inlet_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1)).setIndexNames((0, 'IPOMANII-MIB', 'inletConfigIndex'))
if mibBuilder.loadTexts:
ipmDeviceInletConfigEntry.setStatus('mandatory')
inlet_config_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletConfigIndex.setStatus('mandatory')
inlet_config_desc = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inletConfigDesc.setStatus('mandatory')
inlet_config_voltage_high = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inletConfigVoltageHigh.setStatus('mandatory')
inlet_config_voltage_high_action = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('outletsOff', 1), ('nothing', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inletConfigVoltageHighAction.setStatus('mandatory')
inlet_config_voltage_low = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inletConfigVoltageLow.setStatus('mandatory')
inlet_config_voltage_low_action = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('outletsOff', 1), ('nothing', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inletConfigVoltageLowAction.setStatus('mandatory')
inlet_config_current_high = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 160))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inletConfigCurrentHigh.setStatus('mandatory')
inlet_config_current_high_action = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('outletsOff', 1), ('nothing', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inletConfigCurrentHighAction.setStatus('mandatory')
inlet_config_frequency_high = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inletConfigFrequencyHigh.setStatus('mandatory')
inlet_configfrequency_high_action = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('outletsOff', 1), ('nothing', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inletConfigfrequencyHighAction.setStatus('mandatory')
inlet_config_frequency_low = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inletConfigFrequencyLow.setStatus('mandatory')
inlet_configfrequency_low_action = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('outletsOff', 1), ('nothing', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inletConfigfrequencyLowAction.setStatus('mandatory')
ipm_device_inlet_status_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3))
if mibBuilder.loadTexts:
ipmDeviceInletStatusTable.setStatus('mandatory')
ipm_device_inlet_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1)).setIndexNames((0, 'IPOMANII-MIB', 'inletStatusIndex'))
if mibBuilder.loadTexts:
ipmDeviceInletStatusEntry.setStatus('mandatory')
inlet_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletStatusIndex.setStatus('mandatory')
inlet_status_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletStatusVoltage.setStatus('mandatory')
inlet_status_current = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletStatusCurrent.setStatus('mandatory')
inlet_status_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletStatusFrequency.setStatus('mandatory')
inlet_status_kwatt = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletStatusKwatt.setStatus('mandatory')
inlet_status_wh = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletStatusWH.setStatus('mandatory')
inlet_watt_reset = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('inlet1', 2), ('inlet2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inletWattReset.setStatus('mandatory')
ipm_device_outlet = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2))
ipm_device_outlet_number = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipmDeviceOutletNumber.setStatus('mandatory')
ipm_device_outlet_config_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2))
if mibBuilder.loadTexts:
ipmDeviceOutletConfigTable.setStatus('mandatory')
ipm_device_outlet_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1)).setIndexNames((0, 'IPOMANII-MIB', 'inletConfigIndex'))
if mibBuilder.loadTexts:
ipmDeviceOutletConfigEntry.setStatus('mandatory')
outlet_config_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletConfigIndex.setStatus('mandatory')
outlet_config_desc = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletConfigDesc.setStatus('mandatory')
outlet_config_location = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletConfigLocation.setStatus('mandatory')
outlet_config_on_delay = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletConfigOnDelay.setStatus('mandatory')
outlet_config_off_delay = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletConfigOffDelay.setStatus('mandatory')
outlet_config_current_high = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletConfigCurrentHigh.setStatus('mandatory')
outlet_config_current_high_action = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('outletOff', 1), ('nothing', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletConfigCurrentHighAction.setStatus('mandatory')
ipm_device_outlet_status_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3))
if mibBuilder.loadTexts:
ipmDeviceOutletStatusTable.setStatus('mandatory')
ipm_device_outlet_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1)).setIndexNames((0, 'IPOMANII-MIB', 'outletStatusIndex'))
if mibBuilder.loadTexts:
ipmDeviceOutletStatusEntry.setStatus('mandatory')
outlet_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletStatusIndex.setStatus('mandatory')
outlet_status_status = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('unknow', 1), ('outletOff', 2), ('outletOn', 3), ('outletOffToOn', 4), ('outletOnToOff', 5), ('outletCycling', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletStatusStatus.setStatus('mandatory')
outlet_status_current = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletStatusCurrent.setStatus('mandatory')
outlet_status_kwatt = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletStatusKwatt.setStatus('mandatory')
outlet_status_wh = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletStatusWH.setStatus('mandatory')
outlet_status_state_time = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletStatusStateTime.setStatus('mandatory')
outlet_status_time_to_go = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 3, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletStatusTimeToGo.setStatus('mandatory')
ipm_device_outlet_control_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 4))
if mibBuilder.loadTexts:
ipmDeviceOutletControlTable.setStatus('mandatory')
ipm_device_outlet_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 4, 1)).setIndexNames((0, 'IPOMANII-MIB', 'outletControlIndex'))
if mibBuilder.loadTexts:
ipmDeviceOutletControlEntry.setStatus('mandatory')
outlet_control_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletControlIndex.setStatus('mandatory')
outlet_control_control = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletControlControl.setStatus('mandatory')
ipm_device_outlet_control_all = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimers', 6), ('offByActionTimers', 7), ('cycleByActionTimers', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmDeviceOutletControlAll.setStatus('mandatory')
ipm_device_outlet_watt_reset = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 2, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=named_values(('none', 1), ('outleta', 2), ('outletb', 3), ('outletc', 4), ('outletd', 5), ('outlete', 6), ('outletf', 7), ('outletg', 8), ('outleth', 9), ('outleti', 10), ('outletj', 11), ('outletk', 12), ('outletl', 13)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmDeviceOutletWattReset.setStatus('mandatory')
ipm_device_cc_out = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3))
ipm_device_cc_out_number = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipmDeviceCcOutNumber.setStatus('mandatory')
ipm_device_cc_out_config_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2))
if mibBuilder.loadTexts:
ipmDeviceCcOutConfigTable.setStatus('mandatory')
ipm_device_cc_out_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2, 1)).setIndexNames((0, 'IPOMANII-MIB', 'ccOutConfigIndex'))
if mibBuilder.loadTexts:
ipmDeviceCcOutConfigEntry.setStatus('mandatory')
cc_out_config_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ccOutConfigIndex.setStatus('mandatory')
cc_out_config_desc = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ccOutConfigDesc.setStatus('mandatory')
cc_out_config_event_action = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ccOutConfigEventAction.setStatus('mandatory')
cc_out_config_close_delay = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ccOutConfigCloseDelay.setStatus('mandatory')
cc_out_config_open_delay = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ccOutConfigOpenDelay.setStatus('mandatory')
ipm_device_cc_out_status_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 3))
if mibBuilder.loadTexts:
ipmDeviceCcOutStatusTable.setStatus('mandatory')
ipm_device_cc_out_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 3, 1)).setIndexNames((0, 'IPOMANII-MIB', 'ccOutStatusIndex'))
if mibBuilder.loadTexts:
ipmDeviceCcOutStatusEntry.setStatus('mandatory')
cc_out_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ccOutStatusIndex.setStatus('mandatory')
cc_out_status_status = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('closed', 1), ('open', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ccOutStatusStatus.setStatus('mandatory')
cc_out_status_time_on_state = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ccOutStatusTimeOnState.setStatus('mandatory')
ipm_device_cc_out_control_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 4))
if mibBuilder.loadTexts:
ipmDeviceCcOutControlTable.setStatus('mandatory')
ipm_device_cc_out_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 4, 1)).setIndexNames((0, 'IPOMANII-MIB', 'ccOutControlIndex'))
if mibBuilder.loadTexts:
ipmDeviceCcOutControlEntry.setStatus('mandatory')
cc_out_control_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ccOutControlIndex.setStatus('mandatory')
cc_out_control_control = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 3, 3, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('closeImmediately', 3), ('openImmediately', 4), ('cycleImmediately', 5), ('closeByCloseTimer', 6), ('openByOpenTimer', 7), ('cycleByActionTimer', 8), ('closeThenOpenByActionTimers', 9), ('openThenCloseByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ccOutControlControl.setStatus('mandatory')
ipm_slave_state = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 1))
ipm_slave_state_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 1, 1))
if mibBuilder.loadTexts:
ipmSlaveStateTable.setStatus('mandatory')
ipm_slave_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 1, 1, 1)).setIndexNames((0, 'IPOMANII-MIB', 'slaveStateIndex'))
if mibBuilder.loadTexts:
ipmSlaveStateEntry.setStatus('mandatory')
slave_state_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 1, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveStateIndex.setStatus('mandatory')
slave_state_control01 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disconnected', 1), ('connected', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveStateControl01.setStatus('mandatory')
ipm_slave_inlet = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2))
ipm_slave_inlet_status = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1))
ipm_device_slave_inlet_status_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1))
if mibBuilder.loadTexts:
ipmDeviceSlaveInletStatusTable.setStatus('mandatory')
ipm_device_slave_inlet_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1)).setIndexNames((0, 'IPOMANII-MIB', 'inletStatusIndex'))
if mibBuilder.loadTexts:
ipmDeviceSlaveInletStatusEntry.setStatus('mandatory')
inlet_slave_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletSlaveStatusIndex.setStatus('mandatory')
inlet_slave_status_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletSlaveStatusVoltage.setStatus('mandatory')
inlet_slave_status_current = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletSlaveStatusCurrent.setStatus('mandatory')
inlet_slave_status_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletSlaveStatusFrequency.setStatus('mandatory')
inlet_slave_status_kwatt = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletSlaveStatusKwatt.setStatus('mandatory')
inlet_slave_status_wh = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletSlaveStatusWH.setStatus('mandatory')
inlet_slave_status_voltage2 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletSlaveStatusVoltage2.setStatus('mandatory')
inlet_slave_status_current2 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletSlaveStatusCurrent2.setStatus('mandatory')
inlet_slave_status_frequency2 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletSlaveStatusFrequency2.setStatus('mandatory')
inlet_slave_status_kwatt2 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletSlaveStatusKwatt2.setStatus('mandatory')
inlet_slave_status_wh2 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 1, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inletSlaveStatusWH2.setStatus('mandatory')
ipm_slave_inlet_config = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2))
ipm_deviceslave_inlet_config_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1))
if mibBuilder.loadTexts:
ipmDeviceslaveInletConfigTable.setStatus('mandatory')
ipm_deviceslave_inlet_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1, 1)).setIndexNames((0, 'IPOMANII-MIB', 'slaveInletConfigIndex'))
if mibBuilder.loadTexts:
ipmDeviceslaveInletConfigEntry.setStatus('mandatory')
slave_inlet_config_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveInletConfigIndex.setStatus('mandatory')
slave_inlet_config_voltage_high = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveInletConfigVoltageHigh.setStatus('mandatory')
slave_inlet_config_voltage_low = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveInletConfigVoltageLow.setStatus('mandatory')
slave_inlet2_config_voltage_high = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveInlet2ConfigVoltageHigh.setStatus('mandatory')
slave_inlet2_config_voltage_low = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 2, 2, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65500))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveInlet2ConfigVoltageLow.setStatus('mandatory')
ipm_slave_outlet = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3))
ipm_slave_outlet_config = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1))
ipm_slave_device_outlet_name_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletNameTable.setStatus('mandatory')
ipm_slave_device_outlet_name_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1)).setIndexNames((0, 'IPOMANII-MIB', 'slaveOutletNameIndex'))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletNameEntry.setStatus('mandatory')
slave_outlet_name_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletNameIndex.setStatus('mandatory')
slave_outlet_name01 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletName01.setStatus('mandatory')
slave_outlet_name02 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletName02.setStatus('mandatory')
slave_outlet_name03 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletName03.setStatus('mandatory')
slave_outlet_name04 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletName04.setStatus('mandatory')
slave_outlet_name05 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletName05.setStatus('mandatory')
slave_outlet_name06 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletName06.setStatus('mandatory')
slave_outlet_name07 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletName07.setStatus('mandatory')
slave_outlet_name08 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletName08.setStatus('mandatory')
slave_outlet_name09 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletName09.setStatus('mandatory')
slave_outlet_name10 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletName10.setStatus('mandatory')
slave_outlet_name11 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletName11.setStatus('mandatory')
slave_outlet_name12 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 1, 1, 13), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletName12.setStatus('mandatory')
ipm_slave_device_outlet_location_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletLocationTable.setStatus('mandatory')
ipm_slave_device_outlet_location_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1)).setIndexNames((0, 'IPOMANII-MIB', 'slaveOutletLocationIndex'))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletLocationEntry.setStatus('mandatory')
slave_outlet_location_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletLocationIndex.setStatus('mandatory')
slave_outlet_location01 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletLocation01.setStatus('mandatory')
slave_outlet_location02 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletLocation02.setStatus('mandatory')
slave_outlet_location03 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletLocation03.setStatus('mandatory')
slave_outlet_location04 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletLocation04.setStatus('mandatory')
slave_outlet_location05 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletLocation05.setStatus('mandatory')
slave_outlet_location06 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletLocation06.setStatus('mandatory')
slave_outlet_location07 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletLocation07.setStatus('mandatory')
slave_outlet_location08 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletLocation08.setStatus('mandatory')
slave_outlet_location09 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletLocation09.setStatus('mandatory')
slave_outlet_location10 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletLocation10.setStatus('mandatory')
slave_outlet_location11 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletLocation11.setStatus('mandatory')
slave_outlet_location12 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 2, 1, 13), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletLocation12.setStatus('mandatory')
ipm_slave_device_outlet_on_time_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletOnTimeTable.setStatus('mandatory')
ipm_slave_device_outlet_on_time_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1)).setIndexNames((0, 'IPOMANII-MIB', 'slaveOutletOnTimeIndex'))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletOnTimeEntry.setStatus('mandatory')
slave_outlet_on_time_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletOnTimeIndex.setStatus('mandatory')
slave_outlet_on_time01 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOnTime01.setStatus('mandatory')
slave_outlet_on_time02 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOnTime02.setStatus('mandatory')
slave_outlet_on_time03 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOnTime03.setStatus('mandatory')
slave_outlet_on_time04 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOnTime04.setStatus('mandatory')
slave_outlet_on_time05 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOnTime05.setStatus('mandatory')
slave_outlet_on_time06 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOnTime06.setStatus('mandatory')
slave_outlet_on_time07 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOnTime07.setStatus('mandatory')
slave_outlet_on_time08 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOnTime08.setStatus('mandatory')
slave_outlet_on_time09 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOnTime09.setStatus('mandatory')
slave_outlet_on_time10 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOnTime10.setStatus('mandatory')
slave_outlet_on_time11 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 12), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOnTime11.setStatus('mandatory')
slave_outlet_on_time12 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 3, 1, 13), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOnTime12.setStatus('mandatory')
ipm_slave_device_outlet_off_time_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletOffTimeTable.setStatus('mandatory')
ipm_slave_device_outlet_off_time_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1)).setIndexNames((0, 'IPOMANII-MIB', 'slaveOutletOffTimeIndex'))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletOffTimeEntry.setStatus('mandatory')
slave_outlet_off_time_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletOffTimeIndex.setStatus('mandatory')
slave_outlet_off_time01 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOffTime01.setStatus('mandatory')
slave_outlet_off_time02 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOffTime02.setStatus('mandatory')
slave_outlet_off_time03 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOffTime03.setStatus('mandatory')
slave_outlet_off_time04 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOffTime04.setStatus('mandatory')
slave_outlet_off_time05 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOffTime05.setStatus('mandatory')
slave_outlet_off_time06 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOffTime06.setStatus('mandatory')
slave_outlet_off_time07 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOffTime07.setStatus('mandatory')
slave_outlet_off_time08 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOffTime08.setStatus('mandatory')
slave_outlet_off_time09 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOffTime09.setStatus('mandatory')
slave_outlet_off_time10 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOffTime10.setStatus('mandatory')
slave_outlet_off_time11 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 12), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOffTime11.setStatus('mandatory')
slave_outlet_off_time12 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 4, 1, 13), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletOffTime12.setStatus('mandatory')
ipm_slave_device_outlet_curr_th_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletCurrThTable.setStatus('mandatory')
ipm_slave_device_outlet_curr_th_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1)).setIndexNames((0, 'IPOMANII-MIB', 'slaveOutletCurrThIndex'))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletCurrThEntry.setStatus('mandatory')
slave_outlet_curr_th_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrThIndex.setStatus('mandatory')
slave_outlet_curr_th01 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletCurrTh01.setStatus('mandatory')
slave_outlet_curr_th02 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletCurrTh02.setStatus('mandatory')
slave_outlet_curr_th03 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletCurrTh03.setStatus('mandatory')
slave_outlet_curr_th04 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletCurrTh04.setStatus('mandatory')
slave_outlet_curr_th05 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletCurrTh05.setStatus('mandatory')
slave_outlet_curr_th06 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletCurrTh06.setStatus('mandatory')
slave_outlet_curr_th07 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletCurrTh07.setStatus('mandatory')
slave_outlet_curr_th08 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletCurrTh08.setStatus('mandatory')
slave_outlet_curr_th09 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletCurrTh09.setStatus('mandatory')
slave_outlet_curr_th10 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletCurrTh10.setStatus('mandatory')
slave_outlet_curr_th11 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 12), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletCurrTh11.setStatus('mandatory')
slave_outlet_curr_th12 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 1, 5, 1, 13), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletCurrTh12.setStatus('mandatory')
ipm_slave_outlet_status = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2))
ipm_slave_device_outlet_current_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletCurrentTable.setStatus('mandatory')
ipm_slave_device_outlet_current_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1)).setIndexNames((0, 'IPOMANII-MIB', 'slaveOutletCurrentIndex'))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletCurrentEntry.setStatus('mandatory')
slave_outlet_current_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrentIndex.setStatus('mandatory')
slave_outlet_current01 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrent01.setStatus('mandatory')
slave_outlet_current02 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrent02.setStatus('mandatory')
slave_outlet_current03 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrent03.setStatus('mandatory')
slave_outlet_current04 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrent04.setStatus('mandatory')
slave_outlet_current05 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrent05.setStatus('mandatory')
slave_outlet_current06 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrent06.setStatus('mandatory')
slave_outlet_current07 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrent07.setStatus('mandatory')
slave_outlet_current08 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrent08.setStatus('mandatory')
slave_outlet_current09 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrent09.setStatus('mandatory')
slave_outlet_current10 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrent10.setStatus('mandatory')
slave_outlet_current11 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrent11.setStatus('mandatory')
slave_outlet_current12 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletCurrent12.setStatus('mandatory')
ipm_slave_device_outlet_watt_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletWattTable.setStatus('mandatory')
ipm_slave_device_outlet_watt_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1)).setIndexNames((0, 'IPOMANII-MIB', 'slaveOutletWattIndex'))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletWattEntry.setStatus('mandatory')
slave_outlet_watt_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWattIndex.setStatus('mandatory')
slave_outlet_watt01 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWatt01.setStatus('mandatory')
slave_outlet_watt02 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWatt02.setStatus('mandatory')
slave_outlet_watt03 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWatt03.setStatus('mandatory')
slave_outlet_watt04 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWatt04.setStatus('mandatory')
slave_outlet_watt05 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWatt05.setStatus('mandatory')
slave_outlet_watt06 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWatt06.setStatus('mandatory')
slave_outlet_watt07 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWatt07.setStatus('mandatory')
slave_outlet_watt08 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWatt08.setStatus('mandatory')
slave_outlet_watt09 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWatt09.setStatus('mandatory')
slave_outlet_watt10 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWatt10.setStatus('mandatory')
slave_outlet_watt11 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWatt11.setStatus('mandatory')
slave_outlet_watt12 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 2, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletWatt12.setStatus('mandatory')
ipm_slave_device_outlet_kwatt_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletKwattTable.setStatus('mandatory')
ipm_slave_device_outlet_kwatt_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1)).setIndexNames((0, 'IPOMANII-MIB', 'slaveOutletKwattIndex'))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletKwattEntry.setStatus('mandatory')
slave_outlet_kwatt_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwattIndex.setStatus('mandatory')
slave_outlet_kwatt01 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwatt01.setStatus('mandatory')
slave_outlet_kwatt02 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwatt02.setStatus('mandatory')
slave_outlet_kwatt03 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwatt03.setStatus('mandatory')
slave_outlet_kwatt04 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwatt04.setStatus('mandatory')
slave_outlet_kwatt05 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwatt05.setStatus('mandatory')
slave_outlet_kwatt06 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwatt06.setStatus('mandatory')
slave_outlet_kwatt07 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwatt07.setStatus('mandatory')
slave_outlet_kwatt08 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwatt08.setStatus('mandatory')
slave_outlet_kwatt09 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwatt09.setStatus('mandatory')
slave_outlet_kwatt10 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwatt10.setStatus('mandatory')
slave_outlet_kwatt11 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwatt11.setStatus('mandatory')
slave_outlet_kwatt12 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 2, 3, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletKwatt12.setStatus('mandatory')
ipm_slave_outlet_action = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3))
ipm_slave_device_outlet_action_table = mib_table((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletActionTable.setStatus('mandatory')
ipm_slave_device_outlet_action_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1)).setIndexNames((0, 'IPOMANII-MIB', 'slaveOutletActionIndex'))
if mibBuilder.loadTexts:
ipmSlaveDeviceOutletActionEntry.setStatus('mandatory')
slave_outlet_action_index = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slaveOutletActionIndex.setStatus('mandatory')
slave_outlet_action01 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletAction01.setStatus('mandatory')
slave_outlet_action02 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletAction02.setStatus('mandatory')
slave_outlet_action03 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletAction03.setStatus('mandatory')
slave_outlet_action04 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletAction04.setStatus('mandatory')
slave_outlet_action05 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletAction05.setStatus('mandatory')
slave_outlet_action06 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletAction06.setStatus('mandatory')
slave_outlet_action07 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletAction07.setStatus('mandatory')
slave_outlet_action08 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletAction08.setStatus('mandatory')
slave_outlet_action09 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletAction09.setStatus('mandatory')
slave_outlet_action10 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletAction10.setStatus('mandatory')
slave_outlet_action11 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletAction11.setStatus('mandatory')
slave_outlet_action12 = mib_table_column((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 4, 3, 3, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('none', 1), ('cancelAction', 2), ('onImmediately', 3), ('offImmediately', 4), ('cycleImmediately', 5), ('onByActionTimer', 6), ('offByActionTimer', 7), ('cycleByActionTimer', 8), ('onThenOffByActionTimers', 9), ('offThenOnByActionTimers', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
slaveOutletAction12.setStatus('mandatory')
ipm_env_emd = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1))
ipm_env_emd_status = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 1))
ipm_env_emd_status_emd_type = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 1), ('disabled', 2), ('eMD-HT', 3), ('eMD-T', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipmEnvEmdStatusEmdType.setStatus('mandatory')
ipm_env_emd_status_temperature = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 10000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipmEnvEmdStatusTemperature.setStatus('mandatory')
ipm_env_emd_status_humidity = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 10000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipmEnvEmdStatusHumidity.setStatus('mandatory')
ipm_env_emd_status_alarm1 = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 1), ('disabled', 2), ('alarm', 3), ('normal', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipmEnvEmdStatusAlarm1.setStatus('mandatory')
ipm_env_emd_status_alarm2 = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 1), ('disabled', 2), ('alarm', 3), ('normal', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipmEnvEmdStatusAlarm2.setStatus('mandatory')
ipm_env_emd_config = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2))
ipm_env_emd_config_emd_presence = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('autoDetect', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigEmdPresence.setStatus('mandatory')
ipm_env_emd_config_emd_name = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigEmdName.setStatus('mandatory')
ipm_env_emd_config_temp = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3))
ipm_env_emd_config_temp_name = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigTempName.setStatus('mandatory')
ipm_env_emd_config_temp_high_set_point = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(5, 65))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigTempHighSetPoint.setStatus('mandatory')
ipm_env_emd_config_temp_high_status = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigTempHighStatus.setStatus('mandatory')
ipm_env_emd_config_temp_low_set_point = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3, 4), integer32().subtype(subtypeSpec=value_range_constraint(5, 65))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigTempLowSetPoint.setStatus('mandatory')
ipm_env_emd_config_temp_low_status = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigTempLowStatus.setStatus('mandatory')
ipm_env_emd_config_temp_offset = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 3, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=named_values(('t0p0', 1), ('t0p5', 2), ('t1p0', 3), ('t1p5', 4), ('t2p0', 5), ('t2p5', 6), ('t3p0', 7), ('t-0p5', 8), ('t-1p0', 9), ('t-1p5', 10), ('t-2p0', 11), ('t-2p5', 12), ('t-3p0', 13)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigTempOffset.setStatus('mandatory')
ipm_env_emd_config_humi = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4))
ipm_env_emd_config_humi_name = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigHumiName.setStatus('mandatory')
ipm_env_emd_config_humi_high_set_point = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(5, 95))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigHumiHighSetPoint.setStatus('mandatory')
ipm_env_emd_config_humi_high_status = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigHumiHighStatus.setStatus('mandatory')
ipm_env_emd_config_humi_low_set_point = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4, 4), integer32().subtype(subtypeSpec=value_range_constraint(5, 95))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigHumiLowSetPoint.setStatus('mandatory')
ipm_env_emd_config_humi_low_status = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigHumiLowStatus.setStatus('mandatory')
ipm_env_emd_config_humi_offset = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 4, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=named_values(('h0p0', 1), ('h1p0', 2), ('h2p0', 3), ('h3p0', 4), ('h4p0', 5), ('h5p0', 6), ('h6p0', 7), ('h-1p0', 8), ('h-2p0', 9), ('h-3p0', 10), ('h-4p0', 11), ('h-5p0', 12), ('h-6p0', 13)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigHumiOffset.setStatus('mandatory')
ipm_env_emd_config_alarm1 = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 5))
ipm_env_emd_config_alarm1_name = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 5, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigAlarm1Name.setStatus('mandatory')
ipm_env_emd_config_alarm1_type = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 5, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('normalOpen', 2), ('normalClose', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigAlarm1Type.setStatus('mandatory')
ipm_env_emd_config_alarm2 = mib_identifier((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 6))
ipm_env_emd_config_alarm2_name = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 6, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigAlarm2Name.setStatus('mandatory')
ipm_env_emd_config_alarm2_type = mib_scalar((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 1, 5, 1, 2, 6, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('normalOpen', 2), ('normalClose', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipmEnvEmdConfigAlarm2Type.setStatus('mandatory')
ipm_inlet_voltage_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 1)).setObjects(('IPOMANII-MIB', 'inletConfigIndex'), ('IPOMANII-MIB', 'inletStatusVoltage'), ('IPOMANII-MIB', 'inletConfigVoltageHigh'), ('IPOMANII-MIB', 'inletConfigDesc'))
ipm_inlet_voltage_not_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 2)).setObjects(('IPOMANII-MIB', 'inletConfigIndex'), ('IPOMANII-MIB', 'inletStatusVoltage'), ('IPOMANII-MIB', 'inletConfigVoltageHigh'), ('IPOMANII-MIB', 'inletConfigDesc'))
ipm_inlet_voltage_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 3)).setObjects(('IPOMANII-MIB', 'inletConfigIndex'), ('IPOMANII-MIB', 'inletStatusVoltage'), ('IPOMANII-MIB', 'inletConfigVoltageLow'), ('IPOMANII-MIB', 'inletConfigDesc'))
ipm_inlet_voltage_not_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 4)).setObjects(('IPOMANII-MIB', 'inletConfigIndex'), ('IPOMANII-MIB', 'inletStatusVoltage'), ('IPOMANII-MIB', 'inletConfigVoltageLow'), ('IPOMANII-MIB', 'inletConfigDesc'))
ipm_inlet_current_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 5)).setObjects(('IPOMANII-MIB', 'inletConfigIndex'), ('IPOMANII-MIB', 'inletStatusCurrent'), ('IPOMANII-MIB', 'inletConfigCurrentHigh'), ('IPOMANII-MIB', 'inletConfigDesc'))
ipm_inlet_current_not_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 6)).setObjects(('IPOMANII-MIB', 'inletConfigIndex'), ('IPOMANII-MIB', 'inletStatusCurrent'), ('IPOMANII-MIB', 'inletConfigCurrentHigh'), ('IPOMANII-MIB', 'inletConfigDesc'))
ipm_inlet_frequency_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 7)).setObjects(('IPOMANII-MIB', 'inletConfigIndex'), ('IPOMANII-MIB', 'inletStatusFrequency'), ('IPOMANII-MIB', 'inletConfigFrequencyHigh'), ('IPOMANII-MIB', 'inletConfigDesc'))
ipm_inlet_frequency_not_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 8)).setObjects(('IPOMANII-MIB', 'inletConfigIndex'), ('IPOMANII-MIB', 'inletStatusFrequency'), ('IPOMANII-MIB', 'inletConfigFrequencyHigh'), ('IPOMANII-MIB', 'inletConfigDesc'))
ipm_inlet_frequency_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 9)).setObjects(('IPOMANII-MIB', 'inletConfigIndex'), ('IPOMANII-MIB', 'inletStatusFrequency'), ('IPOMANII-MIB', 'inletConfigFrequencyLow'), ('IPOMANII-MIB', 'inletConfigDesc'))
ipm_inlet_frequency_not_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 10)).setObjects(('IPOMANII-MIB', 'inletConfigIndex'), ('IPOMANII-MIB', 'inletStatusFrequency'), ('IPOMANII-MIB', 'inletConfigFrequencyLow'), ('IPOMANII-MIB', 'inletConfigDesc'))
ipm_outlet_current_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 11)).setObjects(('IPOMANII-MIB', 'outletConfigIndex'), ('IPOMANII-MIB', 'outletStatusCurrent'), ('IPOMANII-MIB', 'outletConfigCurrentHigh'), ('IPOMANII-MIB', 'outletConfigDesc'))
ipm_outlet_current_not_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 12)).setObjects(('IPOMANII-MIB', 'outletConfigIndex'), ('IPOMANII-MIB', 'outletStatusCurrent'), ('IPOMANII-MIB', 'outletConfigCurrentHigh'), ('IPOMANII-MIB', 'outletConfigDesc'))
ipm_outlet_state_changed = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 13)).setObjects(('IPOMANII-MIB', 'outletConfigIndex'), ('IPOMANII-MIB', 'outletStatusStatus'), ('IPOMANII-MIB', 'outletConfigDesc'))
ipm_emd_temperature_not_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 14)).setObjects(('IPOMANII-MIB', 'ipmEnvEmdStatusTemperature'), ('IPOMANII-MIB', 'ipmEnvEmdConfigTempHighSetPoint'), ('IPOMANII-MIB', 'ipmEnvEmdConfigTempName'))
ipm_emd_temperature_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 15)).setObjects(('IPOMANII-MIB', 'ipmEnvEmdStatusTemperature'), ('IPOMANII-MIB', 'ipmEnvEmdConfigTempHighSetPoint'), ('IPOMANII-MIB', 'ipmEnvEmdConfigTempName'))
ipm_emd_temperature_not_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 16)).setObjects(('IPOMANII-MIB', 'ipmEnvEmdStatusTemperature'), ('IPOMANII-MIB', 'ipmEnvEmdConfigTempLowSetPoint'), ('IPOMANII-MIB', 'ipmEnvEmdConfigTempName'))
ipm_emd_temperature_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 17)).setObjects(('IPOMANII-MIB', 'ipmEnvEmdStatusTemperature'), ('IPOMANII-MIB', 'ipmEnvEmdConfigTempLowSetPoint'), ('IPOMANII-MIB', 'ipmEnvEmdConfigTempName'))
ipm_emd_humidity_not_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 18)).setObjects(('IPOMANII-MIB', 'ipmEnvEmdStatusHumidity'), ('IPOMANII-MIB', 'ipmEnvEmdConfigHumiHighSetPoint'), ('IPOMANII-MIB', 'ipmEnvEmdConfigHumiName'))
ipm_emd_humidity_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 19)).setObjects(('IPOMANII-MIB', 'ipmEnvEmdStatusHumidity'), ('IPOMANII-MIB', 'ipmEnvEmdConfigHumiHighSetPoint'), ('IPOMANII-MIB', 'ipmEnvEmdConfigHumiName'))
ipm_emd_humidity_not_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 20)).setObjects(('IPOMANII-MIB', 'ipmEnvEmdStatusHumidity'), ('IPOMANII-MIB', 'ipmEnvEmdConfigHumiLowSetPoint'), ('IPOMANII-MIB', 'ipmEnvEmdConfigHumiName'))
ipm_emd_humidity_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 21)).setObjects(('IPOMANII-MIB', 'ipmEnvEmdStatusHumidity'), ('IPOMANII-MIB', 'ipmEnvEmdConfigHumiLowSetPoint'), ('IPOMANII-MIB', 'ipmEnvEmdConfigHumiName'))
ipm_emd_alarm1_normal = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 22)).setObjects(('IPOMANII-MIB', 'ipmEnvEmdConfigAlarm1Type'), ('IPOMANII-MIB', 'ipmEnvEmdConfigAlarm1Name'))
ipm_emd_alarm1_active = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 23)).setObjects(('IPOMANII-MIB', 'ipmEnvEmdConfigAlarm1Type'), ('IPOMANII-MIB', 'ipmEnvEmdConfigAlarm1Name'))
ipm_emd_alarm2_normal = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 24)).setObjects(('IPOMANII-MIB', 'ipmEnvEmdConfigAlarm2Type'), ('IPOMANII-MIB', 'ipmEnvEmdConfigAlarm2Name'))
ipm_emd_alarm2_active = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 25)).setObjects(('IPOMANII-MIB', 'ipmEnvEmdConfigAlarm2Type'), ('IPOMANII-MIB', 'ipmEnvEmdConfigAlarm2Name'))
ipm_slave01_inlet01_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 26))
ipm_slave01_inlet01_not_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 27))
ipm_slave01_inlet02_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 28))
ipm_slave01_inlet02_not_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 29))
ipm_slave01_inlet01_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 30))
ipm_slave01_inlet01_not_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 31))
ipm_slave01_inlet02_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 32))
ipm_slave01_inlet02_not_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 33))
ipm_slave01_inlet01_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 34))
ipm_slave01_inlet01_not_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 35))
ipm_slave01_inlet02_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 36))
ipm_slave01_inlet02_not_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 37))
ipm_slave01_emd_temperature_not_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 38))
ipm_slave01_emd_temperature_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 39))
ipm_slave01_emd_temperature_not_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 40))
ipm_slave01_emd_temperature_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 41))
ipm_slave01_emd_humidity_not_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 42))
ipm_slave01_emd_humidity_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 43))
ipm_slave01_emd_humidity_not_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 44))
ipm_slave01_emd_humidity_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 45))
ipm_slave01_emd_alarm1_normal = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 46))
ipm_slave01_emd_alarm1_active = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 47))
ipm_slave01_emd_alarm2_normal = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 48))
ipm_slave01_emd_alarm2_active = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 49))
ipm_slave01_outlet_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 50))
ipm_slave02_inlet01_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 51))
ipm_slave02_inlet01_not_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 52))
ipm_slave02_inlet02_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 53))
ipm_slave02_inlet02_not_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 54))
ipm_slave02_inlet01_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 55))
ipm_slave02_inlet01_not_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 56))
ipm_slave02_inlet02_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 57))
ipm_slave02_inlet02_not_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 58))
ipm_slave02_inlet01_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 59))
ipm_slave02_inlet01_not_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 60))
ipm_slave02_inlet02_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 61))
ipm_slave02_inlet02_not_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 62))
ipm_slave02_emd_temperature_not_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 63))
ipm_slave02_emd_temperature_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 64))
ipm_slave02_emd_temperature_not_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 65))
ipm_slave02_emd_temperature_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 66))
ipm_slave02_emd_humidity_not_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 67))
ipm_slave02_emd_humidity_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 68))
ipm_slave02_emd_humidity_not_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 69))
ipm_slave02_emd_humidity_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 70))
ipm_slave02_emd_alarm1_normal = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 71))
ipm_slave02_emd_alarm1_active = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 72))
ipm_slave02_emd_alarm2_normal = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 73))
ipm_slave02_emd_alarm2_active = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 74))
ipm_slave02_outlet_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 75))
ipm_slave03_inlet01_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 76))
ipm_slave03_inlet01_not_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 77))
ipm_slave03_inlet02_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 78))
ipm_slave03_inlet02_not_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 79))
ipm_slave03_inlet01_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 80))
ipm_slave03_inlet01_not_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 81))
ipm_slave03_inlet02_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 82))
ipm_slave03_inlet02_not_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 83))
ipm_slave03_inlet01_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 84))
ipm_slave03_inlet01_not_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 85))
ipm_slave03_inlet02_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 86))
ipm_slave03_inlet02_not_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 87))
ipm_slave03_emd_temperature_not_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 88))
ipm_slave03_emd_temperature_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 89))
ipm_slave03_emd_temperature_not_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 90))
ipm_slave03_emd_temperature_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 91))
ipm_slave03_emd_humidity_not_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 92))
ipm_slave03_emd_humidity_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 93))
ipm_slave03_emd_humidity_not_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 94))
ipm_slave03_emd_humidity_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 95))
ipm_slave03_emd_alarm1_normal = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 96))
ipm_slave03_emd_alarm1_active = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 97))
ipm_slave03_emd_alarm2_normal = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 98))
ipm_slave03_emd_alarm2_active = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 99))
ipm_slave03_outlet_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 100))
ipm_slave04_inlet01_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 101))
ipm_slave04_inlet01_not_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 102))
ipm_slave04_inlet02_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 103))
ipm_slave04_inlet02_not_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 104))
ipm_slave04_inlet01_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 105))
ipm_slave04_inlet01_not_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 106))
ipm_slave04_inlet02_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 107))
ipm_slave04_inlet02_not_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 108))
ipm_slave04_inlet01_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 109))
ipm_slave04_inlet01_not_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 110))
ipm_slave04_inlet02_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 111))
ipm_slave04_inlet02_not_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 112))
ipm_slave04_emd_temperature_not_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 113))
ipm_slave04_emd_temperature_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 114))
ipm_slave04_emd_temperature_not_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 115))
ipm_slave04_emd_temperature_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 116))
ipm_slave04_emd_humidity_not_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 117))
ipm_slave04_emd_humidity_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 118))
ipm_slave04_emd_humidity_not_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 119))
ipm_slave04_emd_humidity_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 120))
ipm_slave04_emd_alarm1_normal = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 121))
ipm_slave04_emd_alarm1_active = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 122))
ipm_slave04_emd_alarm2_normal = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 123))
ipm_slave04_emd_alarm2_active = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 124))
ipm_slave04_outlet_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 125))
ipm_slave05_inlet01_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 126))
ipm_slave05_inlet01_not_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 127))
ipm_slave05_inlet02_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 128))
ipm_slave05_inlet02_not_over_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 129))
ipm_slave05_inlet01_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 130))
ipm_slave05_inlet01_not_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 131))
ipm_slave05_inlet02_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 132))
ipm_slave05_inlet02_not_under_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 133))
ipm_slave05_inlet01_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 134))
ipm_slave05_inlet01_not_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 135))
ipm_slave05_inlet02_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 136))
ipm_slave05_inlet02_not_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 137))
ipm_slave05_emd_temperature_not_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 138))
ipm_slave05_emd_temperature_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 139))
ipm_slave05_emd_temperature_not_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 140))
ipm_slave05_emd_temperature_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 141))
ipm_slave05_emd_humidity_not_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 142))
ipm_slave05_emd_humidity_too_high = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 143))
ipm_slave05_emd_humidity_not_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 144))
ipm_slave05_emd_humidity_too_low = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 145))
ipm_slave05_emd_alarm1_normal = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 146))
ipm_slave05_emd_alarm1_active = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 147))
ipm_slave05_emd_alarm2_normal = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 148))
ipm_slave05_emd_alarm2_active = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 149))
ipm_slave05_outlet_current_over_th = notification_type((1, 3, 6, 1, 4, 1, 2468, 1, 4, 2, 2) + (0, 150))
mibBuilder.exportSymbols('IPOMANII-MIB', ipmSlave03EmdHumidityNotHigh=ipmSlave03EmdHumidityNotHigh, slaveOutletName04=slaveOutletName04, ipmDeviceOutletConfigEntry=ipmDeviceOutletConfigEntry, inletSlaveStatusKwatt2=inletSlaveStatusKwatt2, ipmEnvEmdConfigAlarm2=ipmEnvEmdConfigAlarm2, inletConfigVoltageLow=inletConfigVoltageLow, outletStatusWH=outletStatusWH, ipmAgentSnmpControl=ipmAgentSnmpControl, slaveOutletCurrTh06=slaveOutletCurrTh06, inletConfigfrequencyLowAction=inletConfigfrequencyLowAction, ipmSlave05EmdHumidityTooLow=ipmSlave05EmdHumidityTooLow, ipmSlaveDeviceOutletOnTimeEntry=ipmSlaveDeviceOutletOnTimeEntry, slaveInletConfigIndex=slaveInletConfigIndex, ipmSlave05EmdAlarm1Active=ipmSlave05EmdAlarm1Active, ipmEnvEmdConfigHumi=ipmEnvEmdConfigHumi, ipmSlave02Inlet02UnderLow=ipmSlave02Inlet02UnderLow, slaveOutletLocation12=slaveOutletLocation12, ipmDeviceInletNumber=ipmDeviceInletNumber, ipmSlave03EmdTemperatureNotLow=ipmSlave03EmdTemperatureNotLow, ipmEmdHumidityNotHigh=ipmEmdHumidityNotHigh, ipmDeviceCcOutStatusTable=ipmDeviceCcOutStatusTable, slaveOutletOnTimeIndex=slaveOutletOnTimeIndex, ipmSlave05EmdHumidityNotLow=ipmSlave05EmdHumidityNotLow, ipmSlave01Inlet01CurrentOverTh=ipmSlave01Inlet01CurrentOverTh, slaveOutletName09=slaveOutletName09, accessIndex=accessIndex, ipmSlaveDeviceOutletLocationEntry=ipmSlaveDeviceOutletLocationEntry, slaveOutletLocation10=slaveOutletLocation10, ipmEnvEmdStatusEmdType=ipmEnvEmdStatusEmdType, inletConfigDesc=inletConfigDesc, ipmEnvEmdConfigEmdPresence=ipmEnvEmdConfigEmdPresence, ipmSlave03Inlet02UnderLow=ipmSlave03Inlet02UnderLow, ipmDeviceOutletControlEntry=ipmDeviceOutletControlEntry, slaveOutletWatt05=slaveOutletWatt05, ipmSlave01Inlet01OverHigh=ipmSlave01Inlet01OverHigh, ipmSlaveDeviceOutletOnTimeTable=ipmSlaveDeviceOutletOnTimeTable, ipmSlaveDeviceOutletKwattTable=ipmSlaveDeviceOutletKwattTable, ipmSlaveDeviceOutletActionTable=ipmSlaveDeviceOutletActionTable, ipmSlave01Inlet02OverHigh=ipmSlave01Inlet02OverHigh, ipmDeviceOutletStatusTable=ipmDeviceOutletStatusTable, ipmAgentNetworkHttp=ipmAgentNetworkHttp, slaveOutletCurrent10=slaveOutletCurrent10, ipmSlaveInlet=ipmSlaveInlet, ipmAgentNetworkIpGateway=ipmAgentNetworkIpGateway, ipmSlave02Inlet02NotUnderLow=ipmSlave02Inlet02NotUnderLow, ipmDeviceslaveInletConfigEntry=ipmDeviceslaveInletConfigEntry, ipmSlave04EmdHumidityNotLow=ipmSlave04EmdHumidityNotLow, slaveOutletCurrent05=slaveOutletCurrent05, ipmSlave05Inlet01NotOverHigh=ipmSlave05Inlet01NotOverHigh, product=product, ipmAgentDayLightSaving=ipmAgentDayLightSaving, inletStatusVoltage=inletStatusVoltage, inletStatusIndex=inletStatusIndex, slaveOutletCurrent02=slaveOutletCurrent02, ipmDeviceOutletWattReset=ipmDeviceOutletWattReset, ipmDeviceCcOutControlTable=ipmDeviceCcOutControlTable, ipmSlave01Inlet01NotCurrentOverTh=ipmSlave01Inlet01NotCurrentOverTh, ipmEnvEmdConfigHumiLowSetPoint=ipmEnvEmdConfigHumiLowSetPoint, ipmSlave01EmdHumidityTooHigh=ipmSlave01EmdHumidityTooHigh, ipmInletFrequencyTooLow=ipmInletFrequencyTooLow, inletStatusWH=inletStatusWH, ipmAgentTime=ipmAgentTime, slaveOutletWatt09=slaveOutletWatt09, ipmEnvEmdConfigTemp=ipmEnvEmdConfigTemp, inletSlaveStatusKwatt=inletSlaveStatusKwatt, slaveOutletCurrent01=slaveOutletCurrent01, ipmAgentLog=ipmAgentLog, ipmEnvEmdConfigAlarm1Type=ipmEnvEmdConfigAlarm1Type, slaveOutletCurrThIndex=slaveOutletCurrThIndex, ipmSlave02Inlet02NotCurrentOverTh=ipmSlave02Inlet02NotCurrentOverTh, ipmSlave03EmdHumidityNotLow=ipmSlave03EmdHumidityNotLow, ipmSlaveOutlet=ipmSlaveOutlet, iPoManII=iPoManII, ipmAgentNetworkSnmp=ipmAgentNetworkSnmp, slaveOutletLocation07=slaveOutletLocation07, slaveOutletLocation05=slaveOutletLocation05, ipmSlaveOutletAction=ipmSlaveOutletAction, outletStatusCurrent=outletStatusCurrent, slaveOutletOnTime02=slaveOutletOnTime02, ipmObjects=ipmObjects, ipmSlave02EmdAlarm1Normal=ipmSlave02EmdAlarm1Normal, ipmSlave04Inlet01CurrentOverTh=ipmSlave04Inlet01CurrentOverTh, ipmSlave02EmdAlarm2Normal=ipmSlave02EmdAlarm2Normal, ipmSlave05OutletCurrentOverTh=ipmSlave05OutletCurrentOverTh, slaveOutletCurrTh11=slaveOutletCurrTh11, ipmSlave05EmdTemperatureTooLow=ipmSlave05EmdTemperatureTooLow, ipmInletVoltageTooHigh=ipmInletVoltageTooHigh, inletSlaveStatusCurrent=inletSlaveStatusCurrent, slaveOutletCurrent12=slaveOutletCurrent12, ipmSlave03Inlet01CurrentOverTh=ipmSlave03Inlet01CurrentOverTh, slaveOutletWatt07=slaveOutletWatt07, ipmAgentHttpControl=ipmAgentHttpControl, ipmAgentControlDefault=ipmAgentControlDefault, slaveOutletCurrent07=slaveOutletCurrent07, ipmSlaveDeviceOutletActionEntry=ipmSlaveDeviceOutletActionEntry, accessControlMode=accessControlMode, ipmSlave01EmdTemperatureNotLow=ipmSlave01EmdTemperatureNotLow, ipmAgentTrapsReceiversTable=ipmAgentTrapsReceiversTable, trapsIndex=trapsIndex, ipmSlave05EmdAlarm2Active=ipmSlave05EmdAlarm2Active, ipmEnvEmdConfig=ipmEnvEmdConfig, ipmAgentNetworkIpAdress=ipmAgentNetworkIpAdress, ipmAgentConfig=ipmAgentConfig, ipmEnvEmdConfigTempLowStatus=ipmEnvEmdConfigTempLowStatus, ipmDeviceCcOut=ipmDeviceCcOut, receiverCommunityString=receiverCommunityString, ipmSlave01Inlet02NotCurrentOverTh=ipmSlave01Inlet02NotCurrentOverTh, slaveOutletName05=slaveOutletName05, ipmSlave04EmdTemperatureTooLow=ipmSlave04EmdTemperatureTooLow, ipmSlave05Inlet01OverHigh=ipmSlave05Inlet01OverHigh, slaveOutletKwattIndex=slaveOutletKwattIndex, slaveOutletWattIndex=slaveOutletWattIndex, ipmSlave05Inlet01NotUnderLow=ipmSlave05Inlet01NotUnderLow, ipmSlave02EmdHumidityNotLow=ipmSlave02EmdHumidityNotLow, ipmEnvEmdStatus=ipmEnvEmdStatus, ipmAgentHttpPort=ipmAgentHttpPort, ipmEnvEmdConfigTempHighSetPoint=ipmEnvEmdConfigTempHighSetPoint, ipmSlave03Inlet02NotUnderLow=ipmSlave03Inlet02NotUnderLow, inletConfigfrequencyHighAction=inletConfigfrequencyHighAction, ipmSlave02EmdTemperatureTooHigh=ipmSlave02EmdTemperatureTooHigh, slaveOutletWatt02=slaveOutletWatt02, ipmSlaveDeviceOutletCurrThTable=ipmSlaveDeviceOutletCurrThTable, slaveOutletAction05=slaveOutletAction05, ipmEmdAlarm2Active=ipmEmdAlarm2Active, slaveOutletAction10=slaveOutletAction10, slaveOutletLocation06=slaveOutletLocation06, slaveOutletCurrTh03=slaveOutletCurrTh03, ipmDeviceOutletStatusEntry=ipmDeviceOutletStatusEntry, slaveOutletAction06=slaveOutletAction06, ingrasys=ingrasys, ipmSlave01EmdAlarm2Normal=ipmSlave01EmdAlarm2Normal, outletControlControl=outletControlControl, slaveOutletCurrTh09=slaveOutletCurrTh09, outletConfigCurrentHigh=outletConfigCurrentHigh, ipmEnvEmdConfigAlarm1=ipmEnvEmdConfigAlarm1, ipmSlave04EmdAlarm2Active=ipmSlave04EmdAlarm2Active, ipmSlave05EmdHumidityNotHigh=ipmSlave05EmdHumidityNotHigh, slaveOutletAction01=slaveOutletAction01, ipmSlave02Inlet02OverHigh=ipmSlave02Inlet02OverHigh, ipmSlave05Inlet01UnderLow=ipmSlave05Inlet01UnderLow, ipmSlave05Inlet02NotOverHigh=ipmSlave05Inlet02NotOverHigh, slaveOutletAction11=slaveOutletAction11, ipmAgentNetworkIp=ipmAgentNetworkIp, inletSlaveStatusIndex=inletSlaveStatusIndex, ipmEnvEmdConfigHumiName=ipmEnvEmdConfigHumiName, ipmDeviceInletConfigEntry=ipmDeviceInletConfigEntry, ipmSlave04OutletCurrentOverTh=ipmSlave04OutletCurrentOverTh, ipmSlave01EmdHumidityTooLow=ipmSlave01EmdHumidityTooLow, inletConfigIndex=inletConfigIndex, ipmSlave02EmdAlarm2Active=ipmSlave02EmdAlarm2Active, ipmSlaveInletStatus=ipmSlaveInletStatus, outletStatusTimeToGo=outletStatusTimeToGo, ipmAgentTrapsReceiversEntry=ipmAgentTrapsReceiversEntry, ipmDeviceCcOutNumber=ipmDeviceCcOutNumber, ipmSlave04EmdAlarm2Normal=ipmSlave04EmdAlarm2Normal, ipmEnvEmdStatusAlarm2=ipmEnvEmdStatusAlarm2, slaveOutletCurrent11=slaveOutletCurrent11, ipmSlave01EmdHumidityNotLow=ipmSlave01EmdHumidityNotLow, ipmAgentNetworkTelnet=ipmAgentNetworkTelnet, ipmSlave05EmdTemperatureTooHigh=ipmSlave05EmdTemperatureTooHigh, inletStatusKwatt=inletStatusKwatt, ipmDeviceInletStatusEntry=ipmDeviceInletStatusEntry, outletStatusStateTime=outletStatusStateTime, ipmSlave02Inlet01UnderLow=ipmSlave02Inlet01UnderLow, slaveOutletLocation08=slaveOutletLocation08, ipmSlave03EmdHumidityTooHigh=ipmSlave03EmdHumidityTooHigh, ipmAgentTrapRetryCount=ipmAgentTrapRetryCount, slaveOutletOnTime12=slaveOutletOnTime12, slaveOutletOnTime03=slaveOutletOnTime03, slaveOutletOnTime08=slaveOutletOnTime08, slaveOutletCurrTh02=slaveOutletCurrTh02, ipmInletFrequencyNotTooHigh=ipmInletFrequencyNotTooHigh, inletConfigVoltageHighAction=inletConfigVoltageHighAction, ipmSlave01EmdAlarm1Active=ipmSlave01EmdAlarm1Active, ipmEnvEmdStatusTemperature=ipmEnvEmdStatusTemperature, ipmSlave=ipmSlave, slaveOutletOffTime01=slaveOutletOffTime01, slaveOutletWatt04=slaveOutletWatt04, ipmSlave04Inlet01UnderLow=ipmSlave04Inlet01UnderLow, slaveInlet2ConfigVoltageLow=slaveInlet2ConfigVoltageLow, slaveOutletName06=slaveOutletName06, ipmSlaveStateTable=ipmSlaveStateTable, ipmEnvEmdConfigTempHighStatus=ipmEnvEmdConfigTempHighStatus, slaveOutletAction04=slaveOutletAction04, slaveOutletName01=slaveOutletName01, ipmSlave01EmdAlarm1Normal=ipmSlave01EmdAlarm1Normal, slaveOutletKwatt03=slaveOutletKwatt03, slaveOutletActionIndex=slaveOutletActionIndex, slaveOutletOffTime05=slaveOutletOffTime05, ipmSlaveDeviceOutletOffTimeTable=ipmSlaveDeviceOutletOffTimeTable, slaveOutletKwatt04=slaveOutletKwatt04, ipmAgentControlRestart=ipmAgentControlRestart, inletConfigFrequencyLow=inletConfigFrequencyLow, ipmOutletCurrentTooHigh=ipmOutletCurrentTooHigh, ipmSlave03OutletCurrentOverTh=ipmSlave03OutletCurrentOverTh, slaveOutletOffTime09=slaveOutletOffTime09, ipmInletFrequencyTooHigh=ipmInletFrequencyTooHigh, slaveOutletWatt03=slaveOutletWatt03, inletConfigFrequencyHigh=inletConfigFrequencyHigh, inletStatusCurrent=inletStatusCurrent, ipmSlave01EmdTemperatureTooLow=ipmSlave01EmdTemperatureTooLow, slaveOutletOnTime10=slaveOutletOnTime10, slaveOutletAction03=slaveOutletAction03, slaveOutletCurrent08=slaveOutletCurrent08, ipmSlave02Inlet02CurrentOverTh=ipmSlave02Inlet02CurrentOverTh, ccOutControlIndex=ccOutControlIndex, ipmSlave02EmdHumidityNotHigh=ipmSlave02EmdHumidityNotHigh, slaveOutletKwatt12=slaveOutletKwatt12, slaveInlet2ConfigVoltageHigh=slaveInlet2ConfigVoltageHigh, ipmEnvEmdConfigAlarm2Type=ipmEnvEmdConfigAlarm2Type, inletSlaveStatusVoltage=inletSlaveStatusVoltage, ipmIdentModel=ipmIdentModel, outletConfigDesc=outletConfigDesc, slaveOutletCurrTh10=slaveOutletCurrTh10, ipmSlave03Inlet01OverHigh=ipmSlave03Inlet01OverHigh, ipmSlave04EmdTemperatureNotLow=ipmSlave04EmdTemperatureNotLow, ipmSlaveDeviceOutletKwattEntry=ipmSlaveDeviceOutletKwattEntry, slaveOutletOnTime04=slaveOutletOnTime04, ipmEnvEmdConfigTempOffset=ipmEnvEmdConfigTempOffset, receiverNmsType=receiverNmsType, ipmInletCurrentNotTooHigh=ipmInletCurrentNotTooHigh, ccOutConfigDesc=ccOutConfigDesc, pduAgentDataLogInterval=pduAgentDataLogInterval, slaveOutletAction02=slaveOutletAction02, inletSlaveStatusFrequency=inletSlaveStatusFrequency, slaveOutletLocationIndex=slaveOutletLocationIndex, slaveOutletOnTime09=slaveOutletOnTime09, ipmSlaveDeviceOutletCurrentTable=ipmSlaveDeviceOutletCurrentTable, ccOutConfigEventAction=ccOutConfigEventAction, slaveOutletCurrent03=slaveOutletCurrent03, ipmSlave01Inlet01NotOverHigh=ipmSlave01Inlet01NotOverHigh, ipmSlave02EmdHumidityTooHigh=ipmSlave02EmdHumidityTooHigh, ipmSlave05Inlet02NotCurrentOverTh=ipmSlave05Inlet02NotCurrentOverTh, outletStatusIndex=outletStatusIndex, ipmSlave02Inlet01NotOverHigh=ipmSlave02Inlet01NotOverHigh, ipmSlave03EmdTemperatureTooLow=ipmSlave03EmdTemperatureTooLow, ipmAgentSnmpPort=ipmAgentSnmpPort, ipmSlave04EmdTemperatureNotHigh=ipmSlave04EmdTemperatureNotHigh, slaveOutletWatt08=slaveOutletWatt08, ipmSlave05EmdAlarm2Normal=ipmSlave05EmdAlarm2Normal, ipmAgentTelnetControl=ipmAgentTelnetControl, ccOutStatusStatus=ccOutStatusStatus, slaveOutletLocation01=slaveOutletLocation01, ipmEmdTemperatureNotHigh=ipmEmdTemperatureNotHigh, ipmSlave03EmdTemperatureNotHigh=ipmSlave03EmdTemperatureNotHigh, ipmSlave04Inlet01OverHigh=ipmSlave04Inlet01OverHigh, ipmSlave05Inlet01NotCurrentOverTh=ipmSlave05Inlet01NotCurrentOverTh, slaveOutletOffTime02=slaveOutletOffTime02, slaveOutletCurrent09=slaveOutletCurrent09, ipmSlave02EmdAlarm1Active=ipmSlave02EmdAlarm1Active, ipmDeviceOutletControlTable=ipmDeviceOutletControlTable, ipmAgentTelnetPort=ipmAgentTelnetPort, ipmOutletStateChanged=ipmOutletStateChanged, slaveStateIndex=slaveStateIndex)
mibBuilder.exportSymbols('IPOMANII-MIB', ipmSlave05Inlet01CurrentOverTh=ipmSlave05Inlet01CurrentOverTh, inletStatusFrequency=inletStatusFrequency, slaveOutletOffTime11=slaveOutletOffTime11, inletSlaveStatusCurrent2=inletSlaveStatusCurrent2, ipmInletVoltageTooLow=ipmInletVoltageTooLow, ipmSlaveDeviceOutletWattTable=ipmSlaveDeviceOutletWattTable, ipmSlave02EmdTemperatureNotHigh=ipmSlave02EmdTemperatureNotHigh, slaveOutletCurrentIndex=slaveOutletCurrentIndex, pduAgent=pduAgent, ipmDeviceInletConfigTable=ipmDeviceInletConfigTable, ipmAgentTrapRetryTime=ipmAgentTrapRetryTime, ipmAgentNetworkPingControl=ipmAgentNetworkPingControl, ipmTraps=ipmTraps, ipmSlave04Inlet02UnderLow=ipmSlave04Inlet02UnderLow, ipmDeviceslaveInletConfigTable=ipmDeviceslaveInletConfigTable, outletStatusStatus=outletStatusStatus, slaveOutletNameIndex=slaveOutletNameIndex, slaveOutletKwatt11=slaveOutletKwatt11, ipmSlave01Inlet02NotOverHigh=ipmSlave01Inlet02NotOverHigh, ipmAgentTimerFromNtp=ipmAgentTimerFromNtp, slaveOutletKwatt09=slaveOutletKwatt09, ipmSlave01EmdTemperatureTooHigh=ipmSlave01EmdTemperatureTooHigh, ipmSlave03EmdAlarm2Normal=ipmSlave03EmdAlarm2Normal, ipmAgentTrap=ipmAgentTrap, ipmSlave01Inlet02CurrentOverTh=ipmSlave01Inlet02CurrentOverTh, ipmSlaveInletConfig=ipmSlaveInletConfig, slaveOutletOffTime04=slaveOutletOffTime04, inletSlaveStatusVoltage2=inletSlaveStatusVoltage2, slaveOutletKwatt10=slaveOutletKwatt10, ipmEmdHumidityNotLow=ipmEmdHumidityNotLow, receiverDescription=receiverDescription, ipmSlave03EmdHumidityTooLow=ipmSlave03EmdHumidityTooLow, ipmEnvEmdConfigTempName=ipmEnvEmdConfigTempName, inletWattReset=inletWattReset, slaveOutletName11=slaveOutletName11, ccOutConfigIndex=ccOutConfigIndex, ipmIdentManufacturer=ipmIdentManufacturer, ipmSlaveDeviceOutletCurrThEntry=ipmSlaveDeviceOutletCurrThEntry, ipmSlave01Inlet02UnderLow=ipmSlave01Inlet02UnderLow, ipmAgentNetwork=ipmAgentNetwork, slaveOutletOnTime07=slaveOutletOnTime07, ipmSlave04Inlet02NotUnderLow=ipmSlave04Inlet02NotUnderLow, slaveOutletOnTime01=slaveOutletOnTime01, ipmSlave01EmdTemperatureNotHigh=ipmSlave01EmdTemperatureNotHigh, ipmDeviceOutletConfigTable=ipmDeviceOutletConfigTable, ipmDeviceOutletControlAll=ipmDeviceOutletControlAll, ipmSlave05EmdTemperatureNotHigh=ipmSlave05EmdTemperatureNotHigh, slaveOutletLocation11=slaveOutletLocation11, slaveOutletWatt01=slaveOutletWatt01, slaveOutletWatt11=slaveOutletWatt11, ipmDevice=ipmDevice, slaveOutletCurrTh07=slaveOutletCurrTh07, ipmSlaveDeviceOutletOffTimeEntry=ipmSlaveDeviceOutletOffTimeEntry, slaveOutletOffTimeIndex=slaveOutletOffTimeIndex, ipmEmdAlarm2Normal=ipmEmdAlarm2Normal, receiverSeverityLevel=receiverSeverityLevel, ipmSlave04EmdAlarm1Normal=ipmSlave04EmdAlarm1Normal, ipmSlave03EmdAlarm1Active=ipmSlave03EmdAlarm1Active, ccOutStatusIndex=ccOutStatusIndex, ipmSlaveDeviceOutletNameEntry=ipmSlaveDeviceOutletNameEntry, ipmSlave02Inlet01OverHigh=ipmSlave02Inlet01OverHigh, ipmDeviceOutletNumber=ipmDeviceOutletNumber, slaveOutletAction08=slaveOutletAction08, outletConfigCurrentHighAction=outletConfigCurrentHighAction, slaveOutletOffTime06=slaveOutletOffTime06, ccOutControlControl=ccOutControlControl, slaveOutletOffTime10=slaveOutletOffTime10, slaveOutletName12=slaveOutletName12, ipmSlave03Inlet01NotOverHigh=ipmSlave03Inlet01NotOverHigh, ipmEmdTemperatureNotLow=ipmEmdTemperatureNotLow, ipmSlaveDeviceOutletNameTable=ipmSlaveDeviceOutletNameTable, ipmEnvEmdStatusAlarm1=ipmEnvEmdStatusAlarm1, outletControlIndex=outletControlIndex, ipmInletVoltageNotTooHigh=ipmInletVoltageNotTooHigh, ipmEnvEmdStatusHumidity=ipmEnvEmdStatusHumidity, slaveOutletKwatt06=slaveOutletKwatt06, ipmSlaveDeviceOutletLocationTable=ipmSlaveDeviceOutletLocationTable, ipmSlave04EmdHumidityTooLow=ipmSlave04EmdHumidityTooLow, ipmSlave03EmdAlarm1Normal=ipmSlave03EmdAlarm1Normal, ipmEnvEmd=ipmEnvEmd, ipmSlave01Inlet01NotUnderLow=ipmSlave01Inlet01NotUnderLow, ipmSlave01Inlet02NotUnderLow=ipmSlave01Inlet02NotUnderLow, ipmSlaveOutletConfig=ipmSlaveOutletConfig, outletConfigIndex=outletConfigIndex, outletConfigLocation=outletConfigLocation, ipmSlave02Inlet01CurrentOverTh=ipmSlave02Inlet01CurrentOverTh, slaveOutletName10=slaveOutletName10, slaveOutletAction07=slaveOutletAction07, slaveOutletCurrTh04=slaveOutletCurrTh04, ipmAgentAccessControlEntry=ipmAgentAccessControlEntry, ipmSlave03Inlet01UnderLow=ipmSlave03Inlet01UnderLow, ipmEnvEmdConfigHumiHighStatus=ipmEnvEmdConfigHumiHighStatus, ipmSlave04Inlet01NotCurrentOverTh=ipmSlave04Inlet01NotCurrentOverTh, ipmIdent=ipmIdent, slaveOutletKwatt01=slaveOutletKwatt01, slaveOutletName02=slaveOutletName02, slaveOutletAction09=slaveOutletAction09, ipmEnvEmdConfigEmdName=ipmEnvEmdConfigEmdName, outletStatusKwatt=outletStatusKwatt, ipmSlave02EmdTemperatureTooLow=ipmSlave02EmdTemperatureTooLow, slaveOutletAction12=slaveOutletAction12, ipmSlave04EmdHumidityNotHigh=ipmSlave04EmdHumidityNotHigh, ipmSlave04Inlet02OverHigh=ipmSlave04Inlet02OverHigh, slaveOutletCurrTh08=slaveOutletCurrTh08, ipmAgentNetworkIpSubnet=ipmAgentNetworkIpSubnet, ipmAgentNtpTimeZone=ipmAgentNtpTimeZone, ipmSlaveOutletStatus=ipmSlaveOutletStatus, ccOutConfigOpenDelay=ccOutConfigOpenDelay, slaveOutletCurrTh12=slaveOutletCurrTh12, ipmSlave02EmdTemperatureNotLow=ipmSlave02EmdTemperatureNotLow, slaveOutletWatt06=slaveOutletWatt06, ipmSlave04Inlet01NotOverHigh=ipmSlave04Inlet01NotOverHigh, ipmEmdTemperatureTooHigh=ipmEmdTemperatureTooHigh, slaveOutletKwatt08=slaveOutletKwatt08, ipmInletFrequencyNotTooLow=ipmInletFrequencyNotTooLow, slaveOutletName03=slaveOutletName03, ipmSlave03EmdAlarm2Active=ipmSlave03EmdAlarm2Active, slaveOutletLocation03=slaveOutletLocation03, slaveOutletOffTime08=slaveOutletOffTime08, ipmDeviceInletStatusTable=ipmDeviceInletStatusTable, slaveOutletLocation09=slaveOutletLocation09, ipmAgentNtpIpAddress=ipmAgentNtpIpAddress, ipmSlave05Inlet02NotUnderLow=ipmSlave05Inlet02NotUnderLow, ipmDeviceOutlet=ipmDeviceOutlet, ipmInletCurrentTooHigh=ipmInletCurrentTooHigh, slaveOutletKwatt07=slaveOutletKwatt07, ipmSlave03Inlet01NotUnderLow=ipmSlave03Inlet01NotUnderLow, slaveOutletOnTime11=slaveOutletOnTime11, ipmSlave05EmdHumidityTooHigh=ipmSlave05EmdHumidityTooHigh, ipmEmdHumidityTooLow=ipmEmdHumidityTooLow, inletSlaveStatusWH2=inletSlaveStatusWH2, ipmAgentNetworkDhcpControl=ipmAgentNetworkDhcpControl, slaveOutletLocation04=slaveOutletLocation04, ipmEnvEmdConfigHumiHighSetPoint=ipmEnvEmdConfigHumiHighSetPoint, slaveOutletOffTime12=slaveOutletOffTime12, ipmIdentAgentSoftwareVersion=ipmIdentAgentSoftwareVersion, ipmAgentAccessControlTable=ipmAgentAccessControlTable, ipmAgentNetworkTftpControl=ipmAgentNetworkTftpControl, outletConfigOffDelay=outletConfigOffDelay, ipmDeviceSlaveInletStatusEntry=ipmDeviceSlaveInletStatusEntry, ipmSlave03Inlet02OverHigh=ipmSlave03Inlet02OverHigh, ccOutStatusTimeOnState=ccOutStatusTimeOnState, ipmEmdHumidityTooHigh=ipmEmdHumidityTooHigh, ipmSlave03Inlet02CurrentOverTh=ipmSlave03Inlet02CurrentOverTh, ipmDeviceInlet=ipmDeviceInlet, ipmAgentMibVersion=ipmAgentMibVersion, ipmAgentTimeTime=ipmAgentTimeTime, slaveOutletOnTime06=slaveOutletOnTime06, ipmSlaveState=ipmSlaveState, ipmEnvEmdConfigAlarm2Name=ipmEnvEmdConfigAlarm2Name, ipmSlaveStateEntry=ipmSlaveStateEntry, ipmEnvEmdConfigTempLowSetPoint=ipmEnvEmdConfigTempLowSetPoint, ipmSlave04Inlet02CurrentOverTh=ipmSlave04Inlet02CurrentOverTh, ipmEnvEmdConfigHumiOffset=ipmEnvEmdConfigHumiOffset, slaveOutletOnTime05=slaveOutletOnTime05, ipmSlave04Inlet01NotUnderLow=ipmSlave04Inlet01NotUnderLow, slaveOutletOffTime03=slaveOutletOffTime03, ipmSlave04EmdTemperatureTooHigh=ipmSlave04EmdTemperatureTooHigh, ipmAgentTimeDate=ipmAgentTimeDate, ipmEmdAlarm1Active=ipmEmdAlarm1Active, inletConfigVoltageLowAction=inletConfigVoltageLowAction, accessControlAddr=accessControlAddr, slaveOutletCurrent04=slaveOutletCurrent04, ipmAgentTrapAckSignature=ipmAgentTrapAckSignature, inletSlaveStatusFrequency2=inletSlaveStatusFrequency2, ipmAgent=ipmAgent, ipmSlave04EmdHumidityTooHigh=ipmSlave04EmdHumidityTooHigh, ipmSlaveDeviceOutletCurrentEntry=ipmSlaveDeviceOutletCurrentEntry, ipmSlave05Inlet02OverHigh=ipmSlave05Inlet02OverHigh, inletSlaveStatusWH=inletSlaveStatusWH, ipmEnvEmdConfigAlarm1Name=ipmEnvEmdConfigAlarm1Name, ipmEmdTemperatureTooLow=ipmEmdTemperatureTooLow, ipmSlave02Inlet02NotOverHigh=ipmSlave02Inlet02NotOverHigh, ipmSlave05Inlet02CurrentOverTh=ipmSlave05Inlet02CurrentOverTh, ipmInletVoltageNotTooLow=ipmInletVoltageNotTooLow, ipmSlave05EmdAlarm1Normal=ipmSlave05EmdAlarm1Normal, inletConfigCurrentHigh=inletConfigCurrentHigh, slaveOutletName07=slaveOutletName07, inletConfigVoltageHigh=inletConfigVoltageHigh, ipmSlave03Inlet02NotCurrentOverTh=ipmSlave03Inlet02NotCurrentOverTh, outletConfigOnDelay=outletConfigOnDelay, slaveOutletCurrTh05=slaveOutletCurrTh05, ipmSlave05Inlet02UnderLow=ipmSlave05Inlet02UnderLow, ipmDeviceCcOutConfigTable=ipmDeviceCcOutConfigTable, ipmDeviceSlaveInletStatusTable=ipmDeviceSlaveInletStatusTable, ipmSlave04EmdAlarm1Active=ipmSlave04EmdAlarm1Active, slaveOutletKwatt05=slaveOutletKwatt05, ipmSlave01Inlet01UnderLow=ipmSlave01Inlet01UnderLow, slaveOutletLocation02=slaveOutletLocation02, ipmDeviceCcOutConfigEntry=ipmDeviceCcOutConfigEntry, slaveOutletName08=slaveOutletName08, ipmDeviceCcOutControlEntry=ipmDeviceCcOutControlEntry, slaveOutletCurrTh01=slaveOutletCurrTh01, ipmSlave02OutletCurrentOverTh=ipmSlave02OutletCurrentOverTh, ipmSlave02EmdHumidityTooLow=ipmSlave02EmdHumidityTooLow, slaveOutletWatt10=slaveOutletWatt10, ipmSlave01OutletCurrentOverTh=ipmSlave01OutletCurrentOverTh, ipmSlave02Inlet01NotCurrentOverTh=ipmSlave02Inlet01NotCurrentOverTh, ipmIdentName=ipmIdentName, ipmAgentControl=ipmAgentControl, ipmSlave01EmdHumidityNotHigh=ipmSlave01EmdHumidityNotHigh, ipmSlave05EmdTemperatureNotLow=ipmSlave05EmdTemperatureNotLow, slaveOutletOffTime07=slaveOutletOffTime07, ipmSlave04Inlet02NotCurrentOverTh=ipmSlave04Inlet02NotCurrentOverTh, ipmSlave03EmdTemperatureTooHigh=ipmSlave03EmdTemperatureTooHigh, ipmSlave03Inlet02NotOverHigh=ipmSlave03Inlet02NotOverHigh, slaveOutletCurrent06=slaveOutletCurrent06, ipmSlave01EmdAlarm2Active=ipmSlave01EmdAlarm2Active, slaveOutletWatt12=slaveOutletWatt12, slaveStateControl01=slaveStateControl01, slaveInletConfigVoltageLow=slaveInletConfigVoltageLow, inletConfigCurrentHighAction=inletConfigCurrentHighAction, ipmSlave03Inlet01NotCurrentOverTh=ipmSlave03Inlet01NotCurrentOverTh, ipmEnvEmdConfigHumiLowStatus=ipmEnvEmdConfigHumiLowStatus, slaveOutletKwatt02=slaveOutletKwatt02, ipmSlaveDeviceOutletWattEntry=ipmSlaveDeviceOutletWattEntry, ipmSlave02Inlet01NotUnderLow=ipmSlave02Inlet01NotUnderLow, ipmOutletCurrentNotTooHigh=ipmOutletCurrentNotTooHigh, ipmSlave04Inlet02NotOverHigh=ipmSlave04Inlet02NotOverHigh, ipmDeviceCcOutStatusEntry=ipmDeviceCcOutStatusEntry, ipmEmdAlarm1Normal=ipmEmdAlarm1Normal, ipmEnv=ipmEnv, ccOutConfigCloseDelay=ccOutConfigCloseDelay, trapsReceiverAddr=trapsReceiverAddr, slaveInletConfigVoltageHigh=slaveInletConfigVoltageHigh) |
class AioDiskDBException(Exception):
pass
class RunningException(AioDiskDBException):
pass
class NotRunningException(AioDiskDBException):
pass
class TimeoutException(AioDiskDBException):
pass
class ReadTimeoutException(AioDiskDBException):
pass
class DBNotInitializedException(AioDiskDBException):
pass
class InvalidDataFileException(AioDiskDBException):
pass
class ReadOnlyDatabaseException(AioDiskDBException):
pass
class FilesInconsistencyException(AioDiskDBException):
pass
class WriteFailedException(AioDiskDBException):
pass
class InvalidConfigurationException(AioDiskDBException):
pass
class EmptyTransactionException(AioDiskDBException):
pass
class TransactionCommitOnGoingException(AioDiskDBException):
pass
class TransactionAlreadyCommittedException(AioDiskDBException):
pass
class InvalidDBStateException(AioDiskDBException):
pass
class IndexDoesNotExist(AioDiskDBException):
pass
class EmptyPayloadException(AioDiskDBException):
pass
class InvalidTrimCommandException(AioDiskDBException):
pass
| class Aiodiskdbexception(Exception):
pass
class Runningexception(AioDiskDBException):
pass
class Notrunningexception(AioDiskDBException):
pass
class Timeoutexception(AioDiskDBException):
pass
class Readtimeoutexception(AioDiskDBException):
pass
class Dbnotinitializedexception(AioDiskDBException):
pass
class Invaliddatafileexception(AioDiskDBException):
pass
class Readonlydatabaseexception(AioDiskDBException):
pass
class Filesinconsistencyexception(AioDiskDBException):
pass
class Writefailedexception(AioDiskDBException):
pass
class Invalidconfigurationexception(AioDiskDBException):
pass
class Emptytransactionexception(AioDiskDBException):
pass
class Transactioncommitongoingexception(AioDiskDBException):
pass
class Transactionalreadycommittedexception(AioDiskDBException):
pass
class Invaliddbstateexception(AioDiskDBException):
pass
class Indexdoesnotexist(AioDiskDBException):
pass
class Emptypayloadexception(AioDiskDBException):
pass
class Invalidtrimcommandexception(AioDiskDBException):
pass |
''' Provides a set of normalizing functions
'''
FAKE_SCROLL_ID = 'fake-scroll-id'
def normalizeResponse(response):
'''
Take raw a raw Elasticsearch response and fix it for the Fake
implemenation
'''
# Remove these fields
remove = ['_shards', 'timed_out', 'took']
for field in remove:
if field in response:
del response[field]
# Fix the index (Neutralize -v1 vs. -v2)
for hit in response['hits']['hits']:
if 'v1' in hit['_index'] or 'v2' in hit['_index']:
tokens = hit['_index'].split('-')
hit['_index'] = '-'.join(tokens[:-1])
# Neutralize the _scroll_id
response['_scroll_id'] = FAKE_SCROLL_ID
return response
| """ Provides a set of normalizing functions
"""
fake_scroll_id = 'fake-scroll-id'
def normalize_response(response):
"""
Take raw a raw Elasticsearch response and fix it for the Fake
implemenation
"""
remove = ['_shards', 'timed_out', 'took']
for field in remove:
if field in response:
del response[field]
for hit in response['hits']['hits']:
if 'v1' in hit['_index'] or 'v2' in hit['_index']:
tokens = hit['_index'].split('-')
hit['_index'] = '-'.join(tokens[:-1])
response['_scroll_id'] = FAKE_SCROLL_ID
return response |
# input
drink_type = input()
sugar = input()
drinks_count = int(input())
drink_price = 0
if drink_type == 'Espresso':
if sugar == 'Without':
drink_price = 0.90
elif sugar == 'Normal':
drink_price = 1
elif sugar == 'Extra':
drink_price = 1.20
elif drink_type == 'Cappuccino':
if sugar == 'Without':
drink_price = 1
elif sugar == 'Normal':
drink_price = 1.20
elif sugar == 'Extra':
drink_price = 1.60
elif drink_type == 'Tea':
if sugar == 'Without':
drink_price = 0.50
elif sugar == 'Normal':
drink_price = 0.60
elif sugar == 'Extra':
drink_price = 0.70
final_price = drinks_count * drink_price
if sugar == 'Without':
discount = final_price * 0.35
final_price -= discount
if drink_type == 'Espresso':
if drinks_count > 5:
discount = final_price * 0.25
final_price -= discount
if final_price > 15:
discount = final_price * 0.20
final_price -= discount
print(f'You bought {drinks_count} cups of {drink_type} for {final_price:.2f} lv.') | drink_type = input()
sugar = input()
drinks_count = int(input())
drink_price = 0
if drink_type == 'Espresso':
if sugar == 'Without':
drink_price = 0.9
elif sugar == 'Normal':
drink_price = 1
elif sugar == 'Extra':
drink_price = 1.2
elif drink_type == 'Cappuccino':
if sugar == 'Without':
drink_price = 1
elif sugar == 'Normal':
drink_price = 1.2
elif sugar == 'Extra':
drink_price = 1.6
elif drink_type == 'Tea':
if sugar == 'Without':
drink_price = 0.5
elif sugar == 'Normal':
drink_price = 0.6
elif sugar == 'Extra':
drink_price = 0.7
final_price = drinks_count * drink_price
if sugar == 'Without':
discount = final_price * 0.35
final_price -= discount
if drink_type == 'Espresso':
if drinks_count > 5:
discount = final_price * 0.25
final_price -= discount
if final_price > 15:
discount = final_price * 0.2
final_price -= discount
print(f'You bought {drinks_count} cups of {drink_type} for {final_price:.2f} lv.') |
a = [1, 2, 3, 4]
sumNum = 0
for i in a:
# In the for loop, "i" will sequentially read the values in list a.
sumNum += i
# sumNum = sumNum + i, means, 0 + 1 > (0+1) + 2 > (1+2) + 3 > (3+3) + 4
print(sumNum)
| a = [1, 2, 3, 4]
sum_num = 0
for i in a:
sum_num += i
print(sumNum) |
# Constant.py
# Color
BLUE = 'BLUE'
GREEN = 'GREEN'
# LISTENER
HTTPS_TUPLE = ('HTTPS', 443)
HTTP_TUPLE = ('HTTP', 80)
# Target group
TARGET_GROUP_COLOR_TAG_NAME = 'Color'
TARGET_GROUP_TYPE_TAG_NAME = 'Type'
# Default type means 'api gateway'
TARGET_GROUP_DEFAULT_TYPE = 'DEFAULT'
TARGET_GROUP_MAINTENANCE_TYPE = 'MAINTENANCE'
# ECR
ECR_SERVICE_PREFIX = 'lcdp-'
# ECS
DEFAULT_DESIRED_COUNT = 2
DEFAULT_MAX_CAPACITY = 4
HEALTHCHECK_RETRY_LIMIT = 26
HEALTHCHECK_SLEEPING_TIME = 30
ECS_SERVICE_NAMESPACE = 'ecs'
# SES
FROM_MAIL = '[email protected]'
DEVELOPERS_MAIL = '[email protected]'
DEFAULT_CHARSET = 'UTF-8'
# ASG
DEFAULT_SCALABLE_DIMENSION = 'ecs:service:DesiredCount'
| blue = 'BLUE'
green = 'GREEN'
https_tuple = ('HTTPS', 443)
http_tuple = ('HTTP', 80)
target_group_color_tag_name = 'Color'
target_group_type_tag_name = 'Type'
target_group_default_type = 'DEFAULT'
target_group_maintenance_type = 'MAINTENANCE'
ecr_service_prefix = 'lcdp-'
default_desired_count = 2
default_max_capacity = 4
healthcheck_retry_limit = 26
healthcheck_sleeping_time = 30
ecs_service_namespace = 'ecs'
from_mail = '[email protected]'
developers_mail = '[email protected]'
default_charset = 'UTF-8'
default_scalable_dimension = 'ecs:service:DesiredCount' |
class ConfigurationException(Exception):
pass
class InternalException(Exception):
pass
class InvalidMessage(Exception):
pass
class InvalidPartialUpdate(Exception):
pass
| class Configurationexception(Exception):
pass
class Internalexception(Exception):
pass
class Invalidmessage(Exception):
pass
class Invalidpartialupdate(Exception):
pass |
def f(x: int):
y = x
def g(i: int):
f(i + 2)
g(3)
| def f(x: int):
y = x
def g(i: int):
f(i + 2)
g(3) |
def get_int(prompt, int_range):
i = 0
while True:
try:
i = int(input(prompt))
if i in int_range:
break
except ValueError:
pass
return i
| def get_int(prompt, int_range):
i = 0
while True:
try:
i = int(input(prompt))
if i in int_range:
break
except ValueError:
pass
return i |
fights = int(input())
helmet_price = float(input())
sword_price = float(input())
shield_price = float(input())
armor_price = float(input())
shield_counter = 0
expenses = 0
for fight in range(1, fights + 1):
if fight % 2 == 0:
expenses += helmet_price
if fight % 3 == 0:
expenses += sword_price
if fight % 3 == 0 and fight % 2 == 0:
expenses += shield_price
shield_counter += 1
if shield_counter % 2 == 0:
expenses += armor_price
print(f"Gladiator expenses: {expenses:.2f} aureus")
# lose_battle = int(input())
#
# helmet_price = float(input())
# sword_price = float(input())
# shield_price = float(input())
# armor_price = float(input())
#
# brakes = {"helmet": 0, "sword": 0, "shield": 0, "armor": 0}
# counter = 0
# for battle in range(1, lose_battle + 1):
# if battle % 2 == 0:
# brakes["helmet"] += 1
# if battle % 3 == 0:
# brakes["sword"] += 1
# if battle % 2 == 0:
# brakes["shield"] += 1
# counter += 1
# if counter % 2 == 0:
# brakes["armor"] += 1
# counter = 0
#
# total_price = brakes["helmet"] * helmet_price + brakes["shield"] * shield_price + brakes["sword"] * sword_price + brakes["armor"] * armor_price
#
# print(f"Gladiator expenses: {total_price:.2f} aureus") | fights = int(input())
helmet_price = float(input())
sword_price = float(input())
shield_price = float(input())
armor_price = float(input())
shield_counter = 0
expenses = 0
for fight in range(1, fights + 1):
if fight % 2 == 0:
expenses += helmet_price
if fight % 3 == 0:
expenses += sword_price
if fight % 3 == 0 and fight % 2 == 0:
expenses += shield_price
shield_counter += 1
if shield_counter % 2 == 0:
expenses += armor_price
print(f'Gladiator expenses: {expenses:.2f} aureus') |
output = '''
Using interface 'wlan0'
bssid=14:d6:4d:ec:1e:88
ssid=AU Test Network
id=1
mode=station
pairwise_cipher=CCMP
group_cipher=CCMP
key_mgmt=WPA2-PSK
wpa_state=COMPLETED
ip_address=192.168.20.70
p2p_device_address=e0:cb:1d:3d:84:71
address=e0:cb:1d:3d:84:71
'''
mac = "e0:cb:1d:3d:84:71"
ip = "192.168.20.70"
ssid="AU Test Network"
| output = "\nUsing interface 'wlan0'\nbssid=14:d6:4d:ec:1e:88\nssid=AU Test Network\nid=1\nmode=station\npairwise_cipher=CCMP\ngroup_cipher=CCMP\nkey_mgmt=WPA2-PSK\nwpa_state=COMPLETED\nip_address=192.168.20.70\np2p_device_address=e0:cb:1d:3d:84:71\naddress=e0:cb:1d:3d:84:71\n"
mac = 'e0:cb:1d:3d:84:71'
ip = '192.168.20.70'
ssid = 'AU Test Network' |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
MONGO_URL = 'localhost'
MONGO_DB = 'huawei'
MONGO_TABLE = 'huawei_product'
| mongo_url = 'localhost'
mongo_db = 'huawei'
mongo_table = 'huawei_product' |
class Solution:
def minInsertions(self, s: str) -> int:
# use stack
stack = []
count = 0
i=0
while i < len(s):
if s[i] == '(':
stack.append(s[i])
i += 1
else:
# when facing empty stack
if not stack:
if i+1 < len(s) and s[i+1] == ")":
count += 1 # add one "("
i += 2
else:
count += 2 # add one "(" and one ")"
i += 1
else:
# check two positions
if i + 1 < len(s) and s[i+1] == ")":
stack.pop()
i += 2
else:
count += 1 # add one ")"
stack.pop()
i += 1
rest = len(stack)*2 # still have "(" on the stack. one "(" pairs with two ")"
return count + rest
s = "(()))"
res = Solution().minInsertions(s)
print(res) | class Solution:
def min_insertions(self, s: str) -> int:
stack = []
count = 0
i = 0
while i < len(s):
if s[i] == '(':
stack.append(s[i])
i += 1
elif not stack:
if i + 1 < len(s) and s[i + 1] == ')':
count += 1
i += 2
else:
count += 2
i += 1
elif i + 1 < len(s) and s[i + 1] == ')':
stack.pop()
i += 2
else:
count += 1
stack.pop()
i += 1
rest = len(stack) * 2
return count + rest
s = '(()))'
res = solution().minInsertions(s)
print(res) |
def test_loop(num):
for a in num:
print ("a : ", a)
yield a
num = [1, 2, 3]
tl = test_loop(num)
for aa in tl:
print ("aa : ", aa)
| def test_loop(num):
for a in num:
print('a : ', a)
yield a
num = [1, 2, 3]
tl = test_loop(num)
for aa in tl:
print('aa : ', aa) |
class SchedulerNoam(object):
def __init__(self, warmup: int, model_size: int):
super().__init__()
self.warmup = warmup
self.model_size = model_size
def get_learning_rate(self, step: int):
step = max(1, step)
return self.model_size ** (-0.5) * min(step ** (-0.5), step * self.warmup ** (-1.5))
| class Schedulernoam(object):
def __init__(self, warmup: int, model_size: int):
super().__init__()
self.warmup = warmup
self.model_size = model_size
def get_learning_rate(self, step: int):
step = max(1, step)
return self.model_size ** (-0.5) * min(step ** (-0.5), step * self.warmup ** (-1.5)) |
names=['yash','manan','jahnavi','rahul','rutu','Harry']
print(names[0])
names[1]='Manan Sanghavi'
print(names[1])
names[1]=3
print(names[1])
print(type(names))
| names = ['yash', 'manan', 'jahnavi', 'rahul', 'rutu', 'Harry']
print(names[0])
names[1] = 'Manan Sanghavi'
print(names[1])
names[1] = 3
print(names[1])
print(type(names)) |
class Solution:
def numFactoredBinaryTrees(self, A: 'List[int]') -> 'int':
ids = {x : i for i, x in enumerate(A)}
g = {x : [] for x in A}
A.sort()
for i in range(len(A)):
for j in range(len(A)):
if A[j] % A[i] == 0 and (A[j] // A[i]) in ids:
g[A[j]].append((A[i], A[j] // A[i]))
mod = (10 ** 9) + 7
memo = {}
def dp(x):
if len(g[x]) == 0: return 1
if x in memo: return memo[x]
memo[x] = 1
for childs in g[x]:
memo[x] += dp(childs[0]) * dp(childs[1])
if memo[x] >= mod: memo[x] %= mod
return memo[x]
total = 0
for a in A:
total += dp(a)
if total >= mod: total %= mod
return total | class Solution:
def num_factored_binary_trees(self, A: 'List[int]') -> 'int':
ids = {x: i for (i, x) in enumerate(A)}
g = {x: [] for x in A}
A.sort()
for i in range(len(A)):
for j in range(len(A)):
if A[j] % A[i] == 0 and A[j] // A[i] in ids:
g[A[j]].append((A[i], A[j] // A[i]))
mod = 10 ** 9 + 7
memo = {}
def dp(x):
if len(g[x]) == 0:
return 1
if x in memo:
return memo[x]
memo[x] = 1
for childs in g[x]:
memo[x] += dp(childs[0]) * dp(childs[1])
if memo[x] >= mod:
memo[x] %= mod
return memo[x]
total = 0
for a in A:
total += dp(a)
if total >= mod:
total %= mod
return total |
# Python does not have built-in support for Arrays,
# but Python Lists can be used instead.
def showArrays():
cars = ["Ford", "Volvo", "BMW"]
for car in cars:
print("Car Type : ", car)
# Add some new cars
cars.append("Mercedes")
cars.append("Maruti")
print("All cars : ", cars)
# Show all car along with index value
for i in cars:
carIndex = cars.index(i)
print(i + "<=========>" + str(carIndex))
# Find the size of cars list
print("Size of the list : ",len(cars))
#delete by index
cars.pop(3) # Third index
# Remove by Object
cars.remove("Maruti")
print("Now all cars : ",cars)
if __name__ == "__main__":
showArrays()
| def show_arrays():
cars = ['Ford', 'Volvo', 'BMW']
for car in cars:
print('Car Type : ', car)
cars.append('Mercedes')
cars.append('Maruti')
print('All cars : ', cars)
for i in cars:
car_index = cars.index(i)
print(i + '<=========>' + str(carIndex))
print('Size of the list : ', len(cars))
cars.pop(3)
cars.remove('Maruti')
print('Now all cars : ', cars)
if __name__ == '__main__':
show_arrays() |
data = open("input.txt", "r").readlines()
fold = []
points = []
for line in data:
if len(line.strip()) == 0:
continue
elif line.startswith("fold"):
[x_or_y, value] = line.replace("fold along ", "").split("=")
fold.append((int(value) if x_or_y == "x" else 0,
int(value) if x_or_y == "y" else 0))
else:
[x, y] = line.split(",")
points.append((int(x), int(y)))
def fold_paper(points, fold_points=[]):
result = set(points)
for f in fold_points:
next_p = set()
idx = 1 if f[0] == 0 else 0
fp = f[idx]
for p in result:
if p[idx] < fp:
next_p.add(p)
if p[idx] > fp:
next_p.add(
(2*fp - p[0] if idx == 0 else p[0],
2*fp - p[1] if idx == 1 else p[1])
)
result = next_p
return result
r1 = fold_paper(points, fold[0:1])
print("The answer to part 1 is", len(r1))
def print_origami(result):
for y in range(0, max([p[1] for p in result])+2):
for x in range(0, max([p[0] for p in result])+2):
if (x, y) in result:
print("x", sep="", end="")
else:
print(".", sep="", end="")
print("")
print("The answer to part 2 is")
result = fold_paper(points, fold)
print_origami(result)
| data = open('input.txt', 'r').readlines()
fold = []
points = []
for line in data:
if len(line.strip()) == 0:
continue
elif line.startswith('fold'):
[x_or_y, value] = line.replace('fold along ', '').split('=')
fold.append((int(value) if x_or_y == 'x' else 0, int(value) if x_or_y == 'y' else 0))
else:
[x, y] = line.split(',')
points.append((int(x), int(y)))
def fold_paper(points, fold_points=[]):
result = set(points)
for f in fold_points:
next_p = set()
idx = 1 if f[0] == 0 else 0
fp = f[idx]
for p in result:
if p[idx] < fp:
next_p.add(p)
if p[idx] > fp:
next_p.add((2 * fp - p[0] if idx == 0 else p[0], 2 * fp - p[1] if idx == 1 else p[1]))
result = next_p
return result
r1 = fold_paper(points, fold[0:1])
print('The answer to part 1 is', len(r1))
def print_origami(result):
for y in range(0, max([p[1] for p in result]) + 2):
for x in range(0, max([p[0] for p in result]) + 2):
if (x, y) in result:
print('x', sep='', end='')
else:
print('.', sep='', end='')
print('')
print('The answer to part 2 is')
result = fold_paper(points, fold)
print_origami(result) |
# #Q1
def eh_quadrada(mat):
null=[]
l=len(mat)
if mat == null or l == len(mat[0]):
return True
for i in range(l):
if mat[i] == null:
return True
else:
return False
#Q2
def conta_numero(n,mat):
ls=[]
l=len(mat)
if mat == ls:
return 0
for i in range(l):
for j in range(len(mat[0])):
if mat[i][j] == n:
ls.append(n)
return len(ls)
#Q3
def media_matriz(mat):
ls=[]
l=len(mat)
if mat == ls:
return 0
for i in range(l):
for j in range(len(mat[0])):
ls.append(mat[i][j])
s=sum(ls)/(l * len(mat[0]))
return round(s,2)
#Q4
def melhor_volta(mat):
cnls1=[]
cnls2=[]
for i in range(len(mat)):
cnls1.append(min(mat[i]))
cnls2.append(mat[i].index(min(mat[i])))
indtemp=cnls1.index(min(cnls1))
indvolt=cnls2[indtemp]
mat1=list(range(0,6))
venc=mat1[indtemp]
return (venc+1,min(cnls1),indvolt+1)
#Q5
def busca(s,mat):
ls=[]
for i in range(len(mat)):
for j in range(len(mat[i])):
if s == mat[i][j]:
ls.append(mat[i])
for k in range(len(ls)):
if s in ls[k]:
ls[k].remove(s)
return ls | def eh_quadrada(mat):
null = []
l = len(mat)
if mat == null or l == len(mat[0]):
return True
for i in range(l):
if mat[i] == null:
return True
else:
return False
def conta_numero(n, mat):
ls = []
l = len(mat)
if mat == ls:
return 0
for i in range(l):
for j in range(len(mat[0])):
if mat[i][j] == n:
ls.append(n)
return len(ls)
def media_matriz(mat):
ls = []
l = len(mat)
if mat == ls:
return 0
for i in range(l):
for j in range(len(mat[0])):
ls.append(mat[i][j])
s = sum(ls) / (l * len(mat[0]))
return round(s, 2)
def melhor_volta(mat):
cnls1 = []
cnls2 = []
for i in range(len(mat)):
cnls1.append(min(mat[i]))
cnls2.append(mat[i].index(min(mat[i])))
indtemp = cnls1.index(min(cnls1))
indvolt = cnls2[indtemp]
mat1 = list(range(0, 6))
venc = mat1[indtemp]
return (venc + 1, min(cnls1), indvolt + 1)
def busca(s, mat):
ls = []
for i in range(len(mat)):
for j in range(len(mat[i])):
if s == mat[i][j]:
ls.append(mat[i])
for k in range(len(ls)):
if s in ls[k]:
ls[k].remove(s)
return ls |
class Solution:
def insertIntoBST(self, root: TreeNode, val: int) -> TreeNode:
if not root:
return TreeNode(val)
if val > root.val:
root.right = self.insertIntoBST(root.right, val)
else:
root.left = self.insertIntoBST(root.left, val)
return root
| class Solution:
def insert_into_bst(self, root: TreeNode, val: int) -> TreeNode:
if not root:
return tree_node(val)
if val > root.val:
root.right = self.insertIntoBST(root.right, val)
else:
root.left = self.insertIntoBST(root.left, val)
return root |
#Kunal Gautam
#Codewars : @Kunalpod
#Problem name: Difference of Volumes of Cuboids
#Problem level: 8 kyu
def find_difference(a, b):
return abs((a[0]*a[1]*a[2])-(b[0]*b[1]*b[2]))
| def find_difference(a, b):
return abs(a[0] * a[1] * a[2] - b[0] * b[1] * b[2]) |
# constants #
team_number = 0
# flags #
# simulation
sim_enable_flag = False
sim_activate_flag = False
# telemetry transmission
cx_flag = False
sp1x_flag = False
sp2x_flag = False
# mqtt
mqtt_flag = False
# payload deployment
sp1_deployed_flag = False
sp2_deployed_flag = False | team_number = 0
sim_enable_flag = False
sim_activate_flag = False
cx_flag = False
sp1x_flag = False
sp2x_flag = False
mqtt_flag = False
sp1_deployed_flag = False
sp2_deployed_flag = False |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.