content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
class BasePermission(object): def __init__(self, queryset, lookup_field): self.queryset = queryset self.lookup_field = lookup_field def has_permission(self, user, action, pk): pass class AllowAny(BasePermission): def has_permission(self, user, action, pk): return True class IsAuthenticated(BasePermission): def has_permission(self, user, action, pk): return user.pk and user.is_authenticated
class Basepermission(object): def __init__(self, queryset, lookup_field): self.queryset = queryset self.lookup_field = lookup_field def has_permission(self, user, action, pk): pass class Allowany(BasePermission): def has_permission(self, user, action, pk): return True class Isauthenticated(BasePermission): def has_permission(self, user, action, pk): return user.pk and user.is_authenticated
items = [] class ItemsModel(): def __init__(self): self.items = items def add_item(self, name, price, image, quantity): self.item_id = len(items)+1 item = { "item_id": self.item_id, "name": name, "price": price, "image": image, "quantity": quantity } self.items.append(item) return item def get_all(self): return self.items def get_by_id(self, item_id): if len(items) > 0: for item in items: id = item.get('item_id') if id == item_id: return item def get_by_name_and_price(self, name, price): if len(items) > 0: for item in items: item_name = item.get('name') item_price = item.get('price') if name == item_name and price == item_price: return item
items = [] class Itemsmodel: def __init__(self): self.items = items def add_item(self, name, price, image, quantity): self.item_id = len(items) + 1 item = {'item_id': self.item_id, 'name': name, 'price': price, 'image': image, 'quantity': quantity} self.items.append(item) return item def get_all(self): return self.items def get_by_id(self, item_id): if len(items) > 0: for item in items: id = item.get('item_id') if id == item_id: return item def get_by_name_and_price(self, name, price): if len(items) > 0: for item in items: item_name = item.get('name') item_price = item.get('price') if name == item_name and price == item_price: return item
class Solution: def maxProfit(self, prices: List[int]) -> int: ret, mn = 0, float('inf') for price in prices: if price < mn: mn = price if price - mn > ret: ret = price-mn return ret
class Solution: def max_profit(self, prices: List[int]) -> int: (ret, mn) = (0, float('inf')) for price in prices: if price < mn: mn = price if price - mn > ret: ret = price - mn return ret
# Gerard Hanlon, 2018-13-02 # Factorial number is the number multiplied by all of the numbers smaller than it def sumall(upto): sumupto = 0 for i in range(1, upto + 1): sumupto = sumupto + i return sumupto print("The Factorial Number of the number 5 is: ", sumall(5)) print("The Factorial Number of the number 7 is: ", sumall(7)) print("The Factorial Number of the number 10 is: ", sumall(10))
def sumall(upto): sumupto = 0 for i in range(1, upto + 1): sumupto = sumupto + i return sumupto print('The Factorial Number of the number 5 is: ', sumall(5)) print('The Factorial Number of the number 7 is: ', sumall(7)) print('The Factorial Number of the number 10 is: ', sumall(10))
# # PySNMP MIB module A3COM-HUAWEI-EFM-COMMON-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/A3COM-HUAWEI-EFM-COMMON-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 16:49:58 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) # h3cEpon, = mibBuilder.importSymbols("A3COM-HUAWEI-OID-MIB", "h3cEpon") ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ConstraintsIntersection, ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsIntersection", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint") CounterBasedGauge64, = mibBuilder.importSymbols("HCNUM-TC", "CounterBasedGauge64") ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex") NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup") Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, Counter32, mib_2, TimeTicks, Integer32, ModuleIdentity, Bits, ObjectIdentity, IpAddress, Counter64, Gauge32, NotificationType, iso = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "Counter32", "mib-2", "TimeTicks", "Integer32", "ModuleIdentity", "Bits", "ObjectIdentity", "IpAddress", "Counter64", "Gauge32", "NotificationType", "iso") TextualConvention, DateAndTime, DisplayString, MacAddress = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DateAndTime", "DisplayString", "MacAddress") h3cEfmOamMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3)) h3cEfmOamMIB.setRevisions(('2004-10-24 00:00',)) if mibBuilder.loadTexts: h3cEfmOamMIB.setLastUpdated('200410240000Z') if mibBuilder.loadTexts: h3cEfmOamMIB.setOrganization('IETF Ethernet Interfaces and Hub MIB Working Group') h3cDot3OamMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1)) h3cDot3OamConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2)) class Dot3Oui(TextualConvention, OctetString): status = 'current' subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(3, 3) fixedLength = 3 h3cDot3OamTable = MibTable((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1), ) if mibBuilder.loadTexts: h3cDot3OamTable.setStatus('current') h3cDot3OamEntry = MibTableRow((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: h3cDot3OamEntry.setStatus('current') h3cDot3OamAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamAdminState.setStatus('current') h3cDot3OamOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("disabled", 1), ("linkfault", 2), ("passiveWait", 3), ("activeSendLocal", 4), ("sendLocalAndRemote", 5), ("sendLocalAndRemoteOk", 6), ("oamPeeringLocallyRejected", 7), ("oamPeeringRemotelyRejected", 8), ("operational", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamOperStatus.setStatus('current') h3cDot3OamMode = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("active", 1), ("passive", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamMode.setStatus('current') h3cDot3OamMaxOamPduSize = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(64, 1522))).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamMaxOamPduSize.setStatus('current') h3cDot3OamConfigRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamConfigRevision.setStatus('current') h3cDot3OamFunctionsSupported = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1, 6), Bits().clone(namedValues=NamedValues(("unidirectionalSupport", 0), ("loopbackSupport", 1), ("eventSupport", 2), ("variableSupport", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamFunctionsSupported.setStatus('current') h3cDot3OamPeerTable = MibTable((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2), ) if mibBuilder.loadTexts: h3cDot3OamPeerTable.setStatus('current') h3cDot3OamPeerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: h3cDot3OamPeerEntry.setStatus('current') h3cDot3OamPeerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("active", 1), ("inactive", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamPeerStatus.setStatus('current') h3cDot3OamPeerMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 2), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamPeerMacAddress.setStatus('current') h3cDot3OamPeerVendorOui = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 3), Dot3Oui()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamPeerVendorOui.setStatus('current') h3cDot3OamPeerVendorInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamPeerVendorInfo.setStatus('current') h3cDot3OamPeerMode = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("active", 1), ("passive", 2), ("unknown", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamPeerMode.setStatus('current') h3cDot3OamPeerMaxOamPduSize = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(64, 1522))).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamPeerMaxOamPduSize.setStatus('current') h3cDot3OamPeerConfigRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamPeerConfigRevision.setStatus('current') h3cDot3OamPeerFunctionsSupported = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 8), Bits().clone(namedValues=NamedValues(("unidirectionalSupport", 0), ("loopbackSupport", 1), ("eventSupport", 2), ("variableSupport", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamPeerFunctionsSupported.setStatus('current') h3cDot3OamLoopbackTable = MibTable((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 3), ) if mibBuilder.loadTexts: h3cDot3OamLoopbackTable.setStatus('current') h3cDot3OamLoopbackEntry = MibTableRow((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: h3cDot3OamLoopbackEntry.setStatus('current') h3cDot3OamLoopbackCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("noLoopback", 1), ("startRemoteLoopback", 2), ("stopRemoteLoopback", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamLoopbackCommand.setStatus('current') h3cDot3OamLoopbackStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("noLoopback", 1), ("initiatingLoopback", 2), ("remoteLoopback", 3), ("terminatingLoopback", 4), ("localLoopback", 5), ("unknown", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamLoopbackStatus.setStatus('current') h3cDot3OamLoopbackIgnoreRx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ignore", 1), ("process", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamLoopbackIgnoreRx.setStatus('current') h3cDot3OamStatsTable = MibTable((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4), ) if mibBuilder.loadTexts: h3cDot3OamStatsTable.setStatus('current') h3cDot3OamStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: h3cDot3OamStatsEntry.setStatus('current') h3cDot3OamInformationTx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamInformationTx.setStatus('current') h3cDot3OamInformationRx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamInformationRx.setStatus('current') h3cDot3OamUniqueEventNotificationTx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamUniqueEventNotificationTx.setStatus('current') h3cDot3OamUniqueEventNotificationRx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamUniqueEventNotificationRx.setStatus('current') h3cDot3OamDuplicateEventNotificationTx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamDuplicateEventNotificationTx.setStatus('current') h3cDot3OamDuplicateEventNotificationRx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamDuplicateEventNotificationRx.setStatus('current') h3cDot3OamLoopbackControlTx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamLoopbackControlTx.setStatus('current') h3cDot3OamLoopbackControlRx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamLoopbackControlRx.setStatus('current') h3cDot3OamVariableRequestTx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamVariableRequestTx.setStatus('current') h3cDot3OamVariableRequestRx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamVariableRequestRx.setStatus('current') h3cDot3OamVariableResponseTx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamVariableResponseTx.setStatus('current') h3cDot3OamVariableResponseRx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamVariableResponseRx.setStatus('current') h3cDot3OamOrgSpecificTx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamOrgSpecificTx.setStatus('current') h3cDot3OamOrgSpecificRx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamOrgSpecificRx.setStatus('current') h3cDot3OamUnsupportedCodesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamUnsupportedCodesTx.setStatus('current') h3cDot3OamUnsupportedCodesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamUnsupportedCodesRx.setStatus('current') h3cDot3OamFramesLostDueToOam = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamFramesLostDueToOam.setStatus('current') h3cDot3OamEventConfigTable = MibTable((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5), ) if mibBuilder.loadTexts: h3cDot3OamEventConfigTable.setStatus('current') h3cDot3OamEventConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: h3cDot3OamEventConfigEntry.setStatus('current') h3cDot3OamErrSymPeriodWindowHi = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 1), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrSymPeriodWindowHi.setStatus('current') h3cDot3OamErrSymPeriodWindowLo = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 2), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrSymPeriodWindowLo.setStatus('current') h3cDot3OamErrSymPeriodThresholdHi = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 3), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrSymPeriodThresholdHi.setStatus('current') h3cDot3OamErrSymPeriodThresholdLo = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 4), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrSymPeriodThresholdLo.setStatus('current') h3cDot3OamErrSymPeriodEvNotifEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrSymPeriodEvNotifEnable.setStatus('current') h3cDot3OamErrFramePeriodWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 6), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrFramePeriodWindow.setStatus('current') h3cDot3OamErrFramePeriodThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 7), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrFramePeriodThreshold.setStatus('current') h3cDot3OamErrFramePeriodEvNotifEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrFramePeriodEvNotifEnable.setStatus('current') h3cDot3OamErrFrameWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 9), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrFrameWindow.setStatus('current') h3cDot3OamErrFrameThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 10), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrFrameThreshold.setStatus('current') h3cDot3OamErrFrameEvNotifEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrFrameEvNotifEnable.setStatus('current') h3cDot3OamErrFrameSecsSummaryWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 9000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrFrameSecsSummaryWindow.setStatus('current') h3cDot3OamErrFrameSecsSummaryThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 900))).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrFrameSecsSummaryThreshold.setStatus('current') h3cDot3OamErrFrameSecsEvNotifEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: h3cDot3OamErrFrameSecsEvNotifEnable.setStatus('current') h3cDot3OamEventLogTable = MibTable((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6), ) if mibBuilder.loadTexts: h3cDot3OamEventLogTable.setStatus('current') h3cDot3OamEventLogEntry = MibTableRow((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogIndex")) if mibBuilder.loadTexts: h3cDot3OamEventLogEntry.setStatus('current') h3cDot3OamEventLogIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 1), Unsigned32()) if mibBuilder.loadTexts: h3cDot3OamEventLogIndex.setStatus('current') h3cDot3OamEventLogTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 2), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamEventLogTimestamp.setStatus('current') h3cDot3OamEventLogOui = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 3), Dot3Oui()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamEventLogOui.setStatus('current') h3cDot3OamEventLogType = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamEventLogType.setStatus('current') h3cDot3OamEventLogLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("local", 1), ("remote", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamEventLogLocation.setStatus('current') h3cDot3OamEventLogWindowHi = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamEventLogWindowHi.setStatus('current') h3cDot3OamEventLogWindowLo = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamEventLogWindowLo.setStatus('current') h3cDot3OamEventLogThresholdHi = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 8), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamEventLogThresholdHi.setStatus('current') h3cDot3OamEventLogThresholdLo = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 9), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamEventLogThresholdLo.setStatus('current') h3cDot3OamEventLogValue = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 10), CounterBasedGauge64()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamEventLogValue.setStatus('current') h3cDot3OamEventLogRunningTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 11), CounterBasedGauge64()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamEventLogRunningTotal.setStatus('current') h3cDot3OamEventLogEventTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 12), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: h3cDot3OamEventLogEventTotal.setStatus('current') h3cDot3OamTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 7)) h3cDot3OamTrapsPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 7, 0)) h3cDot3OamThresholdEvent = NotificationType((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 7, 0, 1)).setObjects(("IF-MIB", "ifIndex"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogTimestamp"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogOui"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogType"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogLocation"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogWindowHi"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogWindowLo"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogThresholdHi"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogThresholdLo"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogValue"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogRunningTotal"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogEventTotal")) if mibBuilder.loadTexts: h3cDot3OamThresholdEvent.setStatus('current') h3cDot3OamNonThresholdEvent = NotificationType((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 7, 0, 2)).setObjects(("IF-MIB", "ifIndex"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogTimestamp"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogOui"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogType"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogLocation"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogEventTotal")) if mibBuilder.loadTexts: h3cDot3OamNonThresholdEvent.setStatus('current') h3cDot3OamGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1)) h3cDot3OamCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 2)) h3cDot3OamCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 2, 1)).setObjects(("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamControlGroup"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamPeerGroup"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamStatsBaseGroup"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamLoopbackGroup"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrSymbolPeriodEventGroup"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrFramePeriodEventGroup"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrFrameEventGroup"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrFrameSecsSummaryEventGroup"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogGroup"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamNotificationGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3cDot3OamCompliance = h3cDot3OamCompliance.setStatus('current') h3cDot3OamControlGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 1)).setObjects(("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamAdminState"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamOperStatus"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamMode"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamMaxOamPduSize"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamConfigRevision"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamFunctionsSupported")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3cDot3OamControlGroup = h3cDot3OamControlGroup.setStatus('current') h3cDot3OamPeerGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 2)).setObjects(("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamPeerStatus"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamPeerMacAddress"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamPeerVendorOui"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamPeerVendorInfo"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamPeerMode"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamPeerFunctionsSupported"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamPeerMaxOamPduSize"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamPeerConfigRevision")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3cDot3OamPeerGroup = h3cDot3OamPeerGroup.setStatus('current') h3cDot3OamStatsBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 3)).setObjects(("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamInformationTx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamInformationRx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamUniqueEventNotificationTx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamUniqueEventNotificationRx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamDuplicateEventNotificationTx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamDuplicateEventNotificationRx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamLoopbackControlTx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamLoopbackControlRx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamVariableRequestTx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamVariableRequestRx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamVariableResponseTx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamVariableResponseRx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamOrgSpecificTx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamOrgSpecificRx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamUnsupportedCodesTx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamUnsupportedCodesRx"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamFramesLostDueToOam")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3cDot3OamStatsBaseGroup = h3cDot3OamStatsBaseGroup.setStatus('current') h3cDot3OamLoopbackGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 4)).setObjects(("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamLoopbackCommand"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamLoopbackStatus"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamLoopbackIgnoreRx")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3cDot3OamLoopbackGroup = h3cDot3OamLoopbackGroup.setStatus('current') h3cDot3OamErrSymbolPeriodEventGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 5)).setObjects(("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrSymPeriodWindowHi"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrSymPeriodWindowLo"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrSymPeriodThresholdHi"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrSymPeriodThresholdLo"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrSymPeriodEvNotifEnable")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3cDot3OamErrSymbolPeriodEventGroup = h3cDot3OamErrSymbolPeriodEventGroup.setStatus('current') h3cDot3OamErrFramePeriodEventGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 6)).setObjects(("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrFramePeriodWindow"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrFramePeriodThreshold"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrFramePeriodEvNotifEnable")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3cDot3OamErrFramePeriodEventGroup = h3cDot3OamErrFramePeriodEventGroup.setStatus('current') h3cDot3OamErrFrameEventGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 7)).setObjects(("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrFrameWindow"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrFrameThreshold"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrFrameEvNotifEnable")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3cDot3OamErrFrameEventGroup = h3cDot3OamErrFrameEventGroup.setStatus('current') h3cDot3OamErrFrameSecsSummaryEventGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 8)).setObjects(("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrFrameSecsSummaryWindow"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrFrameSecsSummaryThreshold"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamErrFrameSecsEvNotifEnable")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3cDot3OamErrFrameSecsSummaryEventGroup = h3cDot3OamErrFrameSecsSummaryEventGroup.setStatus('current') h3cDot3OamEventLogGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 9)).setObjects(("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogTimestamp"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogOui"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogType"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogLocation"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogWindowHi"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogWindowLo"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogThresholdHi"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogThresholdLo"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogValue"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogRunningTotal"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamEventLogEventTotal")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3cDot3OamEventLogGroup = h3cDot3OamEventLogGroup.setStatus('current') h3cDot3OamNotificationGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 10)).setObjects(("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamThresholdEvent"), ("A3COM-HUAWEI-EFM-COMMON-MIB", "h3cDot3OamNonThresholdEvent")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3cDot3OamNotificationGroup = h3cDot3OamNotificationGroup.setStatus('current') mibBuilder.exportSymbols("A3COM-HUAWEI-EFM-COMMON-MIB", h3cDot3OamEventLogIndex=h3cDot3OamEventLogIndex, h3cDot3OamOperStatus=h3cDot3OamOperStatus, h3cDot3OamEventConfigTable=h3cDot3OamEventConfigTable, h3cDot3OamEventLogLocation=h3cDot3OamEventLogLocation, h3cDot3OamConformance=h3cDot3OamConformance, h3cDot3OamFunctionsSupported=h3cDot3OamFunctionsSupported, h3cDot3OamNotificationGroup=h3cDot3OamNotificationGroup, h3cDot3OamLoopbackIgnoreRx=h3cDot3OamLoopbackIgnoreRx, h3cDot3OamTrapsPrefix=h3cDot3OamTrapsPrefix, h3cDot3OamErrFrameSecsSummaryEventGroup=h3cDot3OamErrFrameSecsSummaryEventGroup, h3cDot3OamErrFrameSecsEvNotifEnable=h3cDot3OamErrFrameSecsEvNotifEnable, h3cDot3OamDuplicateEventNotificationRx=h3cDot3OamDuplicateEventNotificationRx, h3cDot3OamErrFrameSecsSummaryThreshold=h3cDot3OamErrFrameSecsSummaryThreshold, h3cDot3OamErrFramePeriodEventGroup=h3cDot3OamErrFramePeriodEventGroup, h3cDot3OamLoopbackControlRx=h3cDot3OamLoopbackControlRx, h3cDot3OamErrFrameWindow=h3cDot3OamErrFrameWindow, h3cDot3OamErrFrameSecsSummaryWindow=h3cDot3OamErrFrameSecsSummaryWindow, h3cDot3OamPeerMacAddress=h3cDot3OamPeerMacAddress, h3cDot3OamAdminState=h3cDot3OamAdminState, h3cDot3OamFramesLostDueToOam=h3cDot3OamFramesLostDueToOam, h3cDot3OamThresholdEvent=h3cDot3OamThresholdEvent, h3cDot3OamNonThresholdEvent=h3cDot3OamNonThresholdEvent, h3cDot3OamCompliance=h3cDot3OamCompliance, h3cDot3OamOrgSpecificRx=h3cDot3OamOrgSpecificRx, h3cDot3OamErrFrameThreshold=h3cDot3OamErrFrameThreshold, PYSNMP_MODULE_ID=h3cEfmOamMIB, h3cDot3OamVariableResponseRx=h3cDot3OamVariableResponseRx, h3cDot3OamUnsupportedCodesRx=h3cDot3OamUnsupportedCodesRx, h3cDot3OamControlGroup=h3cDot3OamControlGroup, h3cDot3OamLoopbackStatus=h3cDot3OamLoopbackStatus, h3cDot3OamPeerEntry=h3cDot3OamPeerEntry, h3cDot3OamVariableResponseTx=h3cDot3OamVariableResponseTx, h3cDot3OamMaxOamPduSize=h3cDot3OamMaxOamPduSize, h3cDot3OamPeerFunctionsSupported=h3cDot3OamPeerFunctionsSupported, h3cDot3OamEventLogTimestamp=h3cDot3OamEventLogTimestamp, h3cDot3OamEventConfigEntry=h3cDot3OamEventConfigEntry, h3cDot3OamEventLogTable=h3cDot3OamEventLogTable, h3cDot3OamEventLogThresholdHi=h3cDot3OamEventLogThresholdHi, h3cDot3OamEventLogEntry=h3cDot3OamEventLogEntry, h3cDot3OamEventLogWindowLo=h3cDot3OamEventLogWindowLo, h3cDot3OamStatsTable=h3cDot3OamStatsTable, h3cDot3OamErrFramePeriodWindow=h3cDot3OamErrFramePeriodWindow, h3cDot3OamEventLogThresholdLo=h3cDot3OamEventLogThresholdLo, h3cDot3OamVariableRequestTx=h3cDot3OamVariableRequestTx, h3cDot3OamErrFrameEvNotifEnable=h3cDot3OamErrFrameEvNotifEnable, h3cDot3OamErrSymPeriodWindowHi=h3cDot3OamErrSymPeriodWindowHi, h3cDot3OamMIB=h3cDot3OamMIB, h3cDot3OamEventLogValue=h3cDot3OamEventLogValue, h3cEfmOamMIB=h3cEfmOamMIB, h3cDot3OamErrSymPeriodThresholdLo=h3cDot3OamErrSymPeriodThresholdLo, h3cDot3OamPeerMaxOamPduSize=h3cDot3OamPeerMaxOamPduSize, h3cDot3OamUnsupportedCodesTx=h3cDot3OamUnsupportedCodesTx, h3cDot3OamErrSymPeriodWindowLo=h3cDot3OamErrSymPeriodWindowLo, h3cDot3OamTable=h3cDot3OamTable, h3cDot3OamErrFramePeriodThreshold=h3cDot3OamErrFramePeriodThreshold, h3cDot3OamStatsBaseGroup=h3cDot3OamStatsBaseGroup, h3cDot3OamPeerStatus=h3cDot3OamPeerStatus, h3cDot3OamInformationRx=h3cDot3OamInformationRx, h3cDot3OamUniqueEventNotificationRx=h3cDot3OamUniqueEventNotificationRx, h3cDot3OamDuplicateEventNotificationTx=h3cDot3OamDuplicateEventNotificationTx, h3cDot3OamErrFrameEventGroup=h3cDot3OamErrFrameEventGroup, h3cDot3OamPeerMode=h3cDot3OamPeerMode, h3cDot3OamLoopbackEntry=h3cDot3OamLoopbackEntry, h3cDot3OamConfigRevision=h3cDot3OamConfigRevision, h3cDot3OamEventLogEventTotal=h3cDot3OamEventLogEventTotal, h3cDot3OamPeerGroup=h3cDot3OamPeerGroup, h3cDot3OamLoopbackTable=h3cDot3OamLoopbackTable, h3cDot3OamTraps=h3cDot3OamTraps, h3cDot3OamVariableRequestRx=h3cDot3OamVariableRequestRx, h3cDot3OamEventLogWindowHi=h3cDot3OamEventLogWindowHi, h3cDot3OamEventLogOui=h3cDot3OamEventLogOui, h3cDot3OamInformationTx=h3cDot3OamInformationTx, h3cDot3OamGroups=h3cDot3OamGroups, h3cDot3OamEventLogType=h3cDot3OamEventLogType, h3cDot3OamErrFramePeriodEvNotifEnable=h3cDot3OamErrFramePeriodEvNotifEnable, h3cDot3OamLoopbackGroup=h3cDot3OamLoopbackGroup, h3cDot3OamMode=h3cDot3OamMode, h3cDot3OamPeerVendorOui=h3cDot3OamPeerVendorOui, h3cDot3OamEventLogRunningTotal=h3cDot3OamEventLogRunningTotal, h3cDot3OamLoopbackCommand=h3cDot3OamLoopbackCommand, h3cDot3OamPeerConfigRevision=h3cDot3OamPeerConfigRevision, h3cDot3OamCompliances=h3cDot3OamCompliances, h3cDot3OamLoopbackControlTx=h3cDot3OamLoopbackControlTx, h3cDot3OamOrgSpecificTx=h3cDot3OamOrgSpecificTx, h3cDot3OamPeerTable=h3cDot3OamPeerTable, h3cDot3OamEntry=h3cDot3OamEntry, Dot3Oui=Dot3Oui, h3cDot3OamErrSymPeriodEvNotifEnable=h3cDot3OamErrSymPeriodEvNotifEnable, h3cDot3OamErrSymPeriodThresholdHi=h3cDot3OamErrSymPeriodThresholdHi, h3cDot3OamPeerVendorInfo=h3cDot3OamPeerVendorInfo, h3cDot3OamEventLogGroup=h3cDot3OamEventLogGroup, h3cDot3OamErrSymbolPeriodEventGroup=h3cDot3OamErrSymbolPeriodEventGroup, h3cDot3OamUniqueEventNotificationTx=h3cDot3OamUniqueEventNotificationTx, h3cDot3OamStatsEntry=h3cDot3OamStatsEntry)
(h3c_epon,) = mibBuilder.importSymbols('A3COM-HUAWEI-OID-MIB', 'h3cEpon') (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, constraints_intersection, constraints_union, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsIntersection', 'ConstraintsUnion', 'ValueRangeConstraint', 'ValueSizeConstraint') (counter_based_gauge64,) = mibBuilder.importSymbols('HCNUM-TC', 'CounterBasedGauge64') (if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex') (notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup') (unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier, counter32, mib_2, time_ticks, integer32, module_identity, bits, object_identity, ip_address, counter64, gauge32, notification_type, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier', 'Counter32', 'mib-2', 'TimeTicks', 'Integer32', 'ModuleIdentity', 'Bits', 'ObjectIdentity', 'IpAddress', 'Counter64', 'Gauge32', 'NotificationType', 'iso') (textual_convention, date_and_time, display_string, mac_address) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DateAndTime', 'DisplayString', 'MacAddress') h3c_efm_oam_mib = module_identity((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3)) h3cEfmOamMIB.setRevisions(('2004-10-24 00:00',)) if mibBuilder.loadTexts: h3cEfmOamMIB.setLastUpdated('200410240000Z') if mibBuilder.loadTexts: h3cEfmOamMIB.setOrganization('IETF Ethernet Interfaces and Hub MIB Working Group') h3c_dot3_oam_mib = mib_identifier((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1)) h3c_dot3_oam_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2)) class Dot3Oui(TextualConvention, OctetString): status = 'current' subtype_spec = OctetString.subtypeSpec + value_size_constraint(3, 3) fixed_length = 3 h3c_dot3_oam_table = mib_table((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1)) if mibBuilder.loadTexts: h3cDot3OamTable.setStatus('current') h3c_dot3_oam_entry = mib_table_row((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex')) if mibBuilder.loadTexts: h3cDot3OamEntry.setStatus('current') h3c_dot3_oam_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamAdminState.setStatus('current') h3c_dot3_oam_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('disabled', 1), ('linkfault', 2), ('passiveWait', 3), ('activeSendLocal', 4), ('sendLocalAndRemote', 5), ('sendLocalAndRemoteOk', 6), ('oamPeeringLocallyRejected', 7), ('oamPeeringRemotelyRejected', 8), ('operational', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamOperStatus.setStatus('current') h3c_dot3_oam_mode = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('active', 1), ('passive', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamMode.setStatus('current') h3c_dot3_oam_max_oam_pdu_size = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(64, 1522))).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamMaxOamPduSize.setStatus('current') h3c_dot3_oam_config_revision = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamConfigRevision.setStatus('current') h3c_dot3_oam_functions_supported = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 1, 1, 6), bits().clone(namedValues=named_values(('unidirectionalSupport', 0), ('loopbackSupport', 1), ('eventSupport', 2), ('variableSupport', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamFunctionsSupported.setStatus('current') h3c_dot3_oam_peer_table = mib_table((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2)) if mibBuilder.loadTexts: h3cDot3OamPeerTable.setStatus('current') h3c_dot3_oam_peer_entry = mib_table_row((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex')) if mibBuilder.loadTexts: h3cDot3OamPeerEntry.setStatus('current') h3c_dot3_oam_peer_status = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('active', 1), ('inactive', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamPeerStatus.setStatus('current') h3c_dot3_oam_peer_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 2), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamPeerMacAddress.setStatus('current') h3c_dot3_oam_peer_vendor_oui = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 3), dot3_oui()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamPeerVendorOui.setStatus('current') h3c_dot3_oam_peer_vendor_info = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamPeerVendorInfo.setStatus('current') h3c_dot3_oam_peer_mode = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('active', 1), ('passive', 2), ('unknown', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamPeerMode.setStatus('current') h3c_dot3_oam_peer_max_oam_pdu_size = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(64, 1522))).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamPeerMaxOamPduSize.setStatus('current') h3c_dot3_oam_peer_config_revision = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamPeerConfigRevision.setStatus('current') h3c_dot3_oam_peer_functions_supported = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 2, 1, 8), bits().clone(namedValues=named_values(('unidirectionalSupport', 0), ('loopbackSupport', 1), ('eventSupport', 2), ('variableSupport', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamPeerFunctionsSupported.setStatus('current') h3c_dot3_oam_loopback_table = mib_table((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 3)) if mibBuilder.loadTexts: h3cDot3OamLoopbackTable.setStatus('current') h3c_dot3_oam_loopback_entry = mib_table_row((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 3, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex')) if mibBuilder.loadTexts: h3cDot3OamLoopbackEntry.setStatus('current') h3c_dot3_oam_loopback_command = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 3, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('noLoopback', 1), ('startRemoteLoopback', 2), ('stopRemoteLoopback', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamLoopbackCommand.setStatus('current') h3c_dot3_oam_loopback_status = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('noLoopback', 1), ('initiatingLoopback', 2), ('remoteLoopback', 3), ('terminatingLoopback', 4), ('localLoopback', 5), ('unknown', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamLoopbackStatus.setStatus('current') h3c_dot3_oam_loopback_ignore_rx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ignore', 1), ('process', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamLoopbackIgnoreRx.setStatus('current') h3c_dot3_oam_stats_table = mib_table((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4)) if mibBuilder.loadTexts: h3cDot3OamStatsTable.setStatus('current') h3c_dot3_oam_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex')) if mibBuilder.loadTexts: h3cDot3OamStatsEntry.setStatus('current') h3c_dot3_oam_information_tx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamInformationTx.setStatus('current') h3c_dot3_oam_information_rx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamInformationRx.setStatus('current') h3c_dot3_oam_unique_event_notification_tx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamUniqueEventNotificationTx.setStatus('current') h3c_dot3_oam_unique_event_notification_rx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamUniqueEventNotificationRx.setStatus('current') h3c_dot3_oam_duplicate_event_notification_tx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamDuplicateEventNotificationTx.setStatus('current') h3c_dot3_oam_duplicate_event_notification_rx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamDuplicateEventNotificationRx.setStatus('current') h3c_dot3_oam_loopback_control_tx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamLoopbackControlTx.setStatus('current') h3c_dot3_oam_loopback_control_rx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamLoopbackControlRx.setStatus('current') h3c_dot3_oam_variable_request_tx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamVariableRequestTx.setStatus('current') h3c_dot3_oam_variable_request_rx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamVariableRequestRx.setStatus('current') h3c_dot3_oam_variable_response_tx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamVariableResponseTx.setStatus('current') h3c_dot3_oam_variable_response_rx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamVariableResponseRx.setStatus('current') h3c_dot3_oam_org_specific_tx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamOrgSpecificTx.setStatus('current') h3c_dot3_oam_org_specific_rx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamOrgSpecificRx.setStatus('current') h3c_dot3_oam_unsupported_codes_tx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamUnsupportedCodesTx.setStatus('current') h3c_dot3_oam_unsupported_codes_rx = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamUnsupportedCodesRx.setStatus('current') h3c_dot3_oam_frames_lost_due_to_oam = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 4, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamFramesLostDueToOam.setStatus('current') h3c_dot3_oam_event_config_table = mib_table((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5)) if mibBuilder.loadTexts: h3cDot3OamEventConfigTable.setStatus('current') h3c_dot3_oam_event_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex')) if mibBuilder.loadTexts: h3cDot3OamEventConfigEntry.setStatus('current') h3c_dot3_oam_err_sym_period_window_hi = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 1), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrSymPeriodWindowHi.setStatus('current') h3c_dot3_oam_err_sym_period_window_lo = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 2), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrSymPeriodWindowLo.setStatus('current') h3c_dot3_oam_err_sym_period_threshold_hi = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 3), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrSymPeriodThresholdHi.setStatus('current') h3c_dot3_oam_err_sym_period_threshold_lo = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 4), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrSymPeriodThresholdLo.setStatus('current') h3c_dot3_oam_err_sym_period_ev_notif_enable = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrSymPeriodEvNotifEnable.setStatus('current') h3c_dot3_oam_err_frame_period_window = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 6), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrFramePeriodWindow.setStatus('current') h3c_dot3_oam_err_frame_period_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 7), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrFramePeriodThreshold.setStatus('current') h3c_dot3_oam_err_frame_period_ev_notif_enable = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrFramePeriodEvNotifEnable.setStatus('current') h3c_dot3_oam_err_frame_window = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 9), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrFrameWindow.setStatus('current') h3c_dot3_oam_err_frame_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 10), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrFrameThreshold.setStatus('current') h3c_dot3_oam_err_frame_ev_notif_enable = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrFrameEvNotifEnable.setStatus('current') h3c_dot3_oam_err_frame_secs_summary_window = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(100, 9000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrFrameSecsSummaryWindow.setStatus('current') h3c_dot3_oam_err_frame_secs_summary_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 900))).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrFrameSecsSummaryThreshold.setStatus('current') h3c_dot3_oam_err_frame_secs_ev_notif_enable = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 5, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: h3cDot3OamErrFrameSecsEvNotifEnable.setStatus('current') h3c_dot3_oam_event_log_table = mib_table((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6)) if mibBuilder.loadTexts: h3cDot3OamEventLogTable.setStatus('current') h3c_dot3_oam_event_log_entry = mib_table_row((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogIndex')) if mibBuilder.loadTexts: h3cDot3OamEventLogEntry.setStatus('current') h3c_dot3_oam_event_log_index = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 1), unsigned32()) if mibBuilder.loadTexts: h3cDot3OamEventLogIndex.setStatus('current') h3c_dot3_oam_event_log_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 2), date_and_time()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamEventLogTimestamp.setStatus('current') h3c_dot3_oam_event_log_oui = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 3), dot3_oui()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamEventLogOui.setStatus('current') h3c_dot3_oam_event_log_type = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamEventLogType.setStatus('current') h3c_dot3_oam_event_log_location = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('local', 1), ('remote', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamEventLogLocation.setStatus('current') h3c_dot3_oam_event_log_window_hi = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamEventLogWindowHi.setStatus('current') h3c_dot3_oam_event_log_window_lo = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamEventLogWindowLo.setStatus('current') h3c_dot3_oam_event_log_threshold_hi = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 8), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamEventLogThresholdHi.setStatus('current') h3c_dot3_oam_event_log_threshold_lo = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 9), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamEventLogThresholdLo.setStatus('current') h3c_dot3_oam_event_log_value = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 10), counter_based_gauge64()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamEventLogValue.setStatus('current') h3c_dot3_oam_event_log_running_total = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 11), counter_based_gauge64()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamEventLogRunningTotal.setStatus('current') h3c_dot3_oam_event_log_event_total = mib_table_column((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 6, 1, 12), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: h3cDot3OamEventLogEventTotal.setStatus('current') h3c_dot3_oam_traps = mib_identifier((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 7)) h3c_dot3_oam_traps_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 7, 0)) h3c_dot3_oam_threshold_event = notification_type((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 7, 0, 1)).setObjects(('IF-MIB', 'ifIndex'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogTimestamp'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogOui'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogType'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogLocation'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogWindowHi'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogWindowLo'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogThresholdHi'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogThresholdLo'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogValue'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogRunningTotal'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogEventTotal')) if mibBuilder.loadTexts: h3cDot3OamThresholdEvent.setStatus('current') h3c_dot3_oam_non_threshold_event = notification_type((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 1, 7, 0, 2)).setObjects(('IF-MIB', 'ifIndex'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogTimestamp'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogOui'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogType'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogLocation'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogEventTotal')) if mibBuilder.loadTexts: h3cDot3OamNonThresholdEvent.setStatus('current') h3c_dot3_oam_groups = mib_identifier((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1)) h3c_dot3_oam_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 2)) h3c_dot3_oam_compliance = module_compliance((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 2, 1)).setObjects(('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamControlGroup'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamPeerGroup'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamStatsBaseGroup'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamLoopbackGroup'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrSymbolPeriodEventGroup'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrFramePeriodEventGroup'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrFrameEventGroup'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrFrameSecsSummaryEventGroup'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogGroup'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamNotificationGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3c_dot3_oam_compliance = h3cDot3OamCompliance.setStatus('current') h3c_dot3_oam_control_group = object_group((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 1)).setObjects(('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamAdminState'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamOperStatus'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamMode'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamMaxOamPduSize'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamConfigRevision'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamFunctionsSupported')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3c_dot3_oam_control_group = h3cDot3OamControlGroup.setStatus('current') h3c_dot3_oam_peer_group = object_group((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 2)).setObjects(('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamPeerStatus'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamPeerMacAddress'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamPeerVendorOui'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamPeerVendorInfo'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamPeerMode'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamPeerFunctionsSupported'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamPeerMaxOamPduSize'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamPeerConfigRevision')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3c_dot3_oam_peer_group = h3cDot3OamPeerGroup.setStatus('current') h3c_dot3_oam_stats_base_group = object_group((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 3)).setObjects(('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamInformationTx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamInformationRx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamUniqueEventNotificationTx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamUniqueEventNotificationRx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamDuplicateEventNotificationTx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamDuplicateEventNotificationRx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamLoopbackControlTx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamLoopbackControlRx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamVariableRequestTx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamVariableRequestRx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamVariableResponseTx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamVariableResponseRx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamOrgSpecificTx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamOrgSpecificRx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamUnsupportedCodesTx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamUnsupportedCodesRx'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamFramesLostDueToOam')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3c_dot3_oam_stats_base_group = h3cDot3OamStatsBaseGroup.setStatus('current') h3c_dot3_oam_loopback_group = object_group((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 4)).setObjects(('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamLoopbackCommand'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamLoopbackStatus'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamLoopbackIgnoreRx')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3c_dot3_oam_loopback_group = h3cDot3OamLoopbackGroup.setStatus('current') h3c_dot3_oam_err_symbol_period_event_group = object_group((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 5)).setObjects(('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrSymPeriodWindowHi'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrSymPeriodWindowLo'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrSymPeriodThresholdHi'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrSymPeriodThresholdLo'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrSymPeriodEvNotifEnable')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3c_dot3_oam_err_symbol_period_event_group = h3cDot3OamErrSymbolPeriodEventGroup.setStatus('current') h3c_dot3_oam_err_frame_period_event_group = object_group((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 6)).setObjects(('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrFramePeriodWindow'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrFramePeriodThreshold'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrFramePeriodEvNotifEnable')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3c_dot3_oam_err_frame_period_event_group = h3cDot3OamErrFramePeriodEventGroup.setStatus('current') h3c_dot3_oam_err_frame_event_group = object_group((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 7)).setObjects(('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrFrameWindow'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrFrameThreshold'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrFrameEvNotifEnable')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3c_dot3_oam_err_frame_event_group = h3cDot3OamErrFrameEventGroup.setStatus('current') h3c_dot3_oam_err_frame_secs_summary_event_group = object_group((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 8)).setObjects(('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrFrameSecsSummaryWindow'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrFrameSecsSummaryThreshold'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamErrFrameSecsEvNotifEnable')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3c_dot3_oam_err_frame_secs_summary_event_group = h3cDot3OamErrFrameSecsSummaryEventGroup.setStatus('current') h3c_dot3_oam_event_log_group = object_group((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 9)).setObjects(('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogTimestamp'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogOui'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogType'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogLocation'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogWindowHi'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogWindowLo'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogThresholdHi'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogThresholdLo'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogValue'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogRunningTotal'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamEventLogEventTotal')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3c_dot3_oam_event_log_group = h3cDot3OamEventLogGroup.setStatus('current') h3c_dot3_oam_notification_group = notification_group((1, 3, 6, 1, 4, 1, 43, 45, 1, 10, 2, 42, 3, 2, 1, 10)).setObjects(('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamThresholdEvent'), ('A3COM-HUAWEI-EFM-COMMON-MIB', 'h3cDot3OamNonThresholdEvent')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): h3c_dot3_oam_notification_group = h3cDot3OamNotificationGroup.setStatus('current') mibBuilder.exportSymbols('A3COM-HUAWEI-EFM-COMMON-MIB', h3cDot3OamEventLogIndex=h3cDot3OamEventLogIndex, h3cDot3OamOperStatus=h3cDot3OamOperStatus, h3cDot3OamEventConfigTable=h3cDot3OamEventConfigTable, h3cDot3OamEventLogLocation=h3cDot3OamEventLogLocation, h3cDot3OamConformance=h3cDot3OamConformance, h3cDot3OamFunctionsSupported=h3cDot3OamFunctionsSupported, h3cDot3OamNotificationGroup=h3cDot3OamNotificationGroup, h3cDot3OamLoopbackIgnoreRx=h3cDot3OamLoopbackIgnoreRx, h3cDot3OamTrapsPrefix=h3cDot3OamTrapsPrefix, h3cDot3OamErrFrameSecsSummaryEventGroup=h3cDot3OamErrFrameSecsSummaryEventGroup, h3cDot3OamErrFrameSecsEvNotifEnable=h3cDot3OamErrFrameSecsEvNotifEnable, h3cDot3OamDuplicateEventNotificationRx=h3cDot3OamDuplicateEventNotificationRx, h3cDot3OamErrFrameSecsSummaryThreshold=h3cDot3OamErrFrameSecsSummaryThreshold, h3cDot3OamErrFramePeriodEventGroup=h3cDot3OamErrFramePeriodEventGroup, h3cDot3OamLoopbackControlRx=h3cDot3OamLoopbackControlRx, h3cDot3OamErrFrameWindow=h3cDot3OamErrFrameWindow, h3cDot3OamErrFrameSecsSummaryWindow=h3cDot3OamErrFrameSecsSummaryWindow, h3cDot3OamPeerMacAddress=h3cDot3OamPeerMacAddress, h3cDot3OamAdminState=h3cDot3OamAdminState, h3cDot3OamFramesLostDueToOam=h3cDot3OamFramesLostDueToOam, h3cDot3OamThresholdEvent=h3cDot3OamThresholdEvent, h3cDot3OamNonThresholdEvent=h3cDot3OamNonThresholdEvent, h3cDot3OamCompliance=h3cDot3OamCompliance, h3cDot3OamOrgSpecificRx=h3cDot3OamOrgSpecificRx, h3cDot3OamErrFrameThreshold=h3cDot3OamErrFrameThreshold, PYSNMP_MODULE_ID=h3cEfmOamMIB, h3cDot3OamVariableResponseRx=h3cDot3OamVariableResponseRx, h3cDot3OamUnsupportedCodesRx=h3cDot3OamUnsupportedCodesRx, h3cDot3OamControlGroup=h3cDot3OamControlGroup, h3cDot3OamLoopbackStatus=h3cDot3OamLoopbackStatus, h3cDot3OamPeerEntry=h3cDot3OamPeerEntry, h3cDot3OamVariableResponseTx=h3cDot3OamVariableResponseTx, h3cDot3OamMaxOamPduSize=h3cDot3OamMaxOamPduSize, h3cDot3OamPeerFunctionsSupported=h3cDot3OamPeerFunctionsSupported, h3cDot3OamEventLogTimestamp=h3cDot3OamEventLogTimestamp, h3cDot3OamEventConfigEntry=h3cDot3OamEventConfigEntry, h3cDot3OamEventLogTable=h3cDot3OamEventLogTable, h3cDot3OamEventLogThresholdHi=h3cDot3OamEventLogThresholdHi, h3cDot3OamEventLogEntry=h3cDot3OamEventLogEntry, h3cDot3OamEventLogWindowLo=h3cDot3OamEventLogWindowLo, h3cDot3OamStatsTable=h3cDot3OamStatsTable, h3cDot3OamErrFramePeriodWindow=h3cDot3OamErrFramePeriodWindow, h3cDot3OamEventLogThresholdLo=h3cDot3OamEventLogThresholdLo, h3cDot3OamVariableRequestTx=h3cDot3OamVariableRequestTx, h3cDot3OamErrFrameEvNotifEnable=h3cDot3OamErrFrameEvNotifEnable, h3cDot3OamErrSymPeriodWindowHi=h3cDot3OamErrSymPeriodWindowHi, h3cDot3OamMIB=h3cDot3OamMIB, h3cDot3OamEventLogValue=h3cDot3OamEventLogValue, h3cEfmOamMIB=h3cEfmOamMIB, h3cDot3OamErrSymPeriodThresholdLo=h3cDot3OamErrSymPeriodThresholdLo, h3cDot3OamPeerMaxOamPduSize=h3cDot3OamPeerMaxOamPduSize, h3cDot3OamUnsupportedCodesTx=h3cDot3OamUnsupportedCodesTx, h3cDot3OamErrSymPeriodWindowLo=h3cDot3OamErrSymPeriodWindowLo, h3cDot3OamTable=h3cDot3OamTable, h3cDot3OamErrFramePeriodThreshold=h3cDot3OamErrFramePeriodThreshold, h3cDot3OamStatsBaseGroup=h3cDot3OamStatsBaseGroup, h3cDot3OamPeerStatus=h3cDot3OamPeerStatus, h3cDot3OamInformationRx=h3cDot3OamInformationRx, h3cDot3OamUniqueEventNotificationRx=h3cDot3OamUniqueEventNotificationRx, h3cDot3OamDuplicateEventNotificationTx=h3cDot3OamDuplicateEventNotificationTx, h3cDot3OamErrFrameEventGroup=h3cDot3OamErrFrameEventGroup, h3cDot3OamPeerMode=h3cDot3OamPeerMode, h3cDot3OamLoopbackEntry=h3cDot3OamLoopbackEntry, h3cDot3OamConfigRevision=h3cDot3OamConfigRevision, h3cDot3OamEventLogEventTotal=h3cDot3OamEventLogEventTotal, h3cDot3OamPeerGroup=h3cDot3OamPeerGroup, h3cDot3OamLoopbackTable=h3cDot3OamLoopbackTable, h3cDot3OamTraps=h3cDot3OamTraps, h3cDot3OamVariableRequestRx=h3cDot3OamVariableRequestRx, h3cDot3OamEventLogWindowHi=h3cDot3OamEventLogWindowHi, h3cDot3OamEventLogOui=h3cDot3OamEventLogOui, h3cDot3OamInformationTx=h3cDot3OamInformationTx, h3cDot3OamGroups=h3cDot3OamGroups, h3cDot3OamEventLogType=h3cDot3OamEventLogType, h3cDot3OamErrFramePeriodEvNotifEnable=h3cDot3OamErrFramePeriodEvNotifEnable, h3cDot3OamLoopbackGroup=h3cDot3OamLoopbackGroup, h3cDot3OamMode=h3cDot3OamMode, h3cDot3OamPeerVendorOui=h3cDot3OamPeerVendorOui, h3cDot3OamEventLogRunningTotal=h3cDot3OamEventLogRunningTotal, h3cDot3OamLoopbackCommand=h3cDot3OamLoopbackCommand, h3cDot3OamPeerConfigRevision=h3cDot3OamPeerConfigRevision, h3cDot3OamCompliances=h3cDot3OamCompliances, h3cDot3OamLoopbackControlTx=h3cDot3OamLoopbackControlTx, h3cDot3OamOrgSpecificTx=h3cDot3OamOrgSpecificTx, h3cDot3OamPeerTable=h3cDot3OamPeerTable, h3cDot3OamEntry=h3cDot3OamEntry, Dot3Oui=Dot3Oui, h3cDot3OamErrSymPeriodEvNotifEnable=h3cDot3OamErrSymPeriodEvNotifEnable, h3cDot3OamErrSymPeriodThresholdHi=h3cDot3OamErrSymPeriodThresholdHi, h3cDot3OamPeerVendorInfo=h3cDot3OamPeerVendorInfo, h3cDot3OamEventLogGroup=h3cDot3OamEventLogGroup, h3cDot3OamErrSymbolPeriodEventGroup=h3cDot3OamErrSymbolPeriodEventGroup, h3cDot3OamUniqueEventNotificationTx=h3cDot3OamUniqueEventNotificationTx, h3cDot3OamStatsEntry=h3cDot3OamStatsEntry)
# encoding=utf-8 # General Header Fields CACHE_CONTROL = b"Cache-Control".lower() CONNECTION = b"Connection".lower() DATE = b"Date".lower() PRAGMA = b"Pragma".lower() TRAILER = b"Trailer".lower() TRANSFER_ENCODING = b"Transfer-Encoding".lower() UPGRADE = b"Upgrade".lower() VIA = b"Via".lower() WARNING = b"Warning".lower() # Request Header Fields ACCEPT = b"Accept".lower() ACCEPT_CHARSET = b"Accept-Charset".lower() ACCEPT_ENCODING = b"Accept-Encoding".lower() ACCEPT_LANGUAGE = b"Accept-Language".lower() AUTHORIZATION = b"Authorization".lower() EXCEPT = b"Except".lower() FROM = b"From".lower() HOST = b"Host".lower() IF_MATCH = b"If-Match".lower() IF_MODIFIED_SINCE = b"If-Modified-Since".lower() IF_NONE_MATCH = b"If-None-Match".lower() IF_Range = b"If-Range".lower() IF_UNMODIFIED_SINCE = b"If-Unmodified-Since".lower() MAX_FORWARDS = b"Max-Forwards".lower() PROXY_AUTHORIZATION = b"Proxy-Authorization".lower() RANGE = b"Range".lower() REFERER = b"Referer".lower() TE = b"TE".lower() USER_AGENT = b"User-Agent".lower() HTTP2_SETTINGS = b"HTTP2-Settings".lower() # Response Header Fields ACCEPT_RANGES = b"Accept-Ranges".lower() AGE = b"Age".lower() ETAG = b"Etag".lower() LOCATION = b"Location".lower() PROXY_AUTHENTICATE = b"Proxy-Authenticate".lower() RETRY_AFTER = b"Retry-After".lower() SERVER = b"Server".lower() VARY = b"Vary".lower() WWW_AUTHENTICATE = b"WWW-Authenticate".lower() # Entity Header Fields ALLOW = b"Allow".lower() CONTENT_ENCODING = b"Content-Encoding".lower() CONTENT_LANGUAGE = b"Content-Language".lower() CONTENT_LENGTH = b"Content-Length".lower() CONTENT_MD5 = b"Content-MD5".lower() CONTENT_RANGE = b"Content-Range".lower() CONTENT_TYPE = b"Content-Type".lower() EXPIRES = b"Expires".lower() LAST_MODIFIED = b"Last-Modified".lower()
cache_control = b'Cache-Control'.lower() connection = b'Connection'.lower() date = b'Date'.lower() pragma = b'Pragma'.lower() trailer = b'Trailer'.lower() transfer_encoding = b'Transfer-Encoding'.lower() upgrade = b'Upgrade'.lower() via = b'Via'.lower() warning = b'Warning'.lower() accept = b'Accept'.lower() accept_charset = b'Accept-Charset'.lower() accept_encoding = b'Accept-Encoding'.lower() accept_language = b'Accept-Language'.lower() authorization = b'Authorization'.lower() except = b'Except'.lower() from = b'From'.lower() host = b'Host'.lower() if_match = b'If-Match'.lower() if_modified_since = b'If-Modified-Since'.lower() if_none_match = b'If-None-Match'.lower() if__range = b'If-Range'.lower() if_unmodified_since = b'If-Unmodified-Since'.lower() max_forwards = b'Max-Forwards'.lower() proxy_authorization = b'Proxy-Authorization'.lower() range = b'Range'.lower() referer = b'Referer'.lower() te = b'TE'.lower() user_agent = b'User-Agent'.lower() http2_settings = b'HTTP2-Settings'.lower() accept_ranges = b'Accept-Ranges'.lower() age = b'Age'.lower() etag = b'Etag'.lower() location = b'Location'.lower() proxy_authenticate = b'Proxy-Authenticate'.lower() retry_after = b'Retry-After'.lower() server = b'Server'.lower() vary = b'Vary'.lower() www_authenticate = b'WWW-Authenticate'.lower() allow = b'Allow'.lower() content_encoding = b'Content-Encoding'.lower() content_language = b'Content-Language'.lower() content_length = b'Content-Length'.lower() content_md5 = b'Content-MD5'.lower() content_range = b'Content-Range'.lower() content_type = b'Content-Type'.lower() expires = b'Expires'.lower() last_modified = b'Last-Modified'.lower()
def anonymize_phone_number(phone_number: str) -> str: public_digits_num = 6 phone_number = phone_number.replace("-", "") public_digits = phone_number[:public_digits_num] number_of_private_digits = len(phone_number) - public_digits_num private_digits = "-" * number_of_private_digits return f"{public_digits}{private_digits}" def test_anonymize_phone_number_replace_digits_after_6_with_hyphens(): # Nie najlepsze dane testowe phone_number = "111111111" anonymized_phone_number = anonymize_phone_number(phone_number) assert anonymized_phone_number == "1111111---"
def anonymize_phone_number(phone_number: str) -> str: public_digits_num = 6 phone_number = phone_number.replace('-', '') public_digits = phone_number[:public_digits_num] number_of_private_digits = len(phone_number) - public_digits_num private_digits = '-' * number_of_private_digits return f'{public_digits}{private_digits}' def test_anonymize_phone_number_replace_digits_after_6_with_hyphens(): phone_number = '111111111' anonymized_phone_number = anonymize_phone_number(phone_number) assert anonymized_phone_number == '1111111---'
''' This place-holder module makes the extensions directory into a Python "package", so that external user-specific modules can act as umbrella modules, and, for example: import structural_dhcp_rst2pdf.extensions.vectorpdf_r2p to bring in the PDF extension. '''
""" This place-holder module makes the extensions directory into a Python "package", so that external user-specific modules can act as umbrella modules, and, for example: import structural_dhcp_rst2pdf.extensions.vectorpdf_r2p to bring in the PDF extension. """
for number in [0, 1, 2, 3, 4]: print(number) for number in range(5): print(number)
for number in [0, 1, 2, 3, 4]: print(number) for number in range(5): print(number)
# FILE MODES: # Example: # with open(name, 'w+') as f: # f.write(data) # "r" # Read from file - YES # Write to file - NO # Create file if not exists - NO # Truncate file to zero length - NO # Cursor position - BEGINNING # # "r+" # Read from file - YES # Write to file - YES # Create file if not exists - NO # Truncate file to zero length - NO # Cursor position - BEGINNING # # "w" # Read from file - NO # Write to file - YES # Create file if not exists - YES # Truncate file to zero length - YES # Cursor position - BEGINNING # # "w+" # Read from file - YES # Write to file - YES # Create file if not exists - YES # Truncate file to zero length - YES # Cursor position - BEGINNING # # "a" # Read from file - NO # Write to file - YES # Create file if not exists - YES # Truncate file to zero length - NO # Cursor position - END # # "a+" # Read from file - YES # Write to file - YES # Create file if not exists - YES # Truncate file to zero length - NO # Cursor position - END myfile = open("/media/cicek/D/DDownloads/example.txt","w+") # Sending "r" means open in read mode, which is the default. # Sending "w" means write mode, for rewriting the contents of a file. # Sending "a" means append mode, for adding new content to the end of the file. # # Adding "b" to a mode opens it in binary mode, # which is used for non-text files (such as image and sound files). print("---------------------------------------------------------------------") # write mode open("/media/cicek/D/DDownloads/example.txt" , "w") # read mode open("/media/cicek/D/DDownloads/example.txt" , "r") # binary write mode open("/media/cicek/D/DDownloads/example.txt" , "wb") # binary read mode open("/media/cicek/D/DDownloads/example.txt" , "rb") print("---------------------------------------------------------------------") # Once a file has been opened and used, you should close it. # This is done with the close method of the file object. file = open("/media/cicek/D/DDownloads/example.txt" , "w") # do stuff to the file file.close()
myfile = open('/media/cicek/D/DDownloads/example.txt', 'w+') print('---------------------------------------------------------------------') open('/media/cicek/D/DDownloads/example.txt', 'w') open('/media/cicek/D/DDownloads/example.txt', 'r') open('/media/cicek/D/DDownloads/example.txt', 'wb') open('/media/cicek/D/DDownloads/example.txt', 'rb') print('---------------------------------------------------------------------') file = open('/media/cicek/D/DDownloads/example.txt', 'w') file.close()
_base_ = [ "../_base_/models/cascade_rcnn_r50_fpn.py", "../_base_/datasets/coco_detection.py", "../_base_/schedules/schedule_1x.py", "../_base_/default_runtime.py", ] pretrained = "https://github.com/SwinTransformer/storage/releases/download/v1.0.0/swin_small_patch4_window7_224.pth" model = dict( backbone=dict( _delete_=True, type="SwinTransformer", embed_dims=96, depths=[2, 2, 18, 2], num_heads=[3, 6, 12, 24], window_size=7, mlp_ratio=4, qkv_bias=True, qk_scale=None, drop_rate=0.0, attn_drop_rate=0.0, drop_path_rate=0.3, patch_norm=True, out_indices=(0, 1, 2, 3), with_cp=False, convert_weights=True, init_cfg=dict(type="Pretrained", checkpoint=pretrained), ), neck=dict(in_channels=[96, 192, 384, 768]), roi_head=dict( type="CascadeRoIHead", num_stages=3, stage_loss_weights=[1, 0.5, 0.25], bbox_roi_extractor=dict( type="SingleRoIExtractor", roi_layer=dict(type="RoIAlign", output_size=7, sampling_ratio=0), out_channels=256, featmap_strides=[4, 8, 16, 32], ), bbox_head=[ dict( type="Shared2FCBBoxHead", in_channels=256, fc_out_channels=1024, roi_feat_size=7, num_classes=1, bbox_coder=dict( type="DeltaXYWHBBoxCoder", target_means=[0.0, 0.0, 0.0, 0.0], target_stds=[0.1, 0.1, 0.2, 0.2], ), reg_class_agnostic=True, loss_cls=dict( type="CrossEntropyLoss", use_sigmoid=False, loss_weight=1.0 ), reg_decoded_bbox=True, loss_bbox=dict(type="GIoULoss", loss_weight=10.0), ), dict( type="Shared2FCBBoxHead", in_channels=256, fc_out_channels=1024, roi_feat_size=7, num_classes=1, bbox_coder=dict( type="DeltaXYWHBBoxCoder", target_means=[0.0, 0.0, 0.0, 0.0], target_stds=[0.05, 0.05, 0.1, 0.1], ), reg_class_agnostic=True, loss_cls=dict( type="CrossEntropyLoss", use_sigmoid=False, loss_weight=1.0 ), reg_decoded_bbox=True, loss_bbox=dict(type="GIoULoss", loss_weight=10.0), ), dict( type="Shared2FCBBoxHead", in_channels=256, fc_out_channels=1024, roi_feat_size=7, num_classes=1, bbox_coder=dict( type="DeltaXYWHBBoxCoder", target_means=[0.0, 0.0, 0.0, 0.0], target_stds=[0.033, 0.033, 0.067, 0.067], ), reg_class_agnostic=True, loss_cls=dict( type="CrossEntropyLoss", use_sigmoid=False, loss_weight=1.0 ), reg_decoded_bbox=True, loss_bbox=dict(type="GIoULoss", loss_weight=10.0), ), ], ), ) # dataset settings data_root = "/workspace" dataset_type = "CocoDataset" classes = ("cots",) img_norm_cfg = dict( mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True ) train_pipeline = [ dict(type="LoadImageFromFile", to_float32=True), dict(type="LoadAnnotations", with_bbox=True), dict( type="AutoAugment", policies=[ [ dict( type="Resize", img_scale=[ (480, 1333), (512, 1333), (544, 1333), (576, 1333), (608, 1333), (640, 1333), (672, 1333), (704, 1333), (736, 1333), (768, 1333), (800, 1333), ], multiscale_mode="value", keep_ratio=True, ) ], [ dict( type="Resize", img_scale=[(400, 1333), (500, 1333), (600, 1333)], multiscale_mode="value", keep_ratio=True, ), dict( type="RandomCrop", crop_type="absolute_range", crop_size=(384, 600), allow_negative_crop=True, ), dict( type="Resize", img_scale=[ (480, 1333), (512, 1333), (544, 1333), (576, 1333), (608, 1333), (640, 1333), (672, 1333), (704, 1333), (736, 1333), (768, 1333), (800, 1333), ], multiscale_mode="value", override=True, keep_ratio=True, ), dict( type="PhotoMetricDistortion", brightness_delta=32, contrast_range=(0.5, 1.5), saturation_range=(0.5, 1.5), hue_delta=18, ), dict( type="MinIoURandomCrop", min_ious=(0.4, 0.5, 0.6, 0.7, 0.8, 0.9), min_crop_size=0.3, ), dict( type="CutOut", n_holes=(5, 10), cutout_shape=[ (4, 4), (4, 8), (8, 4), (8, 8), (16, 32), (32, 16), (32, 32), (32, 48), (48, 32), (48, 48), ], ), ], ], ), dict(type="RandomFlip", flip_ratio=0.5), dict(type="Normalize", **img_norm_cfg), dict(type="Pad", size_divisor=32), dict(type="DefaultFormatBundle"), dict(type="Collect", keys=["img", "gt_bboxes", "gt_labels"]), ] test_pipeline = [ dict(type="LoadImageFromFile"), dict( type="MultiScaleFlipAug", img_scale=(1333, 800), flip=False, transforms=[ dict(type="Resize", keep_ratio=True), dict(type="RandomFlip"), dict(type="Normalize", **img_norm_cfg), dict(type="Pad", size_divisor=32), dict(type="DefaultFormatBundle"), dict(type="Collect", keys=["img"]), ], ), ] train_dataset = dict( type=dataset_type, ann_file="/workspace/annotations_train.json", img_prefix="/workspace/images", classes=classes, pipeline=train_pipeline, filter_empty_gt=False, ) data = dict( samples_per_gpu=2, workers_per_gpu=2, persistent_workers=True, train=train_dataset, val=dict( type=dataset_type, ann_file="/workspace/20220115_having_annotations_valid.json", img_prefix="/workspace/images", classes=classes, pipeline=test_pipeline, ), test=dict( type=dataset_type, ann_file="/workspace/20220115_having_annotations_valid.json", img_prefix="/workspace/images", classes=classes, pipeline=test_pipeline, ), ) optimizer = dict( _delete_=True, type="AdamW", lr=0.0004, betas=(0.9, 0.999), weight_decay=0.05, paramwise_cfg=dict( custom_keys={ "absolute_pos_embed": dict(decay_mult=0.0), "relative_position_bias_table": dict(decay_mult=0.0), "norm": dict(decay_mult=0.0), } ), ) lr_config = dict( _delete_=True, policy="CosineAnnealing", by_epoch=False, warmup="linear", warmup_iters=1000, warmup_ratio=1 / 10, min_lr=1e-07, ) evaluation = dict(interval=2) seed = 5757 fp16 = dict(loss_scale=dict(init_scale=512.0)) log_config = dict( interval=100, hooks=[dict(type="TextLoggerHook"), dict(type="TensorboardLoggerHook")], ) runner = dict(max_epochs=14)
_base_ = ['../_base_/models/cascade_rcnn_r50_fpn.py', '../_base_/datasets/coco_detection.py', '../_base_/schedules/schedule_1x.py', '../_base_/default_runtime.py'] pretrained = 'https://github.com/SwinTransformer/storage/releases/download/v1.0.0/swin_small_patch4_window7_224.pth' model = dict(backbone=dict(_delete_=True, type='SwinTransformer', embed_dims=96, depths=[2, 2, 18, 2], num_heads=[3, 6, 12, 24], window_size=7, mlp_ratio=4, qkv_bias=True, qk_scale=None, drop_rate=0.0, attn_drop_rate=0.0, drop_path_rate=0.3, patch_norm=True, out_indices=(0, 1, 2, 3), with_cp=False, convert_weights=True, init_cfg=dict(type='Pretrained', checkpoint=pretrained)), neck=dict(in_channels=[96, 192, 384, 768]), roi_head=dict(type='CascadeRoIHead', num_stages=3, stage_loss_weights=[1, 0.5, 0.25], bbox_roi_extractor=dict(type='SingleRoIExtractor', roi_layer=dict(type='RoIAlign', output_size=7, sampling_ratio=0), out_channels=256, featmap_strides=[4, 8, 16, 32]), bbox_head=[dict(type='Shared2FCBBoxHead', in_channels=256, fc_out_channels=1024, roi_feat_size=7, num_classes=1, bbox_coder=dict(type='DeltaXYWHBBoxCoder', target_means=[0.0, 0.0, 0.0, 0.0], target_stds=[0.1, 0.1, 0.2, 0.2]), reg_class_agnostic=True, loss_cls=dict(type='CrossEntropyLoss', use_sigmoid=False, loss_weight=1.0), reg_decoded_bbox=True, loss_bbox=dict(type='GIoULoss', loss_weight=10.0)), dict(type='Shared2FCBBoxHead', in_channels=256, fc_out_channels=1024, roi_feat_size=7, num_classes=1, bbox_coder=dict(type='DeltaXYWHBBoxCoder', target_means=[0.0, 0.0, 0.0, 0.0], target_stds=[0.05, 0.05, 0.1, 0.1]), reg_class_agnostic=True, loss_cls=dict(type='CrossEntropyLoss', use_sigmoid=False, loss_weight=1.0), reg_decoded_bbox=True, loss_bbox=dict(type='GIoULoss', loss_weight=10.0)), dict(type='Shared2FCBBoxHead', in_channels=256, fc_out_channels=1024, roi_feat_size=7, num_classes=1, bbox_coder=dict(type='DeltaXYWHBBoxCoder', target_means=[0.0, 0.0, 0.0, 0.0], target_stds=[0.033, 0.033, 0.067, 0.067]), reg_class_agnostic=True, loss_cls=dict(type='CrossEntropyLoss', use_sigmoid=False, loss_weight=1.0), reg_decoded_bbox=True, loss_bbox=dict(type='GIoULoss', loss_weight=10.0))])) data_root = '/workspace' dataset_type = 'CocoDataset' classes = ('cots',) img_norm_cfg = dict(mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True) train_pipeline = [dict(type='LoadImageFromFile', to_float32=True), dict(type='LoadAnnotations', with_bbox=True), dict(type='AutoAugment', policies=[[dict(type='Resize', img_scale=[(480, 1333), (512, 1333), (544, 1333), (576, 1333), (608, 1333), (640, 1333), (672, 1333), (704, 1333), (736, 1333), (768, 1333), (800, 1333)], multiscale_mode='value', keep_ratio=True)], [dict(type='Resize', img_scale=[(400, 1333), (500, 1333), (600, 1333)], multiscale_mode='value', keep_ratio=True), dict(type='RandomCrop', crop_type='absolute_range', crop_size=(384, 600), allow_negative_crop=True), dict(type='Resize', img_scale=[(480, 1333), (512, 1333), (544, 1333), (576, 1333), (608, 1333), (640, 1333), (672, 1333), (704, 1333), (736, 1333), (768, 1333), (800, 1333)], multiscale_mode='value', override=True, keep_ratio=True), dict(type='PhotoMetricDistortion', brightness_delta=32, contrast_range=(0.5, 1.5), saturation_range=(0.5, 1.5), hue_delta=18), dict(type='MinIoURandomCrop', min_ious=(0.4, 0.5, 0.6, 0.7, 0.8, 0.9), min_crop_size=0.3), dict(type='CutOut', n_holes=(5, 10), cutout_shape=[(4, 4), (4, 8), (8, 4), (8, 8), (16, 32), (32, 16), (32, 32), (32, 48), (48, 32), (48, 48)])]]), dict(type='RandomFlip', flip_ratio=0.5), dict(type='Normalize', **img_norm_cfg), dict(type='Pad', size_divisor=32), dict(type='DefaultFormatBundle'), dict(type='Collect', keys=['img', 'gt_bboxes', 'gt_labels'])] test_pipeline = [dict(type='LoadImageFromFile'), dict(type='MultiScaleFlipAug', img_scale=(1333, 800), flip=False, transforms=[dict(type='Resize', keep_ratio=True), dict(type='RandomFlip'), dict(type='Normalize', **img_norm_cfg), dict(type='Pad', size_divisor=32), dict(type='DefaultFormatBundle'), dict(type='Collect', keys=['img'])])] train_dataset = dict(type=dataset_type, ann_file='/workspace/annotations_train.json', img_prefix='/workspace/images', classes=classes, pipeline=train_pipeline, filter_empty_gt=False) data = dict(samples_per_gpu=2, workers_per_gpu=2, persistent_workers=True, train=train_dataset, val=dict(type=dataset_type, ann_file='/workspace/20220115_having_annotations_valid.json', img_prefix='/workspace/images', classes=classes, pipeline=test_pipeline), test=dict(type=dataset_type, ann_file='/workspace/20220115_having_annotations_valid.json', img_prefix='/workspace/images', classes=classes, pipeline=test_pipeline)) optimizer = dict(_delete_=True, type='AdamW', lr=0.0004, betas=(0.9, 0.999), weight_decay=0.05, paramwise_cfg=dict(custom_keys={'absolute_pos_embed': dict(decay_mult=0.0), 'relative_position_bias_table': dict(decay_mult=0.0), 'norm': dict(decay_mult=0.0)})) lr_config = dict(_delete_=True, policy='CosineAnnealing', by_epoch=False, warmup='linear', warmup_iters=1000, warmup_ratio=1 / 10, min_lr=1e-07) evaluation = dict(interval=2) seed = 5757 fp16 = dict(loss_scale=dict(init_scale=512.0)) log_config = dict(interval=100, hooks=[dict(type='TextLoggerHook'), dict(type='TensorboardLoggerHook')]) runner = dict(max_epochs=14)
class Event: def __init__(self, name, **kwargs): self.name = name self.args = kwargs def __str__(self): return f"Event(name='{self.name}', args={self.args})"
class Event: def __init__(self, name, **kwargs): self.name = name self.args = kwargs def __str__(self): return f"Event(name='{self.name}', args={self.args})"
class Solution: def fourSum(self, nums: List[int], target: int) -> List[List[int]]: def kSum(nums: List[int], target: int, k: int) -> List[List[int]]: res = [] if len(nums) == 0 or nums[0] * k > target or target > nums[-1] * k: return res if k == 2: return twoSum(nums, target) for i in range(len(nums)): if i == 0 or nums[i - 1] != nums[i]: for subset in kSum(nums[i + 1:], target - nums[i], k - 1): res.append([nums[i]] + subset) return res def twoSum(nums: List[int], target: int) -> List[List[int]]: res = [] lo, hi = 0, len(nums) - 1 while (lo < hi): curr_sum = nums[lo] + nums[hi] if curr_sum < target or (lo > 0 and nums[lo] == nums[lo - 1]): lo += 1 elif curr_sum > target or (hi < len(nums) - 1 and nums[hi] == nums[hi + 1]): hi -= 1 else: res.append([nums[lo], nums[hi]]) lo += 1 hi -= 1 return res nums.sort() return kSum(nums, target, 4)
class Solution: def four_sum(self, nums: List[int], target: int) -> List[List[int]]: def k_sum(nums: List[int], target: int, k: int) -> List[List[int]]: res = [] if len(nums) == 0 or nums[0] * k > target or target > nums[-1] * k: return res if k == 2: return two_sum(nums, target) for i in range(len(nums)): if i == 0 or nums[i - 1] != nums[i]: for subset in k_sum(nums[i + 1:], target - nums[i], k - 1): res.append([nums[i]] + subset) return res def two_sum(nums: List[int], target: int) -> List[List[int]]: res = [] (lo, hi) = (0, len(nums) - 1) while lo < hi: curr_sum = nums[lo] + nums[hi] if curr_sum < target or (lo > 0 and nums[lo] == nums[lo - 1]): lo += 1 elif curr_sum > target or (hi < len(nums) - 1 and nums[hi] == nums[hi + 1]): hi -= 1 else: res.append([nums[lo], nums[hi]]) lo += 1 hi -= 1 return res nums.sort() return k_sum(nums, target, 4)
''' Exercise 2 for Day 5 of 100 Days of Python In this exercise, we are going to find out the highest score from a given list of scores of a certain number of students We are going to discuss 2 methods of finding the maximum ''' def find_maximum_score(scores): ''' METHOD 1 Using the inbuilt max() function, which takes an iterable as its parameter and returns the maximum value in the iterable x = max(scores) return x ''' '''METHOD 2 Declare a global max value. Compare with each and every value inside the list and update the max value accordingly Use a for loop for your comparisons ''' maxVal = scores[0] # declare the first value as the maxVal # Now using a for loop compare the maxVal with each and every item and then update if maxVal is less than one particular item for i in range(1, len(scores)): if maxVal < scores[i]: maxVal = scores[i] return maxVal if __name__ == "__main__": scores = [int(score) for score in input( "Enter the scores of the students in comma separated form: ").split(', ')] maximumScore = find_maximum_score(scores) print(f"The highest score is {maximumScore}")
""" Exercise 2 for Day 5 of 100 Days of Python In this exercise, we are going to find out the highest score from a given list of scores of a certain number of students We are going to discuss 2 methods of finding the maximum """ def find_maximum_score(scores): """ METHOD 1 Using the inbuilt max() function, which takes an iterable as its parameter and returns the maximum value in the iterable x = max(scores) return x """ 'METHOD 2\n Declare a global max value. Compare with each and every value inside the list and update the max value accordingly\n Use a for loop for your comparisons\n ' max_val = scores[0] for i in range(1, len(scores)): if maxVal < scores[i]: max_val = scores[i] return maxVal if __name__ == '__main__': scores = [int(score) for score in input('Enter the scores of the students in comma separated form: ').split(', ')] maximum_score = find_maximum_score(scores) print(f'The highest score is {maximumScore}')
def dfsUtil(G, visited, travel, s): if(visited[s]): return visited[s] = True for u in G[s]: if(not visited[u]): dfsUtil(G, visited, travel, u) travel.append(s) def dfs(G, s=1): visited = {k: False for k in G.nodes} travel = [] for u in G.nodes: if(not visited[u]): dfsUtil(G, visited, travel, u) return travel def kosarajus(G): travel = reversed(dfs(G)) H = G.reverse(copy=True) components = [] visited = {k: False for k in G.nodes} for u in travel: if(not visited[u]): component = [] dfsUtil(H, visited, component, u) components.append(component) return components
def dfs_util(G, visited, travel, s): if visited[s]: return visited[s] = True for u in G[s]: if not visited[u]: dfs_util(G, visited, travel, u) travel.append(s) def dfs(G, s=1): visited = {k: False for k in G.nodes} travel = [] for u in G.nodes: if not visited[u]: dfs_util(G, visited, travel, u) return travel def kosarajus(G): travel = reversed(dfs(G)) h = G.reverse(copy=True) components = [] visited = {k: False for k in G.nodes} for u in travel: if not visited[u]: component = [] dfs_util(H, visited, component, u) components.append(component) return components
def double(x): return x*2 # Lambda Functions # In Python, you can declare a variable of type function, where implementations can be simply assigned # In some use cases, you may have to function pointer to a function for some processing logic # Best Scenario: Callback scenarios # A mechnism of defining a method implementation as an expression inline new_double = lambda x: x*2 print(double(10)) print(new_double(200)) def get_value(): return 10 result = get_value() print(new_double(result)) print((lambda x: x*x)(10)) # In Python programming, these instructions should be avoided ... formatter = lambda x, y, z='X': '{}, {}, {}'.format(x, y, z) print(formatter('R', 'J')) formatter2 = lambda x, y, *z : '{} {} {}'.format(x, y, max(z)) print(formatter2(10,20,30,40,50))
def double(x): return x * 2 new_double = lambda x: x * 2 print(double(10)) print(new_double(200)) def get_value(): return 10 result = get_value() print(new_double(result)) print((lambda x: x * x)(10)) formatter = lambda x, y, z='X': '{}, {}, {}'.format(x, y, z) print(formatter('R', 'J')) formatter2 = lambda x, y, *z: '{} {} {}'.format(x, y, max(z)) print(formatter2(10, 20, 30, 40, 50))
# # PySNMP MIB module DLSW-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/DLSW-MIB # Produced by pysmi-0.3.4 at Wed May 1 11:07:01 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") ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection") ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex") sdlcLSAddress, = mibBuilder.importSymbols("SNA-SDLC-MIB", "sdlcLSAddress") NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup") Gauge32, MibIdentifier, Counter64, IpAddress, ModuleIdentity, mib_2, TimeTicks, Counter32, MibScalar, MibTable, MibTableRow, MibTableColumn, Integer32, Bits, Unsigned32, ObjectIdentity, NotificationType, iso = mibBuilder.importSymbols("SNMPv2-SMI", "Gauge32", "MibIdentifier", "Counter64", "IpAddress", "ModuleIdentity", "mib-2", "TimeTicks", "Counter32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Integer32", "Bits", "Unsigned32", "ObjectIdentity", "NotificationType", "iso") TruthValue, TextualConvention, RowPointer, RowStatus, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "TextualConvention", "RowPointer", "RowStatus", "DisplayString") dlsw = ModuleIdentity((1, 3, 6, 1, 2, 1, 46)) if mibBuilder.loadTexts: dlsw.setLastUpdated('9606040900Z') if mibBuilder.loadTexts: dlsw.setOrganization('AIW DLSw MIB RIGLET and IETF DLSw MIB Working Group') if mibBuilder.loadTexts: dlsw.setContactInfo('David D. Chen IBM Corporation 800 Park, Highway 54 Research Triangle Park, NC 27709-9990 Tel: 1 919 254 6182 E-mail: [email protected]') if mibBuilder.loadTexts: dlsw.setDescription('This MIB module contains objects to manage Data Link Switches.') dlswMIB = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1)) dlswDomains = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 2)) class NBName(TextualConvention, OctetString): description = "Represents a single qualified NetBIOS name, which can include `don't care' and `wildcard' characters to represent a number of real NetBIOS names. If an individual character position in the qualified name contains a `?', the corresponding character position in a real NetBIOS name is a `don't care'. If the qualified name ends in `*', the remainder of a real NetBIOS name is a `don't care'. `*' is only considered a wildcard if it appears at the end of a name." status = 'current' subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 16) class MacAddressNC(TextualConvention, OctetString): description = 'Represents an 802 MAC address represented in non-canonical format. That is, the most significant bit will be transmitted first. If this information is not available, the value is a zero length string.' status = 'current' displayHint = '1x:' subtypeSpec = OctetString.subtypeSpec + ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(6, 6), ) class TAddress(TextualConvention, OctetString): description = 'Denotes a transport service address. For dlswTCPDomain, a TAddress is 4 octets long, containing the IP-address in network-byte order.' status = 'current' subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 255) class EndStationLocation(TextualConvention, Integer32): description = 'Representing the location of an end station related to the managed DLSw node.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4)) namedValues = NamedValues(("other", 1), ("internal", 2), ("remote", 3), ("local", 4)) class DlcType(TextualConvention, Integer32): description = 'Representing the type of DLC of an end station, if applicable.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5)) namedValues = NamedValues(("other", 1), ("na", 2), ("llc", 3), ("sdlc", 4), ("qllc", 5)) class LFSize(TextualConvention, Integer32): description = 'The largest size of the INFO field (including DLC header, not including any MAC-level or framing octets). 64 valid values as defined by the IEEE 802.1D Addendum are acceptable.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(516, 635, 754, 873, 993, 1112, 1231, 1350, 1470, 1542, 1615, 1688, 1761, 1833, 1906, 1979, 2052, 2345, 2638, 2932, 3225, 3518, 3812, 4105, 4399, 4865, 5331, 5798, 6264, 6730, 7197, 7663, 8130, 8539, 8949, 9358, 9768, 10178, 10587, 10997, 11407, 12199, 12992, 13785, 14578, 15370, 16163, 16956, 17749, 20730, 23711, 26693, 29674, 32655, 38618, 41600, 44591, 47583, 50575, 53567, 56559, 59551, 65535)) namedValues = NamedValues(("lfs516", 516), ("lfs635", 635), ("lfs754", 754), ("lfs873", 873), ("lfs993", 993), ("lfs1112", 1112), ("lfs1231", 1231), ("lfs1350", 1350), ("lfs1470", 1470), ("lfs1542", 1542), ("lfs1615", 1615), ("lfs1688", 1688), ("lfs1761", 1761), ("lfs1833", 1833), ("lfs1906", 1906), ("lfs1979", 1979), ("lfs2052", 2052), ("lfs2345", 2345), ("lfs2638", 2638), ("lfs2932", 2932), ("lfs3225", 3225), ("lfs3518", 3518), ("lfs3812", 3812), ("lfs4105", 4105), ("lfs4399", 4399), ("lfs4865", 4865), ("lfs5331", 5331), ("lfs5798", 5798), ("lfs6264", 6264), ("lfs6730", 6730), ("lfs7197", 7197), ("lfs7663", 7663), ("lfs8130", 8130), ("lfs8539", 8539), ("lfs8949", 8949), ("lfs9358", 9358), ("lfs9768", 9768), ("lfs10178", 10178), ("lfs10587", 10587), ("lfs10997", 10997), ("lfs11407", 11407), ("lfs12199", 12199), ("lfs12992", 12992), ("lfs13785", 13785), ("lfs14578", 14578), ("lfs15370", 15370), ("lfs16163", 16163), ("lfs16956", 16956), ("lfs17749", 17749), ("lfs20730", 20730), ("lfs23711", 23711), ("lfs26693", 26693), ("lfs29674", 29674), ("lfs32655", 32655), ("lfs38618", 38618), ("lfs41600", 41600), ("lfs44591", 44591), ("lfs47583", 47583), ("lfs50575", 50575), ("lfs53567", 53567), ("lfs56559", 56559), ("lfs59551", 59551), ("lfs65535", 65535)) null = MibIdentifier((0, 0)) dlswTCPDomain = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 2, 1)) class DlswTCPAddress(TextualConvention, OctetString): description = 'Represents the IP address of a DLSw which uses TCP as a transport protocol.' status = 'current' displayHint = '1d.1d.1d.1d' subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(4, 4) fixedLength = 4 dlswNode = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 1)) dlswTConn = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 2)) dlswInterface = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 3)) dlswDirectory = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 4)) dlswCircuit = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 5)) dlswSdlc = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 6)) dlswNodeVersion = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswNodeVersion.setReference('DLSW: Switch-to-Switch Protocol RFC 1795') if mibBuilder.loadTexts: dlswNodeVersion.setStatus('current') if mibBuilder.loadTexts: dlswNodeVersion.setDescription('This value identifies the particular version of the DLSw standard supported by this DLSw. The first octet is a hexadecimal value representing the DLSw standard Version number of this DLSw, and the second is a hexadecimal value representing the DLSw standard Release number. This information is reported in DLSw Capabilities Exchange.') dlswNodeVendorID = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(3, 3)).setFixedLength(3)).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswNodeVendorID.setReference('DLSW: Switch-to-Switch Protocol RFC 1795') if mibBuilder.loadTexts: dlswNodeVendorID.setStatus('current') if mibBuilder.loadTexts: dlswNodeVendorID.setDescription("The value identifies the manufacturer's IEEE-assigned organizationally Unique Identifier (OUI) of this DLSw. This information is reported in DLSw Capabilities Exchange.") dlswNodeVersionString = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswNodeVersionString.setReference('DLSW: Switch-to-Switch Protocol RFC 1795') if mibBuilder.loadTexts: dlswNodeVersionString.setStatus('current') if mibBuilder.loadTexts: dlswNodeVersionString.setDescription('This string gives product-specific information about this DLSw (e.g., product name, code release and fix level). This flows in Capabilities Exchange messages.') dlswNodeStdPacingSupport = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("adaptiveRcvWindow", 2), ("fixedRcvWindow", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswNodeStdPacingSupport.setStatus('current') if mibBuilder.loadTexts: dlswNodeStdPacingSupport.setDescription('Circuit pacing, as defined in the DLSw Standard, allows each of the two DLSw nodes on a circuit to control the amount of data the other is permitted to send to them. This object reflects the level of support the DLSw node has for this protocol. (1) means the node has no support for the standard circuit pacing flows; it may use RFC 1434+ methods only, or a proprietary flow control scheme. (2) means the node supports the standard scheme and can vary the window sizes it grants as a data receiver. (3) means the node supports the standard scheme but never varies its receive window size.') dlswNodeStatus = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("active", 1), ("inactive", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dlswNodeStatus.setStatus('current') if mibBuilder.loadTexts: dlswNodeStatus.setDescription('The status of the DLSw part of the system. Changing the value from active to inactive causes DLSw to take the following actions - (1) it disconnects all circuits through all DLSw partners, (2) it disconnects all transport connections to all DLSw partners, (3) it disconnects all local DLC connections, and (4) it stops processing all DLC connection set-up traffic. Since these are destructive actions, the user should query the circuit and transport connection tables in advance to understand the effect this action will have. Changing the value from inactive to active causes DLSw to come up in its initial state, i.e., transport connections established and ready to bring up circuits.') dlswNodeUpTime = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 6), TimeTicks()).setUnits('hundredths of a second').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswNodeUpTime.setStatus('current') if mibBuilder.loadTexts: dlswNodeUpTime.setDescription('The amount of time (in hundredths of a second) since the DLSw portion of the system was last re-initialized. That is, if dlswState is in the active state, the time the dlswState entered the active state. It will remain zero if dlswState is in the inactive state.') dlswNodeVirtualSegmentLFSize = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 7), LFSize().clone('lfs65535')).setMaxAccess("readwrite") if mibBuilder.loadTexts: dlswNodeVirtualSegmentLFSize.setStatus('current') if mibBuilder.loadTexts: dlswNodeVirtualSegmentLFSize.setDescription('The largest frame size (including DLC header and info field but not any MAC-level or framing octets) this DLSw can forward on any path through itself. This object can represent any box- level frame size forwarding restriction (e.g., from the use of fixed-size buffers). Some DLSw implementations will have no such restriction. This value will affect the LF size of circuits during circuit creation. The LF size of an existing circuit can be found in the RIF (Routing Information Field).') dlswNodeResourceNBExclusivity = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 8), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dlswNodeResourceNBExclusivity.setStatus('current') if mibBuilder.loadTexts: dlswNodeResourceNBExclusivity.setDescription('The value of true indicates that the NetBIOS Names configured in dlswDirNBTable are the only ones accessible via this DLSw. If a node supports sending run-time capabilities exchange messages, changes to this object should cause that action. It is up to the implementation exactly when to start the run-time capabilities exchange.') dlswNodeResourceMacExclusivity = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 9), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dlswNodeResourceMacExclusivity.setStatus('current') if mibBuilder.loadTexts: dlswNodeResourceMacExclusivity.setDescription('The value of true indicates that the MAC addresses configured in the dlswDirMacTable are the only ones accessible via this DLSw. If a node supports sending run-time capabilities exchange messages, changes to this object should cause that action. It is up to the implementation exactly when to start the run-time capabilities exchange.') dlswTConnStat = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 2, 1)) dlswTConnStatActiveConnections = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 2, 1, 1), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnStatActiveConnections.setStatus('current') if mibBuilder.loadTexts: dlswTConnStatActiveConnections.setDescription("The number of transport connections that are not in `disconnected' state.") dlswTConnStatCloseIdles = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 2, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnStatCloseIdles.setStatus('current') if mibBuilder.loadTexts: dlswTConnStatCloseIdles.setDescription('The number of times transport connections in this node exited the connected state with zero active circuits on the transport connection.') dlswTConnStatCloseBusys = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 2, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnStatCloseBusys.setStatus('current') if mibBuilder.loadTexts: dlswTConnStatCloseBusys.setDescription('The number of times transport connections in this node exited the connected state with some non-zero number of active circuits on the transport connection. Normally this means the transport connection failed unexpectedly.') dlswTConnConfigTable = MibTable((1, 3, 6, 1, 2, 1, 46, 1, 2, 2), ) if mibBuilder.loadTexts: dlswTConnConfigTable.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigTable.setDescription("This table defines the transport connections that will be initiated or accepted by this DLSw. Structure of masks allows wildcard definition for a collection of transport connections by a conceptual row. For a specific transport connection, there may be multiple of conceptual rows match the transport address. The `best' match will the one to determine the characteristics of the transport connection.") dlswTConnConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1), ).setIndexNames((0, "DLSW-MIB", "dlswTConnConfigIndex")) if mibBuilder.loadTexts: dlswTConnConfigEntry.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigEntry.setDescription('Each conceptual row defines a collection of transport connections.') dlswTConnConfigIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))) if mibBuilder.loadTexts: dlswTConnConfigIndex.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigIndex.setDescription('The index to the conceptual row of the table. Negative numbers are not allowed. There are objects defined that point to conceptual rows of this table with this index value. Zero is used to denote that no corresponding row exists. Index values are assigned by the agent, and should not be reused but should continue to increase in value.') dlswTConnConfigTDomain = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 2), ObjectIdentifier()).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnConfigTDomain.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigTDomain.setDescription('The object identifier which indicates the transport domain of this conceptual row.') dlswTConnConfigLocalTAddr = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 3), TAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnConfigLocalTAddr.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigLocalTAddr.setDescription('The local transport address for this conceptual row of the transport connection definition.') dlswTConnConfigRemoteTAddr = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 4), TAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnConfigRemoteTAddr.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigRemoteTAddr.setDescription('The remote transport address. Together with dlswTConnConfigEntryType and dlswTConnConfigGroupDefinition, the object instance of this conceptual row identifies a collection of the transport connections that will be either initiated by this DLSw or initiated by a partner DLSw and accepted by this DLSw.') dlswTConnConfigLastModifyTime = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 5), TimeTicks()).setUnits('hundredths of a second').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnConfigLastModifyTime.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigLastModifyTime.setDescription('The time (in hundredths of a second) since the value of any object in this conceptual row except for dlswTConnConfigOpens was last changed. This value may be compared to dlswTConnOperConnectTime to determine whether values in this row are completely valid for a transport connection created using this row definition.') dlswTConnConfigEntryType = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("individual", 1), ("global", 2), ("group", 3)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnConfigEntryType.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigEntryType.setDescription("The object instance signifies the type of entry in the associated conceptual row. The value of `individual' means that the entry applies to a specific partner DLSw node as identified by dlswTConnConfigRemoteTAddr and dlswTConnConfigTDomain. The value of `global' means that the entry applies to all partner DLSw nodes of the TDomain. The value of 'group' means that the entry applies to a specific set of DLSw nodes in the TDomain. Any group definitions are enterprise-specific and are pointed to by dlswTConnConfigGroupDefinition. In the cases of `global' and `group', the value in dlswTConnConfigRemoteTAddr may not have any significance.") dlswTConnConfigGroupDefinition = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 7), RowPointer()).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnConfigGroupDefinition.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigGroupDefinition.setDescription("For conceptual rows of `individual' and `global' as specified in dlswTConnConfigEntryType, the instance of this object is `0.0'. For conceptual rows of `group', the instance points to the specific group definition.") dlswTConnConfigSetupType = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("activePersistent", 2), ("activeOnDemand", 3), ("passive", 4), ("excluded", 5))).clone('passive')).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnConfigSetupType.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigSetupType.setDescription('This value of the instance of a conceptual row identifies the behavior of the collection of transport connections that this conceptual row defines. The value of activePersistent, activeOnDemand and passive means this DLSw will accept any transport connections, initiated by partner DLSw nodes, which are defined by this conceptual row. The value of activePersistent means this DLSw will also initiate the transport connections of this conceptual row and retry periodically if necessary. The value of activeOnDemand means this DLSw will initiate a transport connection of this conceptual row, if there is a directory cache hits. The value of other is implementation specific. The value of exclude means that the specified node is not allowed to be a partner to this DLSw node. To take a certain conceptual row definition out of service, a value of notInService for dlswTConnConfigRowStatus should be used.') dlswTConnConfigSapList = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(16, 16)).setFixedLength(16).clone(hexValue="AA000000000000000000000000000000")).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnConfigSapList.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigSapList.setDescription('The SAP list indicates which SAPs are advertised to the transport connection defined by this conceptual row. Only SAPs with even numbers are represented, in the form of the most significant bit of the first octet representing the SAP 0, the next most significant bit representing the SAP 2, to the least significant bit of the last octet representing the SAP 254. Data link switching is allowed for those SAPs which have one in its corresponding bit, not allowed otherwise. The whole SAP list has to be changed together. Changing the SAP list affects only new circuit establishments and has no effect on established circuits. This list can be used to restrict specific partners from knowing about all the SAPs used by DLSw on all its interfaces (these are represented in dlswIfSapList for each interface). For instance, one may want to run NetBIOS with some partners but not others. If a node supports sending run-time capabilities exchange messages, changes to this object should cause that action. When to start the run-time capabilities exchange is implementation-specific. The DEFVAL below indicates support for SAPs 0, 4, 8, and C.') dlswTConnConfigAdvertiseMacNB = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 10), TruthValue().clone('true')).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnConfigAdvertiseMacNB.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigAdvertiseMacNB.setDescription('The value of true indicates that any defined local MAC addresses and NetBIOS names will be advertised to a partner node via initial and (if supported) run-time capabilities exchange messages. The DLSw node should send the appropriate exclusivity control vector to accompany each list it sends, or to represent that the node is explicitly configured to have a null list. The value of false indicates that the DLSw node should not send a MAC address list or NetBIOS name list, and should also not send their corresponding exclusivity control vectors.') dlswTConnConfigInitCirRecvWndw = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(1)).setUnits('SSP messages').setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnConfigInitCirRecvWndw.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigInitCirRecvWndw.setDescription('The initial circuit receive pacing window size, in the unit of SSP messages, to be used for future transport connections activated using this table row. The managed node sends this value as its initial receive pacing window in its initial capabilities exchange message. Changing this value does not affect the initial circuit receive pacing window size of currently active transport connections. If the standard window pacing scheme is not supported, the value is zero. A larger receive window value may be appropriate for partners that are reachable only via physical paths that have longer network delays.') dlswTConnConfigOpens = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnConfigOpens.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigOpens.setDescription('Number of times transport connections entered connected state according to the definition of this conceptual row.') dlswTConnConfigRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 13), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnConfigRowStatus.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigRowStatus.setDescription('This object is used by the manager to create or delete the row entry in the dlswTConnConfigTable following the RowStatus textual convention. The value of notInService will be used to take a conceptual row definition out of use.') dlswTConnOperTable = MibTable((1, 3, 6, 1, 2, 1, 46, 1, 2, 3), ) if mibBuilder.loadTexts: dlswTConnOperTable.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperTable.setDescription('A list of transport connections. It is optional but desirable for the agent to keep an entry for some period of time after the transport connection is disconnected. This allows the manager to capture additional useful information about the connection, in particular, statistical information and the cause of the disconnection.') dlswTConnOperEntry = MibTableRow((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1), ).setIndexNames((0, "DLSW-MIB", "dlswTConnOperTDomain"), (0, "DLSW-MIB", "dlswTConnOperRemoteTAddr")) if mibBuilder.loadTexts: dlswTConnOperEntry.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperEntry.setDescription('') dlswTConnOperTDomain = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 1), ObjectIdentifier()) if mibBuilder.loadTexts: dlswTConnOperTDomain.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperTDomain.setDescription('The object identifier indicates the transport domain of this transport connection.') dlswTConnOperLocalTAddr = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 2), TAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperLocalTAddr.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperLocalTAddr.setDescription('The local transport address for this transport connection. This value could be different from dlswTConnConfigLocalAddr, if the value of the latter were changed after this transport connection was established.') dlswTConnOperRemoteTAddr = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 3), TAddress()) if mibBuilder.loadTexts: dlswTConnOperRemoteTAddr.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperRemoteTAddr.setDescription('The remote transport address of this transport connection.') dlswTConnOperEntryTime = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 4), TimeTicks()).setUnits('hundredths of a second').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperEntryTime.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperEntryTime.setDescription('The amount of time (in hundredths of a second) since this transport connection conceptual row was created.') dlswTConnOperConnectTime = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 5), TimeTicks()).setUnits('hundredths of a second').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperConnectTime.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperConnectTime.setDescription("The amount of time (in hundredths of a second) since this transport connection last entered the 'connected' state. A value of zero means this transport connection has never been established.") dlswTConnOperState = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("connecting", 1), ("initCapExchange", 2), ("connected", 3), ("quiescing", 4), ("disconnecting", 5), ("disconnected", 6)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dlswTConnOperState.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperState.setDescription("The state of this transport connection. The transport connection enters `connecting' state when DLSw makes a connection request to the transport layer. Once initial Capabilities Exchange is sent, the transport connection enters enters `initCapExchange' state. When partner capabilities have been determined and the transport connection is ready for sending CanUReach (CUR) messages, it moves to the `connected' state. When DLSw is in the process of bringing down the connection, it is in the `disconnecting' state. When the transport layer indicates one of its connections is disconnected, the transport connection moves to the `disconnected' state. Whereas all of the values will be returned in response to a management protocol retrieval operation, only two values may be specified in a management protocol set operation: `quiescing' and `disconnecting'. Changing the value to `quiescing' prevents new circuits from being established, and will cause a transport disconnect when the last circuit on the connection goes away. Changing the value to `disconnecting' will force off all circuits immediately and bring the connection to `disconnected' state.") dlswTConnOperConfigIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperConfigIndex.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperConfigIndex.setDescription('The value of dlswTConnConfigIndex of the dlswTConnConfigEntry that governs the configuration information used by this dlswTConnOperEntry. The manager can therefore normally examine both configured and operational information for this transport connection. This value is zero if the corresponding dlswTConnConfigEntry was deleted after the creation of this dlswTConnOperEntry. If some fields in the former were changed but the conceptual row was not deleted, some configuration information may not be valid for this operational transport connection. The manager can compare dlswTConnOperConnectTime and dlswTConnConfigLastModifyTime to determine if this condition exists.') dlswTConnOperFlowCntlMode = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("undetermined", 1), ("pacing", 2), ("other", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperFlowCntlMode.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperFlowCntlMode.setDescription('The flow control mechanism in use on this transport connection. This value is undetermined (1) before the mode of flow control can be established on a new transport connection (i.e., after CapEx is sent but before Capex or other SSP control messages have been received). Pacing (2) indicates that the standard RFC 1795 pacing mechanism is in use. Other (3) may be either the RFC 1434+ xBusy mechanism operating to a back-level DLSw, or a vendor-specific flow control method. Whether it is xBusy or not can be inferred from dlswTConnOperPartnerVersion.') dlswTConnOperPartnerVersion = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 9), OctetString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(2, 2), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperPartnerVersion.setReference('DLSW: Switch-to-Switch Protocol RFC 1795') if mibBuilder.loadTexts: dlswTConnOperPartnerVersion.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerVersion.setDescription("This value identifies which version (first octet) and release (second octet) of the DLSw standard is supported by this partner DLSw. This information is obtained from a DLSw capabilities exchange message received from the partner DLSw. A string of zero length is returned before a Capabilities Exchange message is received, or if one is never received. A conceptual row with a dlswTConnOperState of `connected' but a zero length partner version indicates that the partner is a non-standard DLSw partner. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlswTConnOperPartnerVendorID = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 10), OctetString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(3, 3), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperPartnerVendorID.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerVendorID.setDescription("This value identifies the IEEE-assigned organizationally Unique Identifier (OUI) of the maker of this partner DLSw. This information is obtained from a DLSw capabilities exchange message received from the partner DLSw. A string of zero length is returned before a Capabilities Exchange message is received, or if one is never received. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlswTConnOperPartnerVersionStr = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 253))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperPartnerVersionStr.setReference('DLSW: Switch-to-Switch Protocol RFC 1795') if mibBuilder.loadTexts: dlswTConnOperPartnerVersionStr.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerVersionStr.setDescription("This value identifies the particular product version (e.g., product name, code level, fix level) of this partner DLSw. The format of the actual version string is vendor-specific. This information is obtained from a DLSw capabilities exchange message received from the partner DLSw. A string of zero length is returned before a Capabilities Exchange message is received, if one is never received, or if one is received but it does not contain a version string. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlswTConnOperPartnerInitPacingWndw = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperPartnerInitPacingWndw.setReference('DLSW: Switch-to-Switch Protocol RFC 1795') if mibBuilder.loadTexts: dlswTConnOperPartnerInitPacingWndw.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerInitPacingWndw.setDescription("The value of the partner initial receive pacing window. This is our initial send pacing window for all new circuits on this transport connection, as modified and granted by the first flow control indication the partner sends on each circuit. This information is obtained from a DLSw capabilities exchange message received from the partner DLSw. A value of zero is returned before a Capabilities Exchange message is received, or if one is never received. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlswTConnOperPartnerSapList = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 13), OctetString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(16, 16), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperPartnerSapList.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerSapList.setDescription("The Supported SAP List received in the capabilities exchange message from the partner DLSw. This list has the same format described for dlswTConnConfigSapList. A string of zero length is returned before a Capabilities Exchange message is received, or if one is never received. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlswTConnOperPartnerNBExcl = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 14), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperPartnerNBExcl.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerNBExcl.setDescription("The value of true signifies that the NetBIOS names received from this partner in the NetBIOS name list in its capabilities exchange message are the only NetBIOS names reachable by that partner. `False' indicates that other NetBIOS names may be reachable. `False' should be returned before a Capabilities Exchange message is received, if one is never received, or if one is received without a NB Name Exclusivity CV. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlswTConnOperPartnerMacExcl = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 15), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperPartnerMacExcl.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerMacExcl.setDescription("The value of true signifies that the MAC addresses received from this partner in the MAC address list in its capabilities exchange message are the only MAC addresses reachable by that partner. `False' indicates that other MAC addresses may be reachable. `False' should be returned before a Capabilities Exchange message is received, if one is never received, or if one is received without a MAC Address Exclusivity CV. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlswTConnOperPartnerNBInfo = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("partial", 2), ("complete", 3), ("notApplicable", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperPartnerNBInfo.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerNBInfo.setDescription("It is up to this DSLw whether to keep either none, some, or all of the NetBIOS name list that was received in the capabilities exchange message sent by this partner DLSw. This object identifies how much information was kept by this DLSw. These names are stored as userConfigured remote entries in dlswDirNBTable. A value of (4), notApplicable, should be returned before a Capabilities Exchange message is received, or if one is never received. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlswTConnOperPartnerMacInfo = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("partial", 2), ("complete", 3), ("notApplicable", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperPartnerMacInfo.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerMacInfo.setDescription("It is up to this DLSw whether to keep either none, some, or all of the MAC address list that was received in the capabilities exchange message sent by this partner DLSw. This object identifies how much information was kept by this DLSw. These names are stored as userConfigured remote entries in dlswDirMACTable. A value of (4), notApplicable, should be returned before a Capabilities Exchange message is received, or if one is never received. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlswTConnOperDiscTime = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 18), TimeTicks()).setUnits('hundredths of a second').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperDiscTime.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperDiscTime.setDescription("The amount of time (in hundredths of a second) since the dlswTConnOperState last entered `disconnected' state.") dlswTConnOperDiscReason = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("other", 1), ("capExFailed", 2), ("transportLayerDisc", 3), ("operatorCommand", 4), ("lastCircuitDiscd", 5), ("protocolError", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperDiscReason.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperDiscReason.setDescription('This object signifies the reason that either prevented the transport connection from entering the connected state, or caused the transport connection to enter the disconnected state.') dlswTConnOperDiscActiveCir = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperDiscActiveCir.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperDiscActiveCir.setDescription('The number of circuits active (not in DISCONNECTED state) at the time the transport connection was last disconnected. This value is zero if the transport connection has never been connected.') dlswTConnOperInDataPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 21), Counter32()).setUnits('SSP messages').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperInDataPkts.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperInDataPkts.setDescription('The number of Switch-to-Switch Protocol (SSP) messages of type DGRMFRAME, DATAFRAME, or INFOFRAME received on this transport connection.') dlswTConnOperOutDataPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 22), Counter32()).setUnits('SSP messages').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperOutDataPkts.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperOutDataPkts.setDescription('The number of Switch-to-Switch Protocol (SSP) messages of type DGRMFRAME, DATAFRAME, or INFOFRAME transmitted on this transport connection.') dlswTConnOperInDataOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 23), Counter32()).setUnits('octets').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperInDataOctets.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperInDataOctets.setDescription('The number octets in Switch-to-Switch Protocol (SSP) messages of type DGRMFRAME, DATAFRAME, or INFOFRAME received on this transport connection. Each message is counted starting with the first octet following the SSP message header.') dlswTConnOperOutDataOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 24), Counter32()).setUnits('octets').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperOutDataOctets.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperOutDataOctets.setDescription('The number octets in Switch-to-Switch Protocol (SSP) messages of type DGRMFRAME, DATAFRAME, or INFOFRAME transmitted on this transport connection. Each message is counted starting with the first octet following the SSP message header.') dlswTConnOperInCntlPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 25), Counter32()).setUnits('SSP messages').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperInCntlPkts.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperInCntlPkts.setDescription('The number of Switch-to-Switch Protocol (SSP) messages received on this transport connection which were not of type DGRMFRAME, DATAFRAME, or INFOFRAME.') dlswTConnOperOutCntlPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 26), Counter32()).setUnits('SSP messages').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperOutCntlPkts.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperOutCntlPkts.setDescription('The number of Switch-to-Switch Protocol (SSP) messages of transmitted on this transport connection which were not of type DGRMFRAME, DATAFRAME, or INFOFRAME.') dlswTConnOperCURexSents = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 27), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperCURexSents.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperCURexSents.setDescription('The number of CanUReach_ex messages sent on this transport connection.') dlswTConnOperICRexRcvds = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 28), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperICRexRcvds.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperICRexRcvds.setDescription('The number of ICanReach_ex messages received on this transport connection.') dlswTConnOperCURexRcvds = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 29), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperCURexRcvds.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperCURexRcvds.setDescription('The number of CanUReach_ex messages received on this transport connection.') dlswTConnOperICRexSents = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 30), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperICRexSents.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperICRexSents.setDescription('The number of ICanReach_ex messages sent on this transport connection.') dlswTConnOperNQexSents = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 31), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperNQexSents.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperNQexSents.setDescription('The number of NetBIOS_NQ_ex (NetBIOS Name Query-explorer) messages sent on this transport connection.') dlswTConnOperNRexRcvds = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 32), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperNRexRcvds.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperNRexRcvds.setDescription('The number of NETBIOS_NR_ex (NetBIOS Name Recognized-explorer) messages received on this transport connection.') dlswTConnOperNQexRcvds = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 33), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperNQexRcvds.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperNQexRcvds.setDescription('The number of NETBIOS_NQ_ex messages received on this transport connection.') dlswTConnOperNRexSents = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 34), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperNRexSents.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperNRexSents.setDescription('The number of NETBIOS_NR_ex messages sent on this transport connection.') dlswTConnOperCirCreates = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 35), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperCirCreates.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperCirCreates.setDescription("The number of times that circuits entered `circuit_established' state (not counting transitions from `circuit_restart').") dlswTConnOperCircuits = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 36), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnOperCircuits.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperCircuits.setDescription("The number of currently active circuits on this transport connection, where `active' means not in `disconnected' state.") dlswTConnSpecific = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 2, 4)) dlswTConnTcp = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1)) dlswTConnTcpConfigTable = MibTable((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 1), ) if mibBuilder.loadTexts: dlswTConnTcpConfigTable.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpConfigTable.setDescription('This table defines the TCP transport connections that will be either initiated by or accepted by this DSLw. It augments the entries in dlswTConnConfigTable whose domain is dlswTCPDomain.') dlswTConnTcpConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 1, 1), ).setIndexNames((0, "DLSW-MIB", "dlswTConnConfigIndex")) if mibBuilder.loadTexts: dlswTConnTcpConfigEntry.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpConfigEntry.setDescription('Each conceptual row defines parameters that are specific to dlswTCPDomain transport connections.') dlswTConnTcpConfigKeepAliveInt = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1800))).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnTcpConfigKeepAliveInt.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpConfigKeepAliveInt.setDescription('The time in seconds between TCP keepAlive messages when no traffic is flowing. Zero signifies no keepAlive protocol. Changes take effect only for new TCP connections.') dlswTConnTcpConfigTcpConnections = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)).clone(2)).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnTcpConfigTcpConnections.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpConfigTcpConnections.setDescription('This is our preferred number of TCP connections within a TCP transport connection. The actual number used is negotiated at capabilities exchange time. Changes take effect only for new transport connections.') dlswTConnTcpConfigMaxSegmentSize = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(4096)).setUnits('packets').setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswTConnTcpConfigMaxSegmentSize.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpConfigMaxSegmentSize.setDescription('This is the number of bytes that this node is willing to receive over the read TCP connection(s). Changes take effect for new transport connections.') dlswTConnTcpOperTable = MibTable((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 2), ) if mibBuilder.loadTexts: dlswTConnTcpOperTable.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpOperTable.setDescription('A list of TCP transport connections. It is optional but desirable for the agent to keep an entry for some period of time after the transport connection is disconnected. This allows the manager to capture additional useful information about the connection, in particular, statistical information and the cause of the disconnection.') dlswTConnTcpOperEntry = MibTableRow((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 2, 1), ).setIndexNames((0, "DLSW-MIB", "dlswTConnOperTDomain"), (0, "DLSW-MIB", "dlswTConnOperRemoteTAddr")) if mibBuilder.loadTexts: dlswTConnTcpOperEntry.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpOperEntry.setDescription('') dlswTConnTcpOperKeepAliveInt = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1800))).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnTcpOperKeepAliveInt.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpOperKeepAliveInt.setDescription('The time in seconds between TCP keepAlive messages when no traffic is flowing. Zero signifies no keepAlive protocol is operating.') dlswTConnTcpOperPrefTcpConnections = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnTcpOperPrefTcpConnections.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpOperPrefTcpConnections.setDescription('This is the number of TCP connections preferred by this DLSw partner, as received in its capabilities exchange message.') dlswTConnTcpOperTcpConnections = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswTConnTcpOperTcpConnections.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpOperTcpConnections.setDescription('This is the actual current number of TCP connections within this transport connection.') dlswIfTable = MibTable((1, 3, 6, 1, 2, 1, 46, 1, 3, 1), ) if mibBuilder.loadTexts: dlswIfTable.setStatus('current') if mibBuilder.loadTexts: dlswIfTable.setDescription('The list of interfaces on which DLSw is active.') dlswIfEntry = MibTableRow((1, 3, 6, 1, 2, 1, 46, 1, 3, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: dlswIfEntry.setStatus('current') if mibBuilder.loadTexts: dlswIfEntry.setDescription('') dlswIfRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 3, 1, 1, 1), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswIfRowStatus.setStatus('current') if mibBuilder.loadTexts: dlswIfRowStatus.setDescription('This object is used by the manager to create or delete the row entry in the dlswIfTable following the RowStatus textual convention.') dlswIfVirtualSegment = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 4095), ValueRangeConstraint(65535, 65535), )).clone(65535)).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswIfVirtualSegment.setStatus('current') if mibBuilder.loadTexts: dlswIfVirtualSegment.setDescription('The segment number that uniquely identifies the virtual segment to which this DLSw interface is connected. Current source routing protocols limit this value to the range 0 - 4095. (The value 0 is used by some management applications for special test cases.) A value of 65535 signifies that no virtual segment is assigned to this interface. For instance, in a non-source routing environment, segment number assignment is not required.') dlswIfSapList = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 3, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(16, 16)).setFixedLength(16).clone(hexValue="AA000000000000000000000000000000")).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswIfSapList.setStatus('current') if mibBuilder.loadTexts: dlswIfSapList.setDescription('The SAP list indicates which SAPs are allowed to be data link switched through this interface. This list has the same format described for dlswTConnConfigSapList. When changes to this object take effect is implementation- specific. Turning off a particular SAP can destroy active circuits that are using that SAP. An agent implementation may reject such changes until there are no active circuits if it so chooses. In this case, it is up to the manager to close the circuits first, using dlswCircuitState. The DEFVAL below indicates support for SAPs 0, 4, 8, and C.') dlswDirStat = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 4, 1)) dlswDirMacEntries = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 1), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswDirMacEntries.setStatus('current') if mibBuilder.loadTexts: dlswDirMacEntries.setDescription('The current total number of entries in the dlswDirMacTable.') dlswDirMacCacheHits = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswDirMacCacheHits.setStatus('current') if mibBuilder.loadTexts: dlswDirMacCacheHits.setDescription('The number of times a cache search for a particular MAC address resulted in success.') dlswDirMacCacheMisses = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswDirMacCacheMisses.setStatus('current') if mibBuilder.loadTexts: dlswDirMacCacheMisses.setDescription('The number of times a cache search for a particular MAC address resulted in failure.') dlswDirMacCacheNextIndex = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswDirMacCacheNextIndex.setStatus('current') if mibBuilder.loadTexts: dlswDirMacCacheNextIndex.setDescription('The next value of dlswDirMacIndex to be assigned by the agent. A retrieval of this object atomically reserves the returned value for use by the manager to create a row in dlswDirMacTable. This makes it possible for the agent to control the index space of the MAC address cache, yet allows the manager to administratively create new rows.') dlswDirNBEntries = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 5), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswDirNBEntries.setStatus('current') if mibBuilder.loadTexts: dlswDirNBEntries.setDescription('The current total number of entries in the dlswDirNBTable.') dlswDirNBCacheHits = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswDirNBCacheHits.setStatus('current') if mibBuilder.loadTexts: dlswDirNBCacheHits.setDescription('The number of times a cache search for a particular NetBIOS name resulted in success.') dlswDirNBCacheMisses = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswDirNBCacheMisses.setStatus('current') if mibBuilder.loadTexts: dlswDirNBCacheMisses.setDescription('The number of times a cache search for a particular NetBIOS name resulted in failure.') dlswDirNBCacheNextIndex = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswDirNBCacheNextIndex.setStatus('current') if mibBuilder.loadTexts: dlswDirNBCacheNextIndex.setDescription('The next value of dlswDirNBIndex to be assigned by the agent. A retrieval of this object atomically reserves the returned value for use by the manager to create a row in dlswDirNBTable. This makes it possible for the agent to control the index space for the NetBIOS name cache, yet allows the manager to administratively create new rows.') dlswDirCache = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 4, 2)) dlswDirMacTable = MibTable((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1), ) if mibBuilder.loadTexts: dlswDirMacTable.setStatus('current') if mibBuilder.loadTexts: dlswDirMacTable.setDescription('This table contains locations of MAC addresses. They could be either verified or not verified, local or remote, and configured locally or learned from either Capabilities Exchange messages or directory searches.') dlswDirMacEntry = MibTableRow((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1), ).setIndexNames((0, "DLSW-MIB", "dlswDirMacIndex")) if mibBuilder.loadTexts: dlswDirMacEntry.setStatus('current') if mibBuilder.loadTexts: dlswDirMacEntry.setDescription('Indexed by dlswDirMacIndex.') dlswDirMacIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))) if mibBuilder.loadTexts: dlswDirMacIndex.setStatus('current') if mibBuilder.loadTexts: dlswDirMacIndex.setDescription('Uniquely identifies a conceptual row of this table.') dlswDirMacMac = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 2), MacAddressNC()).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirMacMac.setStatus('current') if mibBuilder.loadTexts: dlswDirMacMac.setDescription('The MAC address, together with the dlswDirMacMask, specifies a set of MAC addresses that are defined or discovered through an interface or partner DLSw nodes.') dlswDirMacMask = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 3), MacAddressNC().clone(hexValue="FFFFFFFFFFFF")).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirMacMask.setStatus('current') if mibBuilder.loadTexts: dlswDirMacMask.setDescription('The MAC address mask, together with the dlswDirMacMac, specifies a set of MAC addresses that are defined or discovered through an interface or partner DLSw nodes.') dlswDirMacEntryType = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("userConfiguredPublic", 2), ("userConfiguredPrivate", 3), ("partnerCapExMsg", 4), ("dynamic", 5))).clone('userConfiguredPublic')).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirMacEntryType.setStatus('current') if mibBuilder.loadTexts: dlswDirMacEntryType.setDescription('The cause of the creation of this conceptual row. It could be one of the three methods: (1) user configured, including via management protocol set operations, configuration file, command line or equivalent methods; (2) learned from the partner DLSw Capabilities Exchange messages; and (3) dynamic, e.g., learned from ICanReach messages, or LAN explorer frames. Since only individual MAC addresses can be dynamically learned, dynamic entries will all have a mask of all FFs. The public versus private distinction for user- configured resources applies only to local resources (UC remote resources are private), and indicates whether that resource should be advertised in capabilities exchange messages sent by this node.') dlswDirMacLocationType = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("local", 2), ("remote", 3))).clone('local')).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirMacLocationType.setStatus('current') if mibBuilder.loadTexts: dlswDirMacLocationType.setDescription('The location of the resource (or a collection of resources using a mask) of this conceptual row is either (1) local - the resource is reachable via an interface, or (2) remote - the resource is reachable via a partner DLSw node (or a set of partner DLSw nodes).') dlswDirMacLocation = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 6), RowPointer().clone((0, 0))).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirMacLocation.setStatus('current') if mibBuilder.loadTexts: dlswDirMacLocation.setDescription('Points to either the ifEntry, dlswTConnConfigEntry, dlswTConnOperEntry, 0.0, or something that is implementation specific. It identifies the location of the MAC address (or the collection of MAC addresses.)') dlswDirMacStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unknown", 1), ("reachable", 2), ("notReachable", 3))).clone('unknown')).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirMacStatus.setStatus('current') if mibBuilder.loadTexts: dlswDirMacStatus.setDescription("This object specifies whether DLSw currently believes the MAC address to be accessible at the specified location. The value `notReachable' allows a configured resource definition to be taken out of service when a search to that resource fails (avoiding a repeat of the search).") dlswDirMacLFSize = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 8), LFSize().clone('lfs65535')).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirMacLFSize.setStatus('current') if mibBuilder.loadTexts: dlswDirMacLFSize.setDescription('The largest size of the MAC INFO field (LLC header and data) that a circuit to the MAC address can carry through this path.') dlswDirMacRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 9), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirMacRowStatus.setStatus('current') if mibBuilder.loadTexts: dlswDirMacRowStatus.setDescription('This object is used by the manager to create or delete the row entry in the dlswDirMacTable following the RowStatus textual convention.') dlswDirNBTable = MibTable((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2), ) if mibBuilder.loadTexts: dlswDirNBTable.setStatus('current') if mibBuilder.loadTexts: dlswDirNBTable.setDescription('This table contains locations of NetBIOS names. They could be either verified or not verified, local or remote, and configured locally or learned from either Capabilities Exchange messages or directory searches.') dlswDirNBEntry = MibTableRow((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1), ).setIndexNames((0, "DLSW-MIB", "dlswDirNBIndex")) if mibBuilder.loadTexts: dlswDirNBEntry.setStatus('current') if mibBuilder.loadTexts: dlswDirNBEntry.setDescription('Indexed by dlswDirNBIndex.') dlswDirNBIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))) if mibBuilder.loadTexts: dlswDirNBIndex.setStatus('current') if mibBuilder.loadTexts: dlswDirNBIndex.setDescription('Uniquely identifies a conceptual row of this table.') dlswDirNBName = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 2), NBName()).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirNBName.setStatus('current') if mibBuilder.loadTexts: dlswDirNBName.setDescription("The NetBIOS name (including `any char' and `wildcard' characters) specifies a set of NetBIOS names that are defined or discovered through an interface or partner DLSw nodes.") dlswDirNBNameType = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unknown", 1), ("individual", 2), ("group", 3))).clone('unknown')).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirNBNameType.setStatus('current') if mibBuilder.loadTexts: dlswDirNBNameType.setDescription('Whether dlswDirNBName represents an (or a set of) individual or group NetBIOS name(s).') dlswDirNBEntryType = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("userConfiguredPublic", 2), ("userConfiguredPrivate", 3), ("partnerCapExMsg", 4), ("dynamic", 5))).clone('userConfiguredPublic')).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirNBEntryType.setStatus('current') if mibBuilder.loadTexts: dlswDirNBEntryType.setDescription('The cause of the creation of this conceptual row. It could be one of the three methods: (1) user configured, including via management protocol set operations, configuration file, command line, or equivalent methods; (2) learned from the partner DLSw Capabilities Exchange messages; and (3) dynamic, e.g., learned from ICanReach messages, or test frames. Since only actual NetBIOS names can be dynamically learned, dynamic entries will not contain any char or wildcard characters. The public versus private distinction for user- configured resources applies only to local resources (UC remote resources are private), and indicates whether that resource should be advertised in capabilities exchange messages sent by this node.') dlswDirNBLocationType = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("local", 2), ("remote", 3))).clone('local')).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirNBLocationType.setStatus('current') if mibBuilder.loadTexts: dlswDirNBLocationType.setDescription('The location of the resource (or a collection of resources using any char/wildcard characters) of this conceptual row is either (1) local - the resource is reachable via an interface, or (2) remote - the resource is reachable via a a partner DLSw node (or a set of partner DLSw nodes).') dlswDirNBLocation = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 6), RowPointer().clone((0, 0))).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirNBLocation.setStatus('current') if mibBuilder.loadTexts: dlswDirNBLocation.setDescription('Points to either the ifEntry, dlswTConnConfigEntry, dlswTConnOperEntry, 0.0, or something that is implementation specific. It identifies the location of the NetBIOS name or the set of NetBIOS names.') dlswDirNBStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unknown", 1), ("reachable", 2), ("notReachable", 3))).clone('unknown')).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirNBStatus.setStatus('current') if mibBuilder.loadTexts: dlswDirNBStatus.setDescription("This object specifies whether DLSw currently believes the NetBIOS name to be accessible at the specified location. The value `notReachable' allows a configured resource definition to be taken out of service when a search to that resource fails (avoiding a repeat of the search).") dlswDirNBLFSize = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 8), LFSize().clone('lfs65535')).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirNBLFSize.setStatus('current') if mibBuilder.loadTexts: dlswDirNBLFSize.setDescription('The largest size of the MAC INFO field (LLC header and data) that a circuit to the NB name can carry through this path.') dlswDirNBRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 9), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswDirNBRowStatus.setStatus('current') if mibBuilder.loadTexts: dlswDirNBRowStatus.setDescription('This object is used by manager to create or delete the row entry in the dlswDirNBTable following the RowStatus textual convention.') dlswDirLocate = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 4, 3)) dlswDirLocateMacTable = MibTable((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 1), ) if mibBuilder.loadTexts: dlswDirLocateMacTable.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateMacTable.setDescription('This table is used to retrieve all entries in the dlswDirMacTable that match a given MAC address, in the order of the best matched first, the second best matched second, and so on, till no more entries match the given MAC address.') dlswDirLocateMacEntry = MibTableRow((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 1, 1), ).setIndexNames((0, "DLSW-MIB", "dlswDirLocateMacMac"), (0, "DLSW-MIB", "dlswDirLocateMacMatch")) if mibBuilder.loadTexts: dlswDirLocateMacEntry.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateMacEntry.setDescription('Indexed by dlswDirLocateMacMac and dlswDirLocateMacMatch. The first object is the MAC address of interest, and the second object is the order in the list of all entries that match the MAC address.') dlswDirLocateMacMac = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 1, 1, 1), MacAddressNC()) if mibBuilder.loadTexts: dlswDirLocateMacMac.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateMacMac.setDescription('The MAC address to be located.') dlswDirLocateMacMatch = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))) if mibBuilder.loadTexts: dlswDirLocateMacMatch.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateMacMatch.setDescription('The order of the entries of dlswDirMacTable that match dlswDirLocateMacMac. A value of one represents the entry that best matches the MAC address. A value of two represents the second best matched entry, and so on.') dlswDirLocateMacLocation = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 1, 1, 3), RowPointer()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswDirLocateMacLocation.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateMacLocation.setDescription('Points to the dlswDirMacEntry.') dlswDirLocateNBTable = MibTable((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 2), ) if mibBuilder.loadTexts: dlswDirLocateNBTable.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateNBTable.setDescription('This table is used to retrieve all entries in the dlswDirNBTable that match a given NetBIOS name, in the order of the best matched first, the second best matched second, and so on, till no more entries match the given NetBIOS name.') dlswDirLocateNBEntry = MibTableRow((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 2, 1), ).setIndexNames((0, "DLSW-MIB", "dlswDirLocateNBName"), (0, "DLSW-MIB", "dlswDirLocateNBMatch")) if mibBuilder.loadTexts: dlswDirLocateNBEntry.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateNBEntry.setDescription('Indexed by dlswDirLocateNBName and dlswDirLocateNBMatch. The first object is the NetBIOS name of interest, and the second object is the order in the list of all entries that match the NetBIOS name.') dlswDirLocateNBName = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 2, 1, 1), NBName()) if mibBuilder.loadTexts: dlswDirLocateNBName.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateNBName.setDescription('The NetBIOS name to be located (no any char or wildcards).') dlswDirLocateNBMatch = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))) if mibBuilder.loadTexts: dlswDirLocateNBMatch.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateNBMatch.setDescription('The order of the entries of dlswDirNBTable that match dlswDirLocateNBName. A value of one represents the entry that best matches the NetBIOS name. A value of two represents the second best matched entry, and so on.') dlswDirLocateNBLocation = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 2, 1, 3), RowPointer()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswDirLocateNBLocation.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateNBLocation.setDescription('Points to the dlswDirNBEntry.') dlswCircuitStat = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 5, 1)) dlswCircuitStatActives = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 5, 1, 1), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitStatActives.setStatus('current') if mibBuilder.loadTexts: dlswCircuitStatActives.setDescription('The current number of circuits in dlswCircuitTable that are not in the disconnected state.') dlswCircuitStatCreates = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 5, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitStatCreates.setStatus('current') if mibBuilder.loadTexts: dlswCircuitStatCreates.setDescription("The total number of entries ever added to dlswCircuitTable, or reactivated upon exiting `disconnected' state.") dlswCircuitTable = MibTable((1, 3, 6, 1, 2, 1, 46, 1, 5, 2), ) if mibBuilder.loadTexts: dlswCircuitTable.setStatus('current') if mibBuilder.loadTexts: dlswCircuitTable.setDescription('This table is the circuit representation in the DLSw entity. Virtual data links are used to represent any internal end stations. There is a conceptual row associated with each data link. Thus, for circuits without an intervening transport connection, there are two conceptual rows for each circuit. The table consists of the circuits being established, established, and as an implementation option, circuits that have been disconnected. For circuits carried over transport connections, an entry is created after the CUR_cs was sent or received. For circuits between two locally attached devices, or internal virtual MAC addresses, an entry is created when the equivalent of CUR_cs sent/received status is reached. End station 1 (S1) and End station 2 (S2) are used to represent the two end stations of the circuit. S1 is always an end station which is locally attached. S2 may be locally attached or remote. If it is locally attached, the circuit will be represented by two rows indexed by (A, B) and (B, A) where A & B are the relevant MACs/SAPs. The table may be used to store the causes of disconnection of circuits. It is recommended that the oldest disconnected circuit entry be removed from this table when the memory space of disconnected circuits is needed.') dlswCircuitEntry = MibTableRow((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1), ).setIndexNames((0, "DLSW-MIB", "dlswCircuitS1Mac"), (0, "DLSW-MIB", "dlswCircuitS1Sap"), (0, "DLSW-MIB", "dlswCircuitS2Mac"), (0, "DLSW-MIB", "dlswCircuitS2Sap")) if mibBuilder.loadTexts: dlswCircuitEntry.setStatus('current') if mibBuilder.loadTexts: dlswCircuitEntry.setDescription('') dlswCircuitS1Mac = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 1), MacAddressNC()) if mibBuilder.loadTexts: dlswCircuitS1Mac.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1Mac.setDescription('The MAC Address of End Station 1 (S1) used for this circuit.') dlswCircuitS1Sap = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)) if mibBuilder.loadTexts: dlswCircuitS1Sap.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1Sap.setDescription('The SAP at End Station 1 (S1) used for this circuit.') dlswCircuitS1IfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitS1IfIndex.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1IfIndex.setDescription('The ifEntry index of the local interface through which S1 can be reached.') dlswCircuitS1DlcType = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 4), DlcType()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitS1DlcType.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1DlcType.setDescription('The DLC protocol in use between the DLSw node and S1.') dlswCircuitS1RouteInfo = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 30))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitS1RouteInfo.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1RouteInfo.setDescription('If source-route bridging is in use between the DLSw node and S1, this is the routing information field describing the path between the two devices. Otherwise the value will be an OCTET STRING of zero length.') dlswCircuitS1CircuitId = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 6), OctetString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(8, 8), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitS1CircuitId.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1CircuitId.setDescription('The Circuit ID assigned by this DLSw node to this circuit. The first four octets are the DLC port Id, and the second four octets are the Data Link Correlator. If the DLSw SSP was not used to establish this circuit, the value will be a string of zero length.') dlswCircuitS1Dlc = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 7), RowPointer()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitS1Dlc.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1Dlc.setDescription('Points to a conceptual row of the underlying DLC MIB, which could either be the standard MIBs (e.g., the SDLC), or an enterprise-specific DLC MIB.') dlswCircuitS2Mac = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 8), MacAddressNC()) if mibBuilder.loadTexts: dlswCircuitS2Mac.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS2Mac.setDescription('The MAC Address of End Station 2 (S2) used for this circuit.') dlswCircuitS2Sap = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)) if mibBuilder.loadTexts: dlswCircuitS2Sap.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS2Sap.setDescription('The SAP at End Station 2 (S2) used for this circuit.') dlswCircuitS2Location = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 10), EndStationLocation()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitS2Location.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS2Location.setDescription('The location of End Station 2 (S2). If the location of End Station 2 is local, the interface information will be available in the conceptual row whose S1 and S2 are the S2 and the S1 of this conceptual row, respectively.') dlswCircuitS2TDomain = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 11), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitS2TDomain.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS2TDomain.setDescription('If the location of End Station 2 is remote, this value is the transport domain of the transport protocol the circuit is running over. Otherwise, the value is 0.0.') dlswCircuitS2TAddress = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 12), TAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitS2TAddress.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS2TAddress.setDescription('If the location of End Station 2 is remote, this object contains the address of the partner DLSw, else it will be an OCTET STRING of zero length.') dlswCircuitS2CircuitId = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 13), OctetString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(8, 8), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitS2CircuitId.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS2CircuitId.setDescription('The Circuit ID assigned to this circuit by the partner DLSw node. The first four octets are the DLC port Id, and the second four octets are the Data Link Correlator. If the DLSw SSP was not used to establish this circuit, the value will be a string of zero length.') dlswCircuitOrigin = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("s1", 1), ("s2", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitOrigin.setStatus('current') if mibBuilder.loadTexts: dlswCircuitOrigin.setDescription('This object specifies which of the two end stations initiated the establishment of this circuit.') dlswCircuitEntryTime = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 15), TimeTicks()).setUnits('hundredths of a second').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitEntryTime.setStatus('current') if mibBuilder.loadTexts: dlswCircuitEntryTime.setDescription('The amount of time (in hundredths of a second) since this circuit table conceptual row was created.') dlswCircuitStateTime = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 16), TimeTicks()).setUnits('hundredths of a second').setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitStateTime.setStatus('current') if mibBuilder.loadTexts: dlswCircuitStateTime.setDescription('The amount of time (in hundredths of a second) since this circuit entered the current state.') dlswCircuitState = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=NamedValues(("disconnected", 1), ("circuitStart", 2), ("resolvePending", 3), ("circuitPending", 4), ("circuitEstablished", 5), ("connectPending", 6), ("contactPending", 7), ("connected", 8), ("disconnectPending", 9), ("haltPending", 10), ("haltPendingNoack", 11), ("circuitRestart", 12), ("restartPending", 13)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dlswCircuitState.setStatus('current') if mibBuilder.loadTexts: dlswCircuitState.setDescription("The current state of this circuit. The agent, implementation specific, may choose to keep entries for some period of time after circuit disconnect, so the manager can gather the time and cause of disconnection. While all of the specified values may be returned from a GET operation, the only SETable value is `disconnectPending'. When this value is set, DLSw should perform the appropriate action given its previous state (e.g., send HALT_DL if the state was `connected') to bring the circuit down to the `disconnected' state. Both the partner DLSw and local end station(s) should be notified as appropriate. This MIB provides no facility to re-establish a disconnected circuit, because in DLSw this should be an end station-driven function.") dlswCircuitPriority = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("unsupported", 1), ("low", 2), ("medium", 3), ("high", 4), ("highest", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitPriority.setStatus('current') if mibBuilder.loadTexts: dlswCircuitPriority.setDescription("The transmission priority of this circuit as understood by this DLSw node. This value is determined by the two DLSw nodes at circuit startup time. If this DLSw node does not support DLSw circuit priority, the value `unsupported' should be returned.") dlswCircuitFCSendGrantedUnits = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitFCSendGrantedUnits.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCSendGrantedUnits.setDescription('The number of paced SSP messages that this DLSw is currently authorized to send on this circuit before it must stop and wait for an additional flow control indication from the partner DLSw. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlswCircuitFCSendCurrentWndw = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitFCSendCurrentWndw.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCSendCurrentWndw.setDescription("The current window size that this DLSw is using in its role as a data sender. This is the value by which this DLSw would increase the number of messages it is authorized to send, if it were to receive a flow control indication with the bits specifying `repeat window'. The value zero should be returned if this circuit is not running the DLSw pacing protocol.") dlswCircuitFCRecvGrantedUnits = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitFCRecvGrantedUnits.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCRecvGrantedUnits.setDescription('The current number of paced SSP messages that this DLSw has authorized the partner DLSw to send on this circuit before the partner DLSw must stop and wait for an additional flow control indication from this DLSw. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlswCircuitFCRecvCurrentWndw = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitFCRecvCurrentWndw.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCRecvCurrentWndw.setDescription("The current window size that this DLSw is using in its role as a data receiver. This is the number of additional paced SSP messages that this DLSw would be authorizing its DLSw partner to send, if this DLSw were to send a flow control indication with the bits specifying `repeat window'. The value zero should be returned if this circuit is not running the DLSw pacing protocol.") dlswCircuitFCLargestRecvGranted = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 23), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitFCLargestRecvGranted.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCLargestRecvGranted.setDescription('The largest receive window size granted by this DLSw during the current activation of this circuit. This is not the largest number of messages granted at any time, but the largest window size as represented by FCIND operator bits. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlswCircuitFCLargestSendGranted = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 24), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitFCLargestSendGranted.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCLargestSendGranted.setDescription('The largest send (with respect to this DLSw) window size granted by the partner DLSw during the current activation of this circuit. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlswCircuitFCHalveWndwSents = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 25), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitFCHalveWndwSents.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCHalveWndwSents.setDescription('The number of Halve Window operations this DLSw has sent on this circuit, in its role as a data receiver. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlswCircuitFCResetOpSents = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 26), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitFCResetOpSents.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCResetOpSents.setDescription('The number of Reset Window operations this DLSw has sent on this circuit, in its role as a data receiver. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlswCircuitFCHalveWndwRcvds = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 27), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitFCHalveWndwRcvds.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCHalveWndwRcvds.setDescription('The number of Halve Window operations this DLSw has received on this circuit, in its role as a data sender. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlswCircuitFCResetOpRcvds = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 28), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitFCResetOpRcvds.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCResetOpRcvds.setDescription('The number of Reset Window operations this DLSw has received on this circuit, in its role as a data sender. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlswCircuitDiscReasonLocal = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("endStationDiscRcvd", 1), ("endStationDlcError", 2), ("protocolError", 3), ("operatorCommand", 4), ("haltDlRcvd", 5), ("haltDlNoAckRcvd", 6), ("transportConnClosed", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitDiscReasonLocal.setStatus('current') if mibBuilder.loadTexts: dlswCircuitDiscReasonLocal.setDescription('The reason why this circuit was last disconnected, as seen by this DLSw node. This object is present only if the agent keeps circuit table entries around for some period after circuit disconnect.') dlswCircuitDiscReasonRemote = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("unknown", 1), ("endStationDiscRcvd", 2), ("endStationDlcError", 3), ("protocolError", 4), ("operatorCommand", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitDiscReasonRemote.setStatus('current') if mibBuilder.loadTexts: dlswCircuitDiscReasonRemote.setDescription("The generic reason code why this circuit was last disconnected, as reported by the DLSw partner in a HALT_DL or HALT_DL_NOACK. If the partner does not send a reason code in these messages, or the DLSw implementation does not report receiving one, the value `unknown' is returned. This object is present only if the agent keeps circuit table entries around for some period after circuit disconnect.") dlswCircuitDiscReasonRemoteData = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 31), OctetString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswCircuitDiscReasonRemoteData.setStatus('current') if mibBuilder.loadTexts: dlswCircuitDiscReasonRemoteData.setDescription('Implementation-specific data reported by the DLSw partner in a HALT_DL or HALT_DL_NOACK, to help specify how and why this circuit was last disconnected. If the partner does not send this data in these messages, or the DLSw implementation does not report receiving it, a string of zero length is returned. This object is present only if the agent keeps circuit table entries around for some period after circuit disconnect.') dlswSdlcLsEntries = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 6, 1), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dlswSdlcLsEntries.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsEntries.setDescription('The number of entries in dlswSdlcLsTable.') dlswSdlcLsTable = MibTable((1, 3, 6, 1, 2, 1, 46, 1, 6, 2), ) if mibBuilder.loadTexts: dlswSdlcLsTable.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsTable.setDescription('The table defines the virtual MAC addresses for those SDLC link stations that participate in data link switching.') dlswSdlcLsEntry = MibTableRow((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "SNA-SDLC-MIB", "sdlcLSAddress")) if mibBuilder.loadTexts: dlswSdlcLsEntry.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsEntry.setDescription('The index of this table is the ifIndex value for the SDLC port which owns this link station and the poll address of the particular SDLC link station.') dlswSdlcLsLocalMac = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 1), MacAddressNC()).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswSdlcLsLocalMac.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsLocalMac.setDescription('The virtual MAC address used to represent the SDLC-attached link station to the rest of the DLSw network.') dlswSdlcLsLocalSap = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswSdlcLsLocalSap.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsLocalSap.setDescription('The SAP used to represent this link station.') dlswSdlcLsLocalIdBlock = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 3), DisplayString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(3, 3), )).clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswSdlcLsLocalIdBlock.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsLocalIdBlock.setDescription('The block number is the first three digits of the node_id, if available. These 3 hexadecimal digits identify the product.') dlswSdlcLsLocalIdNum = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 4), DisplayString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(5, 5), )).clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswSdlcLsLocalIdNum.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsLocalIdNum.setDescription('The ID number is the last 5 digits of the node_id, if available. These 5 hexadecimal digits are administratively defined and combined with the 3 digit block number form the node_id. This node_id is used to identify the local node and is included in SNA XIDs.') dlswSdlcLsRemoteMac = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 5), MacAddressNC().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswSdlcLsRemoteMac.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsRemoteMac.setDescription('The MAC address to which DLSw should attempt to connect this link station. If this information is not available, a length of zero for this object should be returned.') dlswSdlcLsRemoteSap = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 6), OctetString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(1, 1), )).clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswSdlcLsRemoteSap.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsRemoteSap.setDescription('The SAP of the remote station to which this link station should be connected. If this information is not available, a length of zero for this object should be returned.') dlswSdlcLsRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 7), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: dlswSdlcLsRowStatus.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsRowStatus.setDescription('This object is used by the manager to create or delete the row entry in the dlswSdlcLsTable following the RowStatus textual convention.') dlswTrapControl = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 1, 10)) dlswTrapCntlTConnPartnerReject = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 10, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2), ("partial", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dlswTrapCntlTConnPartnerReject.setStatus('current') if mibBuilder.loadTexts: dlswTrapCntlTConnPartnerReject.setDescription("Indicates whether the DLSw is permitted to emit partner reject related traps. With the value of `enabled' the DLSw will emit all partner reject related traps. With the value of `disabled' the DLSw will not emit any partner reject related traps. With the value of `partial' the DLSw will only emits partner reject traps for CapEx reject. The changes take effect immediately.") dlswTrapCntlTConnProtViolation = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 10, 2), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dlswTrapCntlTConnProtViolation.setStatus('current') if mibBuilder.loadTexts: dlswTrapCntlTConnProtViolation.setDescription('Indicates whether the DLSw is permitted to generate protocol-violation traps on the events such as window size violation. The changes take effect immediately.') dlswTrapCntlTConn = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 10, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2), ("partial", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dlswTrapCntlTConn.setStatus('current') if mibBuilder.loadTexts: dlswTrapCntlTConn.setDescription("Indicates whether the DLSw is permitted to emit transport connection up and down traps. With the value of `enabled' the DLSw will emit traps when connections enter `connected' and `disconnected' states. With the value of `disabled' the DLSw will not emit traps when connections enter of `connected' and `disconnected' states. With the value of `partial' the DLSw will only emits transport connection down traps when the connection is closed with busy. The changes take effect immediately.") dlswTrapCntlCircuit = MibScalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 10, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2), ("partial", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dlswTrapCntlCircuit.setStatus('current') if mibBuilder.loadTexts: dlswTrapCntlCircuit.setDescription("Indicates whether the DLSw is permitted to generate circuit up and down traps. With the value of `enabled' the DLSw will emit traps when circuits enter `connected' and `disconnected' states. With the value of `disabled' the DLSw will not emit traps when circuits enter of `connected' and `disconnected' states. With the value of `partial' the DLSw will emit traps only for those circuits that are initiated by this DLSw, e.g., originating the CUR_CS message. The changes take effect immediately.") dlswTraps = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 1, 0)) dlswTrapTConnPartnerReject = NotificationType((1, 3, 6, 1, 2, 1, 46, 1, 0, 1)).setObjects(("DLSW-MIB", "dlswTConnOperTDomain"), ("DLSW-MIB", "dlswTConnOperRemoteTAddr")) if mibBuilder.loadTexts: dlswTrapTConnPartnerReject.setStatus('current') if mibBuilder.loadTexts: dlswTrapTConnPartnerReject.setDescription('This trap is sent each time a transport connection is rejected by a partner DLSw during Capabilities Exchanges. The emission of this trap is controlled by dlswTrapCntlTConnPartnerReject.') dlswTrapTConnProtViolation = NotificationType((1, 3, 6, 1, 2, 1, 46, 1, 0, 2)).setObjects(("DLSW-MIB", "dlswTConnOperTDomain"), ("DLSW-MIB", "dlswTConnOperRemoteTAddr")) if mibBuilder.loadTexts: dlswTrapTConnProtViolation.setStatus('current') if mibBuilder.loadTexts: dlswTrapTConnProtViolation.setDescription('This trap is sent each time a protocol violation is detected for a transport connection. The emission of this trap is controlled by dlswTrapCntlTConnProtViolation.') dlswTrapTConnUp = NotificationType((1, 3, 6, 1, 2, 1, 46, 1, 0, 3)).setObjects(("DLSW-MIB", "dlswTConnOperTDomain"), ("DLSW-MIB", "dlswTConnOperRemoteTAddr")) if mibBuilder.loadTexts: dlswTrapTConnUp.setStatus('current') if mibBuilder.loadTexts: dlswTrapTConnUp.setDescription("This trap is sent each time a transport connection enters `connected' state. The emission of this trap is controlled by dlswTrapCntlTConn.") dlswTrapTConnDown = NotificationType((1, 3, 6, 1, 2, 1, 46, 1, 0, 4)).setObjects(("DLSW-MIB", "dlswTConnOperTDomain"), ("DLSW-MIB", "dlswTConnOperRemoteTAddr")) if mibBuilder.loadTexts: dlswTrapTConnDown.setStatus('current') if mibBuilder.loadTexts: dlswTrapTConnDown.setDescription("This trap is sent each time a transport connection enters `disconnected' state. The emission of this trap is controlled by dlswTrapCntlTConn.") dlswTrapCircuitUp = NotificationType((1, 3, 6, 1, 2, 1, 46, 1, 0, 5)).setObjects(("DLSW-MIB", "dlswCircuitS1Mac"), ("DLSW-MIB", "dlswCircuitS1Sap"), ("DLSW-MIB", "dlswCircuitS2Mac"), ("DLSW-MIB", "dlswCircuitS2Sap")) if mibBuilder.loadTexts: dlswTrapCircuitUp.setStatus('current') if mibBuilder.loadTexts: dlswTrapCircuitUp.setDescription("This trap is sent each time a circuit enters `connected' state. The emission of this trap is controlled by dlswTrapCntlCircuit.") dlswTrapCircuitDown = NotificationType((1, 3, 6, 1, 2, 1, 46, 1, 0, 6)).setObjects(("DLSW-MIB", "dlswCircuitS1Mac"), ("DLSW-MIB", "dlswCircuitS1Sap"), ("DLSW-MIB", "dlswCircuitS2Mac"), ("DLSW-MIB", "dlswCircuitS2Sap")) if mibBuilder.loadTexts: dlswTrapCircuitDown.setStatus('current') if mibBuilder.loadTexts: dlswTrapCircuitDown.setDescription("This trap is sent each time a circuit enters `disconnected' state. The emission of this trap is controlled by dlswTrapCntlCircuit.") dlswConformance = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 3)) dlswCompliances = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 3, 1)) dlswGroups = MibIdentifier((1, 3, 6, 1, 2, 1, 46, 3, 2)) dlswCoreCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 46, 3, 1, 1)).setObjects(("DLSW-MIB", "dlswNodeGroup"), ("DLSW-MIB", "dlswTConnStatGroup"), ("DLSW-MIB", "dlswTConnConfigGroup"), ("DLSW-MIB", "dlswTConnOperGroup"), ("DLSW-MIB", "dlswInterfaceGroup"), ("DLSW-MIB", "dlswCircuitGroup"), ("DLSW-MIB", "dlswCircuitStatGroup"), ("DLSW-MIB", "dlswNotificationGroup"), ("DLSW-MIB", "dlswNodeNBGroup"), ("DLSW-MIB", "dlswTConnNBGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswCoreCompliance = dlswCoreCompliance.setStatus('current') if mibBuilder.loadTexts: dlswCoreCompliance.setDescription('The core compliance statement for all DLSw nodes.') dlswTConnTcpCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 46, 3, 1, 2)).setObjects(("DLSW-MIB", "dlswTConnTcpConfigGroup"), ("DLSW-MIB", "dlswTConnTcpOperGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswTConnTcpCompliance = dlswTConnTcpCompliance.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpCompliance.setDescription('Compliance for DLSw nodes that use TCP as a transport connection protocol.') dlswDirCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 46, 3, 1, 3)).setObjects(("DLSW-MIB", "dlswDirGroup"), ("DLSW-MIB", "dlswDirNBGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswDirCompliance = dlswDirCompliance.setStatus('current') if mibBuilder.loadTexts: dlswDirCompliance.setDescription('Compliance for DLSw nodes that provide a directory function.') dlswDirLocateCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 46, 3, 1, 4)).setObjects(("DLSW-MIB", "dlswDirLocateGroup"), ("DLSW-MIB", "dlswDirLocateNBGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswDirLocateCompliance = dlswDirLocateCompliance.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateCompliance.setDescription('Compliance for DLSw nodes that provide an ordered list of directory entries for a given resource.') dlswSdlcCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 46, 3, 1, 5)).setObjects(("DLSW-MIB", "dlswSdlcGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswSdlcCompliance = dlswSdlcCompliance.setStatus('current') if mibBuilder.loadTexts: dlswSdlcCompliance.setDescription('Compliance for DLSw nodes that support SDLC.') dlswNodeGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 1)).setObjects(("DLSW-MIB", "dlswNodeVersion"), ("DLSW-MIB", "dlswNodeVendorID"), ("DLSW-MIB", "dlswNodeVersionString"), ("DLSW-MIB", "dlswNodeStdPacingSupport"), ("DLSW-MIB", "dlswNodeStatus"), ("DLSW-MIB", "dlswNodeUpTime"), ("DLSW-MIB", "dlswNodeVirtualSegmentLFSize"), ("DLSW-MIB", "dlswNodeResourceMacExclusivity"), ("DLSW-MIB", "dlswTrapCntlTConnPartnerReject"), ("DLSW-MIB", "dlswTrapCntlTConnProtViolation"), ("DLSW-MIB", "dlswTrapCntlTConn"), ("DLSW-MIB", "dlswTrapCntlCircuit")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswNodeGroup = dlswNodeGroup.setStatus('current') if mibBuilder.loadTexts: dlswNodeGroup.setDescription('Conformance group for DLSw node general information.') dlswNodeNBGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 2)).setObjects(("DLSW-MIB", "dlswNodeResourceNBExclusivity")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswNodeNBGroup = dlswNodeNBGroup.setStatus('current') if mibBuilder.loadTexts: dlswNodeNBGroup.setDescription('Conformance group for DLSw node general information specifically for nodes that support NetBIOS.') dlswTConnStatGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 3)).setObjects(("DLSW-MIB", "dlswTConnStatActiveConnections"), ("DLSW-MIB", "dlswTConnStatCloseIdles"), ("DLSW-MIB", "dlswTConnStatCloseBusys")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswTConnStatGroup = dlswTConnStatGroup.setStatus('current') if mibBuilder.loadTexts: dlswTConnStatGroup.setDescription('Conformance group for statistics for transport connections.') dlswTConnConfigGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 4)).setObjects(("DLSW-MIB", "dlswTConnConfigTDomain"), ("DLSW-MIB", "dlswTConnConfigLocalTAddr"), ("DLSW-MIB", "dlswTConnConfigRemoteTAddr"), ("DLSW-MIB", "dlswTConnConfigLastModifyTime"), ("DLSW-MIB", "dlswTConnConfigEntryType"), ("DLSW-MIB", "dlswTConnConfigGroupDefinition"), ("DLSW-MIB", "dlswTConnConfigSetupType"), ("DLSW-MIB", "dlswTConnConfigSapList"), ("DLSW-MIB", "dlswTConnConfigAdvertiseMacNB"), ("DLSW-MIB", "dlswTConnConfigInitCirRecvWndw"), ("DLSW-MIB", "dlswTConnConfigOpens"), ("DLSW-MIB", "dlswTConnConfigRowStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswTConnConfigGroup = dlswTConnConfigGroup.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigGroup.setDescription('Conformance group for the configuration of transport connections.') dlswTConnOperGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 5)).setObjects(("DLSW-MIB", "dlswTConnOperLocalTAddr"), ("DLSW-MIB", "dlswTConnOperEntryTime"), ("DLSW-MIB", "dlswTConnOperConnectTime"), ("DLSW-MIB", "dlswTConnOperState"), ("DLSW-MIB", "dlswTConnOperConfigIndex"), ("DLSW-MIB", "dlswTConnOperFlowCntlMode"), ("DLSW-MIB", "dlswTConnOperPartnerVersion"), ("DLSW-MIB", "dlswTConnOperPartnerVendorID"), ("DLSW-MIB", "dlswTConnOperPartnerVersionStr"), ("DLSW-MIB", "dlswTConnOperPartnerInitPacingWndw"), ("DLSW-MIB", "dlswTConnOperPartnerSapList"), ("DLSW-MIB", "dlswTConnOperPartnerMacExcl"), ("DLSW-MIB", "dlswTConnOperPartnerMacInfo"), ("DLSW-MIB", "dlswTConnOperDiscTime"), ("DLSW-MIB", "dlswTConnOperDiscReason"), ("DLSW-MIB", "dlswTConnOperDiscActiveCir"), ("DLSW-MIB", "dlswTConnOperInDataPkts"), ("DLSW-MIB", "dlswTConnOperOutDataPkts"), ("DLSW-MIB", "dlswTConnOperInDataOctets"), ("DLSW-MIB", "dlswTConnOperOutDataOctets"), ("DLSW-MIB", "dlswTConnOperInCntlPkts"), ("DLSW-MIB", "dlswTConnOperOutCntlPkts"), ("DLSW-MIB", "dlswTConnOperCURexSents"), ("DLSW-MIB", "dlswTConnOperICRexRcvds"), ("DLSW-MIB", "dlswTConnOperCURexRcvds"), ("DLSW-MIB", "dlswTConnOperICRexSents"), ("DLSW-MIB", "dlswTConnOperCirCreates"), ("DLSW-MIB", "dlswTConnOperCircuits")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswTConnOperGroup = dlswTConnOperGroup.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperGroup.setDescription('Conformance group for operation information for transport connections.') dlswTConnNBGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 6)).setObjects(("DLSW-MIB", "dlswTConnOperPartnerNBExcl"), ("DLSW-MIB", "dlswTConnOperPartnerNBInfo"), ("DLSW-MIB", "dlswTConnOperNQexSents"), ("DLSW-MIB", "dlswTConnOperNRexRcvds"), ("DLSW-MIB", "dlswTConnOperNQexRcvds"), ("DLSW-MIB", "dlswTConnOperNRexSents")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswTConnNBGroup = dlswTConnNBGroup.setStatus('current') if mibBuilder.loadTexts: dlswTConnNBGroup.setDescription('Conformance group for operation information for transport connections, specifically for nodes that support NetBIOS.') dlswTConnTcpConfigGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 7)).setObjects(("DLSW-MIB", "dlswTConnTcpConfigKeepAliveInt"), ("DLSW-MIB", "dlswTConnTcpConfigTcpConnections"), ("DLSW-MIB", "dlswTConnTcpConfigMaxSegmentSize")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswTConnTcpConfigGroup = dlswTConnTcpConfigGroup.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpConfigGroup.setDescription('Conformance group for configuration information for transport connections using TCP.') dlswTConnTcpOperGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 8)).setObjects(("DLSW-MIB", "dlswTConnTcpOperKeepAliveInt"), ("DLSW-MIB", "dlswTConnTcpOperPrefTcpConnections"), ("DLSW-MIB", "dlswTConnTcpOperTcpConnections")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswTConnTcpOperGroup = dlswTConnTcpOperGroup.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpOperGroup.setDescription('Conformance group for operation information for transport connections using TCP.') dlswInterfaceGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 9)).setObjects(("DLSW-MIB", "dlswIfRowStatus"), ("DLSW-MIB", "dlswIfVirtualSegment"), ("DLSW-MIB", "dlswIfSapList")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswInterfaceGroup = dlswInterfaceGroup.setStatus('current') if mibBuilder.loadTexts: dlswInterfaceGroup.setDescription('Conformance group for DLSw interfaces.') dlswDirGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 10)).setObjects(("DLSW-MIB", "dlswDirMacEntries"), ("DLSW-MIB", "dlswDirMacCacheHits"), ("DLSW-MIB", "dlswDirMacCacheMisses"), ("DLSW-MIB", "dlswDirMacCacheNextIndex"), ("DLSW-MIB", "dlswDirMacMac"), ("DLSW-MIB", "dlswDirMacMask"), ("DLSW-MIB", "dlswDirMacEntryType"), ("DLSW-MIB", "dlswDirMacLocationType"), ("DLSW-MIB", "dlswDirMacLocation"), ("DLSW-MIB", "dlswDirMacStatus"), ("DLSW-MIB", "dlswDirMacLFSize"), ("DLSW-MIB", "dlswDirMacRowStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswDirGroup = dlswDirGroup.setStatus('current') if mibBuilder.loadTexts: dlswDirGroup.setDescription('Conformance group for DLSw directory using MAC addresses.') dlswDirNBGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 11)).setObjects(("DLSW-MIB", "dlswDirNBEntries"), ("DLSW-MIB", "dlswDirNBCacheHits"), ("DLSW-MIB", "dlswDirNBCacheMisses"), ("DLSW-MIB", "dlswDirNBCacheNextIndex"), ("DLSW-MIB", "dlswDirNBName"), ("DLSW-MIB", "dlswDirNBNameType"), ("DLSW-MIB", "dlswDirNBEntryType"), ("DLSW-MIB", "dlswDirNBLocationType"), ("DLSW-MIB", "dlswDirNBLocation"), ("DLSW-MIB", "dlswDirNBStatus"), ("DLSW-MIB", "dlswDirNBLFSize"), ("DLSW-MIB", "dlswDirNBRowStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswDirNBGroup = dlswDirNBGroup.setStatus('current') if mibBuilder.loadTexts: dlswDirNBGroup.setDescription('Conformance group for DLSw directory using NetBIOS names.') dlswDirLocateGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 12)).setObjects(("DLSW-MIB", "dlswDirLocateMacLocation")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswDirLocateGroup = dlswDirLocateGroup.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateGroup.setDescription('Conformance group for a node that can return directory entry order for a given MAC address.') dlswDirLocateNBGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 13)).setObjects(("DLSW-MIB", "dlswDirLocateNBLocation")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswDirLocateNBGroup = dlswDirLocateNBGroup.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateNBGroup.setDescription('Conformance group for a node that can return directory entry order for a given NetBIOS name.') dlswCircuitStatGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 14)).setObjects(("DLSW-MIB", "dlswCircuitStatActives"), ("DLSW-MIB", "dlswCircuitStatCreates")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswCircuitStatGroup = dlswCircuitStatGroup.setStatus('current') if mibBuilder.loadTexts: dlswCircuitStatGroup.setDescription('Conformance group for statistics about circuits.') dlswCircuitGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 15)).setObjects(("DLSW-MIB", "dlswCircuitS1IfIndex"), ("DLSW-MIB", "dlswCircuitS1DlcType"), ("DLSW-MIB", "dlswCircuitS1RouteInfo"), ("DLSW-MIB", "dlswCircuitS1CircuitId"), ("DLSW-MIB", "dlswCircuitS1Dlc"), ("DLSW-MIB", "dlswCircuitS2Location"), ("DLSW-MIB", "dlswCircuitS2TDomain"), ("DLSW-MIB", "dlswCircuitS2TAddress"), ("DLSW-MIB", "dlswCircuitS2CircuitId"), ("DLSW-MIB", "dlswCircuitOrigin"), ("DLSW-MIB", "dlswCircuitEntryTime"), ("DLSW-MIB", "dlswCircuitStateTime"), ("DLSW-MIB", "dlswCircuitState"), ("DLSW-MIB", "dlswCircuitPriority"), ("DLSW-MIB", "dlswCircuitFCSendGrantedUnits"), ("DLSW-MIB", "dlswCircuitFCSendCurrentWndw"), ("DLSW-MIB", "dlswCircuitFCRecvGrantedUnits"), ("DLSW-MIB", "dlswCircuitFCRecvCurrentWndw"), ("DLSW-MIB", "dlswCircuitFCLargestRecvGranted"), ("DLSW-MIB", "dlswCircuitFCLargestSendGranted"), ("DLSW-MIB", "dlswCircuitFCHalveWndwSents"), ("DLSW-MIB", "dlswCircuitFCResetOpSents"), ("DLSW-MIB", "dlswCircuitFCHalveWndwRcvds"), ("DLSW-MIB", "dlswCircuitFCResetOpRcvds"), ("DLSW-MIB", "dlswCircuitDiscReasonLocal"), ("DLSW-MIB", "dlswCircuitDiscReasonRemote"), ("DLSW-MIB", "dlswCircuitDiscReasonRemoteData")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswCircuitGroup = dlswCircuitGroup.setStatus('current') if mibBuilder.loadTexts: dlswCircuitGroup.setDescription('Conformance group for DLSw circuits.') dlswSdlcGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 16)).setObjects(("DLSW-MIB", "dlswSdlcLsEntries"), ("DLSW-MIB", "dlswSdlcLsLocalMac"), ("DLSW-MIB", "dlswSdlcLsLocalSap"), ("DLSW-MIB", "dlswSdlcLsLocalIdBlock"), ("DLSW-MIB", "dlswSdlcLsLocalIdNum"), ("DLSW-MIB", "dlswSdlcLsRemoteMac"), ("DLSW-MIB", "dlswSdlcLsRemoteSap"), ("DLSW-MIB", "dlswSdlcLsRowStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswSdlcGroup = dlswSdlcGroup.setStatus('current') if mibBuilder.loadTexts: dlswSdlcGroup.setDescription('Conformance group for DLSw SDLC support.') dlswNotificationGroup = NotificationGroup((1, 3, 6, 1, 2, 1, 46, 3, 2, 17)).setObjects(("DLSW-MIB", "dlswTrapTConnPartnerReject"), ("DLSW-MIB", "dlswTrapTConnProtViolation"), ("DLSW-MIB", "dlswTrapTConnUp"), ("DLSW-MIB", "dlswTrapTConnDown"), ("DLSW-MIB", "dlswTrapCircuitUp"), ("DLSW-MIB", "dlswTrapCircuitDown")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlswNotificationGroup = dlswNotificationGroup.setStatus('current') if mibBuilder.loadTexts: dlswNotificationGroup.setDescription('Conformance group for DLSw notifications.') mibBuilder.exportSymbols("DLSW-MIB", dlswCircuitStatGroup=dlswCircuitStatGroup, dlswNodeVirtualSegmentLFSize=dlswNodeVirtualSegmentLFSize, dlswIfRowStatus=dlswIfRowStatus, dlswTrapTConnProtViolation=dlswTrapTConnProtViolation, dlswDirNBLFSize=dlswDirNBLFSize, dlswCircuitS2TDomain=dlswCircuitS2TDomain, dlswTConnStatCloseBusys=dlswTConnStatCloseBusys, dlswDirMacIndex=dlswDirMacIndex, dlswDirLocateNBGroup=dlswDirLocateNBGroup, dlswDirLocateNBLocation=dlswDirLocateNBLocation, dlswCircuitS2Location=dlswCircuitS2Location, dlswDirCache=dlswDirCache, dlswSdlcLsLocalSap=dlswSdlcLsLocalSap, dlswSdlcLsLocalIdBlock=dlswSdlcLsLocalIdBlock, dlswNotificationGroup=dlswNotificationGroup, dlswInterface=dlswInterface, dlswTrapTConnPartnerReject=dlswTrapTConnPartnerReject, dlswCircuitFCSendCurrentWndw=dlswCircuitFCSendCurrentWndw, dlswTrapCntlTConnProtViolation=dlswTrapCntlTConnProtViolation, EndStationLocation=EndStationLocation, dlswTConnOperDiscTime=dlswTConnOperDiscTime, dlswTConnOperPartnerInitPacingWndw=dlswTConnOperPartnerInitPacingWndw, dlswTConnOperEntryTime=dlswTConnOperEntryTime, dlswTConnOperPartnerMacInfo=dlswTConnOperPartnerMacInfo, dlswTConnOperCURexSents=dlswTConnOperCURexSents, dlswDirStat=dlswDirStat, dlswDirMacCacheHits=dlswDirMacCacheHits, dlswDirLocate=dlswDirLocate, dlswCircuitOrigin=dlswCircuitOrigin, dlswDirMacCacheMisses=dlswDirMacCacheMisses, dlswTConnTcpOperKeepAliveInt=dlswTConnTcpOperKeepAliveInt, dlswCircuitFCLargestRecvGranted=dlswCircuitFCLargestRecvGranted, dlswCircuitS2CircuitId=dlswCircuitS2CircuitId, PYSNMP_MODULE_ID=dlsw, dlswTConnConfigIndex=dlswTConnConfigIndex, dlswDirNBGroup=dlswDirNBGroup, dlswNodeGroup=dlswNodeGroup, dlswTConnConfigInitCirRecvWndw=dlswTConnConfigInitCirRecvWndw, dlswMIB=dlswMIB, dlswDirMacLFSize=dlswDirMacLFSize, dlswTConnOperPartnerMacExcl=dlswTConnOperPartnerMacExcl, dlswDirCompliance=dlswDirCompliance, dlswTConnTcpConfigEntry=dlswTConnTcpConfigEntry, dlswDirNBLocationType=dlswDirNBLocationType, dlswNode=dlswNode, dlswTConnConfigEntry=dlswTConnConfigEntry, dlswSdlcLsLocalIdNum=dlswSdlcLsLocalIdNum, dlsw=dlsw, dlswDirNBLocation=dlswDirNBLocation, dlswTConnStatCloseIdles=dlswTConnStatCloseIdles, dlswTConnOperEntry=dlswTConnOperEntry, dlswDirLocateNBEntry=dlswDirLocateNBEntry, dlswTraps=dlswTraps, dlswCircuitStatCreates=dlswCircuitStatCreates, dlswDirNBCacheHits=dlswDirNBCacheHits, dlswDirNBNameType=dlswDirNBNameType, dlswTConnOperCirCreates=dlswTConnOperCirCreates, dlswTConnConfigTDomain=dlswTConnConfigTDomain, dlswTConnOperInCntlPkts=dlswTConnOperInCntlPkts, dlswIfEntry=dlswIfEntry, dlswDirNBCacheNextIndex=dlswDirNBCacheNextIndex, null=null, dlswTConnStatActiveConnections=dlswTConnStatActiveConnections, DlcType=DlcType, dlswTConnOperInDataOctets=dlswTConnOperInDataOctets, dlswIfSapList=dlswIfSapList, dlswDirMacEntryType=dlswDirMacEntryType, dlswTConnOperTDomain=dlswTConnOperTDomain, dlswCircuitStatActives=dlswCircuitStatActives, TAddress=TAddress, dlswTConnOperNQexSents=dlswTConnOperNQexSents, dlswDirNBRowStatus=dlswDirNBRowStatus, dlswDirNBEntryType=dlswDirNBEntryType, dlswCircuitS1RouteInfo=dlswCircuitS1RouteInfo, dlswTConnConfigGroup=dlswTConnConfigGroup, dlswTConnConfigRowStatus=dlswTConnConfigRowStatus, dlswCircuitState=dlswCircuitState, dlswCircuitEntry=dlswCircuitEntry, dlswCircuitGroup=dlswCircuitGroup, dlswTConnOperOutDataPkts=dlswTConnOperOutDataPkts, dlswTConnTcpConfigTcpConnections=dlswTConnTcpConfigTcpConnections, dlswIfTable=dlswIfTable, dlswDirGroup=dlswDirGroup, dlswDirNBEntries=dlswDirNBEntries, dlswNodeStdPacingSupport=dlswNodeStdPacingSupport, dlswCircuitPriority=dlswCircuitPriority, dlswNodeStatus=dlswNodeStatus, dlswCircuitS2TAddress=dlswCircuitS2TAddress, dlswDirLocateCompliance=dlswDirLocateCompliance, dlswTConn=dlswTConn, dlswCircuitS1CircuitId=dlswCircuitS1CircuitId, dlswSdlcGroup=dlswSdlcGroup, NBName=NBName, dlswIfVirtualSegment=dlswIfVirtualSegment, dlswTConnOperPartnerNBExcl=dlswTConnOperPartnerNBExcl, dlswTConnOperNRexSents=dlswTConnOperNRexSents, dlswTConnTcpOperTable=dlswTConnTcpOperTable, dlswSdlcLsTable=dlswSdlcLsTable, dlswDirLocateMacTable=dlswDirLocateMacTable, dlswTConnOperNQexRcvds=dlswTConnOperNQexRcvds, dlswCircuitFCSendGrantedUnits=dlswCircuitFCSendGrantedUnits, dlswTConnOperTable=dlswTConnOperTable, dlswTConnConfigSapList=dlswTConnConfigSapList, dlswDirMacRowStatus=dlswDirMacRowStatus, DlswTCPAddress=DlswTCPAddress, dlswDirMacEntries=dlswDirMacEntries, dlswTConnConfigEntryType=dlswTConnConfigEntryType, dlswTConnOperInDataPkts=dlswTConnOperInDataPkts, dlswCircuitS2Mac=dlswCircuitS2Mac, dlswDirMacLocationType=dlswDirMacLocationType, dlswTConnOperFlowCntlMode=dlswTConnOperFlowCntlMode, dlswCircuitFCHalveWndwRcvds=dlswCircuitFCHalveWndwRcvds, dlswDirLocateMacEntry=dlswDirLocateMacEntry, dlswSdlc=dlswSdlc, dlswDirNBTable=dlswDirNBTable, dlswCircuitFCRecvGrantedUnits=dlswCircuitFCRecvGrantedUnits, dlswTConnStat=dlswTConnStat, dlswDirLocateNBTable=dlswDirLocateNBTable, dlswDirLocateNBMatch=dlswDirLocateNBMatch, dlswDirLocateGroup=dlswDirLocateGroup, dlswNodeVendorID=dlswNodeVendorID, dlswCircuitStateTime=dlswCircuitStateTime, dlswDirMacEntry=dlswDirMacEntry, dlswDirLocateMacMatch=dlswDirLocateMacMatch, dlswNodeUpTime=dlswNodeUpTime, dlswTConnTcpConfigGroup=dlswTConnTcpConfigGroup, dlswCircuitTable=dlswCircuitTable, dlswCircuitFCHalveWndwSents=dlswCircuitFCHalveWndwSents, dlswTConnConfigOpens=dlswTConnConfigOpens, dlswTConnTcpOperPrefTcpConnections=dlswTConnTcpOperPrefTcpConnections, dlswSdlcCompliance=dlswSdlcCompliance, dlswTConnConfigLocalTAddr=dlswTConnConfigLocalTAddr, dlswTConnOperConnectTime=dlswTConnOperConnectTime, dlswCircuitS2Sap=dlswCircuitS2Sap, dlswTConnNBGroup=dlswTConnNBGroup, dlswNodeResourceMacExclusivity=dlswNodeResourceMacExclusivity, dlswTrapTConnDown=dlswTrapTConnDown, dlswCircuitS1IfIndex=dlswCircuitS1IfIndex, dlswCircuitFCLargestSendGranted=dlswCircuitFCLargestSendGranted, dlswTrapCircuitUp=dlswTrapCircuitUp, dlswTrapCircuitDown=dlswTrapCircuitDown, dlswTrapCntlTConn=dlswTrapCntlTConn, dlswTConnOperRemoteTAddr=dlswTConnOperRemoteTAddr, dlswInterfaceGroup=dlswInterfaceGroup, dlswTConnOperState=dlswTConnOperState, dlswTrapCntlTConnPartnerReject=dlswTrapCntlTConnPartnerReject, dlswGroups=dlswGroups, dlswDirLocateMacLocation=dlswDirLocateMacLocation, dlswTConnTcpOperEntry=dlswTConnTcpOperEntry, dlswTConnConfigLastModifyTime=dlswTConnConfigLastModifyTime, dlswTConnOperConfigIndex=dlswTConnOperConfigIndex, dlswCircuitFCResetOpSents=dlswCircuitFCResetOpSents, dlswDirMacMac=dlswDirMacMac, dlswTConnTcpOperGroup=dlswTConnTcpOperGroup, dlswTConnOperDiscActiveCir=dlswTConnOperDiscActiveCir, dlswTConnConfigGroupDefinition=dlswTConnConfigGroupDefinition, dlswDirMacCacheNextIndex=dlswDirMacCacheNextIndex, dlswSdlcLsRemoteSap=dlswSdlcLsRemoteSap, dlswTConnTcpConfigMaxSegmentSize=dlswTConnTcpConfigMaxSegmentSize, dlswTConnStatGroup=dlswTConnStatGroup, dlswDirectory=dlswDirectory, dlswDirMacMask=dlswDirMacMask, dlswDirMacTable=dlswDirMacTable, dlswTConnTcpConfigKeepAliveInt=dlswTConnTcpConfigKeepAliveInt, dlswTConnOperICRexSents=dlswTConnOperICRexSents, dlswTrapControl=dlswTrapControl, dlswTConnConfigTable=dlswTConnConfigTable, MacAddressNC=MacAddressNC, dlswTConnOperICRexRcvds=dlswTConnOperICRexRcvds, dlswCircuitS1Sap=dlswCircuitS1Sap, dlswTConnOperOutCntlPkts=dlswTConnOperOutCntlPkts, dlswTConnOperOutDataOctets=dlswTConnOperOutDataOctets, dlswTConnOperNRexRcvds=dlswTConnOperNRexRcvds, dlswCircuitS1Mac=dlswCircuitS1Mac, dlswTConnConfigRemoteTAddr=dlswTConnConfigRemoteTAddr, dlswTConnOperPartnerVendorID=dlswTConnOperPartnerVendorID, dlswTConnOperCURexRcvds=dlswTConnOperCURexRcvds, dlswDirNBStatus=dlswDirNBStatus, dlswCircuitS1Dlc=dlswCircuitS1Dlc, dlswTrapCntlCircuit=dlswTrapCntlCircuit, dlswCircuitEntryTime=dlswCircuitEntryTime, dlswTConnConfigAdvertiseMacNB=dlswTConnConfigAdvertiseMacNB, dlswNodeResourceNBExclusivity=dlswNodeResourceNBExclusivity, dlswNodeNBGroup=dlswNodeNBGroup, dlswDirNBEntry=dlswDirNBEntry, dlswSdlcLsRowStatus=dlswSdlcLsRowStatus, LFSize=LFSize, dlswDomains=dlswDomains, dlswCircuitDiscReasonLocal=dlswCircuitDiscReasonLocal, dlswSdlcLsRemoteMac=dlswSdlcLsRemoteMac, dlswTConnConfigSetupType=dlswTConnConfigSetupType, dlswNodeVersionString=dlswNodeVersionString, dlswTConnOperPartnerVersion=dlswTConnOperPartnerVersion, dlswCircuitDiscReasonRemote=dlswCircuitDiscReasonRemote, dlswTConnOperGroup=dlswTConnOperGroup, dlswSdlcLsLocalMac=dlswSdlcLsLocalMac, dlswCircuitStat=dlswCircuitStat, dlswCircuitFCResetOpRcvds=dlswCircuitFCResetOpRcvds, dlswTConnTcpOperTcpConnections=dlswTConnTcpOperTcpConnections, dlswTConnTcp=dlswTConnTcp, dlswSdlcLsEntry=dlswSdlcLsEntry, dlswDirLocateNBName=dlswDirLocateNBName, dlswTConnOperPartnerSapList=dlswTConnOperPartnerSapList, dlswCircuitFCRecvCurrentWndw=dlswCircuitFCRecvCurrentWndw, dlswSdlcLsEntries=dlswSdlcLsEntries, dlswTConnOperDiscReason=dlswTConnOperDiscReason, dlswTConnOperPartnerNBInfo=dlswTConnOperPartnerNBInfo, dlswDirMacLocation=dlswDirMacLocation, dlswDirNBIndex=dlswDirNBIndex, dlswConformance=dlswConformance, dlswTConnTcpCompliance=dlswTConnTcpCompliance, dlswCircuit=dlswCircuit, dlswTConnTcpConfigTable=dlswTConnTcpConfigTable, dlswTConnOperCircuits=dlswTConnOperCircuits, dlswDirMacStatus=dlswDirMacStatus, dlswTConnOperLocalTAddr=dlswTConnOperLocalTAddr, dlswTConnOperPartnerVersionStr=dlswTConnOperPartnerVersionStr, dlswCircuitDiscReasonRemoteData=dlswCircuitDiscReasonRemoteData, dlswCircuitS1DlcType=dlswCircuitS1DlcType, dlswTConnSpecific=dlswTConnSpecific, dlswTCPDomain=dlswTCPDomain, dlswDirNBCacheMisses=dlswDirNBCacheMisses, dlswDirLocateMacMac=dlswDirLocateMacMac, dlswDirNBName=dlswDirNBName, dlswTrapTConnUp=dlswTrapTConnUp, dlswCoreCompliance=dlswCoreCompliance, dlswNodeVersion=dlswNodeVersion, dlswCompliances=dlswCompliances)
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, value_range_constraint, value_size_constraint, single_value_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueRangeConstraint', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection') (if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex') (sdlc_ls_address,) = mibBuilder.importSymbols('SNA-SDLC-MIB', 'sdlcLSAddress') (notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup') (gauge32, mib_identifier, counter64, ip_address, module_identity, mib_2, time_ticks, counter32, mib_scalar, mib_table, mib_table_row, mib_table_column, integer32, bits, unsigned32, object_identity, notification_type, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'Gauge32', 'MibIdentifier', 'Counter64', 'IpAddress', 'ModuleIdentity', 'mib-2', 'TimeTicks', 'Counter32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Integer32', 'Bits', 'Unsigned32', 'ObjectIdentity', 'NotificationType', 'iso') (truth_value, textual_convention, row_pointer, row_status, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'TextualConvention', 'RowPointer', 'RowStatus', 'DisplayString') dlsw = module_identity((1, 3, 6, 1, 2, 1, 46)) if mibBuilder.loadTexts: dlsw.setLastUpdated('9606040900Z') if mibBuilder.loadTexts: dlsw.setOrganization('AIW DLSw MIB RIGLET and IETF DLSw MIB Working Group') if mibBuilder.loadTexts: dlsw.setContactInfo('David D. Chen IBM Corporation 800 Park, Highway 54 Research Triangle Park, NC 27709-9990 Tel: 1 919 254 6182 E-mail: [email protected]') if mibBuilder.loadTexts: dlsw.setDescription('This MIB module contains objects to manage Data Link Switches.') dlsw_mib = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1)) dlsw_domains = mib_identifier((1, 3, 6, 1, 2, 1, 46, 2)) class Nbname(TextualConvention, OctetString): description = "Represents a single qualified NetBIOS name, which can include `don't care' and `wildcard' characters to represent a number of real NetBIOS names. If an individual character position in the qualified name contains a `?', the corresponding character position in a real NetBIOS name is a `don't care'. If the qualified name ends in `*', the remainder of a real NetBIOS name is a `don't care'. `*' is only considered a wildcard if it appears at the end of a name." status = 'current' subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 16) class Macaddressnc(TextualConvention, OctetString): description = 'Represents an 802 MAC address represented in non-canonical format. That is, the most significant bit will be transmitted first. If this information is not available, the value is a zero length string.' status = 'current' display_hint = '1x:' subtype_spec = OctetString.subtypeSpec + constraints_union(value_size_constraint(0, 0), value_size_constraint(6, 6)) class Taddress(TextualConvention, OctetString): description = 'Denotes a transport service address. For dlswTCPDomain, a TAddress is 4 octets long, containing the IP-address in network-byte order.' status = 'current' subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 255) class Endstationlocation(TextualConvention, Integer32): description = 'Representing the location of an end station related to the managed DLSw node.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4)) named_values = named_values(('other', 1), ('internal', 2), ('remote', 3), ('local', 4)) class Dlctype(TextualConvention, Integer32): description = 'Representing the type of DLC of an end station, if applicable.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5)) named_values = named_values(('other', 1), ('na', 2), ('llc', 3), ('sdlc', 4), ('qllc', 5)) class Lfsize(TextualConvention, Integer32): description = 'The largest size of the INFO field (including DLC header, not including any MAC-level or framing octets). 64 valid values as defined by the IEEE 802.1D Addendum are acceptable.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(516, 635, 754, 873, 993, 1112, 1231, 1350, 1470, 1542, 1615, 1688, 1761, 1833, 1906, 1979, 2052, 2345, 2638, 2932, 3225, 3518, 3812, 4105, 4399, 4865, 5331, 5798, 6264, 6730, 7197, 7663, 8130, 8539, 8949, 9358, 9768, 10178, 10587, 10997, 11407, 12199, 12992, 13785, 14578, 15370, 16163, 16956, 17749, 20730, 23711, 26693, 29674, 32655, 38618, 41600, 44591, 47583, 50575, 53567, 56559, 59551, 65535)) named_values = named_values(('lfs516', 516), ('lfs635', 635), ('lfs754', 754), ('lfs873', 873), ('lfs993', 993), ('lfs1112', 1112), ('lfs1231', 1231), ('lfs1350', 1350), ('lfs1470', 1470), ('lfs1542', 1542), ('lfs1615', 1615), ('lfs1688', 1688), ('lfs1761', 1761), ('lfs1833', 1833), ('lfs1906', 1906), ('lfs1979', 1979), ('lfs2052', 2052), ('lfs2345', 2345), ('lfs2638', 2638), ('lfs2932', 2932), ('lfs3225', 3225), ('lfs3518', 3518), ('lfs3812', 3812), ('lfs4105', 4105), ('lfs4399', 4399), ('lfs4865', 4865), ('lfs5331', 5331), ('lfs5798', 5798), ('lfs6264', 6264), ('lfs6730', 6730), ('lfs7197', 7197), ('lfs7663', 7663), ('lfs8130', 8130), ('lfs8539', 8539), ('lfs8949', 8949), ('lfs9358', 9358), ('lfs9768', 9768), ('lfs10178', 10178), ('lfs10587', 10587), ('lfs10997', 10997), ('lfs11407', 11407), ('lfs12199', 12199), ('lfs12992', 12992), ('lfs13785', 13785), ('lfs14578', 14578), ('lfs15370', 15370), ('lfs16163', 16163), ('lfs16956', 16956), ('lfs17749', 17749), ('lfs20730', 20730), ('lfs23711', 23711), ('lfs26693', 26693), ('lfs29674', 29674), ('lfs32655', 32655), ('lfs38618', 38618), ('lfs41600', 41600), ('lfs44591', 44591), ('lfs47583', 47583), ('lfs50575', 50575), ('lfs53567', 53567), ('lfs56559', 56559), ('lfs59551', 59551), ('lfs65535', 65535)) null = mib_identifier((0, 0)) dlsw_tcp_domain = mib_identifier((1, 3, 6, 1, 2, 1, 46, 2, 1)) class Dlswtcpaddress(TextualConvention, OctetString): description = 'Represents the IP address of a DLSw which uses TCP as a transport protocol.' status = 'current' display_hint = '1d.1d.1d.1d' subtype_spec = OctetString.subtypeSpec + value_size_constraint(4, 4) fixed_length = 4 dlsw_node = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 1)) dlsw_t_conn = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 2)) dlsw_interface = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 3)) dlsw_directory = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 4)) dlsw_circuit = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 5)) dlsw_sdlc = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 6)) dlsw_node_version = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswNodeVersion.setReference('DLSW: Switch-to-Switch Protocol RFC 1795') if mibBuilder.loadTexts: dlswNodeVersion.setStatus('current') if mibBuilder.loadTexts: dlswNodeVersion.setDescription('This value identifies the particular version of the DLSw standard supported by this DLSw. The first octet is a hexadecimal value representing the DLSw standard Version number of this DLSw, and the second is a hexadecimal value representing the DLSw standard Release number. This information is reported in DLSw Capabilities Exchange.') dlsw_node_vendor_id = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(3, 3)).setFixedLength(3)).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswNodeVendorID.setReference('DLSW: Switch-to-Switch Protocol RFC 1795') if mibBuilder.loadTexts: dlswNodeVendorID.setStatus('current') if mibBuilder.loadTexts: dlswNodeVendorID.setDescription("The value identifies the manufacturer's IEEE-assigned organizationally Unique Identifier (OUI) of this DLSw. This information is reported in DLSw Capabilities Exchange.") dlsw_node_version_string = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswNodeVersionString.setReference('DLSW: Switch-to-Switch Protocol RFC 1795') if mibBuilder.loadTexts: dlswNodeVersionString.setStatus('current') if mibBuilder.loadTexts: dlswNodeVersionString.setDescription('This string gives product-specific information about this DLSw (e.g., product name, code release and fix level). This flows in Capabilities Exchange messages.') dlsw_node_std_pacing_support = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('adaptiveRcvWindow', 2), ('fixedRcvWindow', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswNodeStdPacingSupport.setStatus('current') if mibBuilder.loadTexts: dlswNodeStdPacingSupport.setDescription('Circuit pacing, as defined in the DLSw Standard, allows each of the two DLSw nodes on a circuit to control the amount of data the other is permitted to send to them. This object reflects the level of support the DLSw node has for this protocol. (1) means the node has no support for the standard circuit pacing flows; it may use RFC 1434+ methods only, or a proprietary flow control scheme. (2) means the node supports the standard scheme and can vary the window sizes it grants as a data receiver. (3) means the node supports the standard scheme but never varies its receive window size.') dlsw_node_status = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('active', 1), ('inactive', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dlswNodeStatus.setStatus('current') if mibBuilder.loadTexts: dlswNodeStatus.setDescription('The status of the DLSw part of the system. Changing the value from active to inactive causes DLSw to take the following actions - (1) it disconnects all circuits through all DLSw partners, (2) it disconnects all transport connections to all DLSw partners, (3) it disconnects all local DLC connections, and (4) it stops processing all DLC connection set-up traffic. Since these are destructive actions, the user should query the circuit and transport connection tables in advance to understand the effect this action will have. Changing the value from inactive to active causes DLSw to come up in its initial state, i.e., transport connections established and ready to bring up circuits.') dlsw_node_up_time = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 6), time_ticks()).setUnits('hundredths of a second').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswNodeUpTime.setStatus('current') if mibBuilder.loadTexts: dlswNodeUpTime.setDescription('The amount of time (in hundredths of a second) since the DLSw portion of the system was last re-initialized. That is, if dlswState is in the active state, the time the dlswState entered the active state. It will remain zero if dlswState is in the inactive state.') dlsw_node_virtual_segment_lf_size = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 7), lf_size().clone('lfs65535')).setMaxAccess('readwrite') if mibBuilder.loadTexts: dlswNodeVirtualSegmentLFSize.setStatus('current') if mibBuilder.loadTexts: dlswNodeVirtualSegmentLFSize.setDescription('The largest frame size (including DLC header and info field but not any MAC-level or framing octets) this DLSw can forward on any path through itself. This object can represent any box- level frame size forwarding restriction (e.g., from the use of fixed-size buffers). Some DLSw implementations will have no such restriction. This value will affect the LF size of circuits during circuit creation. The LF size of an existing circuit can be found in the RIF (Routing Information Field).') dlsw_node_resource_nb_exclusivity = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 8), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dlswNodeResourceNBExclusivity.setStatus('current') if mibBuilder.loadTexts: dlswNodeResourceNBExclusivity.setDescription('The value of true indicates that the NetBIOS Names configured in dlswDirNBTable are the only ones accessible via this DLSw. If a node supports sending run-time capabilities exchange messages, changes to this object should cause that action. It is up to the implementation exactly when to start the run-time capabilities exchange.') dlsw_node_resource_mac_exclusivity = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 9), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dlswNodeResourceMacExclusivity.setStatus('current') if mibBuilder.loadTexts: dlswNodeResourceMacExclusivity.setDescription('The value of true indicates that the MAC addresses configured in the dlswDirMacTable are the only ones accessible via this DLSw. If a node supports sending run-time capabilities exchange messages, changes to this object should cause that action. It is up to the implementation exactly when to start the run-time capabilities exchange.') dlsw_t_conn_stat = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 2, 1)) dlsw_t_conn_stat_active_connections = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 2, 1, 1), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnStatActiveConnections.setStatus('current') if mibBuilder.loadTexts: dlswTConnStatActiveConnections.setDescription("The number of transport connections that are not in `disconnected' state.") dlsw_t_conn_stat_close_idles = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 2, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnStatCloseIdles.setStatus('current') if mibBuilder.loadTexts: dlswTConnStatCloseIdles.setDescription('The number of times transport connections in this node exited the connected state with zero active circuits on the transport connection.') dlsw_t_conn_stat_close_busys = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 2, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnStatCloseBusys.setStatus('current') if mibBuilder.loadTexts: dlswTConnStatCloseBusys.setDescription('The number of times transport connections in this node exited the connected state with some non-zero number of active circuits on the transport connection. Normally this means the transport connection failed unexpectedly.') dlsw_t_conn_config_table = mib_table((1, 3, 6, 1, 2, 1, 46, 1, 2, 2)) if mibBuilder.loadTexts: dlswTConnConfigTable.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigTable.setDescription("This table defines the transport connections that will be initiated or accepted by this DLSw. Structure of masks allows wildcard definition for a collection of transport connections by a conceptual row. For a specific transport connection, there may be multiple of conceptual rows match the transport address. The `best' match will the one to determine the characteristics of the transport connection.") dlsw_t_conn_config_entry = mib_table_row((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1)).setIndexNames((0, 'DLSW-MIB', 'dlswTConnConfigIndex')) if mibBuilder.loadTexts: dlswTConnConfigEntry.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigEntry.setDescription('Each conceptual row defines a collection of transport connections.') dlsw_t_conn_config_index = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))) if mibBuilder.loadTexts: dlswTConnConfigIndex.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigIndex.setDescription('The index to the conceptual row of the table. Negative numbers are not allowed. There are objects defined that point to conceptual rows of this table with this index value. Zero is used to denote that no corresponding row exists. Index values are assigned by the agent, and should not be reused but should continue to increase in value.') dlsw_t_conn_config_t_domain = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 2), object_identifier()).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnConfigTDomain.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigTDomain.setDescription('The object identifier which indicates the transport domain of this conceptual row.') dlsw_t_conn_config_local_t_addr = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 3), t_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnConfigLocalTAddr.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigLocalTAddr.setDescription('The local transport address for this conceptual row of the transport connection definition.') dlsw_t_conn_config_remote_t_addr = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 4), t_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnConfigRemoteTAddr.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigRemoteTAddr.setDescription('The remote transport address. Together with dlswTConnConfigEntryType and dlswTConnConfigGroupDefinition, the object instance of this conceptual row identifies a collection of the transport connections that will be either initiated by this DLSw or initiated by a partner DLSw and accepted by this DLSw.') dlsw_t_conn_config_last_modify_time = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 5), time_ticks()).setUnits('hundredths of a second').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnConfigLastModifyTime.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigLastModifyTime.setDescription('The time (in hundredths of a second) since the value of any object in this conceptual row except for dlswTConnConfigOpens was last changed. This value may be compared to dlswTConnOperConnectTime to determine whether values in this row are completely valid for a transport connection created using this row definition.') dlsw_t_conn_config_entry_type = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('individual', 1), ('global', 2), ('group', 3)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnConfigEntryType.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigEntryType.setDescription("The object instance signifies the type of entry in the associated conceptual row. The value of `individual' means that the entry applies to a specific partner DLSw node as identified by dlswTConnConfigRemoteTAddr and dlswTConnConfigTDomain. The value of `global' means that the entry applies to all partner DLSw nodes of the TDomain. The value of 'group' means that the entry applies to a specific set of DLSw nodes in the TDomain. Any group definitions are enterprise-specific and are pointed to by dlswTConnConfigGroupDefinition. In the cases of `global' and `group', the value in dlswTConnConfigRemoteTAddr may not have any significance.") dlsw_t_conn_config_group_definition = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 7), row_pointer()).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnConfigGroupDefinition.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigGroupDefinition.setDescription("For conceptual rows of `individual' and `global' as specified in dlswTConnConfigEntryType, the instance of this object is `0.0'. For conceptual rows of `group', the instance points to the specific group definition.") dlsw_t_conn_config_setup_type = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('activePersistent', 2), ('activeOnDemand', 3), ('passive', 4), ('excluded', 5))).clone('passive')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnConfigSetupType.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigSetupType.setDescription('This value of the instance of a conceptual row identifies the behavior of the collection of transport connections that this conceptual row defines. The value of activePersistent, activeOnDemand and passive means this DLSw will accept any transport connections, initiated by partner DLSw nodes, which are defined by this conceptual row. The value of activePersistent means this DLSw will also initiate the transport connections of this conceptual row and retry periodically if necessary. The value of activeOnDemand means this DLSw will initiate a transport connection of this conceptual row, if there is a directory cache hits. The value of other is implementation specific. The value of exclude means that the specified node is not allowed to be a partner to this DLSw node. To take a certain conceptual row definition out of service, a value of notInService for dlswTConnConfigRowStatus should be used.') dlsw_t_conn_config_sap_list = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(16, 16)).setFixedLength(16).clone(hexValue='AA000000000000000000000000000000')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnConfigSapList.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigSapList.setDescription('The SAP list indicates which SAPs are advertised to the transport connection defined by this conceptual row. Only SAPs with even numbers are represented, in the form of the most significant bit of the first octet representing the SAP 0, the next most significant bit representing the SAP 2, to the least significant bit of the last octet representing the SAP 254. Data link switching is allowed for those SAPs which have one in its corresponding bit, not allowed otherwise. The whole SAP list has to be changed together. Changing the SAP list affects only new circuit establishments and has no effect on established circuits. This list can be used to restrict specific partners from knowing about all the SAPs used by DLSw on all its interfaces (these are represented in dlswIfSapList for each interface). For instance, one may want to run NetBIOS with some partners but not others. If a node supports sending run-time capabilities exchange messages, changes to this object should cause that action. When to start the run-time capabilities exchange is implementation-specific. The DEFVAL below indicates support for SAPs 0, 4, 8, and C.') dlsw_t_conn_config_advertise_mac_nb = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 10), truth_value().clone('true')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnConfigAdvertiseMacNB.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigAdvertiseMacNB.setDescription('The value of true indicates that any defined local MAC addresses and NetBIOS names will be advertised to a partner node via initial and (if supported) run-time capabilities exchange messages. The DLSw node should send the appropriate exclusivity control vector to accompany each list it sends, or to represent that the node is explicitly configured to have a null list. The value of false indicates that the DLSw node should not send a MAC address list or NetBIOS name list, and should also not send their corresponding exclusivity control vectors.') dlsw_t_conn_config_init_cir_recv_wndw = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(1)).setUnits('SSP messages').setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnConfigInitCirRecvWndw.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigInitCirRecvWndw.setDescription('The initial circuit receive pacing window size, in the unit of SSP messages, to be used for future transport connections activated using this table row. The managed node sends this value as its initial receive pacing window in its initial capabilities exchange message. Changing this value does not affect the initial circuit receive pacing window size of currently active transport connections. If the standard window pacing scheme is not supported, the value is zero. A larger receive window value may be appropriate for partners that are reachable only via physical paths that have longer network delays.') dlsw_t_conn_config_opens = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnConfigOpens.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigOpens.setDescription('Number of times transport connections entered connected state according to the definition of this conceptual row.') dlsw_t_conn_config_row_status = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 2, 1, 13), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnConfigRowStatus.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigRowStatus.setDescription('This object is used by the manager to create or delete the row entry in the dlswTConnConfigTable following the RowStatus textual convention. The value of notInService will be used to take a conceptual row definition out of use.') dlsw_t_conn_oper_table = mib_table((1, 3, 6, 1, 2, 1, 46, 1, 2, 3)) if mibBuilder.loadTexts: dlswTConnOperTable.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperTable.setDescription('A list of transport connections. It is optional but desirable for the agent to keep an entry for some period of time after the transport connection is disconnected. This allows the manager to capture additional useful information about the connection, in particular, statistical information and the cause of the disconnection.') dlsw_t_conn_oper_entry = mib_table_row((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1)).setIndexNames((0, 'DLSW-MIB', 'dlswTConnOperTDomain'), (0, 'DLSW-MIB', 'dlswTConnOperRemoteTAddr')) if mibBuilder.loadTexts: dlswTConnOperEntry.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperEntry.setDescription('') dlsw_t_conn_oper_t_domain = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 1), object_identifier()) if mibBuilder.loadTexts: dlswTConnOperTDomain.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperTDomain.setDescription('The object identifier indicates the transport domain of this transport connection.') dlsw_t_conn_oper_local_t_addr = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 2), t_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperLocalTAddr.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperLocalTAddr.setDescription('The local transport address for this transport connection. This value could be different from dlswTConnConfigLocalAddr, if the value of the latter were changed after this transport connection was established.') dlsw_t_conn_oper_remote_t_addr = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 3), t_address()) if mibBuilder.loadTexts: dlswTConnOperRemoteTAddr.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperRemoteTAddr.setDescription('The remote transport address of this transport connection.') dlsw_t_conn_oper_entry_time = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 4), time_ticks()).setUnits('hundredths of a second').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperEntryTime.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperEntryTime.setDescription('The amount of time (in hundredths of a second) since this transport connection conceptual row was created.') dlsw_t_conn_oper_connect_time = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 5), time_ticks()).setUnits('hundredths of a second').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperConnectTime.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperConnectTime.setDescription("The amount of time (in hundredths of a second) since this transport connection last entered the 'connected' state. A value of zero means this transport connection has never been established.") dlsw_t_conn_oper_state = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('connecting', 1), ('initCapExchange', 2), ('connected', 3), ('quiescing', 4), ('disconnecting', 5), ('disconnected', 6)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dlswTConnOperState.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperState.setDescription("The state of this transport connection. The transport connection enters `connecting' state when DLSw makes a connection request to the transport layer. Once initial Capabilities Exchange is sent, the transport connection enters enters `initCapExchange' state. When partner capabilities have been determined and the transport connection is ready for sending CanUReach (CUR) messages, it moves to the `connected' state. When DLSw is in the process of bringing down the connection, it is in the `disconnecting' state. When the transport layer indicates one of its connections is disconnected, the transport connection moves to the `disconnected' state. Whereas all of the values will be returned in response to a management protocol retrieval operation, only two values may be specified in a management protocol set operation: `quiescing' and `disconnecting'. Changing the value to `quiescing' prevents new circuits from being established, and will cause a transport disconnect when the last circuit on the connection goes away. Changing the value to `disconnecting' will force off all circuits immediately and bring the connection to `disconnected' state.") dlsw_t_conn_oper_config_index = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperConfigIndex.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperConfigIndex.setDescription('The value of dlswTConnConfigIndex of the dlswTConnConfigEntry that governs the configuration information used by this dlswTConnOperEntry. The manager can therefore normally examine both configured and operational information for this transport connection. This value is zero if the corresponding dlswTConnConfigEntry was deleted after the creation of this dlswTConnOperEntry. If some fields in the former were changed but the conceptual row was not deleted, some configuration information may not be valid for this operational transport connection. The manager can compare dlswTConnOperConnectTime and dlswTConnConfigLastModifyTime to determine if this condition exists.') dlsw_t_conn_oper_flow_cntl_mode = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('undetermined', 1), ('pacing', 2), ('other', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperFlowCntlMode.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperFlowCntlMode.setDescription('The flow control mechanism in use on this transport connection. This value is undetermined (1) before the mode of flow control can be established on a new transport connection (i.e., after CapEx is sent but before Capex or other SSP control messages have been received). Pacing (2) indicates that the standard RFC 1795 pacing mechanism is in use. Other (3) may be either the RFC 1434+ xBusy mechanism operating to a back-level DLSw, or a vendor-specific flow control method. Whether it is xBusy or not can be inferred from dlswTConnOperPartnerVersion.') dlsw_t_conn_oper_partner_version = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 9), octet_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(2, 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperPartnerVersion.setReference('DLSW: Switch-to-Switch Protocol RFC 1795') if mibBuilder.loadTexts: dlswTConnOperPartnerVersion.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerVersion.setDescription("This value identifies which version (first octet) and release (second octet) of the DLSw standard is supported by this partner DLSw. This information is obtained from a DLSw capabilities exchange message received from the partner DLSw. A string of zero length is returned before a Capabilities Exchange message is received, or if one is never received. A conceptual row with a dlswTConnOperState of `connected' but a zero length partner version indicates that the partner is a non-standard DLSw partner. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlsw_t_conn_oper_partner_vendor_id = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 10), octet_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(3, 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperPartnerVendorID.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerVendorID.setDescription("This value identifies the IEEE-assigned organizationally Unique Identifier (OUI) of the maker of this partner DLSw. This information is obtained from a DLSw capabilities exchange message received from the partner DLSw. A string of zero length is returned before a Capabilities Exchange message is received, or if one is never received. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlsw_t_conn_oper_partner_version_str = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 253))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperPartnerVersionStr.setReference('DLSW: Switch-to-Switch Protocol RFC 1795') if mibBuilder.loadTexts: dlswTConnOperPartnerVersionStr.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerVersionStr.setDescription("This value identifies the particular product version (e.g., product name, code level, fix level) of this partner DLSw. The format of the actual version string is vendor-specific. This information is obtained from a DLSw capabilities exchange message received from the partner DLSw. A string of zero length is returned before a Capabilities Exchange message is received, if one is never received, or if one is received but it does not contain a version string. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlsw_t_conn_oper_partner_init_pacing_wndw = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperPartnerInitPacingWndw.setReference('DLSW: Switch-to-Switch Protocol RFC 1795') if mibBuilder.loadTexts: dlswTConnOperPartnerInitPacingWndw.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerInitPacingWndw.setDescription("The value of the partner initial receive pacing window. This is our initial send pacing window for all new circuits on this transport connection, as modified and granted by the first flow control indication the partner sends on each circuit. This information is obtained from a DLSw capabilities exchange message received from the partner DLSw. A value of zero is returned before a Capabilities Exchange message is received, or if one is never received. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlsw_t_conn_oper_partner_sap_list = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 13), octet_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(16, 16)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperPartnerSapList.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerSapList.setDescription("The Supported SAP List received in the capabilities exchange message from the partner DLSw. This list has the same format described for dlswTConnConfigSapList. A string of zero length is returned before a Capabilities Exchange message is received, or if one is never received. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlsw_t_conn_oper_partner_nb_excl = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 14), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperPartnerNBExcl.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerNBExcl.setDescription("The value of true signifies that the NetBIOS names received from this partner in the NetBIOS name list in its capabilities exchange message are the only NetBIOS names reachable by that partner. `False' indicates that other NetBIOS names may be reachable. `False' should be returned before a Capabilities Exchange message is received, if one is never received, or if one is received without a NB Name Exclusivity CV. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlsw_t_conn_oper_partner_mac_excl = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 15), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperPartnerMacExcl.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerMacExcl.setDescription("The value of true signifies that the MAC addresses received from this partner in the MAC address list in its capabilities exchange message are the only MAC addresses reachable by that partner. `False' indicates that other MAC addresses may be reachable. `False' should be returned before a Capabilities Exchange message is received, if one is never received, or if one is received without a MAC Address Exclusivity CV. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlsw_t_conn_oper_partner_nb_info = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('partial', 2), ('complete', 3), ('notApplicable', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperPartnerNBInfo.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerNBInfo.setDescription("It is up to this DSLw whether to keep either none, some, or all of the NetBIOS name list that was received in the capabilities exchange message sent by this partner DLSw. This object identifies how much information was kept by this DLSw. These names are stored as userConfigured remote entries in dlswDirNBTable. A value of (4), notApplicable, should be returned before a Capabilities Exchange message is received, or if one is never received. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlsw_t_conn_oper_partner_mac_info = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('partial', 2), ('complete', 3), ('notApplicable', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperPartnerMacInfo.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperPartnerMacInfo.setDescription("It is up to this DLSw whether to keep either none, some, or all of the MAC address list that was received in the capabilities exchange message sent by this partner DLSw. This object identifies how much information was kept by this DLSw. These names are stored as userConfigured remote entries in dlswDirMACTable. A value of (4), notApplicable, should be returned before a Capabilities Exchange message is received, or if one is never received. If an implementation chooses to keep dlswTConnOperEntrys in the `disconnected' state, this value should remain unchanged.") dlsw_t_conn_oper_disc_time = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 18), time_ticks()).setUnits('hundredths of a second').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperDiscTime.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperDiscTime.setDescription("The amount of time (in hundredths of a second) since the dlswTConnOperState last entered `disconnected' state.") dlsw_t_conn_oper_disc_reason = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('other', 1), ('capExFailed', 2), ('transportLayerDisc', 3), ('operatorCommand', 4), ('lastCircuitDiscd', 5), ('protocolError', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperDiscReason.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperDiscReason.setDescription('This object signifies the reason that either prevented the transport connection from entering the connected state, or caused the transport connection to enter the disconnected state.') dlsw_t_conn_oper_disc_active_cir = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperDiscActiveCir.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperDiscActiveCir.setDescription('The number of circuits active (not in DISCONNECTED state) at the time the transport connection was last disconnected. This value is zero if the transport connection has never been connected.') dlsw_t_conn_oper_in_data_pkts = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 21), counter32()).setUnits('SSP messages').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperInDataPkts.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperInDataPkts.setDescription('The number of Switch-to-Switch Protocol (SSP) messages of type DGRMFRAME, DATAFRAME, or INFOFRAME received on this transport connection.') dlsw_t_conn_oper_out_data_pkts = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 22), counter32()).setUnits('SSP messages').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperOutDataPkts.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperOutDataPkts.setDescription('The number of Switch-to-Switch Protocol (SSP) messages of type DGRMFRAME, DATAFRAME, or INFOFRAME transmitted on this transport connection.') dlsw_t_conn_oper_in_data_octets = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 23), counter32()).setUnits('octets').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperInDataOctets.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperInDataOctets.setDescription('The number octets in Switch-to-Switch Protocol (SSP) messages of type DGRMFRAME, DATAFRAME, or INFOFRAME received on this transport connection. Each message is counted starting with the first octet following the SSP message header.') dlsw_t_conn_oper_out_data_octets = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 24), counter32()).setUnits('octets').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperOutDataOctets.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperOutDataOctets.setDescription('The number octets in Switch-to-Switch Protocol (SSP) messages of type DGRMFRAME, DATAFRAME, or INFOFRAME transmitted on this transport connection. Each message is counted starting with the first octet following the SSP message header.') dlsw_t_conn_oper_in_cntl_pkts = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 25), counter32()).setUnits('SSP messages').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperInCntlPkts.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperInCntlPkts.setDescription('The number of Switch-to-Switch Protocol (SSP) messages received on this transport connection which were not of type DGRMFRAME, DATAFRAME, or INFOFRAME.') dlsw_t_conn_oper_out_cntl_pkts = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 26), counter32()).setUnits('SSP messages').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperOutCntlPkts.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperOutCntlPkts.setDescription('The number of Switch-to-Switch Protocol (SSP) messages of transmitted on this transport connection which were not of type DGRMFRAME, DATAFRAME, or INFOFRAME.') dlsw_t_conn_oper_cu_rex_sents = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 27), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperCURexSents.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperCURexSents.setDescription('The number of CanUReach_ex messages sent on this transport connection.') dlsw_t_conn_oper_ic_rex_rcvds = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 28), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperICRexRcvds.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperICRexRcvds.setDescription('The number of ICanReach_ex messages received on this transport connection.') dlsw_t_conn_oper_cu_rex_rcvds = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 29), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperCURexRcvds.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperCURexRcvds.setDescription('The number of CanUReach_ex messages received on this transport connection.') dlsw_t_conn_oper_ic_rex_sents = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 30), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperICRexSents.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperICRexSents.setDescription('The number of ICanReach_ex messages sent on this transport connection.') dlsw_t_conn_oper_n_qex_sents = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 31), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperNQexSents.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperNQexSents.setDescription('The number of NetBIOS_NQ_ex (NetBIOS Name Query-explorer) messages sent on this transport connection.') dlsw_t_conn_oper_n_rex_rcvds = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 32), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperNRexRcvds.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperNRexRcvds.setDescription('The number of NETBIOS_NR_ex (NetBIOS Name Recognized-explorer) messages received on this transport connection.') dlsw_t_conn_oper_n_qex_rcvds = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 33), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperNQexRcvds.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperNQexRcvds.setDescription('The number of NETBIOS_NQ_ex messages received on this transport connection.') dlsw_t_conn_oper_n_rex_sents = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 34), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperNRexSents.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperNRexSents.setDescription('The number of NETBIOS_NR_ex messages sent on this transport connection.') dlsw_t_conn_oper_cir_creates = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 35), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperCirCreates.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperCirCreates.setDescription("The number of times that circuits entered `circuit_established' state (not counting transitions from `circuit_restart').") dlsw_t_conn_oper_circuits = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 3, 1, 36), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnOperCircuits.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperCircuits.setDescription("The number of currently active circuits on this transport connection, where `active' means not in `disconnected' state.") dlsw_t_conn_specific = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 2, 4)) dlsw_t_conn_tcp = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1)) dlsw_t_conn_tcp_config_table = mib_table((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 1)) if mibBuilder.loadTexts: dlswTConnTcpConfigTable.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpConfigTable.setDescription('This table defines the TCP transport connections that will be either initiated by or accepted by this DSLw. It augments the entries in dlswTConnConfigTable whose domain is dlswTCPDomain.') dlsw_t_conn_tcp_config_entry = mib_table_row((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 1, 1)).setIndexNames((0, 'DLSW-MIB', 'dlswTConnConfigIndex')) if mibBuilder.loadTexts: dlswTConnTcpConfigEntry.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpConfigEntry.setDescription('Each conceptual row defines parameters that are specific to dlswTCPDomain transport connections.') dlsw_t_conn_tcp_config_keep_alive_int = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 1800))).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnTcpConfigKeepAliveInt.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpConfigKeepAliveInt.setDescription('The time in seconds between TCP keepAlive messages when no traffic is flowing. Zero signifies no keepAlive protocol. Changes take effect only for new TCP connections.') dlsw_t_conn_tcp_config_tcp_connections = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)).clone(2)).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnTcpConfigTcpConnections.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpConfigTcpConnections.setDescription('This is our preferred number of TCP connections within a TCP transport connection. The actual number used is negotiated at capabilities exchange time. Changes take effect only for new transport connections.') dlsw_t_conn_tcp_config_max_segment_size = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(4096)).setUnits('packets').setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswTConnTcpConfigMaxSegmentSize.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpConfigMaxSegmentSize.setDescription('This is the number of bytes that this node is willing to receive over the read TCP connection(s). Changes take effect for new transport connections.') dlsw_t_conn_tcp_oper_table = mib_table((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 2)) if mibBuilder.loadTexts: dlswTConnTcpOperTable.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpOperTable.setDescription('A list of TCP transport connections. It is optional but desirable for the agent to keep an entry for some period of time after the transport connection is disconnected. This allows the manager to capture additional useful information about the connection, in particular, statistical information and the cause of the disconnection.') dlsw_t_conn_tcp_oper_entry = mib_table_row((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 2, 1)).setIndexNames((0, 'DLSW-MIB', 'dlswTConnOperTDomain'), (0, 'DLSW-MIB', 'dlswTConnOperRemoteTAddr')) if mibBuilder.loadTexts: dlswTConnTcpOperEntry.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpOperEntry.setDescription('') dlsw_t_conn_tcp_oper_keep_alive_int = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 1800))).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnTcpOperKeepAliveInt.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpOperKeepAliveInt.setDescription('The time in seconds between TCP keepAlive messages when no traffic is flowing. Zero signifies no keepAlive protocol is operating.') dlsw_t_conn_tcp_oper_pref_tcp_connections = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnTcpOperPrefTcpConnections.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpOperPrefTcpConnections.setDescription('This is the number of TCP connections preferred by this DLSw partner, as received in its capabilities exchange message.') dlsw_t_conn_tcp_oper_tcp_connections = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 2, 4, 1, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswTConnTcpOperTcpConnections.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpOperTcpConnections.setDescription('This is the actual current number of TCP connections within this transport connection.') dlsw_if_table = mib_table((1, 3, 6, 1, 2, 1, 46, 1, 3, 1)) if mibBuilder.loadTexts: dlswIfTable.setStatus('current') if mibBuilder.loadTexts: dlswIfTable.setDescription('The list of interfaces on which DLSw is active.') dlsw_if_entry = mib_table_row((1, 3, 6, 1, 2, 1, 46, 1, 3, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex')) if mibBuilder.loadTexts: dlswIfEntry.setStatus('current') if mibBuilder.loadTexts: dlswIfEntry.setDescription('') dlsw_if_row_status = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 3, 1, 1, 1), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswIfRowStatus.setStatus('current') if mibBuilder.loadTexts: dlswIfRowStatus.setDescription('This object is used by the manager to create or delete the row entry in the dlswIfTable following the RowStatus textual convention.') dlsw_if_virtual_segment = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 3, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 4095), value_range_constraint(65535, 65535))).clone(65535)).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswIfVirtualSegment.setStatus('current') if mibBuilder.loadTexts: dlswIfVirtualSegment.setDescription('The segment number that uniquely identifies the virtual segment to which this DLSw interface is connected. Current source routing protocols limit this value to the range 0 - 4095. (The value 0 is used by some management applications for special test cases.) A value of 65535 signifies that no virtual segment is assigned to this interface. For instance, in a non-source routing environment, segment number assignment is not required.') dlsw_if_sap_list = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 3, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(16, 16)).setFixedLength(16).clone(hexValue='AA000000000000000000000000000000')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswIfSapList.setStatus('current') if mibBuilder.loadTexts: dlswIfSapList.setDescription('The SAP list indicates which SAPs are allowed to be data link switched through this interface. This list has the same format described for dlswTConnConfigSapList. When changes to this object take effect is implementation- specific. Turning off a particular SAP can destroy active circuits that are using that SAP. An agent implementation may reject such changes until there are no active circuits if it so chooses. In this case, it is up to the manager to close the circuits first, using dlswCircuitState. The DEFVAL below indicates support for SAPs 0, 4, 8, and C.') dlsw_dir_stat = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 4, 1)) dlsw_dir_mac_entries = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 1), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswDirMacEntries.setStatus('current') if mibBuilder.loadTexts: dlswDirMacEntries.setDescription('The current total number of entries in the dlswDirMacTable.') dlsw_dir_mac_cache_hits = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswDirMacCacheHits.setStatus('current') if mibBuilder.loadTexts: dlswDirMacCacheHits.setDescription('The number of times a cache search for a particular MAC address resulted in success.') dlsw_dir_mac_cache_misses = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswDirMacCacheMisses.setStatus('current') if mibBuilder.loadTexts: dlswDirMacCacheMisses.setDescription('The number of times a cache search for a particular MAC address resulted in failure.') dlsw_dir_mac_cache_next_index = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswDirMacCacheNextIndex.setStatus('current') if mibBuilder.loadTexts: dlswDirMacCacheNextIndex.setDescription('The next value of dlswDirMacIndex to be assigned by the agent. A retrieval of this object atomically reserves the returned value for use by the manager to create a row in dlswDirMacTable. This makes it possible for the agent to control the index space of the MAC address cache, yet allows the manager to administratively create new rows.') dlsw_dir_nb_entries = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 5), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswDirNBEntries.setStatus('current') if mibBuilder.loadTexts: dlswDirNBEntries.setDescription('The current total number of entries in the dlswDirNBTable.') dlsw_dir_nb_cache_hits = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswDirNBCacheHits.setStatus('current') if mibBuilder.loadTexts: dlswDirNBCacheHits.setDescription('The number of times a cache search for a particular NetBIOS name resulted in success.') dlsw_dir_nb_cache_misses = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswDirNBCacheMisses.setStatus('current') if mibBuilder.loadTexts: dlswDirNBCacheMisses.setDescription('The number of times a cache search for a particular NetBIOS name resulted in failure.') dlsw_dir_nb_cache_next_index = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 4, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswDirNBCacheNextIndex.setStatus('current') if mibBuilder.loadTexts: dlswDirNBCacheNextIndex.setDescription('The next value of dlswDirNBIndex to be assigned by the agent. A retrieval of this object atomically reserves the returned value for use by the manager to create a row in dlswDirNBTable. This makes it possible for the agent to control the index space for the NetBIOS name cache, yet allows the manager to administratively create new rows.') dlsw_dir_cache = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 4, 2)) dlsw_dir_mac_table = mib_table((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1)) if mibBuilder.loadTexts: dlswDirMacTable.setStatus('current') if mibBuilder.loadTexts: dlswDirMacTable.setDescription('This table contains locations of MAC addresses. They could be either verified or not verified, local or remote, and configured locally or learned from either Capabilities Exchange messages or directory searches.') dlsw_dir_mac_entry = mib_table_row((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1)).setIndexNames((0, 'DLSW-MIB', 'dlswDirMacIndex')) if mibBuilder.loadTexts: dlswDirMacEntry.setStatus('current') if mibBuilder.loadTexts: dlswDirMacEntry.setDescription('Indexed by dlswDirMacIndex.') dlsw_dir_mac_index = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))) if mibBuilder.loadTexts: dlswDirMacIndex.setStatus('current') if mibBuilder.loadTexts: dlswDirMacIndex.setDescription('Uniquely identifies a conceptual row of this table.') dlsw_dir_mac_mac = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 2), mac_address_nc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirMacMac.setStatus('current') if mibBuilder.loadTexts: dlswDirMacMac.setDescription('The MAC address, together with the dlswDirMacMask, specifies a set of MAC addresses that are defined or discovered through an interface or partner DLSw nodes.') dlsw_dir_mac_mask = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 3), mac_address_nc().clone(hexValue='FFFFFFFFFFFF')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirMacMask.setStatus('current') if mibBuilder.loadTexts: dlswDirMacMask.setDescription('The MAC address mask, together with the dlswDirMacMac, specifies a set of MAC addresses that are defined or discovered through an interface or partner DLSw nodes.') dlsw_dir_mac_entry_type = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('userConfiguredPublic', 2), ('userConfiguredPrivate', 3), ('partnerCapExMsg', 4), ('dynamic', 5))).clone('userConfiguredPublic')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirMacEntryType.setStatus('current') if mibBuilder.loadTexts: dlswDirMacEntryType.setDescription('The cause of the creation of this conceptual row. It could be one of the three methods: (1) user configured, including via management protocol set operations, configuration file, command line or equivalent methods; (2) learned from the partner DLSw Capabilities Exchange messages; and (3) dynamic, e.g., learned from ICanReach messages, or LAN explorer frames. Since only individual MAC addresses can be dynamically learned, dynamic entries will all have a mask of all FFs. The public versus private distinction for user- configured resources applies only to local resources (UC remote resources are private), and indicates whether that resource should be advertised in capabilities exchange messages sent by this node.') dlsw_dir_mac_location_type = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('local', 2), ('remote', 3))).clone('local')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirMacLocationType.setStatus('current') if mibBuilder.loadTexts: dlswDirMacLocationType.setDescription('The location of the resource (or a collection of resources using a mask) of this conceptual row is either (1) local - the resource is reachable via an interface, or (2) remote - the resource is reachable via a partner DLSw node (or a set of partner DLSw nodes).') dlsw_dir_mac_location = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 6), row_pointer().clone((0, 0))).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirMacLocation.setStatus('current') if mibBuilder.loadTexts: dlswDirMacLocation.setDescription('Points to either the ifEntry, dlswTConnConfigEntry, dlswTConnOperEntry, 0.0, or something that is implementation specific. It identifies the location of the MAC address (or the collection of MAC addresses.)') dlsw_dir_mac_status = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('unknown', 1), ('reachable', 2), ('notReachable', 3))).clone('unknown')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirMacStatus.setStatus('current') if mibBuilder.loadTexts: dlswDirMacStatus.setDescription("This object specifies whether DLSw currently believes the MAC address to be accessible at the specified location. The value `notReachable' allows a configured resource definition to be taken out of service when a search to that resource fails (avoiding a repeat of the search).") dlsw_dir_mac_lf_size = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 8), lf_size().clone('lfs65535')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirMacLFSize.setStatus('current') if mibBuilder.loadTexts: dlswDirMacLFSize.setDescription('The largest size of the MAC INFO field (LLC header and data) that a circuit to the MAC address can carry through this path.') dlsw_dir_mac_row_status = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 1, 1, 9), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirMacRowStatus.setStatus('current') if mibBuilder.loadTexts: dlswDirMacRowStatus.setDescription('This object is used by the manager to create or delete the row entry in the dlswDirMacTable following the RowStatus textual convention.') dlsw_dir_nb_table = mib_table((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2)) if mibBuilder.loadTexts: dlswDirNBTable.setStatus('current') if mibBuilder.loadTexts: dlswDirNBTable.setDescription('This table contains locations of NetBIOS names. They could be either verified or not verified, local or remote, and configured locally or learned from either Capabilities Exchange messages or directory searches.') dlsw_dir_nb_entry = mib_table_row((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1)).setIndexNames((0, 'DLSW-MIB', 'dlswDirNBIndex')) if mibBuilder.loadTexts: dlswDirNBEntry.setStatus('current') if mibBuilder.loadTexts: dlswDirNBEntry.setDescription('Indexed by dlswDirNBIndex.') dlsw_dir_nb_index = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))) if mibBuilder.loadTexts: dlswDirNBIndex.setStatus('current') if mibBuilder.loadTexts: dlswDirNBIndex.setDescription('Uniquely identifies a conceptual row of this table.') dlsw_dir_nb_name = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 2), nb_name()).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirNBName.setStatus('current') if mibBuilder.loadTexts: dlswDirNBName.setDescription("The NetBIOS name (including `any char' and `wildcard' characters) specifies a set of NetBIOS names that are defined or discovered through an interface or partner DLSw nodes.") dlsw_dir_nb_name_type = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('unknown', 1), ('individual', 2), ('group', 3))).clone('unknown')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirNBNameType.setStatus('current') if mibBuilder.loadTexts: dlswDirNBNameType.setDescription('Whether dlswDirNBName represents an (or a set of) individual or group NetBIOS name(s).') dlsw_dir_nb_entry_type = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('userConfiguredPublic', 2), ('userConfiguredPrivate', 3), ('partnerCapExMsg', 4), ('dynamic', 5))).clone('userConfiguredPublic')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirNBEntryType.setStatus('current') if mibBuilder.loadTexts: dlswDirNBEntryType.setDescription('The cause of the creation of this conceptual row. It could be one of the three methods: (1) user configured, including via management protocol set operations, configuration file, command line, or equivalent methods; (2) learned from the partner DLSw Capabilities Exchange messages; and (3) dynamic, e.g., learned from ICanReach messages, or test frames. Since only actual NetBIOS names can be dynamically learned, dynamic entries will not contain any char or wildcard characters. The public versus private distinction for user- configured resources applies only to local resources (UC remote resources are private), and indicates whether that resource should be advertised in capabilities exchange messages sent by this node.') dlsw_dir_nb_location_type = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('local', 2), ('remote', 3))).clone('local')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirNBLocationType.setStatus('current') if mibBuilder.loadTexts: dlswDirNBLocationType.setDescription('The location of the resource (or a collection of resources using any char/wildcard characters) of this conceptual row is either (1) local - the resource is reachable via an interface, or (2) remote - the resource is reachable via a a partner DLSw node (or a set of partner DLSw nodes).') dlsw_dir_nb_location = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 6), row_pointer().clone((0, 0))).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirNBLocation.setStatus('current') if mibBuilder.loadTexts: dlswDirNBLocation.setDescription('Points to either the ifEntry, dlswTConnConfigEntry, dlswTConnOperEntry, 0.0, or something that is implementation specific. It identifies the location of the NetBIOS name or the set of NetBIOS names.') dlsw_dir_nb_status = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('unknown', 1), ('reachable', 2), ('notReachable', 3))).clone('unknown')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirNBStatus.setStatus('current') if mibBuilder.loadTexts: dlswDirNBStatus.setDescription("This object specifies whether DLSw currently believes the NetBIOS name to be accessible at the specified location. The value `notReachable' allows a configured resource definition to be taken out of service when a search to that resource fails (avoiding a repeat of the search).") dlsw_dir_nblf_size = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 8), lf_size().clone('lfs65535')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirNBLFSize.setStatus('current') if mibBuilder.loadTexts: dlswDirNBLFSize.setDescription('The largest size of the MAC INFO field (LLC header and data) that a circuit to the NB name can carry through this path.') dlsw_dir_nb_row_status = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 2, 2, 1, 9), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswDirNBRowStatus.setStatus('current') if mibBuilder.loadTexts: dlswDirNBRowStatus.setDescription('This object is used by manager to create or delete the row entry in the dlswDirNBTable following the RowStatus textual convention.') dlsw_dir_locate = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 4, 3)) dlsw_dir_locate_mac_table = mib_table((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 1)) if mibBuilder.loadTexts: dlswDirLocateMacTable.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateMacTable.setDescription('This table is used to retrieve all entries in the dlswDirMacTable that match a given MAC address, in the order of the best matched first, the second best matched second, and so on, till no more entries match the given MAC address.') dlsw_dir_locate_mac_entry = mib_table_row((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 1, 1)).setIndexNames((0, 'DLSW-MIB', 'dlswDirLocateMacMac'), (0, 'DLSW-MIB', 'dlswDirLocateMacMatch')) if mibBuilder.loadTexts: dlswDirLocateMacEntry.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateMacEntry.setDescription('Indexed by dlswDirLocateMacMac and dlswDirLocateMacMatch. The first object is the MAC address of interest, and the second object is the order in the list of all entries that match the MAC address.') dlsw_dir_locate_mac_mac = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 1, 1, 1), mac_address_nc()) if mibBuilder.loadTexts: dlswDirLocateMacMac.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateMacMac.setDescription('The MAC address to be located.') dlsw_dir_locate_mac_match = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))) if mibBuilder.loadTexts: dlswDirLocateMacMatch.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateMacMatch.setDescription('The order of the entries of dlswDirMacTable that match dlswDirLocateMacMac. A value of one represents the entry that best matches the MAC address. A value of two represents the second best matched entry, and so on.') dlsw_dir_locate_mac_location = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 1, 1, 3), row_pointer()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswDirLocateMacLocation.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateMacLocation.setDescription('Points to the dlswDirMacEntry.') dlsw_dir_locate_nb_table = mib_table((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 2)) if mibBuilder.loadTexts: dlswDirLocateNBTable.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateNBTable.setDescription('This table is used to retrieve all entries in the dlswDirNBTable that match a given NetBIOS name, in the order of the best matched first, the second best matched second, and so on, till no more entries match the given NetBIOS name.') dlsw_dir_locate_nb_entry = mib_table_row((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 2, 1)).setIndexNames((0, 'DLSW-MIB', 'dlswDirLocateNBName'), (0, 'DLSW-MIB', 'dlswDirLocateNBMatch')) if mibBuilder.loadTexts: dlswDirLocateNBEntry.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateNBEntry.setDescription('Indexed by dlswDirLocateNBName and dlswDirLocateNBMatch. The first object is the NetBIOS name of interest, and the second object is the order in the list of all entries that match the NetBIOS name.') dlsw_dir_locate_nb_name = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 2, 1, 1), nb_name()) if mibBuilder.loadTexts: dlswDirLocateNBName.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateNBName.setDescription('The NetBIOS name to be located (no any char or wildcards).') dlsw_dir_locate_nb_match = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))) if mibBuilder.loadTexts: dlswDirLocateNBMatch.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateNBMatch.setDescription('The order of the entries of dlswDirNBTable that match dlswDirLocateNBName. A value of one represents the entry that best matches the NetBIOS name. A value of two represents the second best matched entry, and so on.') dlsw_dir_locate_nb_location = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 4, 3, 2, 1, 3), row_pointer()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswDirLocateNBLocation.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateNBLocation.setDescription('Points to the dlswDirNBEntry.') dlsw_circuit_stat = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 5, 1)) dlsw_circuit_stat_actives = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 5, 1, 1), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitStatActives.setStatus('current') if mibBuilder.loadTexts: dlswCircuitStatActives.setDescription('The current number of circuits in dlswCircuitTable that are not in the disconnected state.') dlsw_circuit_stat_creates = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 5, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitStatCreates.setStatus('current') if mibBuilder.loadTexts: dlswCircuitStatCreates.setDescription("The total number of entries ever added to dlswCircuitTable, or reactivated upon exiting `disconnected' state.") dlsw_circuit_table = mib_table((1, 3, 6, 1, 2, 1, 46, 1, 5, 2)) if mibBuilder.loadTexts: dlswCircuitTable.setStatus('current') if mibBuilder.loadTexts: dlswCircuitTable.setDescription('This table is the circuit representation in the DLSw entity. Virtual data links are used to represent any internal end stations. There is a conceptual row associated with each data link. Thus, for circuits without an intervening transport connection, there are two conceptual rows for each circuit. The table consists of the circuits being established, established, and as an implementation option, circuits that have been disconnected. For circuits carried over transport connections, an entry is created after the CUR_cs was sent or received. For circuits between two locally attached devices, or internal virtual MAC addresses, an entry is created when the equivalent of CUR_cs sent/received status is reached. End station 1 (S1) and End station 2 (S2) are used to represent the two end stations of the circuit. S1 is always an end station which is locally attached. S2 may be locally attached or remote. If it is locally attached, the circuit will be represented by two rows indexed by (A, B) and (B, A) where A & B are the relevant MACs/SAPs. The table may be used to store the causes of disconnection of circuits. It is recommended that the oldest disconnected circuit entry be removed from this table when the memory space of disconnected circuits is needed.') dlsw_circuit_entry = mib_table_row((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1)).setIndexNames((0, 'DLSW-MIB', 'dlswCircuitS1Mac'), (0, 'DLSW-MIB', 'dlswCircuitS1Sap'), (0, 'DLSW-MIB', 'dlswCircuitS2Mac'), (0, 'DLSW-MIB', 'dlswCircuitS2Sap')) if mibBuilder.loadTexts: dlswCircuitEntry.setStatus('current') if mibBuilder.loadTexts: dlswCircuitEntry.setDescription('') dlsw_circuit_s1_mac = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 1), mac_address_nc()) if mibBuilder.loadTexts: dlswCircuitS1Mac.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1Mac.setDescription('The MAC Address of End Station 1 (S1) used for this circuit.') dlsw_circuit_s1_sap = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)) if mibBuilder.loadTexts: dlswCircuitS1Sap.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1Sap.setDescription('The SAP at End Station 1 (S1) used for this circuit.') dlsw_circuit_s1_if_index = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitS1IfIndex.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1IfIndex.setDescription('The ifEntry index of the local interface through which S1 can be reached.') dlsw_circuit_s1_dlc_type = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 4), dlc_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitS1DlcType.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1DlcType.setDescription('The DLC protocol in use between the DLSw node and S1.') dlsw_circuit_s1_route_info = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 30))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitS1RouteInfo.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1RouteInfo.setDescription('If source-route bridging is in use between the DLSw node and S1, this is the routing information field describing the path between the two devices. Otherwise the value will be an OCTET STRING of zero length.') dlsw_circuit_s1_circuit_id = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 6), octet_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(8, 8)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitS1CircuitId.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1CircuitId.setDescription('The Circuit ID assigned by this DLSw node to this circuit. The first four octets are the DLC port Id, and the second four octets are the Data Link Correlator. If the DLSw SSP was not used to establish this circuit, the value will be a string of zero length.') dlsw_circuit_s1_dlc = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 7), row_pointer()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitS1Dlc.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS1Dlc.setDescription('Points to a conceptual row of the underlying DLC MIB, which could either be the standard MIBs (e.g., the SDLC), or an enterprise-specific DLC MIB.') dlsw_circuit_s2_mac = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 8), mac_address_nc()) if mibBuilder.loadTexts: dlswCircuitS2Mac.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS2Mac.setDescription('The MAC Address of End Station 2 (S2) used for this circuit.') dlsw_circuit_s2_sap = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)) if mibBuilder.loadTexts: dlswCircuitS2Sap.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS2Sap.setDescription('The SAP at End Station 2 (S2) used for this circuit.') dlsw_circuit_s2_location = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 10), end_station_location()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitS2Location.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS2Location.setDescription('The location of End Station 2 (S2). If the location of End Station 2 is local, the interface information will be available in the conceptual row whose S1 and S2 are the S2 and the S1 of this conceptual row, respectively.') dlsw_circuit_s2_t_domain = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 11), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitS2TDomain.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS2TDomain.setDescription('If the location of End Station 2 is remote, this value is the transport domain of the transport protocol the circuit is running over. Otherwise, the value is 0.0.') dlsw_circuit_s2_t_address = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 12), t_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitS2TAddress.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS2TAddress.setDescription('If the location of End Station 2 is remote, this object contains the address of the partner DLSw, else it will be an OCTET STRING of zero length.') dlsw_circuit_s2_circuit_id = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 13), octet_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(8, 8)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitS2CircuitId.setStatus('current') if mibBuilder.loadTexts: dlswCircuitS2CircuitId.setDescription('The Circuit ID assigned to this circuit by the partner DLSw node. The first four octets are the DLC port Id, and the second four octets are the Data Link Correlator. If the DLSw SSP was not used to establish this circuit, the value will be a string of zero length.') dlsw_circuit_origin = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('s1', 1), ('s2', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitOrigin.setStatus('current') if mibBuilder.loadTexts: dlswCircuitOrigin.setDescription('This object specifies which of the two end stations initiated the establishment of this circuit.') dlsw_circuit_entry_time = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 15), time_ticks()).setUnits('hundredths of a second').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitEntryTime.setStatus('current') if mibBuilder.loadTexts: dlswCircuitEntryTime.setDescription('The amount of time (in hundredths of a second) since this circuit table conceptual row was created.') dlsw_circuit_state_time = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 16), time_ticks()).setUnits('hundredths of a second').setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitStateTime.setStatus('current') if mibBuilder.loadTexts: dlswCircuitStateTime.setDescription('The amount of time (in hundredths of a second) since this circuit entered the current state.') dlsw_circuit_state = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 17), 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(('disconnected', 1), ('circuitStart', 2), ('resolvePending', 3), ('circuitPending', 4), ('circuitEstablished', 5), ('connectPending', 6), ('contactPending', 7), ('connected', 8), ('disconnectPending', 9), ('haltPending', 10), ('haltPendingNoack', 11), ('circuitRestart', 12), ('restartPending', 13)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dlswCircuitState.setStatus('current') if mibBuilder.loadTexts: dlswCircuitState.setDescription("The current state of this circuit. The agent, implementation specific, may choose to keep entries for some period of time after circuit disconnect, so the manager can gather the time and cause of disconnection. While all of the specified values may be returned from a GET operation, the only SETable value is `disconnectPending'. When this value is set, DLSw should perform the appropriate action given its previous state (e.g., send HALT_DL if the state was `connected') to bring the circuit down to the `disconnected' state. Both the partner DLSw and local end station(s) should be notified as appropriate. This MIB provides no facility to re-establish a disconnected circuit, because in DLSw this should be an end station-driven function.") dlsw_circuit_priority = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('unsupported', 1), ('low', 2), ('medium', 3), ('high', 4), ('highest', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitPriority.setStatus('current') if mibBuilder.loadTexts: dlswCircuitPriority.setDescription("The transmission priority of this circuit as understood by this DLSw node. This value is determined by the two DLSw nodes at circuit startup time. If this DLSw node does not support DLSw circuit priority, the value `unsupported' should be returned.") dlsw_circuit_fc_send_granted_units = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitFCSendGrantedUnits.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCSendGrantedUnits.setDescription('The number of paced SSP messages that this DLSw is currently authorized to send on this circuit before it must stop and wait for an additional flow control indication from the partner DLSw. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlsw_circuit_fc_send_current_wndw = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitFCSendCurrentWndw.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCSendCurrentWndw.setDescription("The current window size that this DLSw is using in its role as a data sender. This is the value by which this DLSw would increase the number of messages it is authorized to send, if it were to receive a flow control indication with the bits specifying `repeat window'. The value zero should be returned if this circuit is not running the DLSw pacing protocol.") dlsw_circuit_fc_recv_granted_units = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitFCRecvGrantedUnits.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCRecvGrantedUnits.setDescription('The current number of paced SSP messages that this DLSw has authorized the partner DLSw to send on this circuit before the partner DLSw must stop and wait for an additional flow control indication from this DLSw. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlsw_circuit_fc_recv_current_wndw = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitFCRecvCurrentWndw.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCRecvCurrentWndw.setDescription("The current window size that this DLSw is using in its role as a data receiver. This is the number of additional paced SSP messages that this DLSw would be authorizing its DLSw partner to send, if this DLSw were to send a flow control indication with the bits specifying `repeat window'. The value zero should be returned if this circuit is not running the DLSw pacing protocol.") dlsw_circuit_fc_largest_recv_granted = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 23), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitFCLargestRecvGranted.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCLargestRecvGranted.setDescription('The largest receive window size granted by this DLSw during the current activation of this circuit. This is not the largest number of messages granted at any time, but the largest window size as represented by FCIND operator bits. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlsw_circuit_fc_largest_send_granted = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 24), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitFCLargestSendGranted.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCLargestSendGranted.setDescription('The largest send (with respect to this DLSw) window size granted by the partner DLSw during the current activation of this circuit. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlsw_circuit_fc_halve_wndw_sents = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 25), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitFCHalveWndwSents.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCHalveWndwSents.setDescription('The number of Halve Window operations this DLSw has sent on this circuit, in its role as a data receiver. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlsw_circuit_fc_reset_op_sents = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 26), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitFCResetOpSents.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCResetOpSents.setDescription('The number of Reset Window operations this DLSw has sent on this circuit, in its role as a data receiver. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlsw_circuit_fc_halve_wndw_rcvds = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 27), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitFCHalveWndwRcvds.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCHalveWndwRcvds.setDescription('The number of Halve Window operations this DLSw has received on this circuit, in its role as a data sender. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlsw_circuit_fc_reset_op_rcvds = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 28), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitFCResetOpRcvds.setStatus('current') if mibBuilder.loadTexts: dlswCircuitFCResetOpRcvds.setDescription('The number of Reset Window operations this DLSw has received on this circuit, in its role as a data sender. The value zero should be returned if this circuit is not running the DLSw pacing protocol.') dlsw_circuit_disc_reason_local = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('endStationDiscRcvd', 1), ('endStationDlcError', 2), ('protocolError', 3), ('operatorCommand', 4), ('haltDlRcvd', 5), ('haltDlNoAckRcvd', 6), ('transportConnClosed', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitDiscReasonLocal.setStatus('current') if mibBuilder.loadTexts: dlswCircuitDiscReasonLocal.setDescription('The reason why this circuit was last disconnected, as seen by this DLSw node. This object is present only if the agent keeps circuit table entries around for some period after circuit disconnect.') dlsw_circuit_disc_reason_remote = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('unknown', 1), ('endStationDiscRcvd', 2), ('endStationDlcError', 3), ('protocolError', 4), ('operatorCommand', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitDiscReasonRemote.setStatus('current') if mibBuilder.loadTexts: dlswCircuitDiscReasonRemote.setDescription("The generic reason code why this circuit was last disconnected, as reported by the DLSw partner in a HALT_DL or HALT_DL_NOACK. If the partner does not send a reason code in these messages, or the DLSw implementation does not report receiving one, the value `unknown' is returned. This object is present only if the agent keeps circuit table entries around for some period after circuit disconnect.") dlsw_circuit_disc_reason_remote_data = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 5, 2, 1, 31), octet_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswCircuitDiscReasonRemoteData.setStatus('current') if mibBuilder.loadTexts: dlswCircuitDiscReasonRemoteData.setDescription('Implementation-specific data reported by the DLSw partner in a HALT_DL or HALT_DL_NOACK, to help specify how and why this circuit was last disconnected. If the partner does not send this data in these messages, or the DLSw implementation does not report receiving it, a string of zero length is returned. This object is present only if the agent keeps circuit table entries around for some period after circuit disconnect.') dlsw_sdlc_ls_entries = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 6, 1), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dlswSdlcLsEntries.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsEntries.setDescription('The number of entries in dlswSdlcLsTable.') dlsw_sdlc_ls_table = mib_table((1, 3, 6, 1, 2, 1, 46, 1, 6, 2)) if mibBuilder.loadTexts: dlswSdlcLsTable.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsTable.setDescription('The table defines the virtual MAC addresses for those SDLC link stations that participate in data link switching.') dlsw_sdlc_ls_entry = mib_table_row((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'SNA-SDLC-MIB', 'sdlcLSAddress')) if mibBuilder.loadTexts: dlswSdlcLsEntry.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsEntry.setDescription('The index of this table is the ifIndex value for the SDLC port which owns this link station and the poll address of the particular SDLC link station.') dlsw_sdlc_ls_local_mac = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 1), mac_address_nc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswSdlcLsLocalMac.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsLocalMac.setDescription('The virtual MAC address used to represent the SDLC-attached link station to the rest of the DLSw network.') dlsw_sdlc_ls_local_sap = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswSdlcLsLocalSap.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsLocalSap.setDescription('The SAP used to represent this link station.') dlsw_sdlc_ls_local_id_block = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 3), display_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(3, 3))).clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswSdlcLsLocalIdBlock.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsLocalIdBlock.setDescription('The block number is the first three digits of the node_id, if available. These 3 hexadecimal digits identify the product.') dlsw_sdlc_ls_local_id_num = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 4), display_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(5, 5))).clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswSdlcLsLocalIdNum.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsLocalIdNum.setDescription('The ID number is the last 5 digits of the node_id, if available. These 5 hexadecimal digits are administratively defined and combined with the 3 digit block number form the node_id. This node_id is used to identify the local node and is included in SNA XIDs.') dlsw_sdlc_ls_remote_mac = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 5), mac_address_nc().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswSdlcLsRemoteMac.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsRemoteMac.setDescription('The MAC address to which DLSw should attempt to connect this link station. If this information is not available, a length of zero for this object should be returned.') dlsw_sdlc_ls_remote_sap = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 6), octet_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(1, 1))).clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswSdlcLsRemoteSap.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsRemoteSap.setDescription('The SAP of the remote station to which this link station should be connected. If this information is not available, a length of zero for this object should be returned.') dlsw_sdlc_ls_row_status = mib_table_column((1, 3, 6, 1, 2, 1, 46, 1, 6, 2, 1, 7), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: dlswSdlcLsRowStatus.setStatus('current') if mibBuilder.loadTexts: dlswSdlcLsRowStatus.setDescription('This object is used by the manager to create or delete the row entry in the dlswSdlcLsTable following the RowStatus textual convention.') dlsw_trap_control = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 1, 10)) dlsw_trap_cntl_t_conn_partner_reject = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 10, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2), ('partial', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dlswTrapCntlTConnPartnerReject.setStatus('current') if mibBuilder.loadTexts: dlswTrapCntlTConnPartnerReject.setDescription("Indicates whether the DLSw is permitted to emit partner reject related traps. With the value of `enabled' the DLSw will emit all partner reject related traps. With the value of `disabled' the DLSw will not emit any partner reject related traps. With the value of `partial' the DLSw will only emits partner reject traps for CapEx reject. The changes take effect immediately.") dlsw_trap_cntl_t_conn_prot_violation = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 10, 2), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dlswTrapCntlTConnProtViolation.setStatus('current') if mibBuilder.loadTexts: dlswTrapCntlTConnProtViolation.setDescription('Indicates whether the DLSw is permitted to generate protocol-violation traps on the events such as window size violation. The changes take effect immediately.') dlsw_trap_cntl_t_conn = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 10, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2), ('partial', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dlswTrapCntlTConn.setStatus('current') if mibBuilder.loadTexts: dlswTrapCntlTConn.setDescription("Indicates whether the DLSw is permitted to emit transport connection up and down traps. With the value of `enabled' the DLSw will emit traps when connections enter `connected' and `disconnected' states. With the value of `disabled' the DLSw will not emit traps when connections enter of `connected' and `disconnected' states. With the value of `partial' the DLSw will only emits transport connection down traps when the connection is closed with busy. The changes take effect immediately.") dlsw_trap_cntl_circuit = mib_scalar((1, 3, 6, 1, 2, 1, 46, 1, 1, 10, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2), ('partial', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dlswTrapCntlCircuit.setStatus('current') if mibBuilder.loadTexts: dlswTrapCntlCircuit.setDescription("Indicates whether the DLSw is permitted to generate circuit up and down traps. With the value of `enabled' the DLSw will emit traps when circuits enter `connected' and `disconnected' states. With the value of `disabled' the DLSw will not emit traps when circuits enter of `connected' and `disconnected' states. With the value of `partial' the DLSw will emit traps only for those circuits that are initiated by this DLSw, e.g., originating the CUR_CS message. The changes take effect immediately.") dlsw_traps = mib_identifier((1, 3, 6, 1, 2, 1, 46, 1, 0)) dlsw_trap_t_conn_partner_reject = notification_type((1, 3, 6, 1, 2, 1, 46, 1, 0, 1)).setObjects(('DLSW-MIB', 'dlswTConnOperTDomain'), ('DLSW-MIB', 'dlswTConnOperRemoteTAddr')) if mibBuilder.loadTexts: dlswTrapTConnPartnerReject.setStatus('current') if mibBuilder.loadTexts: dlswTrapTConnPartnerReject.setDescription('This trap is sent each time a transport connection is rejected by a partner DLSw during Capabilities Exchanges. The emission of this trap is controlled by dlswTrapCntlTConnPartnerReject.') dlsw_trap_t_conn_prot_violation = notification_type((1, 3, 6, 1, 2, 1, 46, 1, 0, 2)).setObjects(('DLSW-MIB', 'dlswTConnOperTDomain'), ('DLSW-MIB', 'dlswTConnOperRemoteTAddr')) if mibBuilder.loadTexts: dlswTrapTConnProtViolation.setStatus('current') if mibBuilder.loadTexts: dlswTrapTConnProtViolation.setDescription('This trap is sent each time a protocol violation is detected for a transport connection. The emission of this trap is controlled by dlswTrapCntlTConnProtViolation.') dlsw_trap_t_conn_up = notification_type((1, 3, 6, 1, 2, 1, 46, 1, 0, 3)).setObjects(('DLSW-MIB', 'dlswTConnOperTDomain'), ('DLSW-MIB', 'dlswTConnOperRemoteTAddr')) if mibBuilder.loadTexts: dlswTrapTConnUp.setStatus('current') if mibBuilder.loadTexts: dlswTrapTConnUp.setDescription("This trap is sent each time a transport connection enters `connected' state. The emission of this trap is controlled by dlswTrapCntlTConn.") dlsw_trap_t_conn_down = notification_type((1, 3, 6, 1, 2, 1, 46, 1, 0, 4)).setObjects(('DLSW-MIB', 'dlswTConnOperTDomain'), ('DLSW-MIB', 'dlswTConnOperRemoteTAddr')) if mibBuilder.loadTexts: dlswTrapTConnDown.setStatus('current') if mibBuilder.loadTexts: dlswTrapTConnDown.setDescription("This trap is sent each time a transport connection enters `disconnected' state. The emission of this trap is controlled by dlswTrapCntlTConn.") dlsw_trap_circuit_up = notification_type((1, 3, 6, 1, 2, 1, 46, 1, 0, 5)).setObjects(('DLSW-MIB', 'dlswCircuitS1Mac'), ('DLSW-MIB', 'dlswCircuitS1Sap'), ('DLSW-MIB', 'dlswCircuitS2Mac'), ('DLSW-MIB', 'dlswCircuitS2Sap')) if mibBuilder.loadTexts: dlswTrapCircuitUp.setStatus('current') if mibBuilder.loadTexts: dlswTrapCircuitUp.setDescription("This trap is sent each time a circuit enters `connected' state. The emission of this trap is controlled by dlswTrapCntlCircuit.") dlsw_trap_circuit_down = notification_type((1, 3, 6, 1, 2, 1, 46, 1, 0, 6)).setObjects(('DLSW-MIB', 'dlswCircuitS1Mac'), ('DLSW-MIB', 'dlswCircuitS1Sap'), ('DLSW-MIB', 'dlswCircuitS2Mac'), ('DLSW-MIB', 'dlswCircuitS2Sap')) if mibBuilder.loadTexts: dlswTrapCircuitDown.setStatus('current') if mibBuilder.loadTexts: dlswTrapCircuitDown.setDescription("This trap is sent each time a circuit enters `disconnected' state. The emission of this trap is controlled by dlswTrapCntlCircuit.") dlsw_conformance = mib_identifier((1, 3, 6, 1, 2, 1, 46, 3)) dlsw_compliances = mib_identifier((1, 3, 6, 1, 2, 1, 46, 3, 1)) dlsw_groups = mib_identifier((1, 3, 6, 1, 2, 1, 46, 3, 2)) dlsw_core_compliance = module_compliance((1, 3, 6, 1, 2, 1, 46, 3, 1, 1)).setObjects(('DLSW-MIB', 'dlswNodeGroup'), ('DLSW-MIB', 'dlswTConnStatGroup'), ('DLSW-MIB', 'dlswTConnConfigGroup'), ('DLSW-MIB', 'dlswTConnOperGroup'), ('DLSW-MIB', 'dlswInterfaceGroup'), ('DLSW-MIB', 'dlswCircuitGroup'), ('DLSW-MIB', 'dlswCircuitStatGroup'), ('DLSW-MIB', 'dlswNotificationGroup'), ('DLSW-MIB', 'dlswNodeNBGroup'), ('DLSW-MIB', 'dlswTConnNBGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_core_compliance = dlswCoreCompliance.setStatus('current') if mibBuilder.loadTexts: dlswCoreCompliance.setDescription('The core compliance statement for all DLSw nodes.') dlsw_t_conn_tcp_compliance = module_compliance((1, 3, 6, 1, 2, 1, 46, 3, 1, 2)).setObjects(('DLSW-MIB', 'dlswTConnTcpConfigGroup'), ('DLSW-MIB', 'dlswTConnTcpOperGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_t_conn_tcp_compliance = dlswTConnTcpCompliance.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpCompliance.setDescription('Compliance for DLSw nodes that use TCP as a transport connection protocol.') dlsw_dir_compliance = module_compliance((1, 3, 6, 1, 2, 1, 46, 3, 1, 3)).setObjects(('DLSW-MIB', 'dlswDirGroup'), ('DLSW-MIB', 'dlswDirNBGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_dir_compliance = dlswDirCompliance.setStatus('current') if mibBuilder.loadTexts: dlswDirCompliance.setDescription('Compliance for DLSw nodes that provide a directory function.') dlsw_dir_locate_compliance = module_compliance((1, 3, 6, 1, 2, 1, 46, 3, 1, 4)).setObjects(('DLSW-MIB', 'dlswDirLocateGroup'), ('DLSW-MIB', 'dlswDirLocateNBGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_dir_locate_compliance = dlswDirLocateCompliance.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateCompliance.setDescription('Compliance for DLSw nodes that provide an ordered list of directory entries for a given resource.') dlsw_sdlc_compliance = module_compliance((1, 3, 6, 1, 2, 1, 46, 3, 1, 5)).setObjects(('DLSW-MIB', 'dlswSdlcGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_sdlc_compliance = dlswSdlcCompliance.setStatus('current') if mibBuilder.loadTexts: dlswSdlcCompliance.setDescription('Compliance for DLSw nodes that support SDLC.') dlsw_node_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 1)).setObjects(('DLSW-MIB', 'dlswNodeVersion'), ('DLSW-MIB', 'dlswNodeVendorID'), ('DLSW-MIB', 'dlswNodeVersionString'), ('DLSW-MIB', 'dlswNodeStdPacingSupport'), ('DLSW-MIB', 'dlswNodeStatus'), ('DLSW-MIB', 'dlswNodeUpTime'), ('DLSW-MIB', 'dlswNodeVirtualSegmentLFSize'), ('DLSW-MIB', 'dlswNodeResourceMacExclusivity'), ('DLSW-MIB', 'dlswTrapCntlTConnPartnerReject'), ('DLSW-MIB', 'dlswTrapCntlTConnProtViolation'), ('DLSW-MIB', 'dlswTrapCntlTConn'), ('DLSW-MIB', 'dlswTrapCntlCircuit')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_node_group = dlswNodeGroup.setStatus('current') if mibBuilder.loadTexts: dlswNodeGroup.setDescription('Conformance group for DLSw node general information.') dlsw_node_nb_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 2)).setObjects(('DLSW-MIB', 'dlswNodeResourceNBExclusivity')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_node_nb_group = dlswNodeNBGroup.setStatus('current') if mibBuilder.loadTexts: dlswNodeNBGroup.setDescription('Conformance group for DLSw node general information specifically for nodes that support NetBIOS.') dlsw_t_conn_stat_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 3)).setObjects(('DLSW-MIB', 'dlswTConnStatActiveConnections'), ('DLSW-MIB', 'dlswTConnStatCloseIdles'), ('DLSW-MIB', 'dlswTConnStatCloseBusys')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_t_conn_stat_group = dlswTConnStatGroup.setStatus('current') if mibBuilder.loadTexts: dlswTConnStatGroup.setDescription('Conformance group for statistics for transport connections.') dlsw_t_conn_config_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 4)).setObjects(('DLSW-MIB', 'dlswTConnConfigTDomain'), ('DLSW-MIB', 'dlswTConnConfigLocalTAddr'), ('DLSW-MIB', 'dlswTConnConfigRemoteTAddr'), ('DLSW-MIB', 'dlswTConnConfigLastModifyTime'), ('DLSW-MIB', 'dlswTConnConfigEntryType'), ('DLSW-MIB', 'dlswTConnConfigGroupDefinition'), ('DLSW-MIB', 'dlswTConnConfigSetupType'), ('DLSW-MIB', 'dlswTConnConfigSapList'), ('DLSW-MIB', 'dlswTConnConfigAdvertiseMacNB'), ('DLSW-MIB', 'dlswTConnConfigInitCirRecvWndw'), ('DLSW-MIB', 'dlswTConnConfigOpens'), ('DLSW-MIB', 'dlswTConnConfigRowStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_t_conn_config_group = dlswTConnConfigGroup.setStatus('current') if mibBuilder.loadTexts: dlswTConnConfigGroup.setDescription('Conformance group for the configuration of transport connections.') dlsw_t_conn_oper_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 5)).setObjects(('DLSW-MIB', 'dlswTConnOperLocalTAddr'), ('DLSW-MIB', 'dlswTConnOperEntryTime'), ('DLSW-MIB', 'dlswTConnOperConnectTime'), ('DLSW-MIB', 'dlswTConnOperState'), ('DLSW-MIB', 'dlswTConnOperConfigIndex'), ('DLSW-MIB', 'dlswTConnOperFlowCntlMode'), ('DLSW-MIB', 'dlswTConnOperPartnerVersion'), ('DLSW-MIB', 'dlswTConnOperPartnerVendorID'), ('DLSW-MIB', 'dlswTConnOperPartnerVersionStr'), ('DLSW-MIB', 'dlswTConnOperPartnerInitPacingWndw'), ('DLSW-MIB', 'dlswTConnOperPartnerSapList'), ('DLSW-MIB', 'dlswTConnOperPartnerMacExcl'), ('DLSW-MIB', 'dlswTConnOperPartnerMacInfo'), ('DLSW-MIB', 'dlswTConnOperDiscTime'), ('DLSW-MIB', 'dlswTConnOperDiscReason'), ('DLSW-MIB', 'dlswTConnOperDiscActiveCir'), ('DLSW-MIB', 'dlswTConnOperInDataPkts'), ('DLSW-MIB', 'dlswTConnOperOutDataPkts'), ('DLSW-MIB', 'dlswTConnOperInDataOctets'), ('DLSW-MIB', 'dlswTConnOperOutDataOctets'), ('DLSW-MIB', 'dlswTConnOperInCntlPkts'), ('DLSW-MIB', 'dlswTConnOperOutCntlPkts'), ('DLSW-MIB', 'dlswTConnOperCURexSents'), ('DLSW-MIB', 'dlswTConnOperICRexRcvds'), ('DLSW-MIB', 'dlswTConnOperCURexRcvds'), ('DLSW-MIB', 'dlswTConnOperICRexSents'), ('DLSW-MIB', 'dlswTConnOperCirCreates'), ('DLSW-MIB', 'dlswTConnOperCircuits')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_t_conn_oper_group = dlswTConnOperGroup.setStatus('current') if mibBuilder.loadTexts: dlswTConnOperGroup.setDescription('Conformance group for operation information for transport connections.') dlsw_t_conn_nb_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 6)).setObjects(('DLSW-MIB', 'dlswTConnOperPartnerNBExcl'), ('DLSW-MIB', 'dlswTConnOperPartnerNBInfo'), ('DLSW-MIB', 'dlswTConnOperNQexSents'), ('DLSW-MIB', 'dlswTConnOperNRexRcvds'), ('DLSW-MIB', 'dlswTConnOperNQexRcvds'), ('DLSW-MIB', 'dlswTConnOperNRexSents')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_t_conn_nb_group = dlswTConnNBGroup.setStatus('current') if mibBuilder.loadTexts: dlswTConnNBGroup.setDescription('Conformance group for operation information for transport connections, specifically for nodes that support NetBIOS.') dlsw_t_conn_tcp_config_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 7)).setObjects(('DLSW-MIB', 'dlswTConnTcpConfigKeepAliveInt'), ('DLSW-MIB', 'dlswTConnTcpConfigTcpConnections'), ('DLSW-MIB', 'dlswTConnTcpConfigMaxSegmentSize')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_t_conn_tcp_config_group = dlswTConnTcpConfigGroup.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpConfigGroup.setDescription('Conformance group for configuration information for transport connections using TCP.') dlsw_t_conn_tcp_oper_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 8)).setObjects(('DLSW-MIB', 'dlswTConnTcpOperKeepAliveInt'), ('DLSW-MIB', 'dlswTConnTcpOperPrefTcpConnections'), ('DLSW-MIB', 'dlswTConnTcpOperTcpConnections')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_t_conn_tcp_oper_group = dlswTConnTcpOperGroup.setStatus('current') if mibBuilder.loadTexts: dlswTConnTcpOperGroup.setDescription('Conformance group for operation information for transport connections using TCP.') dlsw_interface_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 9)).setObjects(('DLSW-MIB', 'dlswIfRowStatus'), ('DLSW-MIB', 'dlswIfVirtualSegment'), ('DLSW-MIB', 'dlswIfSapList')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_interface_group = dlswInterfaceGroup.setStatus('current') if mibBuilder.loadTexts: dlswInterfaceGroup.setDescription('Conformance group for DLSw interfaces.') dlsw_dir_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 10)).setObjects(('DLSW-MIB', 'dlswDirMacEntries'), ('DLSW-MIB', 'dlswDirMacCacheHits'), ('DLSW-MIB', 'dlswDirMacCacheMisses'), ('DLSW-MIB', 'dlswDirMacCacheNextIndex'), ('DLSW-MIB', 'dlswDirMacMac'), ('DLSW-MIB', 'dlswDirMacMask'), ('DLSW-MIB', 'dlswDirMacEntryType'), ('DLSW-MIB', 'dlswDirMacLocationType'), ('DLSW-MIB', 'dlswDirMacLocation'), ('DLSW-MIB', 'dlswDirMacStatus'), ('DLSW-MIB', 'dlswDirMacLFSize'), ('DLSW-MIB', 'dlswDirMacRowStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_dir_group = dlswDirGroup.setStatus('current') if mibBuilder.loadTexts: dlswDirGroup.setDescription('Conformance group for DLSw directory using MAC addresses.') dlsw_dir_nb_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 11)).setObjects(('DLSW-MIB', 'dlswDirNBEntries'), ('DLSW-MIB', 'dlswDirNBCacheHits'), ('DLSW-MIB', 'dlswDirNBCacheMisses'), ('DLSW-MIB', 'dlswDirNBCacheNextIndex'), ('DLSW-MIB', 'dlswDirNBName'), ('DLSW-MIB', 'dlswDirNBNameType'), ('DLSW-MIB', 'dlswDirNBEntryType'), ('DLSW-MIB', 'dlswDirNBLocationType'), ('DLSW-MIB', 'dlswDirNBLocation'), ('DLSW-MIB', 'dlswDirNBStatus'), ('DLSW-MIB', 'dlswDirNBLFSize'), ('DLSW-MIB', 'dlswDirNBRowStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_dir_nb_group = dlswDirNBGroup.setStatus('current') if mibBuilder.loadTexts: dlswDirNBGroup.setDescription('Conformance group for DLSw directory using NetBIOS names.') dlsw_dir_locate_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 12)).setObjects(('DLSW-MIB', 'dlswDirLocateMacLocation')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_dir_locate_group = dlswDirLocateGroup.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateGroup.setDescription('Conformance group for a node that can return directory entry order for a given MAC address.') dlsw_dir_locate_nb_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 13)).setObjects(('DLSW-MIB', 'dlswDirLocateNBLocation')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_dir_locate_nb_group = dlswDirLocateNBGroup.setStatus('current') if mibBuilder.loadTexts: dlswDirLocateNBGroup.setDescription('Conformance group for a node that can return directory entry order for a given NetBIOS name.') dlsw_circuit_stat_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 14)).setObjects(('DLSW-MIB', 'dlswCircuitStatActives'), ('DLSW-MIB', 'dlswCircuitStatCreates')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_circuit_stat_group = dlswCircuitStatGroup.setStatus('current') if mibBuilder.loadTexts: dlswCircuitStatGroup.setDescription('Conformance group for statistics about circuits.') dlsw_circuit_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 15)).setObjects(('DLSW-MIB', 'dlswCircuitS1IfIndex'), ('DLSW-MIB', 'dlswCircuitS1DlcType'), ('DLSW-MIB', 'dlswCircuitS1RouteInfo'), ('DLSW-MIB', 'dlswCircuitS1CircuitId'), ('DLSW-MIB', 'dlswCircuitS1Dlc'), ('DLSW-MIB', 'dlswCircuitS2Location'), ('DLSW-MIB', 'dlswCircuitS2TDomain'), ('DLSW-MIB', 'dlswCircuitS2TAddress'), ('DLSW-MIB', 'dlswCircuitS2CircuitId'), ('DLSW-MIB', 'dlswCircuitOrigin'), ('DLSW-MIB', 'dlswCircuitEntryTime'), ('DLSW-MIB', 'dlswCircuitStateTime'), ('DLSW-MIB', 'dlswCircuitState'), ('DLSW-MIB', 'dlswCircuitPriority'), ('DLSW-MIB', 'dlswCircuitFCSendGrantedUnits'), ('DLSW-MIB', 'dlswCircuitFCSendCurrentWndw'), ('DLSW-MIB', 'dlswCircuitFCRecvGrantedUnits'), ('DLSW-MIB', 'dlswCircuitFCRecvCurrentWndw'), ('DLSW-MIB', 'dlswCircuitFCLargestRecvGranted'), ('DLSW-MIB', 'dlswCircuitFCLargestSendGranted'), ('DLSW-MIB', 'dlswCircuitFCHalveWndwSents'), ('DLSW-MIB', 'dlswCircuitFCResetOpSents'), ('DLSW-MIB', 'dlswCircuitFCHalveWndwRcvds'), ('DLSW-MIB', 'dlswCircuitFCResetOpRcvds'), ('DLSW-MIB', 'dlswCircuitDiscReasonLocal'), ('DLSW-MIB', 'dlswCircuitDiscReasonRemote'), ('DLSW-MIB', 'dlswCircuitDiscReasonRemoteData')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_circuit_group = dlswCircuitGroup.setStatus('current') if mibBuilder.loadTexts: dlswCircuitGroup.setDescription('Conformance group for DLSw circuits.') dlsw_sdlc_group = object_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 16)).setObjects(('DLSW-MIB', 'dlswSdlcLsEntries'), ('DLSW-MIB', 'dlswSdlcLsLocalMac'), ('DLSW-MIB', 'dlswSdlcLsLocalSap'), ('DLSW-MIB', 'dlswSdlcLsLocalIdBlock'), ('DLSW-MIB', 'dlswSdlcLsLocalIdNum'), ('DLSW-MIB', 'dlswSdlcLsRemoteMac'), ('DLSW-MIB', 'dlswSdlcLsRemoteSap'), ('DLSW-MIB', 'dlswSdlcLsRowStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_sdlc_group = dlswSdlcGroup.setStatus('current') if mibBuilder.loadTexts: dlswSdlcGroup.setDescription('Conformance group for DLSw SDLC support.') dlsw_notification_group = notification_group((1, 3, 6, 1, 2, 1, 46, 3, 2, 17)).setObjects(('DLSW-MIB', 'dlswTrapTConnPartnerReject'), ('DLSW-MIB', 'dlswTrapTConnProtViolation'), ('DLSW-MIB', 'dlswTrapTConnUp'), ('DLSW-MIB', 'dlswTrapTConnDown'), ('DLSW-MIB', 'dlswTrapCircuitUp'), ('DLSW-MIB', 'dlswTrapCircuitDown')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): dlsw_notification_group = dlswNotificationGroup.setStatus('current') if mibBuilder.loadTexts: dlswNotificationGroup.setDescription('Conformance group for DLSw notifications.') mibBuilder.exportSymbols('DLSW-MIB', dlswCircuitStatGroup=dlswCircuitStatGroup, dlswNodeVirtualSegmentLFSize=dlswNodeVirtualSegmentLFSize, dlswIfRowStatus=dlswIfRowStatus, dlswTrapTConnProtViolation=dlswTrapTConnProtViolation, dlswDirNBLFSize=dlswDirNBLFSize, dlswCircuitS2TDomain=dlswCircuitS2TDomain, dlswTConnStatCloseBusys=dlswTConnStatCloseBusys, dlswDirMacIndex=dlswDirMacIndex, dlswDirLocateNBGroup=dlswDirLocateNBGroup, dlswDirLocateNBLocation=dlswDirLocateNBLocation, dlswCircuitS2Location=dlswCircuitS2Location, dlswDirCache=dlswDirCache, dlswSdlcLsLocalSap=dlswSdlcLsLocalSap, dlswSdlcLsLocalIdBlock=dlswSdlcLsLocalIdBlock, dlswNotificationGroup=dlswNotificationGroup, dlswInterface=dlswInterface, dlswTrapTConnPartnerReject=dlswTrapTConnPartnerReject, dlswCircuitFCSendCurrentWndw=dlswCircuitFCSendCurrentWndw, dlswTrapCntlTConnProtViolation=dlswTrapCntlTConnProtViolation, EndStationLocation=EndStationLocation, dlswTConnOperDiscTime=dlswTConnOperDiscTime, dlswTConnOperPartnerInitPacingWndw=dlswTConnOperPartnerInitPacingWndw, dlswTConnOperEntryTime=dlswTConnOperEntryTime, dlswTConnOperPartnerMacInfo=dlswTConnOperPartnerMacInfo, dlswTConnOperCURexSents=dlswTConnOperCURexSents, dlswDirStat=dlswDirStat, dlswDirMacCacheHits=dlswDirMacCacheHits, dlswDirLocate=dlswDirLocate, dlswCircuitOrigin=dlswCircuitOrigin, dlswDirMacCacheMisses=dlswDirMacCacheMisses, dlswTConnTcpOperKeepAliveInt=dlswTConnTcpOperKeepAliveInt, dlswCircuitFCLargestRecvGranted=dlswCircuitFCLargestRecvGranted, dlswCircuitS2CircuitId=dlswCircuitS2CircuitId, PYSNMP_MODULE_ID=dlsw, dlswTConnConfigIndex=dlswTConnConfigIndex, dlswDirNBGroup=dlswDirNBGroup, dlswNodeGroup=dlswNodeGroup, dlswTConnConfigInitCirRecvWndw=dlswTConnConfigInitCirRecvWndw, dlswMIB=dlswMIB, dlswDirMacLFSize=dlswDirMacLFSize, dlswTConnOperPartnerMacExcl=dlswTConnOperPartnerMacExcl, dlswDirCompliance=dlswDirCompliance, dlswTConnTcpConfigEntry=dlswTConnTcpConfigEntry, dlswDirNBLocationType=dlswDirNBLocationType, dlswNode=dlswNode, dlswTConnConfigEntry=dlswTConnConfigEntry, dlswSdlcLsLocalIdNum=dlswSdlcLsLocalIdNum, dlsw=dlsw, dlswDirNBLocation=dlswDirNBLocation, dlswTConnStatCloseIdles=dlswTConnStatCloseIdles, dlswTConnOperEntry=dlswTConnOperEntry, dlswDirLocateNBEntry=dlswDirLocateNBEntry, dlswTraps=dlswTraps, dlswCircuitStatCreates=dlswCircuitStatCreates, dlswDirNBCacheHits=dlswDirNBCacheHits, dlswDirNBNameType=dlswDirNBNameType, dlswTConnOperCirCreates=dlswTConnOperCirCreates, dlswTConnConfigTDomain=dlswTConnConfigTDomain, dlswTConnOperInCntlPkts=dlswTConnOperInCntlPkts, dlswIfEntry=dlswIfEntry, dlswDirNBCacheNextIndex=dlswDirNBCacheNextIndex, null=null, dlswTConnStatActiveConnections=dlswTConnStatActiveConnections, DlcType=DlcType, dlswTConnOperInDataOctets=dlswTConnOperInDataOctets, dlswIfSapList=dlswIfSapList, dlswDirMacEntryType=dlswDirMacEntryType, dlswTConnOperTDomain=dlswTConnOperTDomain, dlswCircuitStatActives=dlswCircuitStatActives, TAddress=TAddress, dlswTConnOperNQexSents=dlswTConnOperNQexSents, dlswDirNBRowStatus=dlswDirNBRowStatus, dlswDirNBEntryType=dlswDirNBEntryType, dlswCircuitS1RouteInfo=dlswCircuitS1RouteInfo, dlswTConnConfigGroup=dlswTConnConfigGroup, dlswTConnConfigRowStatus=dlswTConnConfigRowStatus, dlswCircuitState=dlswCircuitState, dlswCircuitEntry=dlswCircuitEntry, dlswCircuitGroup=dlswCircuitGroup, dlswTConnOperOutDataPkts=dlswTConnOperOutDataPkts, dlswTConnTcpConfigTcpConnections=dlswTConnTcpConfigTcpConnections, dlswIfTable=dlswIfTable, dlswDirGroup=dlswDirGroup, dlswDirNBEntries=dlswDirNBEntries, dlswNodeStdPacingSupport=dlswNodeStdPacingSupport, dlswCircuitPriority=dlswCircuitPriority, dlswNodeStatus=dlswNodeStatus, dlswCircuitS2TAddress=dlswCircuitS2TAddress, dlswDirLocateCompliance=dlswDirLocateCompliance, dlswTConn=dlswTConn, dlswCircuitS1CircuitId=dlswCircuitS1CircuitId, dlswSdlcGroup=dlswSdlcGroup, NBName=NBName, dlswIfVirtualSegment=dlswIfVirtualSegment, dlswTConnOperPartnerNBExcl=dlswTConnOperPartnerNBExcl, dlswTConnOperNRexSents=dlswTConnOperNRexSents, dlswTConnTcpOperTable=dlswTConnTcpOperTable, dlswSdlcLsTable=dlswSdlcLsTable, dlswDirLocateMacTable=dlswDirLocateMacTable, dlswTConnOperNQexRcvds=dlswTConnOperNQexRcvds, dlswCircuitFCSendGrantedUnits=dlswCircuitFCSendGrantedUnits, dlswTConnOperTable=dlswTConnOperTable, dlswTConnConfigSapList=dlswTConnConfigSapList, dlswDirMacRowStatus=dlswDirMacRowStatus, DlswTCPAddress=DlswTCPAddress, dlswDirMacEntries=dlswDirMacEntries, dlswTConnConfigEntryType=dlswTConnConfigEntryType, dlswTConnOperInDataPkts=dlswTConnOperInDataPkts, dlswCircuitS2Mac=dlswCircuitS2Mac, dlswDirMacLocationType=dlswDirMacLocationType, dlswTConnOperFlowCntlMode=dlswTConnOperFlowCntlMode, dlswCircuitFCHalveWndwRcvds=dlswCircuitFCHalveWndwRcvds, dlswDirLocateMacEntry=dlswDirLocateMacEntry, dlswSdlc=dlswSdlc, dlswDirNBTable=dlswDirNBTable, dlswCircuitFCRecvGrantedUnits=dlswCircuitFCRecvGrantedUnits, dlswTConnStat=dlswTConnStat, dlswDirLocateNBTable=dlswDirLocateNBTable, dlswDirLocateNBMatch=dlswDirLocateNBMatch, dlswDirLocateGroup=dlswDirLocateGroup, dlswNodeVendorID=dlswNodeVendorID, dlswCircuitStateTime=dlswCircuitStateTime, dlswDirMacEntry=dlswDirMacEntry, dlswDirLocateMacMatch=dlswDirLocateMacMatch, dlswNodeUpTime=dlswNodeUpTime, dlswTConnTcpConfigGroup=dlswTConnTcpConfigGroup, dlswCircuitTable=dlswCircuitTable, dlswCircuitFCHalveWndwSents=dlswCircuitFCHalveWndwSents, dlswTConnConfigOpens=dlswTConnConfigOpens, dlswTConnTcpOperPrefTcpConnections=dlswTConnTcpOperPrefTcpConnections, dlswSdlcCompliance=dlswSdlcCompliance, dlswTConnConfigLocalTAddr=dlswTConnConfigLocalTAddr, dlswTConnOperConnectTime=dlswTConnOperConnectTime, dlswCircuitS2Sap=dlswCircuitS2Sap, dlswTConnNBGroup=dlswTConnNBGroup, dlswNodeResourceMacExclusivity=dlswNodeResourceMacExclusivity, dlswTrapTConnDown=dlswTrapTConnDown, dlswCircuitS1IfIndex=dlswCircuitS1IfIndex, dlswCircuitFCLargestSendGranted=dlswCircuitFCLargestSendGranted, dlswTrapCircuitUp=dlswTrapCircuitUp, dlswTrapCircuitDown=dlswTrapCircuitDown, dlswTrapCntlTConn=dlswTrapCntlTConn, dlswTConnOperRemoteTAddr=dlswTConnOperRemoteTAddr, dlswInterfaceGroup=dlswInterfaceGroup, dlswTConnOperState=dlswTConnOperState, dlswTrapCntlTConnPartnerReject=dlswTrapCntlTConnPartnerReject, dlswGroups=dlswGroups, dlswDirLocateMacLocation=dlswDirLocateMacLocation, dlswTConnTcpOperEntry=dlswTConnTcpOperEntry, dlswTConnConfigLastModifyTime=dlswTConnConfigLastModifyTime, dlswTConnOperConfigIndex=dlswTConnOperConfigIndex, dlswCircuitFCResetOpSents=dlswCircuitFCResetOpSents, dlswDirMacMac=dlswDirMacMac, dlswTConnTcpOperGroup=dlswTConnTcpOperGroup, dlswTConnOperDiscActiveCir=dlswTConnOperDiscActiveCir, dlswTConnConfigGroupDefinition=dlswTConnConfigGroupDefinition, dlswDirMacCacheNextIndex=dlswDirMacCacheNextIndex, dlswSdlcLsRemoteSap=dlswSdlcLsRemoteSap, dlswTConnTcpConfigMaxSegmentSize=dlswTConnTcpConfigMaxSegmentSize, dlswTConnStatGroup=dlswTConnStatGroup, dlswDirectory=dlswDirectory, dlswDirMacMask=dlswDirMacMask, dlswDirMacTable=dlswDirMacTable, dlswTConnTcpConfigKeepAliveInt=dlswTConnTcpConfigKeepAliveInt, dlswTConnOperICRexSents=dlswTConnOperICRexSents, dlswTrapControl=dlswTrapControl, dlswTConnConfigTable=dlswTConnConfigTable, MacAddressNC=MacAddressNC, dlswTConnOperICRexRcvds=dlswTConnOperICRexRcvds, dlswCircuitS1Sap=dlswCircuitS1Sap, dlswTConnOperOutCntlPkts=dlswTConnOperOutCntlPkts, dlswTConnOperOutDataOctets=dlswTConnOperOutDataOctets, dlswTConnOperNRexRcvds=dlswTConnOperNRexRcvds, dlswCircuitS1Mac=dlswCircuitS1Mac, dlswTConnConfigRemoteTAddr=dlswTConnConfigRemoteTAddr, dlswTConnOperPartnerVendorID=dlswTConnOperPartnerVendorID, dlswTConnOperCURexRcvds=dlswTConnOperCURexRcvds, dlswDirNBStatus=dlswDirNBStatus, dlswCircuitS1Dlc=dlswCircuitS1Dlc, dlswTrapCntlCircuit=dlswTrapCntlCircuit, dlswCircuitEntryTime=dlswCircuitEntryTime, dlswTConnConfigAdvertiseMacNB=dlswTConnConfigAdvertiseMacNB, dlswNodeResourceNBExclusivity=dlswNodeResourceNBExclusivity, dlswNodeNBGroup=dlswNodeNBGroup, dlswDirNBEntry=dlswDirNBEntry, dlswSdlcLsRowStatus=dlswSdlcLsRowStatus, LFSize=LFSize, dlswDomains=dlswDomains, dlswCircuitDiscReasonLocal=dlswCircuitDiscReasonLocal, dlswSdlcLsRemoteMac=dlswSdlcLsRemoteMac, dlswTConnConfigSetupType=dlswTConnConfigSetupType, dlswNodeVersionString=dlswNodeVersionString, dlswTConnOperPartnerVersion=dlswTConnOperPartnerVersion, dlswCircuitDiscReasonRemote=dlswCircuitDiscReasonRemote, dlswTConnOperGroup=dlswTConnOperGroup, dlswSdlcLsLocalMac=dlswSdlcLsLocalMac, dlswCircuitStat=dlswCircuitStat, dlswCircuitFCResetOpRcvds=dlswCircuitFCResetOpRcvds, dlswTConnTcpOperTcpConnections=dlswTConnTcpOperTcpConnections, dlswTConnTcp=dlswTConnTcp, dlswSdlcLsEntry=dlswSdlcLsEntry, dlswDirLocateNBName=dlswDirLocateNBName, dlswTConnOperPartnerSapList=dlswTConnOperPartnerSapList, dlswCircuitFCRecvCurrentWndw=dlswCircuitFCRecvCurrentWndw, dlswSdlcLsEntries=dlswSdlcLsEntries, dlswTConnOperDiscReason=dlswTConnOperDiscReason, dlswTConnOperPartnerNBInfo=dlswTConnOperPartnerNBInfo, dlswDirMacLocation=dlswDirMacLocation, dlswDirNBIndex=dlswDirNBIndex, dlswConformance=dlswConformance, dlswTConnTcpCompliance=dlswTConnTcpCompliance, dlswCircuit=dlswCircuit, dlswTConnTcpConfigTable=dlswTConnTcpConfigTable, dlswTConnOperCircuits=dlswTConnOperCircuits, dlswDirMacStatus=dlswDirMacStatus, dlswTConnOperLocalTAddr=dlswTConnOperLocalTAddr, dlswTConnOperPartnerVersionStr=dlswTConnOperPartnerVersionStr, dlswCircuitDiscReasonRemoteData=dlswCircuitDiscReasonRemoteData, dlswCircuitS1DlcType=dlswCircuitS1DlcType, dlswTConnSpecific=dlswTConnSpecific, dlswTCPDomain=dlswTCPDomain, dlswDirNBCacheMisses=dlswDirNBCacheMisses, dlswDirLocateMacMac=dlswDirLocateMacMac, dlswDirNBName=dlswDirNBName, dlswTrapTConnUp=dlswTrapTConnUp, dlswCoreCompliance=dlswCoreCompliance, dlswNodeVersion=dlswNodeVersion, dlswCompliances=dlswCompliances)
''' Play with numbers You are given an array of n numbers and q queries. For each query you have to print the floor of the expected value(mean) of the subarray from L to R. First line contains two integers N and Q denoting number of array elements and number of queries. Next line contains N space seperated integers denoting array elements. Next Q lines contain two integers L and R(indices of the array). print a single integer denoting the answer. : 1<= N ,Q,L,R <= 10^6 1<= Array elements <= 10^9 NOTE Use Fast I/O ''' x = list(map(int,input().split())) a = list(map(int,input().split())) b = [a[0]] for i in range (1, len(a)): b.append(a[i]+b[-1]) for i in range (0,x[1]): c = list(map(int,input().split())) if c[0] == 1: print(b[c[1]-1]//(c[1])) else: print((b[c[1]-1] - b[c[0] - 2])//((c[1] - c[0])+1))
""" Play with numbers You are given an array of n numbers and q queries. For each query you have to print the floor of the expected value(mean) of the subarray from L to R. First line contains two integers N and Q denoting number of array elements and number of queries. Next line contains N space seperated integers denoting array elements. Next Q lines contain two integers L and R(indices of the array). print a single integer denoting the answer. : 1<= N ,Q,L,R <= 10^6 1<= Array elements <= 10^9 NOTE Use Fast I/O """ x = list(map(int, input().split())) a = list(map(int, input().split())) b = [a[0]] for i in range(1, len(a)): b.append(a[i] + b[-1]) for i in range(0, x[1]): c = list(map(int, input().split())) if c[0] == 1: print(b[c[1] - 1] // c[1]) else: print((b[c[1] - 1] - b[c[0] - 2]) // (c[1] - c[0] + 1))
def glyphs(): return 97 _font =\ b'\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a'\ b'\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a'\ b'\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a'\ b'\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a'\ b'\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a'\ b'\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a'\ b'\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x11\x4b\x59\x51\x4b\x4e'\ b'\x4c\x4c\x4e\x4b\x51\x4b\x53\x4c\x56\x4e\x58\x51\x59\x53\x59'\ b'\x56\x58\x58\x56\x59\x53\x59\x51\x58\x4e\x56\x4c\x53\x4b\x51'\ b'\x4b\x05\x4c\x58\x4c\x4c\x4c\x58\x58\x58\x58\x4c\x4c\x4c\x04'\ b'\x4b\x59\x52\x4a\x4b\x56\x59\x56\x52\x4a\x05\x4c\x58\x52\x48'\ b'\x4c\x52\x52\x5c\x58\x52\x52\x48\x0b\x4a\x5a\x52\x49\x50\x4f'\ b'\x4a\x4f\x4f\x53\x4d\x59\x52\x55\x57\x59\x55\x53\x5a\x4f\x54'\ b'\x4f\x52\x49\x0d\x4c\x58\x50\x4c\x50\x50\x4c\x50\x4c\x54\x50'\ b'\x54\x50\x58\x54\x58\x54\x54\x58\x54\x58\x50\x54\x50\x54\x4c'\ b'\x50\x4c\x05\x4b\x59\x52\x4b\x52\x59\x20\x52\x4b\x52\x59\x52'\ b'\x05\x4d\x57\x4d\x4d\x57\x57\x20\x52\x57\x4d\x4d\x57\x08\x4d'\ b'\x57\x52\x4c\x52\x58\x20\x52\x4d\x4f\x57\x55\x20\x52\x57\x4f'\ b'\x4d\x55\x22\x4e\x56\x51\x4e\x4f\x4f\x4e\x51\x4e\x53\x4f\x55'\ b'\x51\x56\x53\x56\x55\x55\x56\x53\x56\x51\x55\x4f\x53\x4e\x51'\ b'\x4e\x20\x52\x4f\x51\x4f\x53\x20\x52\x50\x50\x50\x54\x20\x52'\ b'\x51\x4f\x51\x55\x20\x52\x52\x4f\x52\x55\x20\x52\x53\x4f\x53'\ b'\x55\x20\x52\x54\x50\x54\x54\x20\x52\x55\x51\x55\x53\x1a\x4e'\ b'\x56\x4e\x4e\x4e\x56\x56\x56\x56\x4e\x4e\x4e\x20\x52\x4f\x4f'\ b'\x4f\x55\x20\x52\x50\x4f\x50\x55\x20\x52\x51\x4f\x51\x55\x20'\ b'\x52\x52\x4f\x52\x55\x20\x52\x53\x4f\x53\x55\x20\x52\x54\x4f'\ b'\x54\x55\x20\x52\x55\x4f\x55\x55\x10\x4d\x57\x52\x4c\x4d\x55'\ b'\x57\x55\x52\x4c\x20\x52\x52\x4f\x4f\x54\x20\x52\x52\x4f\x55'\ b'\x54\x20\x52\x52\x52\x51\x54\x20\x52\x52\x52\x53\x54\x10\x4c'\ b'\x55\x4c\x52\x55\x57\x55\x4d\x4c\x52\x20\x52\x4f\x52\x54\x55'\ b'\x20\x52\x4f\x52\x54\x4f\x20\x52\x52\x52\x54\x53\x20\x52\x52'\ b'\x52\x54\x51\x10\x4d\x57\x52\x58\x57\x4f\x4d\x4f\x52\x58\x20'\ b'\x52\x52\x55\x55\x50\x20\x52\x52\x55\x4f\x50\x20\x52\x52\x52'\ b'\x53\x50\x20\x52\x52\x52\x51\x50\x10\x4f\x58\x58\x52\x4f\x4d'\ b'\x4f\x57\x58\x52\x20\x52\x55\x52\x50\x4f\x20\x52\x55\x52\x50'\ b'\x55\x20\x52\x52\x52\x50\x51\x20\x52\x52\x52\x50\x53\x08\x44'\ b'\x60\x44\x52\x60\x52\x20\x52\x44\x52\x52\x62\x20\x52\x60\x52'\ b'\x52\x62\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00'\ b'\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00'\ b'\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00'\ b'\x4a\x5a\x00\x4a\x5a\x11\x4b\x59\x51\x4b\x4e\x4c\x4c\x4e\x4b'\ b'\x51\x4b\x53\x4c\x56\x4e\x58\x51\x59\x53\x59\x56\x58\x58\x56'\ b'\x59\x53\x59\x51\x58\x4e\x56\x4c\x53\x4b\x51\x4b\x05\x4c\x58'\ b'\x4c\x4c\x4c\x58\x58\x58\x58\x4c\x4c\x4c\x04\x4b\x59\x52\x4a'\ b'\x4b\x56\x59\x56\x52\x4a\x05\x4c\x58\x52\x48\x4c\x52\x52\x5c'\ b'\x58\x52\x52\x48\x0b\x4a\x5a\x52\x49\x50\x4f\x4a\x4f\x4f\x53'\ b'\x4d\x59\x52\x55\x57\x59\x55\x53\x5a\x4f\x54\x4f\x52\x49\x0d'\ b'\x4c\x58\x50\x4c\x50\x50\x4c\x50\x4c\x54\x50\x54\x50\x58\x54'\ b'\x58\x54\x54\x58\x54\x58\x50\x54\x50\x54\x4c\x50\x4c\x05\x4b'\ b'\x59\x52\x4b\x52\x59\x20\x52\x4b\x52\x59\x52\x05\x4d\x57\x4d'\ b'\x4d\x57\x57\x20\x52\x57\x4d\x4d\x57\x08\x4d\x57\x52\x4c\x52'\ b'\x58\x20\x52\x4d\x4f\x57\x55\x20\x52\x57\x4f\x4d\x55\x22\x4e'\ b'\x56\x51\x4e\x4f\x4f\x4e\x51\x4e\x53\x4f\x55\x51\x56\x53\x56'\ b'\x55\x55\x56\x53\x56\x51\x55\x4f\x53\x4e\x51\x4e\x20\x52\x4f'\ b'\x51\x4f\x53\x20\x52\x50\x50\x50\x54\x20\x52\x51\x4f\x51\x55'\ b'\x20\x52\x52\x4f\x52\x55\x20\x52\x53\x4f\x53\x55\x20\x52\x54'\ b'\x50\x54\x54\x20\x52\x55\x51\x55\x53\x1a\x4e\x56\x4e\x4e\x4e'\ b'\x56\x56\x56\x56\x4e\x4e\x4e\x20\x52\x4f\x4f\x4f\x55\x20\x52'\ b'\x50\x4f\x50\x55\x20\x52\x51\x4f\x51\x55\x20\x52\x52\x4f\x52'\ b'\x55\x20\x52\x53\x4f\x53\x55\x20\x52\x54\x4f\x54\x55\x20\x52'\ b'\x55\x4f\x55\x55\x10\x4d\x57\x52\x4c\x4d\x55\x57\x55\x52\x4c'\ b'\x20\x52\x52\x4f\x4f\x54\x20\x52\x52\x4f\x55\x54\x20\x52\x52'\ b'\x52\x51\x54\x20\x52\x52\x52\x53\x54\x10\x4c\x55\x4c\x52\x55'\ b'\x57\x55\x4d\x4c\x52\x20\x52\x4f\x52\x54\x55\x20\x52\x4f\x52'\ b'\x54\x4f\x20\x52\x52\x52\x54\x53\x20\x52\x52\x52\x54\x51\x10'\ b'\x4d\x57\x52\x58\x57\x4f\x4d\x4f\x52\x58\x20\x52\x52\x55\x55'\ b'\x50\x20\x52\x52\x55\x4f\x50\x20\x52\x52\x52\x53\x50\x20\x52'\ b'\x52\x52\x51\x50\x10\x4f\x58\x58\x52\x4f\x4d\x4f\x57\x58\x52'\ b'\x20\x52\x55\x52\x50\x4f\x20\x52\x55\x52\x50\x55\x20\x52\x52'\ b'\x52\x50\x51\x20\x52\x52\x52\x50\x53\x08\x44\x60\x44\x52\x60'\ b'\x52\x20\x52\x44\x52\x52\x62\x20\x52\x60\x52\x52\x62\x00\x4a'\ b'\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a'\ b'\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a'\ b'\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a\x5a\x00\x4a'\ b'\x5a' _index =\ b'\x00\x00\x03\x00\x06\x00\x09\x00\x0c\x00\x0f\x00\x12\x00\x15'\ b'\x00\x18\x00\x1b\x00\x1e\x00\x21\x00\x24\x00\x27\x00\x2a\x00'\ b'\x2d\x00\x30\x00\x33\x00\x36\x00\x39\x00\x3c\x00\x3f\x00\x42'\ b'\x00\x45\x00\x48\x00\x4b\x00\x4e\x00\x51\x00\x54\x00\x57\x00'\ b'\x5a\x00\x5d\x00\x60\x00\x63\x00\x88\x00\x95\x00\xa0\x00\xad'\ b'\x00\xc6\x00\xe3\x00\xf0\x00\xfd\x00\x10\x01\x57\x01\x8e\x01'\ b'\xb1\x01\xd4\x01\xf7\x01\x1a\x02\x2d\x02\x30\x02\x33\x02\x36'\ b'\x02\x39\x02\x3c\x02\x3f\x02\x42\x02\x45\x02\x48\x02\x4b\x02'\ b'\x4e\x02\x51\x02\x54\x02\x57\x02\x5a\x02\x5d\x02\x82\x02\x8f'\ b'\x02\x9a\x02\xa7\x02\xc0\x02\xdd\x02\xea\x02\xf7\x02\x0a\x03'\ b'\x51\x03\x88\x03\xab\x03\xce\x03\xf1\x03\x14\x04\x27\x04\x2a'\ b'\x04\x2d\x04\x30\x04\x33\x04\x36\x04\x39\x04\x3c\x04\x3f\x04'\ b'\x42\x04\x45\x04\x48\x04\x4b\x04\x4e\x04\x51\x04\x54\x04' _mvfont = memoryview(_font) def _chr_addr(ordch): offset = 2 * (ordch - 32) return int.from_bytes(_index[offset:offset + 2], 'little') def get_ch(ordch): offset = _chr_addr(ordch if 32 <= ordch <= 127 else ord('?')) count = _font[offset] return _mvfont[offset:offset+(count+2)*2-1]
def glyphs(): return 97 _font = b'\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x11KYQKNLLNKQKSLVNXQYSYVXXVYSYQXNVLSKQK\x05LXLLLXXXXLLL\x04KYRJKVYVRJ\x05LXRHLRR\\XRRH\x0bJZRIPOJOOSMYRUWYUSZOTORI\rLXPLPPLPLTPTPXTXTTXTXPTPTLPL\x05KYRKRY RKRYR\x05MWMMWW RWMMW\x08MWRLRX RMOWU RWOMU"NVQNOONQNSOUQVSVUUVSVQUOSNQN ROQOS RPPPT RQOQU RRORU RSOSU RTPTT RUQUS\x1aNVNNNVVVVNNN ROOOU RPOPU RQOQU RRORU RSOSU RTOTU RUOUU\x10MWRLMUWURL RROOT RROUT RRRQT RRRST\x10LULRUWUMLR RORTU RORTO RRRTS RRRTQ\x10MWRXWOMORX RRUUP RRUOP RRRSP RRRQP\x10OXXROMOWXR RURPO RURPU RRRPQ RRRPS\x08D`DR`R RDRRb R`RRb\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x11KYQKNLLNKQKSLVNXQYSYVXXVYSYQXNVLSKQK\x05LXLLLXXXXLLL\x04KYRJKVYVRJ\x05LXRHLRR\\XRRH\x0bJZRIPOJOOSMYRUWYUSZOTORI\rLXPLPPLPLTPTPXTXTTXTXPTPTLPL\x05KYRKRY RKRYR\x05MWMMWW RWMMW\x08MWRLRX RMOWU RWOMU"NVQNOONQNSOUQVSVUUVSVQUOSNQN ROQOS RPPPT RQOQU RRORU RSOSU RTPTT RUQUS\x1aNVNNNVVVVNNN ROOOU RPOPU RQOQU RRORU RSOSU RTOTU RUOUU\x10MWRLMUWURL RROOT RROUT RRRQT RRRST\x10LULRUWUMLR RORTU RORTO RRRTS RRRTQ\x10MWRXWOMORX RRUUP RRUOP RRRSP RRRQP\x10OXXROMOWXR RURPO RURPU RRRPQ RRRPS\x08D`DR`R RDRRb R`RRb\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ\x00JZ' _index = b"\x00\x00\x03\x00\x06\x00\t\x00\x0c\x00\x0f\x00\x12\x00\x15\x00\x18\x00\x1b\x00\x1e\x00!\x00$\x00'\x00*\x00-\x000\x003\x006\x009\x00<\x00?\x00B\x00E\x00H\x00K\x00N\x00Q\x00T\x00W\x00Z\x00]\x00`\x00c\x00\x88\x00\x95\x00\xa0\x00\xad\x00\xc6\x00\xe3\x00\xf0\x00\xfd\x00\x10\x01W\x01\x8e\x01\xb1\x01\xd4\x01\xf7\x01\x1a\x02-\x020\x023\x026\x029\x02<\x02?\x02B\x02E\x02H\x02K\x02N\x02Q\x02T\x02W\x02Z\x02]\x02\x82\x02\x8f\x02\x9a\x02\xa7\x02\xc0\x02\xdd\x02\xea\x02\xf7\x02\n\x03Q\x03\x88\x03\xab\x03\xce\x03\xf1\x03\x14\x04'\x04*\x04-\x040\x043\x046\x049\x04<\x04?\x04B\x04E\x04H\x04K\x04N\x04Q\x04T\x04" _mvfont = memoryview(_font) def _chr_addr(ordch): offset = 2 * (ordch - 32) return int.from_bytes(_index[offset:offset + 2], 'little') def get_ch(ordch): offset = _chr_addr(ordch if 32 <= ordch <= 127 else ord('?')) count = _font[offset] return _mvfont[offset:offset + (count + 2) * 2 - 1]
class Solution: def buddyStrings(self, A: str, B: str) -> bool: if len(A) != len(B): return False if A == B: seen = set() for char in A: if char in seen: return True seen.add(char) return False else: pairs = [] for a, b in zip(A, B): if a != b: pairs.append((a, b)) if len(pairs) > 2: return False return len(pairs) == 2 and pairs[0] == pairs[1][::-1]
class Solution: def buddy_strings(self, A: str, B: str) -> bool: if len(A) != len(B): return False if A == B: seen = set() for char in A: if char in seen: return True seen.add(char) return False else: pairs = [] for (a, b) in zip(A, B): if a != b: pairs.append((a, b)) if len(pairs) > 2: return False return len(pairs) == 2 and pairs[0] == pairs[1][::-1]
# ------------------------------ # 560. Subarray Sum Equals K # # Description: # Given an array of integers and an integer k, you need to find the total number of # continuous subarrays whose sum equals to k. # # Example 1: # Input:nums = [1,1,1], k = 2 # Output: 2 # # Note: # The length of the array is in range [1, 20,000]. # The range of numbers in the array is [-1000, 1000] and the range of the integer k # is [-1e7, 1e7]. # # Version: 1.0 # 10/29/19 by Jianfa # ------------------------------ class Solution: def subarraySum(self, nums: List[int], k: int) -> int: preSum = 0 count = 0 sumDict = {0: 1} # if there is a subarray whose sum is k, can get sumDict[0] = 1 for n in nums: preSum += n if preSum - k in sumDict: # if there exists a sum of subarray nums[:i] that is preSum - k # then sum of subarray between current number and nums[i] is k count += sumDict[preSum - k] sumDict[preSum] = sumDict.get(preSum, 0) + 1 return count # Used for testing if __name__ == "__main__": test = Solution() # ------------------------------ # Summary: # Idea from: https://leetcode.com/problems/subarray-sum-equals-k/discuss/102106/Java-Solution-PreSum-%2B-HashMap # I thought about the accumulated sum, but I didn't think about using the map to store # previous accumulated sum, so that it helps to check if the difference between current # sum and a certain sum is k.
class Solution: def subarray_sum(self, nums: List[int], k: int) -> int: pre_sum = 0 count = 0 sum_dict = {0: 1} for n in nums: pre_sum += n if preSum - k in sumDict: count += sumDict[preSum - k] sumDict[preSum] = sumDict.get(preSum, 0) + 1 return count if __name__ == '__main__': test = solution()
# testSIF = "123456789012" testSIF = open("input.txt", 'r').read() # testSIF = "0222112222120000" x_size = 25 y_size = 6 layer_count = len(testSIF) // (x_size * y_size) layers = [] index = 0 for z in range(layer_count): layer = [] for y in range(y_size): for x in range(x_size): layer += testSIF[index] index += 1 layers.append(layer) print(len(layers) * y_size * x_size) print(len(testSIF)) def decode_pixel(layers, index): color = "2" for l in layers: if color == "2": color = l[index] return color index = 0 for y in range(y_size): line = "" for x in range(x_size): line += ("0" if (decode_pixel(layers, index) == "1") else " ") + " " index += 1 print(line)
test_sif = open('input.txt', 'r').read() x_size = 25 y_size = 6 layer_count = len(testSIF) // (x_size * y_size) layers = [] index = 0 for z in range(layer_count): layer = [] for y in range(y_size): for x in range(x_size): layer += testSIF[index] index += 1 layers.append(layer) print(len(layers) * y_size * x_size) print(len(testSIF)) def decode_pixel(layers, index): color = '2' for l in layers: if color == '2': color = l[index] return color index = 0 for y in range(y_size): line = '' for x in range(x_size): line += ('0' if decode_pixel(layers, index) == '1' else ' ') + ' ' index += 1 print(line)
class Object: ## Lisp apply() to `that` object in context def apply(self, env, that): raise NotImplementedError(['apply', self, env, that])
class Object: def apply(self, env, that): raise not_implemented_error(['apply', self, env, that])
loop = 1 while (loop < 10): noun1 = input("Choose a noun: ") plur_noun = input("Choose a plural noun: ") noun2 = input("Choose a noun: ") place = input("Name a place: ") adjective = input("Choose an adjective (Describing word): ") noun3 = input("Choose a noun: ") print ("------------------------------------------") print ("Be kind to your ",noun1,"- footed", plur_noun) print ("For a duck may be somebody's", noun2,",") print ("Be kind to your",plur_noun,"in",place) print ("Where the weather is always",adjective,".") print () print ("You may think that is this the",noun3,",") print ("Well it is.") print ("------------------------------------------") loop = loop + 1
loop = 1 while loop < 10: noun1 = input('Choose a noun: ') plur_noun = input('Choose a plural noun: ') noun2 = input('Choose a noun: ') place = input('Name a place: ') adjective = input('Choose an adjective (Describing word): ') noun3 = input('Choose a noun: ') print('------------------------------------------') print('Be kind to your ', noun1, '- footed', plur_noun) print("For a duck may be somebody's", noun2, ',') print('Be kind to your', plur_noun, 'in', place) print('Where the weather is always', adjective, '.') print() print('You may think that is this the', noun3, ',') print('Well it is.') print('------------------------------------------') loop = loop + 1
def aumentar(n,p,formatar=False): v = n + (n * p / 100) if formatar: return moeda(v) else: return v def diminuir(n,p,formatar=False): v = n - (n * p / 100) if formatar: return moeda(v) else: return v def dobro(n,formatar=False): v = n*2 if formatar: return moeda(v) else: return v def metade(n,formatar=False): v = n/2 if formatar: return moeda(v) else: return v def moeda(n=0, moeda='R$'): return f'{moeda}{n:>2.2f}'.replace('.', ',')
def aumentar(n, p, formatar=False): v = n + n * p / 100 if formatar: return moeda(v) else: return v def diminuir(n, p, formatar=False): v = n - n * p / 100 if formatar: return moeda(v) else: return v def dobro(n, formatar=False): v = n * 2 if formatar: return moeda(v) else: return v def metade(n, formatar=False): v = n / 2 if formatar: return moeda(v) else: return v def moeda(n=0, moeda='R$'): return f'{moeda}{n:>2.2f}'.replace('.', ',')
numbers = [54, 23, 66, 12] sumEle = numbers[1] + numbers[2] print(sumEle)
numbers = [54, 23, 66, 12] sum_ele = numbers[1] + numbers[2] print(sumEle)
class Solution: def search(self, nums: List[int], target: int) -> int: #start pointers low = 0 high = len(nums) - 1 # iterate trought the array while low <= high: # define middle of array mid = low + (high - low) // 2 # if position == target return position if nums[mid] == target: return mid # if middle position lets say(5) in a array of 10 # if the number of the middle position 5 is bigger than target # high - 1 elif nums[mid] < target: low = mid + 1 # if the number of the middle position 5 is smaller than target # low + 1 else: high = mid - 1 return -1 #not found return -1
class Solution: def search(self, nums: List[int], target: int) -> int: low = 0 high = len(nums) - 1 while low <= high: mid = low + (high - low) // 2 if nums[mid] == target: return mid elif nums[mid] < target: low = mid + 1 else: high = mid - 1 return -1
#-*- coding: utf-8 -*- #!/usr/bin/env python ## dummy class to replace usbio class class I2C(object): def __init__(self,module,slave): pass def searchI2CDev(self,begin,end): pass def write_register(self, reg, data): pass # def I2C(self,module,slave,channel): # pass def autodetect(): pass def setup(): pass
class I2C(object): def __init__(self, module, slave): pass def search_i2_c_dev(self, begin, end): pass def write_register(self, reg, data): pass def autodetect(): pass def setup(): pass
# Variables representing the number of candies collected by alice, bob, and carol alice_candies = 121 bob_candies = 77 carol_candies = 109 # Your code goes here! Replace the right-hand side of this assignment with an expression # involving alice_candies, bob_candies, and carol_candies total = (alice_candies + bob_candies + carol_candies) print((total % 3))
alice_candies = 121 bob_candies = 77 carol_candies = 109 total = alice_candies + bob_candies + carol_candies print(total % 3)
class ProfileDoesNotExist(Exception): def __init__(self, message, info={}): self.message = message self.info = info class ScraperError(Exception): def __init__(self, message, info={}): self.message = message self.info = info
class Profiledoesnotexist(Exception): def __init__(self, message, info={}): self.message = message self.info = info class Scrapererror(Exception): def __init__(self, message, info={}): self.message = message self.info = info
field_size = 40 snakeTailX = [40,80,120] snakeTailY = [0,0,0 ] Xhead, Yhead, Xfood, Yfood = 120,0,-40,- 40 snakeDirection = 'R' foodkey = True snakeLeight = 2 deadKey = False score = 0 def setup(): global img smooth() size(1024,572) img = loadImage("gameover.jpg") size(1024,572) noStroke() frameRate(5) smooth(250) def draw(): global Xhead, Yhead, snakeDirection1, Xfood, Yfood, snakeLeight,snakeTailX,snakeTailY, deadKey, img println(snakeTailX) imageMode(CENTER) image( img, width/2, height/2) if deadKey == False: background(100) snakeDirection1() snakeGO() food() foodEat() snakeTail() for i in range(snakeLeight): if snakeTailX[i] == Xhead and snakeTailY[i] == Yhead: snakeDead() if Xhead + field_size/2 > width or Xhead < 0 or Yhead + field_size/2 > height or Yhead < 0: snakeDead() fill(0) textSize(25) text(score, width - 50,50) fill(250, 75, 50,) ellipse(Xhead, Yhead, field_size, field_size) def keyPressed(): global snakeDirection, foodkey, snakeLeight, deadKey, score, Xhead, Yhead,snakeTailX,snakeTailY if deadKey and keyCode == RIGHT: snakeDirection = 'R' foodkey = True snakeLeight = 2 deadKey = False score = 0 Xhead, Yhead = 120, 0 snakeTailX = [40,80,120] snakeTailY = [0,0,0 ] def snakeTail(): global foodkey if foodkey == False: for i in range(snakeLeight): snakeTailX[i] = snakeTailX[i+1] snakeTailY[i] = snakeTailY[i+1] snakeTailX[snakeLeight] = Xhead snakeTailY[snakeLeight] = Yhead fill(random(0,250),random(0,250),random(0,250)) for i in range(snakeLeight): ellipse(snakeTailX[i], snakeTailY[i],field_size,field_size) def foodEat(): global Xhead, Yhead, Xfood, Yfood, foodkey, snakeLeight, score if Xhead == Xfood and Yhead == Yfood: foodkey = True score += 1 snakeTailX.append(Xhead) snakeTailY.append(Yhead) snakeLeight += 1 def food(): global foodkey, Xfood, Yfood fill(255, 0, 0) ellipse(Xfood, Yfood, field_size, field_size) if foodkey: Xfood = int(random(0, width/field_size))*field_size Yfood = int(random(0, height/field_size))*field_size foodkey = False for i in range(snakeLeight): if snakeTailX[i] == Xfood and snakeTailY[i] == Yfood: foodkey = True food() def snakeGO(): global snakeDirection, Xhead, Yhead if snakeDirection == 'R': Xhead += field_size if snakeDirection == 'D': Yhead += field_size if snakeDirection == 'L': Xhead -= field_size if snakeDirection == 'U': Yhead -= field_size def snakeDirection1(): global snakeDirection if keyCode == RIGHT and snakeDirection != 'L': snakeDirection = 'R' if keyCode == LEFT and snakeDirection != 'R': snakeDirection = 'L' if keyCode == UP and snakeDirection != 'D': snakeDirection = 'U' if keyCode == DOWN and snakeDirection != 'U': snakeDirection = 'D' def snakeDead(): global deadKey deadKey = True
field_size = 40 snake_tail_x = [40, 80, 120] snake_tail_y = [0, 0, 0] (xhead, yhead, xfood, yfood) = (120, 0, -40, -40) snake_direction = 'R' foodkey = True snake_leight = 2 dead_key = False score = 0 def setup(): global img smooth() size(1024, 572) img = load_image('gameover.jpg') size(1024, 572) no_stroke() frame_rate(5) smooth(250) def draw(): global Xhead, Yhead, snakeDirection1, Xfood, Yfood, snakeLeight, snakeTailX, snakeTailY, deadKey, img println(snakeTailX) image_mode(CENTER) image(img, width / 2, height / 2) if deadKey == False: background(100) snake_direction1() snake_go() food() food_eat() snake_tail() for i in range(snakeLeight): if snakeTailX[i] == Xhead and snakeTailY[i] == Yhead: snake_dead() if Xhead + field_size / 2 > width or Xhead < 0 or Yhead + field_size / 2 > height or (Yhead < 0): snake_dead() fill(0) text_size(25) text(score, width - 50, 50) fill(250, 75, 50) ellipse(Xhead, Yhead, field_size, field_size) def key_pressed(): global snakeDirection, foodkey, snakeLeight, deadKey, score, Xhead, Yhead, snakeTailX, snakeTailY if deadKey and keyCode == RIGHT: snake_direction = 'R' foodkey = True snake_leight = 2 dead_key = False score = 0 (xhead, yhead) = (120, 0) snake_tail_x = [40, 80, 120] snake_tail_y = [0, 0, 0] def snake_tail(): global foodkey if foodkey == False: for i in range(snakeLeight): snakeTailX[i] = snakeTailX[i + 1] snakeTailY[i] = snakeTailY[i + 1] snakeTailX[snakeLeight] = Xhead snakeTailY[snakeLeight] = Yhead fill(random(0, 250), random(0, 250), random(0, 250)) for i in range(snakeLeight): ellipse(snakeTailX[i], snakeTailY[i], field_size, field_size) def food_eat(): global Xhead, Yhead, Xfood, Yfood, foodkey, snakeLeight, score if Xhead == Xfood and Yhead == Yfood: foodkey = True score += 1 snakeTailX.append(Xhead) snakeTailY.append(Yhead) snake_leight += 1 def food(): global foodkey, Xfood, Yfood fill(255, 0, 0) ellipse(Xfood, Yfood, field_size, field_size) if foodkey: xfood = int(random(0, width / field_size)) * field_size yfood = int(random(0, height / field_size)) * field_size foodkey = False for i in range(snakeLeight): if snakeTailX[i] == Xfood and snakeTailY[i] == Yfood: foodkey = True food() def snake_go(): global snakeDirection, Xhead, Yhead if snakeDirection == 'R': xhead += field_size if snakeDirection == 'D': yhead += field_size if snakeDirection == 'L': xhead -= field_size if snakeDirection == 'U': yhead -= field_size def snake_direction1(): global snakeDirection if keyCode == RIGHT and snakeDirection != 'L': snake_direction = 'R' if keyCode == LEFT and snakeDirection != 'R': snake_direction = 'L' if keyCode == UP and snakeDirection != 'D': snake_direction = 'U' if keyCode == DOWN and snakeDirection != 'U': snake_direction = 'D' def snake_dead(): global deadKey dead_key = True
class AncapBotError(Exception): pass class InsufficientFundsError(AncapBotError): pass class NonexistentUserError(AncapBotError): pass
class Ancapboterror(Exception): pass class Insufficientfundserror(AncapBotError): pass class Nonexistentusererror(AncapBotError): pass
#Kunal Gautam #Codewars : @Kunalpod #Problem name: Build Tower #Problem level: 6 kyu def tower_builder(n_floors): return [' '*(n_floors-x)+'*'*(2*x-1)+' '*(n_floors-x) for x in range(1,n_floors+1)]
def tower_builder(n_floors): return [' ' * (n_floors - x) + '*' * (2 * x - 1) + ' ' * (n_floors - x) for x in range(1, n_floors + 1)]
class Solution: def hitBricks(self, grid: List[List[int]], hits: List[List[int]]) -> List[int]: def dfs(y, x): if y < 0 or y > m-1 or x < 0 or x > n-1 or grid[y][x]!=1: return 0 grid[y][x] =2 ret = 1 return ret + sum(dfs(y+shift_y, x+shift_x) for shift_y, shift_x in [[1, 0], [0, 1], [-1, 0], [0, -1]]) def is_connected(y, x): return y==0 or (0<=y<m and 0<=x<n and any([grid[y+shift_y][x+shift_x]== 2 for shift_y, shift_x in [[1, 0], [0, 1], [-1, 0], [0, -1]] if 0<=y+shift_y<m and 0<=x+shift_x<n])) if not grid: return [] m, n = len(grid), len(grid[0]) for (y, x) in hits: grid[y][x] -= 1 for i in range(n): dfs(0, i) res = [0] * len(hits) for idx, (y, x) in enumerate(hits[::-1]): grid[y][x] += 1 current_cnt = 0 if grid[y][x] and is_connected(y, x): current_cnt = dfs(y, x)-1 res[len(hits)-idx-1] = current_cnt return res
class Solution: def hit_bricks(self, grid: List[List[int]], hits: List[List[int]]) -> List[int]: def dfs(y, x): if y < 0 or y > m - 1 or x < 0 or (x > n - 1) or (grid[y][x] != 1): return 0 grid[y][x] = 2 ret = 1 return ret + sum((dfs(y + shift_y, x + shift_x) for (shift_y, shift_x) in [[1, 0], [0, 1], [-1, 0], [0, -1]])) def is_connected(y, x): return y == 0 or (0 <= y < m and 0 <= x < n and any([grid[y + shift_y][x + shift_x] == 2 for (shift_y, shift_x) in [[1, 0], [0, 1], [-1, 0], [0, -1]] if 0 <= y + shift_y < m and 0 <= x + shift_x < n])) if not grid: return [] (m, n) = (len(grid), len(grid[0])) for (y, x) in hits: grid[y][x] -= 1 for i in range(n): dfs(0, i) res = [0] * len(hits) for (idx, (y, x)) in enumerate(hits[::-1]): grid[y][x] += 1 current_cnt = 0 if grid[y][x] and is_connected(y, x): current_cnt = dfs(y, x) - 1 res[len(hits) - idx - 1] = current_cnt return res
class Handler: def __init__(self): self.trace = [] def handle(self, data): self.trace.append(f'HANDLE {data}') return data
class Handler: def __init__(self): self.trace = [] def handle(self, data): self.trace.append(f'HANDLE {data}') return data
description = 'Verify that the user cannot log in if username value is missing' pages = ['login'] def setup(data): pass def test(data): go_to('http://localhost:8000/') send_keys(login.password_input, 'admin') click(login.login_button) capture('Verify the correct error message is shown') verify_text_in_element(login.error_list, 'Username is required') def teardown(data): close()
description = 'Verify that the user cannot log in if username value is missing' pages = ['login'] def setup(data): pass def test(data): go_to('http://localhost:8000/') send_keys(login.password_input, 'admin') click(login.login_button) capture('Verify the correct error message is shown') verify_text_in_element(login.error_list, 'Username is required') def teardown(data): close()
__description__ = 'lamuda common useful tools' __license__ = 'MIT' __uri__ = 'https://github.com/hanadumal/lamud' __version__ = '21.6.28' __author__ = 'hanadumal' __email__ = '[email protected]'
__description__ = 'lamuda common useful tools' __license__ = 'MIT' __uri__ = 'https://github.com/hanadumal/lamud' __version__ = '21.6.28' __author__ = 'hanadumal' __email__ = '[email protected]'
{ "includes": [ "common.gypi", ], "targets": [ { "target_name": "colony", "product_name": "colony", "type": "executable", 'cflags': [ '-Wall', '-Wextra', '-Werror' ], "sources": [ '<(runtime_path)/colony/cli.c', ], 'xcode_settings': { 'OTHER_LDFLAGS': [ '-pagezero_size', '10000', '-image_base', '100000000' ], }, "include_dirs": [ '<(runtime_path)/', '<(runtime_path)/colony/', "<(colony_lua_path)/src", ], "dependencies": [ 'libcolony.gyp:libcolony', 'libtm.gyp:libtm', ], } ] }
{'includes': ['common.gypi'], 'targets': [{'target_name': 'colony', 'product_name': 'colony', 'type': 'executable', 'cflags': ['-Wall', '-Wextra', '-Werror'], 'sources': ['<(runtime_path)/colony/cli.c'], 'xcode_settings': {'OTHER_LDFLAGS': ['-pagezero_size', '10000', '-image_base', '100000000']}, 'include_dirs': ['<(runtime_path)/', '<(runtime_path)/colony/', '<(colony_lua_path)/src'], 'dependencies': ['libcolony.gyp:libcolony', 'libtm.gyp:libtm']}]}
def int_to_bytes(n, num_bytes): return n.to_bytes(num_bytes, 'big') def int_from_bytes(bites): return int.from_bytes(bites, 'big') class fountain_header: length = 6 def __init__(self, encode_id, total_size=None, chunk_id=None): if total_size is None: self.encode_id, self.total_size, self.chunk_id = self.from_encoded(encode_id) else: self.encode_id = encode_id self.total_size = total_size self.chunk_id = chunk_id def __bytes__(self): eid = self.encode_id + ((self.total_size & 0x1000000) >> 17) sz = self.total_size & 0xFFFFFF return int_to_bytes(eid, 1) + int_to_bytes(sz, 3) + int_to_bytes(self.chunk_id, 2) @classmethod def from_encoded(cls, encoded_bytes): encode_id = int_from_bytes(encoded_bytes[0:1]) total_size = int_from_bytes(encoded_bytes[1:4]) chunk_id = int_from_bytes(encoded_bytes[4:6]) total_size = total_size | ((encode_id & 0x80) << 17) encode_id = encode_id & 0x7F return encode_id, total_size, chunk_id
def int_to_bytes(n, num_bytes): return n.to_bytes(num_bytes, 'big') def int_from_bytes(bites): return int.from_bytes(bites, 'big') class Fountain_Header: length = 6 def __init__(self, encode_id, total_size=None, chunk_id=None): if total_size is None: (self.encode_id, self.total_size, self.chunk_id) = self.from_encoded(encode_id) else: self.encode_id = encode_id self.total_size = total_size self.chunk_id = chunk_id def __bytes__(self): eid = self.encode_id + ((self.total_size & 16777216) >> 17) sz = self.total_size & 16777215 return int_to_bytes(eid, 1) + int_to_bytes(sz, 3) + int_to_bytes(self.chunk_id, 2) @classmethod def from_encoded(cls, encoded_bytes): encode_id = int_from_bytes(encoded_bytes[0:1]) total_size = int_from_bytes(encoded_bytes[1:4]) chunk_id = int_from_bytes(encoded_bytes[4:6]) total_size = total_size | (encode_id & 128) << 17 encode_id = encode_id & 127 return (encode_id, total_size, chunk_id)
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") def _maybe(repo_rule, name, **kwargs): if name not in native.existing_rules(): repo_rule(name = name, **kwargs) def load_bark(): _maybe( native.local_repository, name = "bark_project", path="/home/chenyang/bark", ) #_maybe( #git_repository, #name = "bark_project", #branch= "master", #remote = "https://github.com/ChenyangTang/bark", #)
load('@bazel_tools//tools/build_defs/repo:git.bzl', 'git_repository') def _maybe(repo_rule, name, **kwargs): if name not in native.existing_rules(): repo_rule(name=name, **kwargs) def load_bark(): _maybe(native.local_repository, name='bark_project', path='/home/chenyang/bark')
#then look for the enumerated Intel Movidius NCS Device();quite program if none found. devices = mvnc.EnumerateDevice(); if len(devices) == 0: print("No any Devices found"); quit; #Now get a handle to the first enumerated device and open it. device = mvnc.Device(devices[0]); device.OpenDevice();
devices = mvnc.EnumerateDevice() if len(devices) == 0: print('No any Devices found') quit device = mvnc.Device(devices[0]) device.OpenDevice()
def mirror(text): words = text.split(" ") nwords = [] for w in words: nw = w[::-1] nwords.append(nw) return " ".join(nwords) print(mirror("s'tI suoregnad ot eb thgir nehw eht tnemnrevog si .gnorw"))
def mirror(text): words = text.split(' ') nwords = [] for w in words: nw = w[::-1] nwords.append(nw) return ' '.join(nwords) print(mirror("s'tI suoregnad ot eb thgir nehw eht tnemnrevog si .gnorw"))
UNK_TOKEN = '<unk>' PAD_TOKEN = '<pad>' BOS_TOKEN = '<s>' EOS_TOKEN = '<\s>' PAD, UNK, BOS, EOS = [0, 1, 2, 3] LANGUAGE_TOKENS = {lang: '<%s>' % lang for lang in sorted(['en', 'de', 'fr', 'he'])}
unk_token = '<unk>' pad_token = '<pad>' bos_token = '<s>' eos_token = '<\\s>' (pad, unk, bos, eos) = [0, 1, 2, 3] language_tokens = {lang: '<%s>' % lang for lang in sorted(['en', 'de', 'fr', 'he'])}
class Argument(object): def __init__(self, name=None, names=(), kind=bool, default=None): if name and names: msg = "Cannot give both 'name' and 'names' arguments! Pick one." raise TypeError(msg) if not (name or names): raise TypeError("An Argument must have at least one name.") self.names = names if names else (name,) self.kind = kind self.raw_value = self._value = None self.default = default def __str__(self): return "Arg: %r (%s)" % (self.names, self.kind) @property def takes_value(self): return self.kind is not bool @property def value(self): return self._value if self._value is not None else self.default @value.setter def value(self, arg): self.raw_value = arg self._value = self.kind(arg)
class Argument(object): def __init__(self, name=None, names=(), kind=bool, default=None): if name and names: msg = "Cannot give both 'name' and 'names' arguments! Pick one." raise type_error(msg) if not (name or names): raise type_error('An Argument must have at least one name.') self.names = names if names else (name,) self.kind = kind self.raw_value = self._value = None self.default = default def __str__(self): return 'Arg: %r (%s)' % (self.names, self.kind) @property def takes_value(self): return self.kind is not bool @property def value(self): return self._value if self._value is not None else self.default @value.setter def value(self, arg): self.raw_value = arg self._value = self.kind(arg)
# The Pipelines section. Pipelines group related components together by piping the output # of one component into the input of another. This is a good place to write your # package / unit tests as well as initialize your flags. Package tests check that the input # received by a component is of the right specification and unit tests check that expected # inputs into a component produce the expected output. flags.set('pf_settings', [100, "PF"]) flags.set('inv_pf_settings', [100, "InvPF"]) flags.set('rr_fifo_settings', [100, "RR_FIFO"]) flags.set('rr_random_settings', [100, "RR_random"]) flags.set('hybrid_inv_pf_fifo_settings', [100, "Hybrid_InvPF_FIFO"]) flags.set('broadcast_settings', [1000, 5]) flags.set('run_interval', [1800]) CreateProportionalFairNetwork = Pipeline([ ("create_network", "fetch_flag_inline('pf_settings')"), ]) CreateInverseProportionalFairNetwork = Pipeline([ ("create_network", "fetch_flag_inline('inv_pf_settings')"), ]) CreateRoundRobinFIFONetwork = Pipeline([ ("create_network", "fetch_flag_inline('rr_fifo_settings')"), ]) CreateRoundRobinRandomNetwork = Pipeline([ ("create_network", "fetch_flag_inline('rr_random_settings')"), ]) CreateInvPFCrossFIFONetwork = Pipeline([ ("create_network", "fetch_flag_inline('hybrid_inv_pf_fifo_settings')"), ]) GenerateNetworkTraffic = Pipeline([ ("broadcast", "fetch_flag_inline('broadcast_settings')"), ]) RunNetworkSimulation = Pipeline([ ("network_simulator", "fetch_flag_inline('run_interval')"), ]) Terminate = Pipeline([ ("Pass", []) ])
flags.set('pf_settings', [100, 'PF']) flags.set('inv_pf_settings', [100, 'InvPF']) flags.set('rr_fifo_settings', [100, 'RR_FIFO']) flags.set('rr_random_settings', [100, 'RR_random']) flags.set('hybrid_inv_pf_fifo_settings', [100, 'Hybrid_InvPF_FIFO']) flags.set('broadcast_settings', [1000, 5]) flags.set('run_interval', [1800]) create_proportional_fair_network = pipeline([('create_network', "fetch_flag_inline('pf_settings')")]) create_inverse_proportional_fair_network = pipeline([('create_network', "fetch_flag_inline('inv_pf_settings')")]) create_round_robin_fifo_network = pipeline([('create_network', "fetch_flag_inline('rr_fifo_settings')")]) create_round_robin_random_network = pipeline([('create_network', "fetch_flag_inline('rr_random_settings')")]) create_inv_pf_cross_fifo_network = pipeline([('create_network', "fetch_flag_inline('hybrid_inv_pf_fifo_settings')")]) generate_network_traffic = pipeline([('broadcast', "fetch_flag_inline('broadcast_settings')")]) run_network_simulation = pipeline([('network_simulator', "fetch_flag_inline('run_interval')")]) terminate = pipeline([('Pass', [])])
pjesma = '''\ Programiranje je zabava Kada je posao gotov ako zelis da ti posao bude razbirbriga korisit Python! ''' f = open("pjesma.txt", "w") #otvara fajl sa w-pisanje f.write(pjesma) #upisuje tekst u fajl f.close() #zatvara fajl f = open("pjesma.txt") #ako nismo naveli podazumjevno je r-citanje fajla while True: linija = f.readline() if len(linija) == 0: #duzina od 0 znaci da smo dostigli EOF- kraj fajla break print(linija, end = " ") f.close() #zavra fajl
pjesma = 'Programiranje je zabava\nKada je posao gotov\nako zelis da ti posao bude razbirbriga\nkorisit Python!\n' f = open('pjesma.txt', 'w') f.write(pjesma) f.close() f = open('pjesma.txt') while True: linija = f.readline() if len(linija) == 0: break print(linija, end=' ') f.close()
# from __future__ import division class WarheadTypeEnum(object): UNDEFINED = 0 CONE_WARHEAD = 1 ARC_WARHEAD = 2 CARMEN_WARHEAD = 3 class SternTypeEnum(object): UNDEFINED = 0 CONE_STERN = 1 ARC_STERN = 2 class BaseMissile(object): def __init__(self): self.para_dict = {'type_warhead': WarheadTypeEnum.UNDEFINED, # missile body 'length_warhead': float(0), 'diameter_warhead': float(0), 'diameter_column': float(0), 'length_column': float(0), 'type_stern': SternTypeEnum.UNDEFINED, 'length_stern': float(0), 'diameter_tail': float(0), 'diameter_nozzle': float(0), 'num_group_wings': 0, # missile wing 'pos_wings': float(0), 'num_wings_per_group': float(0), 'layout_angle_wings': float(0), 'root_chord': float(0), 'tip_chord': float(0), 'distance_root_chord': float(0), 'distance_tip_chord': float(0), 'thickness_root_chord': float(0), 'thickness_tip_chord': float(0), 'angle_front_edge': float(0), 'angle_rear_edge': float(0), 'height_flight': float(0), # condition of flight 'mach_flight': float(0), 'angle_flight': float(0), 'barycenter_ref': float(0), # reference 'length_ref': float(0), 'area_ref': float(0)} # fsw if __name__ == "__main__": pass
class Warheadtypeenum(object): undefined = 0 cone_warhead = 1 arc_warhead = 2 carmen_warhead = 3 class Sterntypeenum(object): undefined = 0 cone_stern = 1 arc_stern = 2 class Basemissile(object): def __init__(self): self.para_dict = {'type_warhead': WarheadTypeEnum.UNDEFINED, 'length_warhead': float(0), 'diameter_warhead': float(0), 'diameter_column': float(0), 'length_column': float(0), 'type_stern': SternTypeEnum.UNDEFINED, 'length_stern': float(0), 'diameter_tail': float(0), 'diameter_nozzle': float(0), 'num_group_wings': 0, 'pos_wings': float(0), 'num_wings_per_group': float(0), 'layout_angle_wings': float(0), 'root_chord': float(0), 'tip_chord': float(0), 'distance_root_chord': float(0), 'distance_tip_chord': float(0), 'thickness_root_chord': float(0), 'thickness_tip_chord': float(0), 'angle_front_edge': float(0), 'angle_rear_edge': float(0), 'height_flight': float(0), 'mach_flight': float(0), 'angle_flight': float(0), 'barycenter_ref': float(0), 'length_ref': float(0), 'area_ref': float(0)} if __name__ == '__main__': pass
CREATED_AT_KEY = "created_at" TITLE_KEY = "title" DESCRIPTION_KEY = "description" PUBLISHED_AT = "published_at" LIMIT_KEY = "limit" OFFSET_KEY = "offset" # Data query limiters DEFAULT_OFFSET = 0 DEFAULT_PER_PAGE_LIMIT = 20 INDEX_KEY = "video_index" VIDEO_ID_KEY = "video_id" VIDEOS_SEARCH_QUERY_KEY = "video_search_query"
created_at_key = 'created_at' title_key = 'title' description_key = 'description' published_at = 'published_at' limit_key = 'limit' offset_key = 'offset' default_offset = 0 default_per_page_limit = 20 index_key = 'video_index' video_id_key = 'video_id' videos_search_query_key = 'video_search_query'
# Longest Name. # Create a program that takes an unknown amount of names and outputs the longest name. You will know that the inputs are done when the user has inputted a string of X user_input = '' # Empty string longest_name = '' length = 0 while user_input != 'X': user_input = input('Enter a name: ') if user_input != 'X': current_length = len(user_input) # determining how long the name is if current_length > length: length = current_length longest_name = user_input # end of while print(longest_name, 'was the longest name with', length, 'characters.')
user_input = '' longest_name = '' length = 0 while user_input != 'X': user_input = input('Enter a name: ') if user_input != 'X': current_length = len(user_input) if current_length > length: length = current_length longest_name = user_input print(longest_name, 'was the longest name with', length, 'characters.')
# Container for information about the project class Project(object): def __init__(self, origin='', commit='', owner='', name=''): self.origin = origin self.commit = commit self.owner = owner self.name = name def _asdict(self): return self.__dict__ def __dir__(self): return ['origin', 'commit', 'owner', 'name'] # Container for information about the project class Tree(object): def __init__(self, name='', children=''): self.name = name self.children = children def _asdict(self): return self.__dict__ def __dir__(self): return ['name', 'children'] # Container for information about the project's nodes class Node(object): def __init__(self, name='', group='', id='', url='', visibility=1.0, complexity=1.0, quality=1.0, size=1.0, weight=1.0): self.id = id self.name = name self.group = group self.url = url self.visibility = visibility # measures self.complexity = complexity self.quality = quality self.size = size self.weight = weight # on-screen display - circle self.cx = 0.0 self.cy = 0.0 self.r = 0.0 self.style = "" self.index = 0 self.x = 0.0 self.y = 0.0 self.px = 0.0 self.py = 0.0 self.fixed = False def _asdict(self): return self.__dict__ def __dir__(self): return ['id', 'name', 'group', 'url', 'visibility', 'complexity', 'quality', 'size', 'weight'] # Container for information about the project's links (between nodes) class Link(object): def __init__(self, source='', target='', value='', visibility=1.0, complexity=1.0, quality=1.0): self.source = source self.target = target self.value = value self.visibility = visibility self.complexity = complexity self.quality = quality # on-screen display - line self.x1 = 0.0 self.y1 = 0.0 self.x2 = 0.0 self.y2 = 0.0 self.style = "" def _asdict(self): return self.__dict__ def __dir__(self): return ['source', 'target', 'value', 'visibility', 'complexity', 'quality'] # Container for information about graph of nodes and links class Graph(object): # Note: there were problems with nodes=[], links=[] # for some reason two consecutively created graphs # were allocated the same collections of nodes and links def __init__(self, nodes, links): self.nodes = nodes self.links = links def _asdict(self): return self.__dict__ # Container for information about project, tree (of files), graph (of many things) class Magnify(object): # Note: there were problems with nodes=[], links=[] # for some reason two consecutively created graphs # were allocated the same collections of nodes and links def __init__(self): self.project = None self.tree = None self.graph = None def _asdict(self): return self.__dict__ # Container for information about the project and its layers (subgraphs) class Archive(object): def __init__(self, project, commits, files, functions): self.project = project self.commits = commits self.files = files self.functions = functions def _asdict(self): return self.__dict__ # For json printing def default(self): return self._asdict()
class Project(object): def __init__(self, origin='', commit='', owner='', name=''): self.origin = origin self.commit = commit self.owner = owner self.name = name def _asdict(self): return self.__dict__ def __dir__(self): return ['origin', 'commit', 'owner', 'name'] class Tree(object): def __init__(self, name='', children=''): self.name = name self.children = children def _asdict(self): return self.__dict__ def __dir__(self): return ['name', 'children'] class Node(object): def __init__(self, name='', group='', id='', url='', visibility=1.0, complexity=1.0, quality=1.0, size=1.0, weight=1.0): self.id = id self.name = name self.group = group self.url = url self.visibility = visibility self.complexity = complexity self.quality = quality self.size = size self.weight = weight self.cx = 0.0 self.cy = 0.0 self.r = 0.0 self.style = '' self.index = 0 self.x = 0.0 self.y = 0.0 self.px = 0.0 self.py = 0.0 self.fixed = False def _asdict(self): return self.__dict__ def __dir__(self): return ['id', 'name', 'group', 'url', 'visibility', 'complexity', 'quality', 'size', 'weight'] class Link(object): def __init__(self, source='', target='', value='', visibility=1.0, complexity=1.0, quality=1.0): self.source = source self.target = target self.value = value self.visibility = visibility self.complexity = complexity self.quality = quality self.x1 = 0.0 self.y1 = 0.0 self.x2 = 0.0 self.y2 = 0.0 self.style = '' def _asdict(self): return self.__dict__ def __dir__(self): return ['source', 'target', 'value', 'visibility', 'complexity', 'quality'] class Graph(object): def __init__(self, nodes, links): self.nodes = nodes self.links = links def _asdict(self): return self.__dict__ class Magnify(object): def __init__(self): self.project = None self.tree = None self.graph = None def _asdict(self): return self.__dict__ class Archive(object): def __init__(self, project, commits, files, functions): self.project = project self.commits = commits self.files = files self.functions = functions def _asdict(self): return self.__dict__ def default(self): return self._asdict()
with open("my_files_ex1.txt") as f: file = f.read() print(file)
with open('my_files_ex1.txt') as f: file = f.read() print(file)
class NewsModel: title = None url = None def __init__(self, __title__, __url__): self.title = __title__ self.url = __url__ def __str__(self): return '''["%s", "%s"]''' % (self.title, self.url)
class Newsmodel: title = None url = None def __init__(self, __title__, __url__): self.title = __title__ self.url = __url__ def __str__(self): return '["%s", "%s"]' % (self.title, self.url)
def main(): space = " " item = "o" buffer = "" for x in range(2): spacing = "" for y in range(50): spacing += space buffer = spacing + item print(buffer) for z in range(50): spacing -= space buffer = item + spacing print(buffer) main()
def main(): space = ' ' item = 'o' buffer = '' for x in range(2): spacing = '' for y in range(50): spacing += space buffer = spacing + item print(buffer) for z in range(50): spacing -= space buffer = item + spacing print(buffer) main()
def x(city, name): city = open(city,'r').read() city = city.replace('\n', ';') city = city.split(';') success = [] for i in city: if i: success.append(i.lstrip().rstrip()) success = {k: v for k, v in zip(success[::2], success[1::2])} file = open('{0}.txt'.format(name), 'w') print(success,file=file) file.close() res = open('{0}.txt'.format(name), 'r') finish = res.read() res.close() return print(finish) one = input('Data') two = input('name city') x(one, two)
def x(city, name): city = open(city, 'r').read() city = city.replace('\n', ';') city = city.split(';') success = [] for i in city: if i: success.append(i.lstrip().rstrip()) success = {k: v for (k, v) in zip(success[::2], success[1::2])} file = open('{0}.txt'.format(name), 'w') print(success, file=file) file.close() res = open('{0}.txt'.format(name), 'r') finish = res.read() res.close() return print(finish) one = input('Data') two = input('name city') x(one, two)
'''Libraries used by the main program All the libraries that will be used by the main program will be placed here. Contains Library with functions to create latex report. '''
"""Libraries used by the main program All the libraries that will be used by the main program will be placed here. Contains Library with functions to create latex report. """
_base_ = [ '../_base_/models/retinanet_r50_fpn.py', '../_base_/datasets/coco_detection.py', '../_base_/default_runtime.py' ] cudnn_benchmark = True norm_cfg = dict(type='BN', requires_grad=True) model = dict( pretrained='torchvision://resnet50', backbone=dict( type='ResNet', depth=50, num_stages=4, out_indices=(0, 1, 2, 3), with_cp=True, frozen_stages=1, norm_cfg=norm_cfg, norm_eval=False, style='pytorch'), neck=dict( relu_before_extra_convs=True, no_norm_on_lateral=True, norm_cfg=norm_cfg), bbox_head=dict(type='RetinaSepBNHead', num_ins=5, norm_cfg=norm_cfg)) # training and testing settings train_cfg = dict(assigner=dict(neg_iou_thr=0.5)) # dataset settings img_norm_cfg = dict( mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True) train_pipeline = [ dict( type='Mosaic', sub_pipeline=[ dict(type='LoadImageFromFile', to_float32=True), dict(type='LoadAnnotations', with_bbox=True), dict( type='PhotoMetricDistortion', brightness_delta=32, contrast_range=(0.5, 1.5), saturation_range=(0.5, 1.5), hue_delta=18), dict(type='RandomFlip', flip_ratio=0.5), dict( type='Expand', mean=img_norm_cfg['mean'], to_rgb=img_norm_cfg['to_rgb'], ratio_range=(1.4, 1.4), prob=1.0), dict( type='RandomCrop', crop_size=None, min_crop_size=0.4286, # 0.6 / 1.4 allow_negative_crop=True), dict(type='Resize', img_scale=(640, 640), keep_ratio=False) ], size=(640, 640), min_offset=0.2), dict(type='Normalize', **img_norm_cfg), dict(type='DefaultFormatBundle'), dict(type='Collect', keys=['img', 'gt_bboxes', 'gt_labels']), ] test_pipeline = [ dict(type='LoadImageFromFile'), dict( type='MultiScaleFlipAug', img_scale=(640, 640), flip=False, transforms=[ dict(type='Resize', keep_ratio=True), dict(type='RandomFlip'), dict(type='Normalize', **img_norm_cfg), dict(type='Pad', size_divisor=64), dict(type='ImageToTensor', keys=['img']), dict(type='Collect', keys=['img']), ]) ] data = dict( samples_per_gpu=8, workers_per_gpu=4, train=dict(pipeline=train_pipeline, num_samples_per_iter=4), val=dict(pipeline=test_pipeline), test=dict(pipeline=test_pipeline)) # optimizer optimizer = dict( type='SGD', lr=0.08, momentum=0.9, weight_decay=0.0001, paramwise_cfg=dict(norm_decay_mult=0, bypass_duplicate=True)) optimizer_config = dict(grad_clip=None) # learning policy lr_config = dict( policy='step', warmup='linear', warmup_iters=1000, warmup_ratio=0.1, step=[30, 40]) # runtime settings total_epochs = 50
_base_ = ['../_base_/models/retinanet_r50_fpn.py', '../_base_/datasets/coco_detection.py', '../_base_/default_runtime.py'] cudnn_benchmark = True norm_cfg = dict(type='BN', requires_grad=True) model = dict(pretrained='torchvision://resnet50', backbone=dict(type='ResNet', depth=50, num_stages=4, out_indices=(0, 1, 2, 3), with_cp=True, frozen_stages=1, norm_cfg=norm_cfg, norm_eval=False, style='pytorch'), neck=dict(relu_before_extra_convs=True, no_norm_on_lateral=True, norm_cfg=norm_cfg), bbox_head=dict(type='RetinaSepBNHead', num_ins=5, norm_cfg=norm_cfg)) train_cfg = dict(assigner=dict(neg_iou_thr=0.5)) img_norm_cfg = dict(mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True) train_pipeline = [dict(type='Mosaic', sub_pipeline=[dict(type='LoadImageFromFile', to_float32=True), dict(type='LoadAnnotations', with_bbox=True), dict(type='PhotoMetricDistortion', brightness_delta=32, contrast_range=(0.5, 1.5), saturation_range=(0.5, 1.5), hue_delta=18), dict(type='RandomFlip', flip_ratio=0.5), dict(type='Expand', mean=img_norm_cfg['mean'], to_rgb=img_norm_cfg['to_rgb'], ratio_range=(1.4, 1.4), prob=1.0), dict(type='RandomCrop', crop_size=None, min_crop_size=0.4286, allow_negative_crop=True), dict(type='Resize', img_scale=(640, 640), keep_ratio=False)], size=(640, 640), min_offset=0.2), dict(type='Normalize', **img_norm_cfg), dict(type='DefaultFormatBundle'), dict(type='Collect', keys=['img', 'gt_bboxes', 'gt_labels'])] test_pipeline = [dict(type='LoadImageFromFile'), dict(type='MultiScaleFlipAug', img_scale=(640, 640), flip=False, transforms=[dict(type='Resize', keep_ratio=True), dict(type='RandomFlip'), dict(type='Normalize', **img_norm_cfg), dict(type='Pad', size_divisor=64), dict(type='ImageToTensor', keys=['img']), dict(type='Collect', keys=['img'])])] data = dict(samples_per_gpu=8, workers_per_gpu=4, train=dict(pipeline=train_pipeline, num_samples_per_iter=4), val=dict(pipeline=test_pipeline), test=dict(pipeline=test_pipeline)) optimizer = dict(type='SGD', lr=0.08, momentum=0.9, weight_decay=0.0001, paramwise_cfg=dict(norm_decay_mult=0, bypass_duplicate=True)) optimizer_config = dict(grad_clip=None) lr_config = dict(policy='step', warmup='linear', warmup_iters=1000, warmup_ratio=0.1, step=[30, 40]) total_epochs = 50
# # PySNMP MIB module HH3C-SESSION-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HH3C-SESSION-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 19:16:47 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsUnion, ConstraintsIntersection, SingleValueConstraint, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint") hh3cCommon, = mibBuilder.importSymbols("HH3C-OID-MIB", "hh3cCommon") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") Unsigned32, ModuleIdentity, MibIdentifier, NotificationType, Integer32, IpAddress, TimeTicks, Counter64, Gauge32, iso, Bits, Counter32, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "ModuleIdentity", "MibIdentifier", "NotificationType", "Integer32", "IpAddress", "TimeTicks", "Counter64", "Gauge32", "iso", "Bits", "Counter32", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") hh3cSession = ModuleIdentity((1, 3, 6, 1, 4, 1, 25506, 2, 149)) hh3cSession.setRevisions(('2013-12-20 00:00',)) if mibBuilder.loadTexts: hh3cSession.setLastUpdated('201312200000Z') if mibBuilder.loadTexts: hh3cSession.setOrganization('Hangzhou H3C Technologies Co., Ltd.') hh3cSessionTables = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1)) hh3cSessionStatTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1), ) if mibBuilder.loadTexts: hh3cSessionStatTable.setStatus('current') hh3cSessionStatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1), ).setIndexNames((0, "HH3C-SESSION-MIB", "hh3cSessionStatChassis"), (0, "HH3C-SESSION-MIB", "hh3cSessionStatSlot"), (0, "HH3C-SESSION-MIB", "hh3cSessionStatCPUID")) if mibBuilder.loadTexts: hh3cSessionStatEntry.setStatus('current') hh3cSessionStatChassis = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))) if mibBuilder.loadTexts: hh3cSessionStatChassis.setStatus('current') hh3cSessionStatSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))) if mibBuilder.loadTexts: hh3cSessionStatSlot.setStatus('current') hh3cSessionStatCPUID = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))) if mibBuilder.loadTexts: hh3cSessionStatCPUID.setStatus('current') hh3cSessionStatCount = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cSessionStatCount.setStatus('current') hh3cSessionStatCreateRate = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cSessionStatCreateRate.setStatus('current') mibBuilder.exportSymbols("HH3C-SESSION-MIB", hh3cSessionStatEntry=hh3cSessionStatEntry, hh3cSessionTables=hh3cSessionTables, hh3cSessionStatCount=hh3cSessionStatCount, hh3cSessionStatSlot=hh3cSessionStatSlot, hh3cSessionStatCreateRate=hh3cSessionStatCreateRate, hh3cSession=hh3cSession, hh3cSessionStatTable=hh3cSessionStatTable, PYSNMP_MODULE_ID=hh3cSession, hh3cSessionStatChassis=hh3cSessionStatChassis, hh3cSessionStatCPUID=hh3cSessionStatCPUID)
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, constraints_intersection, single_value_constraint, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueRangeConstraint', 'ValueSizeConstraint') (hh3c_common,) = mibBuilder.importSymbols('HH3C-OID-MIB', 'hh3cCommon') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (unsigned32, module_identity, mib_identifier, notification_type, integer32, ip_address, time_ticks, counter64, gauge32, iso, bits, counter32, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'ModuleIdentity', 'MibIdentifier', 'NotificationType', 'Integer32', 'IpAddress', 'TimeTicks', 'Counter64', 'Gauge32', 'iso', 'Bits', 'Counter32', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') hh3c_session = module_identity((1, 3, 6, 1, 4, 1, 25506, 2, 149)) hh3cSession.setRevisions(('2013-12-20 00:00',)) if mibBuilder.loadTexts: hh3cSession.setLastUpdated('201312200000Z') if mibBuilder.loadTexts: hh3cSession.setOrganization('Hangzhou H3C Technologies Co., Ltd.') hh3c_session_tables = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1)) hh3c_session_stat_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1)) if mibBuilder.loadTexts: hh3cSessionStatTable.setStatus('current') hh3c_session_stat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1)).setIndexNames((0, 'HH3C-SESSION-MIB', 'hh3cSessionStatChassis'), (0, 'HH3C-SESSION-MIB', 'hh3cSessionStatSlot'), (0, 'HH3C-SESSION-MIB', 'hh3cSessionStatCPUID')) if mibBuilder.loadTexts: hh3cSessionStatEntry.setStatus('current') hh3c_session_stat_chassis = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65534))) if mibBuilder.loadTexts: hh3cSessionStatChassis.setStatus('current') hh3c_session_stat_slot = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65534))) if mibBuilder.loadTexts: hh3cSessionStatSlot.setStatus('current') hh3c_session_stat_cpuid = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 7))) if mibBuilder.loadTexts: hh3cSessionStatCPUID.setStatus('current') hh3c_session_stat_count = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cSessionStatCount.setStatus('current') hh3c_session_stat_create_rate = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cSessionStatCreateRate.setStatus('current') mibBuilder.exportSymbols('HH3C-SESSION-MIB', hh3cSessionStatEntry=hh3cSessionStatEntry, hh3cSessionTables=hh3cSessionTables, hh3cSessionStatCount=hh3cSessionStatCount, hh3cSessionStatSlot=hh3cSessionStatSlot, hh3cSessionStatCreateRate=hh3cSessionStatCreateRate, hh3cSession=hh3cSession, hh3cSessionStatTable=hh3cSessionStatTable, PYSNMP_MODULE_ID=hh3cSession, hh3cSessionStatChassis=hh3cSessionStatChassis, hh3cSessionStatCPUID=hh3cSessionStatCPUID)
file_path = 'D12/input.txt' #file_path = 'D12/test.txt' #file_path = 'D12/test2.txt' with open(file_path) as f: text = f.read().split('\n') def reset(text): data = [] for i in text: data.append(i.split('-')) distinctNodes = [] for i in data: if i[0] not in distinctNodes: distinctNodes.append(i[0]) if i[1] not in distinctNodes: distinctNodes.append(i[1]) nodeDictionary = {} for i in distinctNodes: nodeDictionary[i] = [] for pair in range(0,len(data)): nodeDictionary[data[pair][0]].append(data[pair][1]) nodeDictionary[data[pair][1]].append(data[pair][0]) visitedList = [[]] return nodeDictionary, data, visitedList, distinctNodes def Pt1ElectricBungalung(nodeDictionary, currentVertex, visited, visitedlc): visited.append(currentVertex) if currentVertex.upper() != currentVertex: visitedlc.append(currentVertex) for vertex in nodeDictionary[currentVertex]: if vertex not in visitedlc: Pt1ElectricBungalung(nodeDictionary, vertex, visited.copy(), visitedlc.copy()) visitedList.append(visited) def Pt2ElectricBoogaloo(nodeDictionary,positionArray,trialNode): if positionArray[-1]=="end": pt2ReturnArray.add(tuple(positionArray)) return pt2ReturnArray for dictItem in nodeDictionary[positionArray[-1]]: if dictItem.upper()!=dictItem: if trialNode== "" and dictItem!= "start": Pt2ElectricBoogaloo(nodeDictionary,positionArray+[dictItem],dictItem) if not dictItem in positionArray: Pt2ElectricBoogaloo(nodeDictionary,positionArray+[dictItem],"") elif trialNode==dictItem: if positionArray.count(dictItem)==1: Pt2ElectricBoogaloo(nodeDictionary,positionArray+[dictItem],dictItem) else: if dictItem not in positionArray: Pt2ElectricBoogaloo(nodeDictionary,positionArray+[dictItem],trialNode) else: Pt2ElectricBoogaloo(nodeDictionary,positionArray+[dictItem],trialNode) return pt2ReturnArray ################################### # Part 1 ################################### nodeDictionary,data,visitedList,distinctNodes = reset(text) Pt1ElectricBungalung(nodeDictionary, 'start', [], []) visitedList.remove([]) solutionList = [] for i in range(0,len(visitedList)): if visitedList[i][-1] == 'end': solutionList.append(visitedList[i]) print('Part 1: ', len(solutionList)) ################################### # Part 2 ################################### nodeDictionary,data,visitedList,distinctNodes = reset(text) pt2ReturnArray = set() resultArray = Pt2ElectricBoogaloo(nodeDictionary,["start"],"") print('Part 2: ', len(resultArray))
file_path = 'D12/input.txt' with open(file_path) as f: text = f.read().split('\n') def reset(text): data = [] for i in text: data.append(i.split('-')) distinct_nodes = [] for i in data: if i[0] not in distinctNodes: distinctNodes.append(i[0]) if i[1] not in distinctNodes: distinctNodes.append(i[1]) node_dictionary = {} for i in distinctNodes: nodeDictionary[i] = [] for pair in range(0, len(data)): nodeDictionary[data[pair][0]].append(data[pair][1]) nodeDictionary[data[pair][1]].append(data[pair][0]) visited_list = [[]] return (nodeDictionary, data, visitedList, distinctNodes) def pt1_electric_bungalung(nodeDictionary, currentVertex, visited, visitedlc): visited.append(currentVertex) if currentVertex.upper() != currentVertex: visitedlc.append(currentVertex) for vertex in nodeDictionary[currentVertex]: if vertex not in visitedlc: pt1_electric_bungalung(nodeDictionary, vertex, visited.copy(), visitedlc.copy()) visitedList.append(visited) def pt2_electric_boogaloo(nodeDictionary, positionArray, trialNode): if positionArray[-1] == 'end': pt2ReturnArray.add(tuple(positionArray)) return pt2ReturnArray for dict_item in nodeDictionary[positionArray[-1]]: if dictItem.upper() != dictItem: if trialNode == '' and dictItem != 'start': pt2_electric_boogaloo(nodeDictionary, positionArray + [dictItem], dictItem) if not dictItem in positionArray: pt2_electric_boogaloo(nodeDictionary, positionArray + [dictItem], '') elif trialNode == dictItem: if positionArray.count(dictItem) == 1: pt2_electric_boogaloo(nodeDictionary, positionArray + [dictItem], dictItem) elif dictItem not in positionArray: pt2_electric_boogaloo(nodeDictionary, positionArray + [dictItem], trialNode) else: pt2_electric_boogaloo(nodeDictionary, positionArray + [dictItem], trialNode) return pt2ReturnArray (node_dictionary, data, visited_list, distinct_nodes) = reset(text) pt1_electric_bungalung(nodeDictionary, 'start', [], []) visitedList.remove([]) solution_list = [] for i in range(0, len(visitedList)): if visitedList[i][-1] == 'end': solutionList.append(visitedList[i]) print('Part 1: ', len(solutionList)) (node_dictionary, data, visited_list, distinct_nodes) = reset(text) pt2_return_array = set() result_array = pt2_electric_boogaloo(nodeDictionary, ['start'], '') print('Part 2: ', len(resultArray))
def generate_permutations(perm, n): if len(perm) == n: print(perm) return for k in range(n): if k not in perm: perm.append(k) generate_permutations(perm, n) perm.pop() generate_permutations(perm=[], n=4)
def generate_permutations(perm, n): if len(perm) == n: print(perm) return for k in range(n): if k not in perm: perm.append(k) generate_permutations(perm, n) perm.pop() generate_permutations(perm=[], n=4)
hip = 'hip' thorax = 'thorax' r_hip = 'r_hip' r_knee = 'r_knee' r_ankle = 'r_ankle' r_ball = 'r_ball' r_toes = 'r_toes' l_hip = 'l_hip' l_knee = 'l_knee' l_ankle = 'l_ankle' l_ball = 'l_ball' l_toes = 'l_toes' neck_base = 'neck' head_center = 'head-center' head_back = 'head-back' l_uknown = 'l_uknown' l_shoulder = 'l_shoulder' l_elbow = 'l_elbow' l_wrist = 'l_wrist' l_wrist_2 = 'l_wrist_2' l_thumb = 'l_thumb' l_little = 'l_little' l_little_2 = 'l_little_2' r_uknown = 'r_uknown' r_shoulder = 'r_shoulder' r_elbow = 'r_elbow' r_wrist = 'r_wrist' r_wrist_2 = 'r_wrist_2' r_thumb = 'r_thumb' r_little = 'r_little' r_little_2 = 'r_little_2' pelvis = 'pelvis' links = ( (r_hip, thorax), # (r_hip, pelvis), (r_knee, r_hip), (r_ankle, r_knee), (r_ball, r_ankle), (r_toes, r_ball), (l_hip, thorax), # (l_hip, pelvis), (l_knee, l_hip), (l_ankle, l_knee), (l_ball, l_ankle), (l_toes, l_ball), (neck_base, thorax), # (head_center, head_back), # (head_back, neck_base), # (head_back, head_center), # (head_center, neck_base), (head_back, neck_base), (head_center, head_back), (l_shoulder, neck_base), (l_elbow, l_shoulder), (l_wrist, l_elbow), (l_thumb, l_wrist), (l_little, l_wrist), (r_shoulder, neck_base), (r_elbow, r_shoulder), (r_wrist, r_elbow), (r_thumb, r_wrist), (r_little, r_wrist), # (pelvis, thorax), ) links_simple = ( (r_hip, thorax), # (r_hip, pelvis), (r_knee, r_hip), (r_ankle, r_knee), (r_ball, r_ankle), (r_toes, r_ball), (l_hip, thorax), # (l_hip, pelvis), (l_knee, l_hip), (l_ankle, l_knee), (l_ball, l_ankle), (l_toes, l_ball), (neck_base, thorax), # (head_center, head_back), # (head_back, neck_base), # (head_back, head_center), # (head_center, neck_base), (head_back, neck_base), (head_center, head_back), (l_shoulder, neck_base), (l_elbow, l_shoulder), (l_wrist, l_elbow), (r_shoulder, neck_base), (r_elbow, r_shoulder), (r_wrist, r_elbow), # (pelvis, thorax), ) links_simple2 = ( (r_hip, pelvis), (r_knee, r_hip), (r_ankle, r_knee), (r_toes, r_ankle), (l_hip, pelvis), (l_knee, l_hip), (l_ankle, l_knee), (l_toes, l_ankle), (neck_base, pelvis), (head_back, neck_base), (l_shoulder, neck_base), (l_elbow, l_shoulder), (l_wrist, l_elbow), (r_shoulder, neck_base), (r_elbow, r_shoulder), (r_wrist, r_elbow), ) joint_indices = { hip: 0, thorax: 12, r_hip: 1, r_knee: 2, r_ankle: 3, r_ball: 4, r_toes: 5, l_hip: 6, l_knee: 7, l_ankle: 8, l_ball: 9, l_toes: 10, neck_base: 13, head_center: 14, head_back: 15, l_uknown: 16, l_shoulder: 17, l_elbow: 18, l_wrist: 19, l_wrist_2: 20, l_thumb: 21, l_little: 22, l_little_2: 23, r_uknown: 24, r_shoulder: 25, r_elbow: 26, r_wrist: 27, r_wrist_2: 28, r_thumb: 29, r_little: 30, r_little_2: 31, pelvis: 11 } joints_eval_martinez = { 'Hip': 0, 'RHip': 1, 'RKnee': 2, 'RFoot': 3, 'LHip': 6, 'LKnee': 7, 'LFoot': 8, 'Spine': 12, 'Thorax': 13, 'Neck/Nose': 14, 'Head': 15, 'LShoulder': 17, 'LElbow': 18, 'LWrist': 19, 'RShoulder': 25, 'RElbow': 26, 'RWrist': 27 } official_eval = { 'Pelvis': (pelvis), 'RHip': (r_hip), 'RKnee': (r_knee), 'RAnkle': (r_ankle), 'LHip': (l_hip), 'LKnee': (l_knee), 'LAnkle': (l_ankle), 'Spine1': (thorax), 'Neck': (head_center), 'Head': (head_back), 'Site': (neck_base), 'LShoulder': (l_shoulder), 'LElbow': (l_elbow), 'LWrist': (l_wrist), 'RShoulder': (r_shoulder), 'RElbow': (r_elbow), 'RWrist': (r_wrist)} official_eval_indices = {k: joint_indices[v] for k, v in official_eval.items()} def get_link_indices(links): return [(joint_indices[x], joint_indices[y]) for x, y in links] simple_link_indices = get_link_indices(links_simple) simple2_link_indices = get_link_indices(links_simple2) link_indices = get_link_indices(links) def get_lr_correspondences(): paired = [] for limb in joint_indices.keys(): if limb[:2] == 'l_': paired.append(limb[2:]) correspond = [] for limb in paired: correspond.append((joint_indices['l_' + limb], joint_indices['r_' + limb])) return correspond
hip = 'hip' thorax = 'thorax' r_hip = 'r_hip' r_knee = 'r_knee' r_ankle = 'r_ankle' r_ball = 'r_ball' r_toes = 'r_toes' l_hip = 'l_hip' l_knee = 'l_knee' l_ankle = 'l_ankle' l_ball = 'l_ball' l_toes = 'l_toes' neck_base = 'neck' head_center = 'head-center' head_back = 'head-back' l_uknown = 'l_uknown' l_shoulder = 'l_shoulder' l_elbow = 'l_elbow' l_wrist = 'l_wrist' l_wrist_2 = 'l_wrist_2' l_thumb = 'l_thumb' l_little = 'l_little' l_little_2 = 'l_little_2' r_uknown = 'r_uknown' r_shoulder = 'r_shoulder' r_elbow = 'r_elbow' r_wrist = 'r_wrist' r_wrist_2 = 'r_wrist_2' r_thumb = 'r_thumb' r_little = 'r_little' r_little_2 = 'r_little_2' pelvis = 'pelvis' links = ((r_hip, thorax), (r_knee, r_hip), (r_ankle, r_knee), (r_ball, r_ankle), (r_toes, r_ball), (l_hip, thorax), (l_knee, l_hip), (l_ankle, l_knee), (l_ball, l_ankle), (l_toes, l_ball), (neck_base, thorax), (head_back, neck_base), (head_center, head_back), (l_shoulder, neck_base), (l_elbow, l_shoulder), (l_wrist, l_elbow), (l_thumb, l_wrist), (l_little, l_wrist), (r_shoulder, neck_base), (r_elbow, r_shoulder), (r_wrist, r_elbow), (r_thumb, r_wrist), (r_little, r_wrist)) links_simple = ((r_hip, thorax), (r_knee, r_hip), (r_ankle, r_knee), (r_ball, r_ankle), (r_toes, r_ball), (l_hip, thorax), (l_knee, l_hip), (l_ankle, l_knee), (l_ball, l_ankle), (l_toes, l_ball), (neck_base, thorax), (head_back, neck_base), (head_center, head_back), (l_shoulder, neck_base), (l_elbow, l_shoulder), (l_wrist, l_elbow), (r_shoulder, neck_base), (r_elbow, r_shoulder), (r_wrist, r_elbow)) links_simple2 = ((r_hip, pelvis), (r_knee, r_hip), (r_ankle, r_knee), (r_toes, r_ankle), (l_hip, pelvis), (l_knee, l_hip), (l_ankle, l_knee), (l_toes, l_ankle), (neck_base, pelvis), (head_back, neck_base), (l_shoulder, neck_base), (l_elbow, l_shoulder), (l_wrist, l_elbow), (r_shoulder, neck_base), (r_elbow, r_shoulder), (r_wrist, r_elbow)) joint_indices = {hip: 0, thorax: 12, r_hip: 1, r_knee: 2, r_ankle: 3, r_ball: 4, r_toes: 5, l_hip: 6, l_knee: 7, l_ankle: 8, l_ball: 9, l_toes: 10, neck_base: 13, head_center: 14, head_back: 15, l_uknown: 16, l_shoulder: 17, l_elbow: 18, l_wrist: 19, l_wrist_2: 20, l_thumb: 21, l_little: 22, l_little_2: 23, r_uknown: 24, r_shoulder: 25, r_elbow: 26, r_wrist: 27, r_wrist_2: 28, r_thumb: 29, r_little: 30, r_little_2: 31, pelvis: 11} joints_eval_martinez = {'Hip': 0, 'RHip': 1, 'RKnee': 2, 'RFoot': 3, 'LHip': 6, 'LKnee': 7, 'LFoot': 8, 'Spine': 12, 'Thorax': 13, 'Neck/Nose': 14, 'Head': 15, 'LShoulder': 17, 'LElbow': 18, 'LWrist': 19, 'RShoulder': 25, 'RElbow': 26, 'RWrist': 27} official_eval = {'Pelvis': pelvis, 'RHip': r_hip, 'RKnee': r_knee, 'RAnkle': r_ankle, 'LHip': l_hip, 'LKnee': l_knee, 'LAnkle': l_ankle, 'Spine1': thorax, 'Neck': head_center, 'Head': head_back, 'Site': neck_base, 'LShoulder': l_shoulder, 'LElbow': l_elbow, 'LWrist': l_wrist, 'RShoulder': r_shoulder, 'RElbow': r_elbow, 'RWrist': r_wrist} official_eval_indices = {k: joint_indices[v] for (k, v) in official_eval.items()} def get_link_indices(links): return [(joint_indices[x], joint_indices[y]) for (x, y) in links] simple_link_indices = get_link_indices(links_simple) simple2_link_indices = get_link_indices(links_simple2) link_indices = get_link_indices(links) def get_lr_correspondences(): paired = [] for limb in joint_indices.keys(): if limb[:2] == 'l_': paired.append(limb[2:]) correspond = [] for limb in paired: correspond.append((joint_indices['l_' + limb], joint_indices['r_' + limb])) return correspond
a=0 b=1 while a<10: print(a) a,b=b,a+b
a = 0 b = 1 while a < 10: print(a) (a, b) = (b, a + b)
#program to read the mass data and find the number of islands. c=0 def f(x,y,z): if 0<=y<10 and 0<=z<10 and x[z][y]=='1': x[z][y]='0' for dy,dz in [[-1,0],[1,0],[0,-1],[0,1]]:f(x,y+dy,z+dz) print("Input 10 rows of 10 numbers representing green squares (island) as 1 and blue squares (sea) as zeros") while 1: try: if c:input() except:break x = [list(input()) for _ in [0]*10] c=1;b=0 for i in range(10): for j in range(10): if x[j][i]=='1': b+=1;f(x,i,j) print("Number of islands:") print(b)
c = 0 def f(x, y, z): if 0 <= y < 10 and 0 <= z < 10 and (x[z][y] == '1'): x[z][y] = '0' for (dy, dz) in [[-1, 0], [1, 0], [0, -1], [0, 1]]: f(x, y + dy, z + dz) print('Input 10 rows of 10 numbers representing green squares (island) as 1 and blue squares (sea) as zeros') while 1: try: if c: input() except: break x = [list(input()) for _ in [0] * 10] c = 1 b = 0 for i in range(10): for j in range(10): if x[j][i] == '1': b += 1 f(x, i, j) print('Number of islands:') print(b)
def seq(a, d, n): res = str(a) for i in range(n-1): a += d a %= 10 res += str(a) return res[::-1] l = input() r = input() limits = set() for a in range(10): for d in range(10): limits.add(int(seq(a, d, len(l)))) limits.add(int(seq(a, d, len(r)))) res = max(99*(len(r) - len(l) - 1), 0) for limit in limits: if int(l) <= limit and limit <= int(r): res += 1 print(res)
def seq(a, d, n): res = str(a) for i in range(n - 1): a += d a %= 10 res += str(a) return res[::-1] l = input() r = input() limits = set() for a in range(10): for d in range(10): limits.add(int(seq(a, d, len(l)))) limits.add(int(seq(a, d, len(r)))) res = max(99 * (len(r) - len(l) - 1), 0) for limit in limits: if int(l) <= limit and limit <= int(r): res += 1 print(res)
def part1(): data = [] with open("C:\\Dev\\projects\\advent-of-code\\python\\day10\\input.txt") as f: data = [int(x) for x in f.readlines()] data.append(0) data.append(max(data) + 3) data.sort() diffs = [0] * 4 for i in range(1, len(data)): d = data[i] - data[i-1] diffs[d] += 1 ans = diffs[1] * diffs[3] print(str(ans)) def part2(): with open("C:\\Dev\\projects\\advent-of-code\\python\\day10\\input.txt") as f: data = [int(x) for x in f.readlines()] data.append(0) data.append(max(data) + 3) data.sort() paths = [0] * (max(data) + 1) paths[0] = 1 for i in range(1, max(data) + 1): for x in range(1, 4): if (i - x) in data: paths[i] += paths[i - x] print(str(paths[-1])) part1() part2()
def part1(): data = [] with open('C:\\Dev\\projects\\advent-of-code\\python\\day10\\input.txt') as f: data = [int(x) for x in f.readlines()] data.append(0) data.append(max(data) + 3) data.sort() diffs = [0] * 4 for i in range(1, len(data)): d = data[i] - data[i - 1] diffs[d] += 1 ans = diffs[1] * diffs[3] print(str(ans)) def part2(): with open('C:\\Dev\\projects\\advent-of-code\\python\\day10\\input.txt') as f: data = [int(x) for x in f.readlines()] data.append(0) data.append(max(data) + 3) data.sort() paths = [0] * (max(data) + 1) paths[0] = 1 for i in range(1, max(data) + 1): for x in range(1, 4): if i - x in data: paths[i] += paths[i - x] print(str(paths[-1])) part1() part2()
class Facility: id = 0 operator = None name = None bcghg_id = None type = None naics = None description = None swrs_facility_id = None production_calculation_explanation = None production_additional_info = None production_public_info = None ciip_db_id = None def __init__(self, operator): self.operator = operator return
class Facility: id = 0 operator = None name = None bcghg_id = None type = None naics = None description = None swrs_facility_id = None production_calculation_explanation = None production_additional_info = None production_public_info = None ciip_db_id = None def __init__(self, operator): self.operator = operator return
numero1=int(input("Digite Numero Uno: ")) numero2=int(input("Digite Numero Dos: ")) operador=input(" * / + - %: ") if(operador=="+"): funcion=lambda a,b: a+b elif(operador=="-"): funcion=lambda a,b: a-b elif(operador=="/"): funcion=lambda a,b:a/b elif(operador=="*"): funcion=lambda a,b:a*b elif(operador=="/"): funcion=lambda a,b:a/b print("el resultado es: "+str(funcion(numero1,numero2)))
numero1 = int(input('Digite Numero Uno: ')) numero2 = int(input('Digite Numero Dos: ')) operador = input(' * / + - %: ') if operador == '+': funcion = lambda a, b: a + b elif operador == '-': funcion = lambda a, b: a - b elif operador == '/': funcion = lambda a, b: a / b elif operador == '*': funcion = lambda a, b: a * b elif operador == '/': funcion = lambda a, b: a / b print('el resultado es: ' + str(funcion(numero1, numero2)))
a = 1 b = a+10 print(b)
a = 1 b = a + 10 print(b)
n=99999 t=n while(t//10!=0): x=t sum=0 while(x!=0): sum += x%10 x=x//10 t=sum print(sum)
n = 99999 t = n while t // 10 != 0: x = t sum = 0 while x != 0: sum += x % 10 x = x // 10 t = sum print(sum)
def sum_odd_numbers(numbers): total = 0 odd_numbers = [num for num in numbers if num % 2 == 0] for num in odd_numbers: total += num return total sum_odd_numbers([1, 2, 3, 4, 5, 6, 7, 8, 9])
def sum_odd_numbers(numbers): total = 0 odd_numbers = [num for num in numbers if num % 2 == 0] for num in odd_numbers: total += num return total sum_odd_numbers([1, 2, 3, 4, 5, 6, 7, 8, 9])
# Tot's reward lv 20 sm.completeQuest(5519) # Lv. 20 Equipment box sm.giveItem(2431876, 1) sm.dispose()
sm.completeQuest(5519) sm.giveItem(2431876, 1) sm.dispose()
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. IGNORED_FILE_PREFIXES = ["."] IGNORED_FILE_SUFFIXES = ["~", ".swp"] IGNORED_DIRS = [".git", ".svn", ".hg"] def filter_filenames(filenames, ignored_files=[".hgignore"]): for filename in filenames: if filename in ignored_files: continue if any([filename.startswith(suffix) for suffix in IGNORED_FILE_PREFIXES]): continue if any([filename.endswith(suffix) for suffix in IGNORED_FILE_SUFFIXES]): continue yield filename def filter_dirnames(dirnames): return [dirname for dirname in dirnames if dirname not in IGNORED_DIRS]
ignored_file_prefixes = ['.'] ignored_file_suffixes = ['~', '.swp'] ignored_dirs = ['.git', '.svn', '.hg'] def filter_filenames(filenames, ignored_files=['.hgignore']): for filename in filenames: if filename in ignored_files: continue if any([filename.startswith(suffix) for suffix in IGNORED_FILE_PREFIXES]): continue if any([filename.endswith(suffix) for suffix in IGNORED_FILE_SUFFIXES]): continue yield filename def filter_dirnames(dirnames): return [dirname for dirname in dirnames if dirname not in IGNORED_DIRS]
# CHANGEME w = str(input("Pattern: ")) S = str(input("Search string (s): ")) B = {} or_mask = [0]*len(w) or_mask[len(w)-1] = 1 D = [0]*len(w) done = [] for i in list(set(w)): tmp = [0]*len(w) for pos in [pos for pos, char in enumerate(w) if char == i]: tmp[len(w)-pos-1] = 1 B[i] = tmp for c in w: if c not in done: print(f"B[{c}]: {''.join([str(i) for i in B.get(c)])}") done.append(c) print(f"D={D}") print(f"D <-- ((D << 1) OR 1) AND B[S[i]]") for i, c in enumerate(S): print(f"S[{i+1}]={c}") if B.get(c): b = B.get(c) else: b = [0]*len(w) str_current_b = "".join([str(x) for x in b]) str_d = "".join([str(x) for x in D]) print(f"B[S[{i+1}]]=B[{c}]={str_current_b}") D.pop(0) D.append(0) D = [a or b for a, b in zip(D, or_mask)] print( f"D = (({str_d} << 1) OR {''.join([str(x) for x in or_mask])}) = {''.join([str(x) for x in D])}", end="") D = [a and b for a, b in zip(D, b)] print(f" AND {str_current_b} = {''.join([str(x) for x in D])}") if D[0] == 1: print(f"Ocurrence found at pos {i+1} in S - {c}") print("- "*10)
w = str(input('Pattern: ')) s = str(input('Search string (s): ')) b = {} or_mask = [0] * len(w) or_mask[len(w) - 1] = 1 d = [0] * len(w) done = [] for i in list(set(w)): tmp = [0] * len(w) for pos in [pos for (pos, char) in enumerate(w) if char == i]: tmp[len(w) - pos - 1] = 1 B[i] = tmp for c in w: if c not in done: print(f"B[{c}]: {''.join([str(i) for i in B.get(c)])}") done.append(c) print(f'D={D}') print(f'D <-- ((D << 1) OR 1) AND B[S[i]]') for (i, c) in enumerate(S): print(f'S[{i + 1}]={c}') if B.get(c): b = B.get(c) else: b = [0] * len(w) str_current_b = ''.join([str(x) for x in b]) str_d = ''.join([str(x) for x in D]) print(f'B[S[{i + 1}]]=B[{c}]={str_current_b}') D.pop(0) D.append(0) d = [a or b for (a, b) in zip(D, or_mask)] print(f"D = (({str_d} << 1) OR {''.join([str(x) for x in or_mask])}) = {''.join([str(x) for x in D])}", end='') d = [a and b for (a, b) in zip(D, b)] print(f" AND {str_current_b} = {''.join([str(x) for x in D])}") if D[0] == 1: print(f'Ocurrence found at pos {i + 1} in S - {c}') print('- ' * 10)
N, M = list(map(int, input().split())) grid = [['@' for x in range(M)] for y in range(N)] for i in range(N): line = input() for j in range(M): grid[i][j] = line[j] alreadySeen = False jr = jc = -1 for i in range(N): if alreadySeen: break for j in range(M): if (alreadySeen): break ch = grid[i][j] if ch == 'N': for k in range(i-1, -1, -1): if grid[k][j] == '.': grid[k][j] = '*' elif grid[k][j] == 'J': alreadySeen = True break elif grid[k][j] == 'M': alreadySeen = True break elif grid[k][j] == '#': break elif (ch == 'S'): for k in range(i+1, N): if grid[k][j] == '.': grid[k][j] = '*' elif (grid[k][j] == 'J'): alreadySeen = True break; elif grid[k][j] == 'M': alreadySeen = True break elif grid[k][j] == '#': break elif (ch == 'W'): for k in range(j-1, -1, -1): if grid[i][k] == '.': grid[i][k] = '*' elif grid[i][k] == 'J': alreadySeen = True break; elif grid[i][k] == 'M': alreadySeen = True break elif grid[i][k] == '#': break; elif (ch == 'E'): for k in range(j+1, M): if grid[i][k] == '.': grid[i][k] = '*' elif grid[i][k] == 'J': alreadySeen = True break; elif grid[i][k] == 'M': alreadySeen = True break elif grid[i][k] == '#': break; elif (ch == 'J'): jr = i jc = j possible = False if not alreadySeen: stack = [] grid[jr][jc] = '+' if grid[jr][jc+1] == '.': stack.append((jr, jc+1)) elif grid[jr][jc+1] == 'M': possible = True if grid[jr][jc-1] == '.': stack.append((jr, jc-1)) elif grid[jr][jc-1] == 'M': possible = True if grid[jr-1][jc] == '.': stack.append((jr-1, jc)) elif grid[jr-1][jc] == 'M': possible = True if grid[jr+1][jc] == '.': stack.append((jr+1, jc)) elif grid[jr+1][jc] == 'M': possible = True while not possible and stack: r, c = stack.pop() grid[r][c] = '+' if grid[r][c+1] == '.': stack.append((r, c+1)) elif grid[r][c+1] == 'M': possible = True if grid[r][c-1] == '.': stack.append((r, c-1)) elif grid[r][c-1] == 'M': possible = True if grid[r-1][c] == '.': stack.append((r-1, c)) elif grid[r-1][c] == 'M': possible = True if grid[r+1][c] == '.': stack.append((r+1, c)) elif grid[r+1][c] == 'M': possible = True if possible: print("YES") else: print("NO")
(n, m) = list(map(int, input().split())) grid = [['@' for x in range(M)] for y in range(N)] for i in range(N): line = input() for j in range(M): grid[i][j] = line[j] already_seen = False jr = jc = -1 for i in range(N): if alreadySeen: break for j in range(M): if alreadySeen: break ch = grid[i][j] if ch == 'N': for k in range(i - 1, -1, -1): if grid[k][j] == '.': grid[k][j] = '*' elif grid[k][j] == 'J': already_seen = True break elif grid[k][j] == 'M': already_seen = True break elif grid[k][j] == '#': break elif ch == 'S': for k in range(i + 1, N): if grid[k][j] == '.': grid[k][j] = '*' elif grid[k][j] == 'J': already_seen = True break elif grid[k][j] == 'M': already_seen = True break elif grid[k][j] == '#': break elif ch == 'W': for k in range(j - 1, -1, -1): if grid[i][k] == '.': grid[i][k] = '*' elif grid[i][k] == 'J': already_seen = True break elif grid[i][k] == 'M': already_seen = True break elif grid[i][k] == '#': break elif ch == 'E': for k in range(j + 1, M): if grid[i][k] == '.': grid[i][k] = '*' elif grid[i][k] == 'J': already_seen = True break elif grid[i][k] == 'M': already_seen = True break elif grid[i][k] == '#': break elif ch == 'J': jr = i jc = j possible = False if not alreadySeen: stack = [] grid[jr][jc] = '+' if grid[jr][jc + 1] == '.': stack.append((jr, jc + 1)) elif grid[jr][jc + 1] == 'M': possible = True if grid[jr][jc - 1] == '.': stack.append((jr, jc - 1)) elif grid[jr][jc - 1] == 'M': possible = True if grid[jr - 1][jc] == '.': stack.append((jr - 1, jc)) elif grid[jr - 1][jc] == 'M': possible = True if grid[jr + 1][jc] == '.': stack.append((jr + 1, jc)) elif grid[jr + 1][jc] == 'M': possible = True while not possible and stack: (r, c) = stack.pop() grid[r][c] = '+' if grid[r][c + 1] == '.': stack.append((r, c + 1)) elif grid[r][c + 1] == 'M': possible = True if grid[r][c - 1] == '.': stack.append((r, c - 1)) elif grid[r][c - 1] == 'M': possible = True if grid[r - 1][c] == '.': stack.append((r - 1, c)) elif grid[r - 1][c] == 'M': possible = True if grid[r + 1][c] == '.': stack.append((r + 1, c)) elif grid[r + 1][c] == 'M': possible = True if possible: print('YES') else: print('NO')
''' Author : MiKueen Level : Hard Problem Statement : Median of Two Sorted Arrays There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). You may assume nums1 and nums2 cannot be both empty. Example 1: nums1 = [1, 3] nums2 = [2] The median is 2.0 Example 2: nums1 = [1, 2] nums2 = [3, 4] The median is (2 + 3)/2 = 2.5 ''' class Solution: def findMedianSortedArrays(self, nums1: List[int], nums2: List[int]) -> float: # Binary Search Solution if len(nums1) > len(nums2): nums1, nums2 = nums2, nums1 x = len(nums1) y = len(nums2) low = 0 high = x while low <= high: leftArr = (low + high)//2 rightArr = (x + y + 1)//2 - leftArr maxLeftX = float("-inf") if leftArr == 0 else nums1[leftArr - 1] minRightX = float("inf") if leftArr == x else nums1[leftArr] maxLeftY = float("-inf") if rightArr == 0 else nums2[rightArr - 1] minRightY = float("inf") if rightArr == y else nums2[rightArr] if (maxLeftX <= minRightY) and (maxLeftY <= minRightX): if ((x + y) % 2 != 0): return max(maxLeftX, maxLeftY) else: return (max(maxLeftX, maxLeftY) + min(minRightX, minRightY))/2 elif maxLeftX > minRightY: high = leftArr - 1 elif maxLeftY > minRightX: low = leftArr + 1
""" Author : MiKueen Level : Hard Problem Statement : Median of Two Sorted Arrays There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). You may assume nums1 and nums2 cannot be both empty. Example 1: nums1 = [1, 3] nums2 = [2] The median is 2.0 Example 2: nums1 = [1, 2] nums2 = [3, 4] The median is (2 + 3)/2 = 2.5 """ class Solution: def find_median_sorted_arrays(self, nums1: List[int], nums2: List[int]) -> float: if len(nums1) > len(nums2): (nums1, nums2) = (nums2, nums1) x = len(nums1) y = len(nums2) low = 0 high = x while low <= high: left_arr = (low + high) // 2 right_arr = (x + y + 1) // 2 - leftArr max_left_x = float('-inf') if leftArr == 0 else nums1[leftArr - 1] min_right_x = float('inf') if leftArr == x else nums1[leftArr] max_left_y = float('-inf') if rightArr == 0 else nums2[rightArr - 1] min_right_y = float('inf') if rightArr == y else nums2[rightArr] if maxLeftX <= minRightY and maxLeftY <= minRightX: if (x + y) % 2 != 0: return max(maxLeftX, maxLeftY) else: return (max(maxLeftX, maxLeftY) + min(minRightX, minRightY)) / 2 elif maxLeftX > minRightY: high = leftArr - 1 elif maxLeftY > minRightX: low = leftArr + 1
def main(): # Ask for the user's weight in pounds. weight = int(input('Please enter your weight in pounds: ')) # Ask for the user's height in inches. height = int(input('Please enter your height in inches: ')) # Calculate the BMI (BMI = weight*703/height^2) BMI = (weight * 703.0) / (height*height) print ('Your BMI is %.1f'%BMI) # Determine whether the user is underweight, overweight, or optimal if BMI < 18.5: print('You are underweight.') elif BMI > 25: print('It would appear that you are overweight.') else: print('You are at an optimal weight.') # Call the main function. main()
def main(): weight = int(input('Please enter your weight in pounds: ')) height = int(input('Please enter your height in inches: ')) bmi = weight * 703.0 / (height * height) print('Your BMI is %.1f' % BMI) if BMI < 18.5: print('You are underweight.') elif BMI > 25: print('It would appear that you are overweight.') else: print('You are at an optimal weight.') main()
def selecao_em_vetor(): vetor = list() for i in range(100): vetor.append(float(input())) for j in range(100): if vetor[j] <= 10.0: print(f'A[{j}] = {vetor[j]:.1f}') selecao_em_vetor()
def selecao_em_vetor(): vetor = list() for i in range(100): vetor.append(float(input())) for j in range(100): if vetor[j] <= 10.0: print(f'A[{j}] = {vetor[j]:.1f}') selecao_em_vetor()
def pythoagorialTripletSum(sum1): if sum == 0: return 0 for i in range(1, int(sum1/3)+1): for j in range(i +1, int(sum1/2) + 1): k = sum1 - i - j if (i * i + j *j == k * k): print(i, j, k, end = " ") return print("No Triplets") return 0 if __name__ == "__main__": sum1 = int(input()) print(pythoagorialTripletSum(sum1))
def pythoagorial_triplet_sum(sum1): if sum == 0: return 0 for i in range(1, int(sum1 / 3) + 1): for j in range(i + 1, int(sum1 / 2) + 1): k = sum1 - i - j if i * i + j * j == k * k: print(i, j, k, end=' ') return print('No Triplets') return 0 if __name__ == '__main__': sum1 = int(input()) print(pythoagorial_triplet_sum(sum1))
class Scene: def __init__(self, name = ""): #print("new Scene Object created") self.srcs = [] #all sources with visible state of this scene, including srcs from nested scenes self.scenes = [] #list of all nested scenes self.name = name
class Scene: def __init__(self, name=''): self.srcs = [] self.scenes = [] self.name = name
with open("dane/liczby.txt") as f: lines = [l.strip() for l in f.readlines()] wynik42 = open("wynik42.txt", "w") div_2 = 0 div_8 = 0 for line in lines: if line[-1] == "0": div_2 += 1 if line[-1] == "0" and line[-2] == "0" and line[-3] == "0": div_8 += 1 wynik42.write(f"zadanie 4.2: {div_2} liczb podzielnych przez 2, {div_8} liczb podzielnych przez 8") wynik42.close()
with open('dane/liczby.txt') as f: lines = [l.strip() for l in f.readlines()] wynik42 = open('wynik42.txt', 'w') div_2 = 0 div_8 = 0 for line in lines: if line[-1] == '0': div_2 += 1 if line[-1] == '0' and line[-2] == '0' and (line[-3] == '0'): div_8 += 1 wynik42.write(f'zadanie 4.2: {div_2} liczb podzielnych przez 2, {div_8} liczb podzielnych przez 8') wynik42.close()
st = ['id', 'pwd', 'name', 'age'] data = ['id01', 'pwd01', 'james', 30] cust = zip(st,data) print(cust) for s,d in cust: print('%s : %s' % (s,d)) dic_cust = dict(zip(st,data)) print(dic_cust)
st = ['id', 'pwd', 'name', 'age'] data = ['id01', 'pwd01', 'james', 30] cust = zip(st, data) print(cust) for (s, d) in cust: print('%s : %s' % (s, d)) dic_cust = dict(zip(st, data)) print(dic_cust)
### Quicksort 1 - Partition - Solution def quickSort(arr): pivotNum = arr[0] for i in range(1, len(arr)): if pivotNum > arr[i]: for j in range(i, 0, -1): temp = arr[j] arr[j] = arr[j-1] arr[j-1] = temp print(*arr) n = int(input()) arr = list(map(int, input().split()[:n])) quickSort(arr)
def quick_sort(arr): pivot_num = arr[0] for i in range(1, len(arr)): if pivotNum > arr[i]: for j in range(i, 0, -1): temp = arr[j] arr[j] = arr[j - 1] arr[j - 1] = temp print(*arr) n = int(input()) arr = list(map(int, input().split()[:n])) quick_sort(arr)
# 2021-01-30 # Emma Benjaminson # Quick Sort Implementation # Source: https://www.educative.io/edpresso/how-to-implement-quicksort-in-python def QuickSort(arr): elements = len(arr) # base case if elements < 2: return arr current_position = 0 # position of the partitioning element # partitioning loop for i in range(1, elements): # if the i-th element is smaller than the partitioning element # then we swap that element with its neighbor and move the # partition frontier over? if arr[i] <= arr[0]: # current_position only increments if we found an element # that needs to move to the other side of the partition current_position += 1 # save the value of the i-th element in temp temp = arr[i] # swap the current position element into the i-th element arr[i] = arr[current_position] # assign the i-th element (that is smaller than partition) # to the current position value in the array arr[current_position] = temp # these steps move the partition element to its correct location # in the array temp = arr[0] arr[0] = arr[current_position] arr[current_position] = temp # now sort elements to the left and right of the partition left = QuickSort(arr[0:current_position]) right = QuickSort(arr[current_position+1:elements]) # merge everything together arr = left + [arr[current_position]] + right return arr array_to_sort = [4, 2, 7, 3, 1, 6] print("original array: ", array_to_sort) print("sorted array: ",QuickSort(array_to_sort))
def quick_sort(arr): elements = len(arr) if elements < 2: return arr current_position = 0 for i in range(1, elements): if arr[i] <= arr[0]: current_position += 1 temp = arr[i] arr[i] = arr[current_position] arr[current_position] = temp temp = arr[0] arr[0] = arr[current_position] arr[current_position] = temp left = quick_sort(arr[0:current_position]) right = quick_sort(arr[current_position + 1:elements]) arr = left + [arr[current_position]] + right return arr array_to_sort = [4, 2, 7, 3, 1, 6] print('original array: ', array_to_sort) print('sorted array: ', quick_sort(array_to_sort))
# # PySNMP MIB module HPR-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HPR-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 19:30:23 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # SnaControlPointName, = mibBuilder.importSymbols("APPN-MIB", "SnaControlPointName") ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint") snanauMIB, = mibBuilder.importSymbols("SNA-NAU-MIB", "snanauMIB") NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup") ModuleIdentity, Counter64, IpAddress, Gauge32, TimeTicks, iso, Bits, Integer32, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, MibIdentifier, Counter32, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "Counter64", "IpAddress", "Gauge32", "TimeTicks", "iso", "Bits", "Integer32", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "MibIdentifier", "Counter32", "Unsigned32") TextualConvention, DisplayString, DateAndTime, TimeStamp = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "DateAndTime", "TimeStamp") hprMIB = ModuleIdentity((1, 3, 6, 1, 2, 1, 34, 6)) if mibBuilder.loadTexts: hprMIB.setLastUpdated('970514000000Z') if mibBuilder.loadTexts: hprMIB.setOrganization('AIW APPN / HPR MIB SIG') class HprNceTypes(TextualConvention, Bits): status = 'current' namedValues = NamedValues(("controlPoint", 0), ("logicalUnit", 1), ("boundaryFunction", 2), ("routeSetup", 3)) class HprRtpCounter(TextualConvention, Counter32): status = 'current' hprObjects = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 1)) hprGlobal = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 1)) hprNodeCpName = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 1, 1), SnaControlPointName()).setMaxAccess("readonly") if mibBuilder.loadTexts: hprNodeCpName.setStatus('current') hprOperatorPathSwitchSupport = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("notSupported", 1), ("switchTriggerSupported", 2), ("switchToPathSupported", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hprOperatorPathSwitchSupport.setStatus('current') hprAnrRouting = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 2)) hprAnrsAssigned = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 1), Counter32()).setUnits('ANR labels').setMaxAccess("readonly") if mibBuilder.loadTexts: hprAnrsAssigned.setStatus('current') hprAnrCounterState = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("notActive", 1), ("active", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: hprAnrCounterState.setStatus('current') hprAnrCounterStateTime = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 3), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: hprAnrCounterStateTime.setStatus('current') hprAnrRoutingTable = MibTable((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4), ) if mibBuilder.loadTexts: hprAnrRoutingTable.setStatus('current') hprAnrRoutingEntry = MibTableRow((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1), ).setIndexNames((0, "HPR-MIB", "hprAnrLabel")) if mibBuilder.loadTexts: hprAnrRoutingEntry.setStatus('current') hprAnrLabel = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))) if mibBuilder.loadTexts: hprAnrLabel.setStatus('current') hprAnrType = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("nce", 1), ("tg", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hprAnrType.setStatus('current') hprAnrOutTgDest = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 3), DisplayString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(3, 17), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: hprAnrOutTgDest.setStatus('current') hprAnrOutTgNum = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: hprAnrOutTgNum.setStatus('current') hprAnrPacketsReceived = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 5), Counter32()).setUnits('ANR packets').setMaxAccess("readonly") if mibBuilder.loadTexts: hprAnrPacketsReceived.setStatus('current') hprAnrCounterDisconTime = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 6), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: hprAnrCounterDisconTime.setStatus('current') hprTransportUser = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 3)) hprNceTable = MibTable((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1), ) if mibBuilder.loadTexts: hprNceTable.setStatus('current') hprNceEntry = MibTableRow((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1), ).setIndexNames((0, "HPR-MIB", "hprNceId")) if mibBuilder.loadTexts: hprNceEntry.setStatus('current') hprNceId = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))) if mibBuilder.loadTexts: hprNceId.setStatus('current') hprNceType = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 2), HprNceTypes()).setMaxAccess("readonly") if mibBuilder.loadTexts: hprNceType.setStatus('current') hprNceDefault = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 3), HprNceTypes()).setMaxAccess("readonly") if mibBuilder.loadTexts: hprNceDefault.setStatus('current') hprNceInstanceId = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readonly") if mibBuilder.loadTexts: hprNceInstanceId.setStatus('current') hprRtp = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 4)) hprRtpGlobe = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1)) hprRtpGlobeConnSetups = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1, 1), Counter32()).setUnits('RTP connection setups').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpGlobeConnSetups.setStatus('current') hprRtpGlobeCtrState = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("notActive", 1), ("active", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: hprRtpGlobeCtrState.setStatus('current') hprRtpGlobeCtrStateTime = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1, 3), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpGlobeCtrStateTime.setStatus('current') hprRtpTable = MibTable((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2), ) if mibBuilder.loadTexts: hprRtpTable.setStatus('current') hprRtpEntry = MibTableRow((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1), ).setIndexNames((0, "HPR-MIB", "hprRtpLocNceId"), (0, "HPR-MIB", "hprRtpLocTcid")) if mibBuilder.loadTexts: hprRtpEntry.setStatus('current') hprRtpLocNceId = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))) if mibBuilder.loadTexts: hprRtpLocNceId.setStatus('current') hprRtpLocTcid = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)) if mibBuilder.loadTexts: hprRtpLocTcid.setStatus('current') hprRtpRemCpName = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 3), SnaControlPointName()).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpRemCpName.setStatus('current') hprRtpRemNceId = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpRemNceId.setStatus('current') hprRtpRemTcid = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpRemTcid.setStatus('current') hprRtpPathSwitchTrigger = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ready", 1), ("switchPathNow", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: hprRtpPathSwitchTrigger.setStatus('current') hprRtpRscv = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpRscv.setStatus('current') hprRtpTopic = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpTopic.setStatus('current') hprRtpState = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 99))).clone(namedValues=NamedValues(("rtpListening", 1), ("rtpCalling", 2), ("rtpConnected", 3), ("rtpPathSwitching", 4), ("rtpDisconnecting", 5), ("other", 99)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpState.setStatus('current') hprRtpUpTime = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 10), TimeTicks()).setUnits('1/100ths of a second').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpUpTime.setStatus('current') hprRtpLivenessTimer = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 11), Unsigned32()).setUnits('1/100ths of a second').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpLivenessTimer.setStatus('current') hprRtpShortReqTimer = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 12), Unsigned32()).setUnits('1/100ths of a second').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpShortReqTimer.setStatus('current') hprRtpPathSwTimer = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 13), Unsigned32()).setUnits('1/100ths of a second').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpPathSwTimer.setStatus('current') hprRtpLivenessTimeouts = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 14), HprRtpCounter()).setUnits('liveness timeouts').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpLivenessTimeouts.setStatus('current') hprRtpShortReqTimeouts = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 15), HprRtpCounter()).setUnits('short request timeouts').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpShortReqTimeouts.setStatus('current') hprRtpMaxSendRate = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 16), Gauge32()).setUnits('bytes per second').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpMaxSendRate.setStatus('current') hprRtpMinSendRate = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 17), Gauge32()).setUnits('bytes per second').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpMinSendRate.setStatus('current') hprRtpCurSendRate = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 18), Gauge32()).setUnits('bytes per second').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpCurSendRate.setStatus('current') hprRtpSmRdTripDelay = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 19), Gauge32()).setUnits('1/1000ths of a second').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpSmRdTripDelay.setStatus('current') hprRtpSendPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 20), HprRtpCounter()).setUnits('RTP packets').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpSendPackets.setStatus('current') hprRtpRecvPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 21), HprRtpCounter()).setUnits('RTP packets').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpRecvPackets.setStatus('current') hprRtpSendBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 22), HprRtpCounter()).setUnits('bytes').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpSendBytes.setStatus('current') hprRtpRecvBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 23), HprRtpCounter()).setUnits('bytes').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpRecvBytes.setStatus('current') hprRtpRetrPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 24), HprRtpCounter()).setUnits('RTP packets').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpRetrPackets.setStatus('current') hprRtpPacketsDiscarded = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 25), HprRtpCounter()).setUnits('RTP packets').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpPacketsDiscarded.setStatus('current') hprRtpDetectGaps = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 26), HprRtpCounter()).setUnits('gaps').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpDetectGaps.setStatus('current') hprRtpRateReqSends = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 27), HprRtpCounter()).setUnits('rate requests').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpRateReqSends.setStatus('current') hprRtpOkErrPathSws = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 28), HprRtpCounter()).setUnits('path switch attempts').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpOkErrPathSws.setStatus('current') hprRtpBadErrPathSws = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 29), HprRtpCounter()).setUnits('path switch attempts').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpBadErrPathSws.setStatus('current') hprRtpOkOpPathSws = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 30), HprRtpCounter()).setUnits('path switches').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpOkOpPathSws.setStatus('current') hprRtpBadOpPathSws = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 31), HprRtpCounter()).setUnits('path switches').setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpBadOpPathSws.setStatus('current') hprRtpCounterDisconTime = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 32), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpCounterDisconTime.setStatus('current') hprRtpStatusTable = MibTable((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3), ) if mibBuilder.loadTexts: hprRtpStatusTable.setStatus('current') hprRtpStatusEntry = MibTableRow((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1), ).setIndexNames((0, "HPR-MIB", "hprRtpStatusLocNceId"), (0, "HPR-MIB", "hprRtpStatusLocTcid"), (0, "HPR-MIB", "hprRtpStatusIndex")) if mibBuilder.loadTexts: hprRtpStatusEntry.setStatus('current') hprRtpStatusLocNceId = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))) if mibBuilder.loadTexts: hprRtpStatusLocNceId.setStatus('current') hprRtpStatusLocTcid = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)) if mibBuilder.loadTexts: hprRtpStatusLocTcid.setStatus('current') hprRtpStatusIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))) if mibBuilder.loadTexts: hprRtpStatusIndex.setStatus('current') hprRtpStatusStartTime = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 4), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpStatusStartTime.setStatus('current') hprRtpStatusEndTime = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 5), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpStatusEndTime.setStatus('current') hprRtpStatusRemCpName = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 6), SnaControlPointName()).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpStatusRemCpName.setStatus('current') hprRtpStatusRemNceId = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpStatusRemNceId.setStatus('current') hprRtpStatusRemTcid = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpStatusRemTcid.setStatus('current') hprRtpStatusNewRscv = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpStatusNewRscv.setStatus('current') hprRtpStatusOldRscv = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpStatusOldRscv.setStatus('current') hprRtpStatusCause = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("rtpConnFail", 2), ("locLinkFail", 3), ("remLinkFail", 4), ("operRequest", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpStatusCause.setStatus('current') hprRtpStatusLastAttemptResult = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("successful", 1), ("initiatorMoving", 2), ("directorySearchFailed", 3), ("rscvCalculationFailed", 4), ("negativeRouteSetupReply", 5), ("backoutRouteSetupReply", 6), ("timeoutDuringFirstAttempt", 7), ("otherUnsuccessful", 8)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hprRtpStatusLastAttemptResult.setStatus('current') hprConformance = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 2)) hprCompliances = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 2, 1)) hprGroups = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 2, 2)) hprCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 34, 6, 2, 1, 1)).setObjects(("HPR-MIB", "hprGlobalConfGroup"), ("HPR-MIB", "hprAnrRoutingConfGroup"), ("HPR-MIB", "hprTransportUserConfGroup"), ("HPR-MIB", "hprRtpConfGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hprCompliance = hprCompliance.setStatus('current') hprGlobalConfGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 1)).setObjects(("HPR-MIB", "hprNodeCpName"), ("HPR-MIB", "hprOperatorPathSwitchSupport")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hprGlobalConfGroup = hprGlobalConfGroup.setStatus('current') hprAnrRoutingConfGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 2)).setObjects(("HPR-MIB", "hprAnrsAssigned"), ("HPR-MIB", "hprAnrCounterState"), ("HPR-MIB", "hprAnrCounterStateTime"), ("HPR-MIB", "hprAnrType"), ("HPR-MIB", "hprAnrOutTgDest"), ("HPR-MIB", "hprAnrOutTgNum"), ("HPR-MIB", "hprAnrPacketsReceived"), ("HPR-MIB", "hprAnrCounterDisconTime")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hprAnrRoutingConfGroup = hprAnrRoutingConfGroup.setStatus('current') hprTransportUserConfGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 3)).setObjects(("HPR-MIB", "hprNceType"), ("HPR-MIB", "hprNceDefault"), ("HPR-MIB", "hprNceInstanceId")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hprTransportUserConfGroup = hprTransportUserConfGroup.setStatus('current') hprRtpConfGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 4)).setObjects(("HPR-MIB", "hprRtpGlobeConnSetups"), ("HPR-MIB", "hprRtpGlobeCtrState"), ("HPR-MIB", "hprRtpGlobeCtrStateTime"), ("HPR-MIB", "hprRtpRemCpName"), ("HPR-MIB", "hprRtpRemNceId"), ("HPR-MIB", "hprRtpRemTcid"), ("HPR-MIB", "hprRtpPathSwitchTrigger"), ("HPR-MIB", "hprRtpRscv"), ("HPR-MIB", "hprRtpTopic"), ("HPR-MIB", "hprRtpState"), ("HPR-MIB", "hprRtpUpTime"), ("HPR-MIB", "hprRtpLivenessTimer"), ("HPR-MIB", "hprRtpShortReqTimer"), ("HPR-MIB", "hprRtpPathSwTimer"), ("HPR-MIB", "hprRtpLivenessTimeouts"), ("HPR-MIB", "hprRtpShortReqTimeouts"), ("HPR-MIB", "hprRtpMaxSendRate"), ("HPR-MIB", "hprRtpMinSendRate"), ("HPR-MIB", "hprRtpCurSendRate"), ("HPR-MIB", "hprRtpSmRdTripDelay"), ("HPR-MIB", "hprRtpSendPackets"), ("HPR-MIB", "hprRtpRecvPackets"), ("HPR-MIB", "hprRtpSendBytes"), ("HPR-MIB", "hprRtpRecvBytes"), ("HPR-MIB", "hprRtpRetrPackets"), ("HPR-MIB", "hprRtpPacketsDiscarded"), ("HPR-MIB", "hprRtpDetectGaps"), ("HPR-MIB", "hprRtpRateReqSends"), ("HPR-MIB", "hprRtpOkErrPathSws"), ("HPR-MIB", "hprRtpBadErrPathSws"), ("HPR-MIB", "hprRtpOkOpPathSws"), ("HPR-MIB", "hprRtpBadOpPathSws"), ("HPR-MIB", "hprRtpCounterDisconTime"), ("HPR-MIB", "hprRtpStatusStartTime"), ("HPR-MIB", "hprRtpStatusEndTime"), ("HPR-MIB", "hprRtpStatusRemNceId"), ("HPR-MIB", "hprRtpStatusRemTcid"), ("HPR-MIB", "hprRtpStatusRemCpName"), ("HPR-MIB", "hprRtpStatusNewRscv"), ("HPR-MIB", "hprRtpStatusOldRscv"), ("HPR-MIB", "hprRtpStatusCause"), ("HPR-MIB", "hprRtpStatusLastAttemptResult")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hprRtpConfGroup = hprRtpConfGroup.setStatus('current') mibBuilder.exportSymbols("HPR-MIB", hprRtpTopic=hprRtpTopic, HprRtpCounter=HprRtpCounter, hprAnrOutTgNum=hprAnrOutTgNum, hprRtpMinSendRate=hprRtpMinSendRate, hprRtpRecvPackets=hprRtpRecvPackets, hprRtpConfGroup=hprRtpConfGroup, hprRtpState=hprRtpState, hprRtpGlobeCtrState=hprRtpGlobeCtrState, hprNceId=hprNceId, hprRtpStatusTable=hprRtpStatusTable, hprRtpOkOpPathSws=hprRtpOkOpPathSws, hprRtpGlobeConnSetups=hprRtpGlobeConnSetups, hprRtpLivenessTimer=hprRtpLivenessTimer, hprRtpShortReqTimeouts=hprRtpShortReqTimeouts, hprRtpStatusRemNceId=hprRtpStatusRemNceId, hprAnrRoutingTable=hprAnrRoutingTable, hprRtpRetrPackets=hprRtpRetrPackets, hprNceEntry=hprNceEntry, hprRtpSendBytes=hprRtpSendBytes, hprRtpSendPackets=hprRtpSendPackets, hprAnrType=hprAnrType, hprAnrRouting=hprAnrRouting, hprRtpBadErrPathSws=hprRtpBadErrPathSws, hprOperatorPathSwitchSupport=hprOperatorPathSwitchSupport, hprObjects=hprObjects, hprRtpGlobe=hprRtpGlobe, hprGlobalConfGroup=hprGlobalConfGroup, hprRtpLocNceId=hprRtpLocNceId, hprRtpLocTcid=hprRtpLocTcid, hprRtpDetectGaps=hprRtpDetectGaps, hprNceDefault=hprNceDefault, hprRtpStatusEntry=hprRtpStatusEntry, hprAnrLabel=hprAnrLabel, hprCompliance=hprCompliance, hprRtp=hprRtp, hprRtpPathSwTimer=hprRtpPathSwTimer, hprRtpRscv=hprRtpRscv, hprRtpOkErrPathSws=hprRtpOkErrPathSws, hprAnrCounterStateTime=hprAnrCounterStateTime, hprAnrPacketsReceived=hprAnrPacketsReceived, hprTransportUser=hprTransportUser, hprAnrOutTgDest=hprAnrOutTgDest, hprAnrRoutingEntry=hprAnrRoutingEntry, hprRtpStatusIndex=hprRtpStatusIndex, hprRtpStatusEndTime=hprRtpStatusEndTime, hprRtpStatusCause=hprRtpStatusCause, hprNceInstanceId=hprNceInstanceId, hprRtpRateReqSends=hprRtpRateReqSends, hprAnrCounterState=hprAnrCounterState, hprRtpEntry=hprRtpEntry, hprRtpStatusRemCpName=hprRtpStatusRemCpName, hprRtpStatusRemTcid=hprRtpStatusRemTcid, hprRtpCounterDisconTime=hprRtpCounterDisconTime, hprRtpCurSendRate=hprRtpCurSendRate, hprGroups=hprGroups, hprRtpSmRdTripDelay=hprRtpSmRdTripDelay, hprRtpStatusNewRscv=hprRtpStatusNewRscv, hprRtpStatusStartTime=hprRtpStatusStartTime, hprNceType=hprNceType, hprConformance=hprConformance, hprRtpStatusLocNceId=hprRtpStatusLocNceId, hprRtpGlobeCtrStateTime=hprRtpGlobeCtrStateTime, hprNodeCpName=hprNodeCpName, hprRtpUpTime=hprRtpUpTime, PYSNMP_MODULE_ID=hprMIB, hprGlobal=hprGlobal, HprNceTypes=HprNceTypes, hprRtpLivenessTimeouts=hprRtpLivenessTimeouts, hprRtpTable=hprRtpTable, hprAnrCounterDisconTime=hprAnrCounterDisconTime, hprRtpStatusLastAttemptResult=hprRtpStatusLastAttemptResult, hprRtpBadOpPathSws=hprRtpBadOpPathSws, hprRtpStatusLocTcid=hprRtpStatusLocTcid, hprRtpMaxSendRate=hprRtpMaxSendRate, hprRtpPacketsDiscarded=hprRtpPacketsDiscarded, hprRtpRemNceId=hprRtpRemNceId, hprRtpStatusOldRscv=hprRtpStatusOldRscv, hprAnrRoutingConfGroup=hprAnrRoutingConfGroup, hprRtpRemTcid=hprRtpRemTcid, hprMIB=hprMIB, hprCompliances=hprCompliances, hprAnrsAssigned=hprAnrsAssigned, hprNceTable=hprNceTable, hprRtpRecvBytes=hprRtpRecvBytes, hprRtpRemCpName=hprRtpRemCpName, hprRtpShortReqTimer=hprRtpShortReqTimer, hprTransportUserConfGroup=hprTransportUserConfGroup, hprRtpPathSwitchTrigger=hprRtpPathSwitchTrigger)
(sna_control_point_name,) = mibBuilder.importSymbols('APPN-MIB', 'SnaControlPointName') (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, constraints_intersection, value_size_constraint, single_value_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint') (snanau_mib,) = mibBuilder.importSymbols('SNA-NAU-MIB', 'snanauMIB') (notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup') (module_identity, counter64, ip_address, gauge32, time_ticks, iso, bits, integer32, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity, mib_identifier, counter32, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'Counter64', 'IpAddress', 'Gauge32', 'TimeTicks', 'iso', 'Bits', 'Integer32', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity', 'MibIdentifier', 'Counter32', 'Unsigned32') (textual_convention, display_string, date_and_time, time_stamp) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString', 'DateAndTime', 'TimeStamp') hpr_mib = module_identity((1, 3, 6, 1, 2, 1, 34, 6)) if mibBuilder.loadTexts: hprMIB.setLastUpdated('970514000000Z') if mibBuilder.loadTexts: hprMIB.setOrganization('AIW APPN / HPR MIB SIG') class Hprncetypes(TextualConvention, Bits): status = 'current' named_values = named_values(('controlPoint', 0), ('logicalUnit', 1), ('boundaryFunction', 2), ('routeSetup', 3)) class Hprrtpcounter(TextualConvention, Counter32): status = 'current' hpr_objects = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 1)) hpr_global = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 1)) hpr_node_cp_name = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 1, 1), sna_control_point_name()).setMaxAccess('readonly') if mibBuilder.loadTexts: hprNodeCpName.setStatus('current') hpr_operator_path_switch_support = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('notSupported', 1), ('switchTriggerSupported', 2), ('switchToPathSupported', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hprOperatorPathSwitchSupport.setStatus('current') hpr_anr_routing = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 2)) hpr_anrs_assigned = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 1), counter32()).setUnits('ANR labels').setMaxAccess('readonly') if mibBuilder.loadTexts: hprAnrsAssigned.setStatus('current') hpr_anr_counter_state = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('notActive', 1), ('active', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: hprAnrCounterState.setStatus('current') hpr_anr_counter_state_time = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 3), date_and_time()).setMaxAccess('readonly') if mibBuilder.loadTexts: hprAnrCounterStateTime.setStatus('current') hpr_anr_routing_table = mib_table((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4)) if mibBuilder.loadTexts: hprAnrRoutingTable.setStatus('current') hpr_anr_routing_entry = mib_table_row((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1)).setIndexNames((0, 'HPR-MIB', 'hprAnrLabel')) if mibBuilder.loadTexts: hprAnrRoutingEntry.setStatus('current') hpr_anr_label = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))) if mibBuilder.loadTexts: hprAnrLabel.setStatus('current') hpr_anr_type = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('nce', 1), ('tg', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hprAnrType.setStatus('current') hpr_anr_out_tg_dest = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 3), display_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(3, 17)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hprAnrOutTgDest.setStatus('current') hpr_anr_out_tg_num = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: hprAnrOutTgNum.setStatus('current') hpr_anr_packets_received = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 5), counter32()).setUnits('ANR packets').setMaxAccess('readonly') if mibBuilder.loadTexts: hprAnrPacketsReceived.setStatus('current') hpr_anr_counter_discon_time = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 6), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: hprAnrCounterDisconTime.setStatus('current') hpr_transport_user = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 3)) hpr_nce_table = mib_table((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1)) if mibBuilder.loadTexts: hprNceTable.setStatus('current') hpr_nce_entry = mib_table_row((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1)).setIndexNames((0, 'HPR-MIB', 'hprNceId')) if mibBuilder.loadTexts: hprNceEntry.setStatus('current') hpr_nce_id = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))) if mibBuilder.loadTexts: hprNceId.setStatus('current') hpr_nce_type = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 2), hpr_nce_types()).setMaxAccess('readonly') if mibBuilder.loadTexts: hprNceType.setStatus('current') hpr_nce_default = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 3), hpr_nce_types()).setMaxAccess('readonly') if mibBuilder.loadTexts: hprNceDefault.setStatus('current') hpr_nce_instance_id = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readonly') if mibBuilder.loadTexts: hprNceInstanceId.setStatus('current') hpr_rtp = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 4)) hpr_rtp_globe = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1)) hpr_rtp_globe_conn_setups = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1, 1), counter32()).setUnits('RTP connection setups').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpGlobeConnSetups.setStatus('current') hpr_rtp_globe_ctr_state = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('notActive', 1), ('active', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: hprRtpGlobeCtrState.setStatus('current') hpr_rtp_globe_ctr_state_time = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1, 3), date_and_time()).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpGlobeCtrStateTime.setStatus('current') hpr_rtp_table = mib_table((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2)) if mibBuilder.loadTexts: hprRtpTable.setStatus('current') hpr_rtp_entry = mib_table_row((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1)).setIndexNames((0, 'HPR-MIB', 'hprRtpLocNceId'), (0, 'HPR-MIB', 'hprRtpLocTcid')) if mibBuilder.loadTexts: hprRtpEntry.setStatus('current') hpr_rtp_loc_nce_id = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))) if mibBuilder.loadTexts: hprRtpLocNceId.setStatus('current') hpr_rtp_loc_tcid = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)) if mibBuilder.loadTexts: hprRtpLocTcid.setStatus('current') hpr_rtp_rem_cp_name = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 3), sna_control_point_name()).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpRemCpName.setStatus('current') hpr_rtp_rem_nce_id = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpRemNceId.setStatus('current') hpr_rtp_rem_tcid = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpRemTcid.setStatus('current') hpr_rtp_path_switch_trigger = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ready', 1), ('switchPathNow', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: hprRtpPathSwitchTrigger.setStatus('current') hpr_rtp_rscv = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpRscv.setStatus('current') hpr_rtp_topic = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 8), display_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpTopic.setStatus('current') hpr_rtp_state = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 99))).clone(namedValues=named_values(('rtpListening', 1), ('rtpCalling', 2), ('rtpConnected', 3), ('rtpPathSwitching', 4), ('rtpDisconnecting', 5), ('other', 99)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpState.setStatus('current') hpr_rtp_up_time = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 10), time_ticks()).setUnits('1/100ths of a second').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpUpTime.setStatus('current') hpr_rtp_liveness_timer = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 11), unsigned32()).setUnits('1/100ths of a second').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpLivenessTimer.setStatus('current') hpr_rtp_short_req_timer = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 12), unsigned32()).setUnits('1/100ths of a second').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpShortReqTimer.setStatus('current') hpr_rtp_path_sw_timer = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 13), unsigned32()).setUnits('1/100ths of a second').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpPathSwTimer.setStatus('current') hpr_rtp_liveness_timeouts = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 14), hpr_rtp_counter()).setUnits('liveness timeouts').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpLivenessTimeouts.setStatus('current') hpr_rtp_short_req_timeouts = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 15), hpr_rtp_counter()).setUnits('short request timeouts').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpShortReqTimeouts.setStatus('current') hpr_rtp_max_send_rate = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 16), gauge32()).setUnits('bytes per second').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpMaxSendRate.setStatus('current') hpr_rtp_min_send_rate = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 17), gauge32()).setUnits('bytes per second').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpMinSendRate.setStatus('current') hpr_rtp_cur_send_rate = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 18), gauge32()).setUnits('bytes per second').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpCurSendRate.setStatus('current') hpr_rtp_sm_rd_trip_delay = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 19), gauge32()).setUnits('1/1000ths of a second').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpSmRdTripDelay.setStatus('current') hpr_rtp_send_packets = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 20), hpr_rtp_counter()).setUnits('RTP packets').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpSendPackets.setStatus('current') hpr_rtp_recv_packets = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 21), hpr_rtp_counter()).setUnits('RTP packets').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpRecvPackets.setStatus('current') hpr_rtp_send_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 22), hpr_rtp_counter()).setUnits('bytes').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpSendBytes.setStatus('current') hpr_rtp_recv_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 23), hpr_rtp_counter()).setUnits('bytes').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpRecvBytes.setStatus('current') hpr_rtp_retr_packets = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 24), hpr_rtp_counter()).setUnits('RTP packets').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpRetrPackets.setStatus('current') hpr_rtp_packets_discarded = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 25), hpr_rtp_counter()).setUnits('RTP packets').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpPacketsDiscarded.setStatus('current') hpr_rtp_detect_gaps = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 26), hpr_rtp_counter()).setUnits('gaps').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpDetectGaps.setStatus('current') hpr_rtp_rate_req_sends = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 27), hpr_rtp_counter()).setUnits('rate requests').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpRateReqSends.setStatus('current') hpr_rtp_ok_err_path_sws = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 28), hpr_rtp_counter()).setUnits('path switch attempts').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpOkErrPathSws.setStatus('current') hpr_rtp_bad_err_path_sws = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 29), hpr_rtp_counter()).setUnits('path switch attempts').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpBadErrPathSws.setStatus('current') hpr_rtp_ok_op_path_sws = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 30), hpr_rtp_counter()).setUnits('path switches').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpOkOpPathSws.setStatus('current') hpr_rtp_bad_op_path_sws = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 31), hpr_rtp_counter()).setUnits('path switches').setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpBadOpPathSws.setStatus('current') hpr_rtp_counter_discon_time = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 32), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpCounterDisconTime.setStatus('current') hpr_rtp_status_table = mib_table((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3)) if mibBuilder.loadTexts: hprRtpStatusTable.setStatus('current') hpr_rtp_status_entry = mib_table_row((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1)).setIndexNames((0, 'HPR-MIB', 'hprRtpStatusLocNceId'), (0, 'HPR-MIB', 'hprRtpStatusLocTcid'), (0, 'HPR-MIB', 'hprRtpStatusIndex')) if mibBuilder.loadTexts: hprRtpStatusEntry.setStatus('current') hpr_rtp_status_loc_nce_id = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))) if mibBuilder.loadTexts: hprRtpStatusLocNceId.setStatus('current') hpr_rtp_status_loc_tcid = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)) if mibBuilder.loadTexts: hprRtpStatusLocTcid.setStatus('current') hpr_rtp_status_index = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295))) if mibBuilder.loadTexts: hprRtpStatusIndex.setStatus('current') hpr_rtp_status_start_time = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 4), date_and_time()).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpStatusStartTime.setStatus('current') hpr_rtp_status_end_time = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 5), date_and_time()).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpStatusEndTime.setStatus('current') hpr_rtp_status_rem_cp_name = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 6), sna_control_point_name()).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpStatusRemCpName.setStatus('current') hpr_rtp_status_rem_nce_id = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpStatusRemNceId.setStatus('current') hpr_rtp_status_rem_tcid = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpStatusRemTcid.setStatus('current') hpr_rtp_status_new_rscv = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpStatusNewRscv.setStatus('current') hpr_rtp_status_old_rscv = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpStatusOldRscv.setStatus('current') hpr_rtp_status_cause = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('rtpConnFail', 2), ('locLinkFail', 3), ('remLinkFail', 4), ('operRequest', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpStatusCause.setStatus('current') hpr_rtp_status_last_attempt_result = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('successful', 1), ('initiatorMoving', 2), ('directorySearchFailed', 3), ('rscvCalculationFailed', 4), ('negativeRouteSetupReply', 5), ('backoutRouteSetupReply', 6), ('timeoutDuringFirstAttempt', 7), ('otherUnsuccessful', 8)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hprRtpStatusLastAttemptResult.setStatus('current') hpr_conformance = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 2)) hpr_compliances = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 2, 1)) hpr_groups = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 2, 2)) hpr_compliance = module_compliance((1, 3, 6, 1, 2, 1, 34, 6, 2, 1, 1)).setObjects(('HPR-MIB', 'hprGlobalConfGroup'), ('HPR-MIB', 'hprAnrRoutingConfGroup'), ('HPR-MIB', 'hprTransportUserConfGroup'), ('HPR-MIB', 'hprRtpConfGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpr_compliance = hprCompliance.setStatus('current') hpr_global_conf_group = object_group((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 1)).setObjects(('HPR-MIB', 'hprNodeCpName'), ('HPR-MIB', 'hprOperatorPathSwitchSupport')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpr_global_conf_group = hprGlobalConfGroup.setStatus('current') hpr_anr_routing_conf_group = object_group((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 2)).setObjects(('HPR-MIB', 'hprAnrsAssigned'), ('HPR-MIB', 'hprAnrCounterState'), ('HPR-MIB', 'hprAnrCounterStateTime'), ('HPR-MIB', 'hprAnrType'), ('HPR-MIB', 'hprAnrOutTgDest'), ('HPR-MIB', 'hprAnrOutTgNum'), ('HPR-MIB', 'hprAnrPacketsReceived'), ('HPR-MIB', 'hprAnrCounterDisconTime')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpr_anr_routing_conf_group = hprAnrRoutingConfGroup.setStatus('current') hpr_transport_user_conf_group = object_group((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 3)).setObjects(('HPR-MIB', 'hprNceType'), ('HPR-MIB', 'hprNceDefault'), ('HPR-MIB', 'hprNceInstanceId')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpr_transport_user_conf_group = hprTransportUserConfGroup.setStatus('current') hpr_rtp_conf_group = object_group((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 4)).setObjects(('HPR-MIB', 'hprRtpGlobeConnSetups'), ('HPR-MIB', 'hprRtpGlobeCtrState'), ('HPR-MIB', 'hprRtpGlobeCtrStateTime'), ('HPR-MIB', 'hprRtpRemCpName'), ('HPR-MIB', 'hprRtpRemNceId'), ('HPR-MIB', 'hprRtpRemTcid'), ('HPR-MIB', 'hprRtpPathSwitchTrigger'), ('HPR-MIB', 'hprRtpRscv'), ('HPR-MIB', 'hprRtpTopic'), ('HPR-MIB', 'hprRtpState'), ('HPR-MIB', 'hprRtpUpTime'), ('HPR-MIB', 'hprRtpLivenessTimer'), ('HPR-MIB', 'hprRtpShortReqTimer'), ('HPR-MIB', 'hprRtpPathSwTimer'), ('HPR-MIB', 'hprRtpLivenessTimeouts'), ('HPR-MIB', 'hprRtpShortReqTimeouts'), ('HPR-MIB', 'hprRtpMaxSendRate'), ('HPR-MIB', 'hprRtpMinSendRate'), ('HPR-MIB', 'hprRtpCurSendRate'), ('HPR-MIB', 'hprRtpSmRdTripDelay'), ('HPR-MIB', 'hprRtpSendPackets'), ('HPR-MIB', 'hprRtpRecvPackets'), ('HPR-MIB', 'hprRtpSendBytes'), ('HPR-MIB', 'hprRtpRecvBytes'), ('HPR-MIB', 'hprRtpRetrPackets'), ('HPR-MIB', 'hprRtpPacketsDiscarded'), ('HPR-MIB', 'hprRtpDetectGaps'), ('HPR-MIB', 'hprRtpRateReqSends'), ('HPR-MIB', 'hprRtpOkErrPathSws'), ('HPR-MIB', 'hprRtpBadErrPathSws'), ('HPR-MIB', 'hprRtpOkOpPathSws'), ('HPR-MIB', 'hprRtpBadOpPathSws'), ('HPR-MIB', 'hprRtpCounterDisconTime'), ('HPR-MIB', 'hprRtpStatusStartTime'), ('HPR-MIB', 'hprRtpStatusEndTime'), ('HPR-MIB', 'hprRtpStatusRemNceId'), ('HPR-MIB', 'hprRtpStatusRemTcid'), ('HPR-MIB', 'hprRtpStatusRemCpName'), ('HPR-MIB', 'hprRtpStatusNewRscv'), ('HPR-MIB', 'hprRtpStatusOldRscv'), ('HPR-MIB', 'hprRtpStatusCause'), ('HPR-MIB', 'hprRtpStatusLastAttemptResult')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpr_rtp_conf_group = hprRtpConfGroup.setStatus('current') mibBuilder.exportSymbols('HPR-MIB', hprRtpTopic=hprRtpTopic, HprRtpCounter=HprRtpCounter, hprAnrOutTgNum=hprAnrOutTgNum, hprRtpMinSendRate=hprRtpMinSendRate, hprRtpRecvPackets=hprRtpRecvPackets, hprRtpConfGroup=hprRtpConfGroup, hprRtpState=hprRtpState, hprRtpGlobeCtrState=hprRtpGlobeCtrState, hprNceId=hprNceId, hprRtpStatusTable=hprRtpStatusTable, hprRtpOkOpPathSws=hprRtpOkOpPathSws, hprRtpGlobeConnSetups=hprRtpGlobeConnSetups, hprRtpLivenessTimer=hprRtpLivenessTimer, hprRtpShortReqTimeouts=hprRtpShortReqTimeouts, hprRtpStatusRemNceId=hprRtpStatusRemNceId, hprAnrRoutingTable=hprAnrRoutingTable, hprRtpRetrPackets=hprRtpRetrPackets, hprNceEntry=hprNceEntry, hprRtpSendBytes=hprRtpSendBytes, hprRtpSendPackets=hprRtpSendPackets, hprAnrType=hprAnrType, hprAnrRouting=hprAnrRouting, hprRtpBadErrPathSws=hprRtpBadErrPathSws, hprOperatorPathSwitchSupport=hprOperatorPathSwitchSupport, hprObjects=hprObjects, hprRtpGlobe=hprRtpGlobe, hprGlobalConfGroup=hprGlobalConfGroup, hprRtpLocNceId=hprRtpLocNceId, hprRtpLocTcid=hprRtpLocTcid, hprRtpDetectGaps=hprRtpDetectGaps, hprNceDefault=hprNceDefault, hprRtpStatusEntry=hprRtpStatusEntry, hprAnrLabel=hprAnrLabel, hprCompliance=hprCompliance, hprRtp=hprRtp, hprRtpPathSwTimer=hprRtpPathSwTimer, hprRtpRscv=hprRtpRscv, hprRtpOkErrPathSws=hprRtpOkErrPathSws, hprAnrCounterStateTime=hprAnrCounterStateTime, hprAnrPacketsReceived=hprAnrPacketsReceived, hprTransportUser=hprTransportUser, hprAnrOutTgDest=hprAnrOutTgDest, hprAnrRoutingEntry=hprAnrRoutingEntry, hprRtpStatusIndex=hprRtpStatusIndex, hprRtpStatusEndTime=hprRtpStatusEndTime, hprRtpStatusCause=hprRtpStatusCause, hprNceInstanceId=hprNceInstanceId, hprRtpRateReqSends=hprRtpRateReqSends, hprAnrCounterState=hprAnrCounterState, hprRtpEntry=hprRtpEntry, hprRtpStatusRemCpName=hprRtpStatusRemCpName, hprRtpStatusRemTcid=hprRtpStatusRemTcid, hprRtpCounterDisconTime=hprRtpCounterDisconTime, hprRtpCurSendRate=hprRtpCurSendRate, hprGroups=hprGroups, hprRtpSmRdTripDelay=hprRtpSmRdTripDelay, hprRtpStatusNewRscv=hprRtpStatusNewRscv, hprRtpStatusStartTime=hprRtpStatusStartTime, hprNceType=hprNceType, hprConformance=hprConformance, hprRtpStatusLocNceId=hprRtpStatusLocNceId, hprRtpGlobeCtrStateTime=hprRtpGlobeCtrStateTime, hprNodeCpName=hprNodeCpName, hprRtpUpTime=hprRtpUpTime, PYSNMP_MODULE_ID=hprMIB, hprGlobal=hprGlobal, HprNceTypes=HprNceTypes, hprRtpLivenessTimeouts=hprRtpLivenessTimeouts, hprRtpTable=hprRtpTable, hprAnrCounterDisconTime=hprAnrCounterDisconTime, hprRtpStatusLastAttemptResult=hprRtpStatusLastAttemptResult, hprRtpBadOpPathSws=hprRtpBadOpPathSws, hprRtpStatusLocTcid=hprRtpStatusLocTcid, hprRtpMaxSendRate=hprRtpMaxSendRate, hprRtpPacketsDiscarded=hprRtpPacketsDiscarded, hprRtpRemNceId=hprRtpRemNceId, hprRtpStatusOldRscv=hprRtpStatusOldRscv, hprAnrRoutingConfGroup=hprAnrRoutingConfGroup, hprRtpRemTcid=hprRtpRemTcid, hprMIB=hprMIB, hprCompliances=hprCompliances, hprAnrsAssigned=hprAnrsAssigned, hprNceTable=hprNceTable, hprRtpRecvBytes=hprRtpRecvBytes, hprRtpRemCpName=hprRtpRemCpName, hprRtpShortReqTimer=hprRtpShortReqTimer, hprTransportUserConfGroup=hprTransportUserConfGroup, hprRtpPathSwitchTrigger=hprRtpPathSwitchTrigger)
def get_binary_rep(data, spacing=0, separator=" "): format(i,'b').zfill(8) def bin_rep_string_arr(data): map() return [] def bin_rep_int_arr(data): return [] def bin_rep_unicode_arr(data): return [] def bin_rep_bytes_arr(data): return [] def hex_rep_string_arr(data): return [] def hex_rep_int_arr(data): return [] def hex_rep_unicode_arr(data): return [] def hex_rep_bytes_arr(data): return []
def get_binary_rep(data, spacing=0, separator=' '): format(i, 'b').zfill(8) def bin_rep_string_arr(data): map() return [] def bin_rep_int_arr(data): return [] def bin_rep_unicode_arr(data): return [] def bin_rep_bytes_arr(data): return [] def hex_rep_string_arr(data): return [] def hex_rep_int_arr(data): return [] def hex_rep_unicode_arr(data): return [] def hex_rep_bytes_arr(data): return []
# Accessing tuple elements using slicing my_tuple = ('p','r','o','g','r','a','m','i','n','g') # elements 2nd to 4th print(my_tuple[1:4]) # elements beginning to 4nd print(my_tuple[:-7]) # elements 8th to end print(my_tuple[7:]) # elements beginning to end print(my_tuple[:])
my_tuple = ('p', 'r', 'o', 'g', 'r', 'a', 'm', 'i', 'n', 'g') print(my_tuple[1:4]) print(my_tuple[:-7]) print(my_tuple[7:]) print(my_tuple[:])
image_width = 400 image_height = 400 prediction_size = 8 batch_size = 10 noise_ratio = 0.1
image_width = 400 image_height = 400 prediction_size = 8 batch_size = 10 noise_ratio = 0.1
# # PySNMP MIB module ALTEON-CHEETAH-NETWORK-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ALTEON-CHEETAH-NETWORK-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 17:05:12 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) # aws_switch, = mibBuilder.importSymbols("ALTEON-ROOT-MIB", "aws-switch") ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") NotificationType, Counter32, IpAddress, ObjectIdentity, Integer32, Gauge32, Bits, ModuleIdentity, Counter64, Unsigned32, TimeTicks, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "Counter32", "IpAddress", "ObjectIdentity", "Integer32", "Gauge32", "Bits", "ModuleIdentity", "Counter64", "Unsigned32", "TimeTicks", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier") DisplayString, TextualConvention, PhysAddress = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention", "PhysAddress") layer3 = ModuleIdentity((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3)) layer3.setRevisions(('2009-08-05 00:00',)) if mibBuilder.loadTexts: layer3.setLastUpdated('200908050000Z') if mibBuilder.loadTexts: layer3.setOrganization('Radware Ltd.') layer3Configs = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1)) layer3Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2)) layer3Info = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3)) layer3Oper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4)) ipInterfaceCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1)) ipGatewayCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2)) ipStaticRouteCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3)) ipForwardCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4)) vrrpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6)) arpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7)) ipBootpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8)) dnsCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9)) ipNwfCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10)) ipRmapCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11)) bgpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12)) ospfCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13)) ipGeneralCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14)) ipStaticArpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15)) rip2Cfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18)) arpStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2)) routeStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3)) dnsStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4)) vrrpStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5)) ospfStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6)) clearStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7)) ip6Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10)) icmp6Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11)) ip6gwStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12)) rip2Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13)) tcpStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14)) ipRoutingInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1)) arpInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2)) vrrpInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3)) ospfinfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4)) gatewayInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5)) nbrcacheInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7)) ipRoute6Info = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8)) ipIntfInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9)) rip2Info = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10)) rip2RoutesInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11)) allowedNwInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12)) vrrpOper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1)) ipOper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2)) ipInterfaceTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipInterfaceTableMax.setStatus('current') ipCurCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2), ) if mibBuilder.loadTexts: ipCurCfgIntfTable.setStatus('current') ipCurCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgIntfIndex")) if mibBuilder.loadTexts: ipCurCfgIntfEntry.setStatus('current') ipCurCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgIntfIndex.setStatus('current') ipCurCfgIntfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgIntfAddr.setStatus('current') ipCurCfgIntfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgIntfMask.setStatus('current') ipCurCfgIntfBroadcast = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 4), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgIntfBroadcast.setStatus('obsolete') ipCurCfgIntfVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgIntfVlan.setStatus('current') ipCurCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgIntfState.setStatus('current') ipCurCfgIntfBootpRelay = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgIntfBootpRelay.setStatus('current') ipCurCfgIntfIpVer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgIntfIpVer.setStatus('current') ipCurCfgIntfIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgIntfIpv6Addr.setStatus('current') ipCurCfgIntfPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgIntfPrefixLen.setStatus('current') ipCurCfgIntfRouteAdv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgIntfRouteAdv.setStatus('current') ipNewCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3), ) if mibBuilder.loadTexts: ipNewCfgIntfTable.setStatus('current') ipNewCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgIntfIndex")) if mibBuilder.loadTexts: ipNewCfgIntfEntry.setStatus('current') ipNewCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipNewCfgIntfIndex.setStatus('current') ipNewCfgIntfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 2), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgIntfAddr.setStatus('current') ipNewCfgIntfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 3), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgIntfMask.setStatus('current') ipNewCfgIntfBroadcast = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 4), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgIntfBroadcast.setStatus('obsolete') ipNewCfgIntfVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 5), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgIntfVlan.setStatus('current') ipNewCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgIntfState.setStatus('current') ipNewCfgIntfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgIntfDelete.setStatus('current') ipNewCfgIntfBootpRelay = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgIntfBootpRelay.setStatus('current') ipNewCfgIntfIpVer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgIntfIpVer.setStatus('current') ipNewCfgIntfIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgIntfIpv6Addr.setStatus('current') ipNewCfgIntfPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgIntfPrefixLen.setStatus('current') ipNewCfgIntfRouteAdv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgIntfRouteAdv.setStatus('current') ipCurCfgGwMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("strict", 1), ("roundrobin", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgGwMetric.setStatus('current') ipNewCfgGwMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("strict", 1), ("roundrobin", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ipNewCfgGwMetric.setStatus('current') ipGatewayTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipGatewayTableMax.setStatus('current') ipCurCfgGwTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4), ) if mibBuilder.loadTexts: ipCurCfgGwTable.setStatus('current') ipCurCfgGwEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgGwIndex")) if mibBuilder.loadTexts: ipCurCfgGwEntry.setStatus('current') ipCurCfgGwIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgGwIndex.setStatus('current') ipCurCfgGwAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgGwAddr.setStatus('current') ipCurCfgGwInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgGwInterval.setStatus('current') ipCurCfgGwRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgGwRetry.setStatus('current') ipCurCfgGwState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgGwState.setStatus('current') ipCurCfgGwArp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgGwArp.setStatus('current') ipCurCfgGwVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgGwVlan.setStatus('current') ipCurCfgGwPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("low", 1), ("high", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgGwPriority.setStatus('current') ipCurCfgGwIpVer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgGwIpVer.setStatus('current') ipCurCfgGwIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgGwIpv6Addr.setStatus('current') ipNewCfgGwTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5), ) if mibBuilder.loadTexts: ipNewCfgGwTable.setStatus('current') ipNewCfgGwEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgGwIndex")) if mibBuilder.loadTexts: ipNewCfgGwEntry.setStatus('current') ipNewCfgGwIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipNewCfgGwIndex.setStatus('current') ipNewCfgGwAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 2), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgGwAddr.setStatus('current') ipNewCfgGwInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgGwInterval.setStatus('current') ipNewCfgGwRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgGwRetry.setStatus('current') ipNewCfgGwState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgGwState.setStatus('current') ipNewCfgGwDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgGwDelete.setStatus('current') ipNewCfgGwArp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgGwArp.setStatus('current') ipNewCfgGwVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 8), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgGwVlan.setStatus('current') ipNewCfgGwPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("low", 1), ("high", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgGwPriority.setStatus('current') ipNewCfgGwIpVer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgGwIpVer.setStatus('current') ipNewCfgGwIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgGwIpv6Addr.setStatus('current') ipStaticRouteTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipStaticRouteTableMaxSize.setStatus('current') ipCurCfgStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2), ) if mibBuilder.loadTexts: ipCurCfgStaticRouteTable.setStatus('current') ipCurCfgStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgStaticRouteIndx")) if mibBuilder.loadTexts: ipCurCfgStaticRouteEntry.setStatus('current') ipCurCfgStaticRouteIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgStaticRouteIndx.setStatus('current') ipCurCfgStaticRouteDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgStaticRouteDestIp.setStatus('current') ipCurCfgStaticRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgStaticRouteMask.setStatus('current') ipCurCfgStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 4), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgStaticRouteGateway.setStatus('current') ipCurCfgStaticRouteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgStaticRouteInterface.setStatus('current') ipNewCfgStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3), ) if mibBuilder.loadTexts: ipNewCfgStaticRouteTable.setStatus('current') ipNewCfgStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgStaticRouteIndx")) if mibBuilder.loadTexts: ipNewCfgStaticRouteEntry.setStatus('current') ipNewCfgStaticRouteIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipNewCfgStaticRouteIndx.setStatus('current') ipNewCfgStaticRouteDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 2), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgStaticRouteDestIp.setStatus('current') ipNewCfgStaticRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 3), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgStaticRouteMask.setStatus('current') ipNewCfgStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 4), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgStaticRouteGateway.setStatus('current') ipNewCfgStaticRouteAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgStaticRouteAction.setStatus('current') ipNewCfgStaticRouteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 6), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgStaticRouteInterface.setStatus('current') ipv6CurCfgStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4), ) if mibBuilder.loadTexts: ipv6CurCfgStaticRouteTable.setStatus('current') ipv6CurCfgStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipv6CurCfgStaticRouteIndx")) if mibBuilder.loadTexts: ipv6CurCfgStaticRouteEntry.setStatus('current') ipv6CurCfgStaticRouteIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipv6CurCfgStaticRouteIndx.setStatus('current') ipv6CurCfgStaticRouteDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipv6CurCfgStaticRouteDestIp.setStatus('current') ipv6CurCfgStaticRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipv6CurCfgStaticRouteMask.setStatus('current') ipv6CurCfgStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipv6CurCfgStaticRouteGateway.setStatus('current') ipv6CurCfgStaticRouteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipv6CurCfgStaticRouteInterface.setStatus('current') ipv6NewCfgStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5), ) if mibBuilder.loadTexts: ipv6NewCfgStaticRouteTable.setStatus('current') ipv6NewCfgStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipv6NewCfgStaticRouteIndx")) if mibBuilder.loadTexts: ipv6NewCfgStaticRouteEntry.setStatus('current') ipv6NewCfgStaticRouteIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 1), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipv6NewCfgStaticRouteIndx.setStatus('current') ipv6NewCfgStaticRouteDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipv6NewCfgStaticRouteDestIp.setStatus('current') ipv6NewCfgStaticRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipv6NewCfgStaticRouteMask.setStatus('current') ipv6NewCfgStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipv6NewCfgStaticRouteGateway.setStatus('current') ipv6NewCfgStaticRouteAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipv6NewCfgStaticRouteAction.setStatus('current') ipv6NewCfgStaticRouteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipv6NewCfgStaticRouteInterface.setStatus('current') ripCurCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1), ) if mibBuilder.loadTexts: ripCurCfgIntfTable.setStatus('current') ripCurCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ripCurCfgIntfIndex")) if mibBuilder.loadTexts: ripCurCfgIntfEntry.setStatus('current') ripCurCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfIndex.setStatus('current') ripCurCfgIntfVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("ripVersion1", 1), ("ripVersion2", 2), ("both", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfVersion.setStatus('current') ripCurCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfState.setStatus('current') ripCurCfgIntfListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfListen.setStatus('current') ripCurCfgIntfDefListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfDefListen.setStatus('obsolete') ripCurCfgIntfTrigUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfTrigUpdate.setStatus('current') ripCurCfgIntfMcastUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfMcastUpdate.setStatus('current') ripCurCfgIntfPoisonReverse = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfPoisonReverse.setStatus('current') ripCurCfgIntfSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfSupply.setStatus('current') ripCurCfgIntfMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfMetric.setStatus('current') ripCurCfgIntfAuth = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("password", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfAuth.setStatus('current') ripCurCfgIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfKey.setStatus('current') ripCurCfgIntfDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("both", 1), ("listen", 2), ("supply", 3), ("none", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripCurCfgIntfDefault.setStatus('current') ripNewCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2), ) if mibBuilder.loadTexts: ripNewCfgIntfTable.setStatus('current') ripNewCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ripNewCfgIntfIndex")) if mibBuilder.loadTexts: ripNewCfgIntfEntry.setStatus('current') ripNewCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripNewCfgIntfIndex.setStatus('current') ripNewCfgIntfVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("ripVersion1", 1), ("ripVersion2", 2), ("both", 3)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ripNewCfgIntfVersion.setStatus('current') ripNewCfgIntfSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ripNewCfgIntfSupply.setStatus('current') ripNewCfgIntfListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ripNewCfgIntfListen.setStatus('current') ripNewCfgIntfDefListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ripNewCfgIntfDefListen.setStatus('obsolete') ripNewCfgIntfTrigUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ripNewCfgIntfTrigUpdate.setStatus('current') ripNewCfgIntfMcastUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ripNewCfgIntfMcastUpdate.setStatus('current') ripNewCfgIntfPoisonReverse = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ripNewCfgIntfPoisonReverse.setStatus('current') ripNewCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ripNewCfgIntfState.setStatus('current') ripNewCfgIntfMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ripNewCfgIntfMetric.setStatus('current') ripNewCfgIntfAuth = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("password", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ripNewCfgIntfAuth.setStatus('current') ripNewCfgIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ripNewCfgIntfKey.setStatus('current') ripNewCfgIntfDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("both", 1), ("listen", 2), ("supply", 3), ("none", 4)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ripNewCfgIntfDefault.setStatus('current') ripGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3)) rip2CurCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: rip2CurCfgState.setStatus('current') rip2NewCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: rip2NewCfgState.setStatus('current') rip2CurCfgUpdatePeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readonly") if mibBuilder.loadTexts: rip2CurCfgUpdatePeriod.setStatus('current') rip2NewCfgUpdatePeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readwrite") if mibBuilder.loadTexts: rip2NewCfgUpdatePeriod.setStatus('current') rip2CurCfgVip = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: rip2CurCfgVip.setStatus('current') rip2NewCfgVip = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: rip2NewCfgVip.setStatus('current') rip2CurCfgStaticSupply = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: rip2CurCfgStaticSupply.setStatus('current') rip2NewCfgStaticSupply = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: rip2NewCfgStaticSupply.setStatus('current') ipFwdGeneralCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1)) ipFwdCurCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("on", 2), ("off", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdCurCfgState.setStatus('current') ipFwdNewCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("on", 2), ("off", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ipFwdNewCfgState.setStatus('current') ipFwdCurCfgDirectedBcast = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdCurCfgDirectedBcast.setStatus('current') ipFwdNewCfgDirectedBcast = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ipFwdNewCfgDirectedBcast.setStatus('current') ipFwdCurCfgNoICMPRedirect = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdCurCfgNoICMPRedirect.setStatus('current') ipFwdNewCfgNoICMPRedirect = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ipFwdNewCfgNoICMPRedirect.setStatus('current') ipFwdCurCfgRtCache = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdCurCfgRtCache.setStatus('current') ipFwdNewCfgRtCache = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ipFwdNewCfgRtCache.setStatus('current') ipFwdPortTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdPortTableMaxSize.setStatus('current') ipFwdCurCfgPortTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3), ) if mibBuilder.loadTexts: ipFwdCurCfgPortTable.setStatus('current') ipFwdCurCfgPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipFwdCurCfgPortIndex")) if mibBuilder.loadTexts: ipFwdCurCfgPortEntry.setStatus('current') ipFwdCurCfgPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdCurCfgPortIndex.setStatus('current') ipFwdCurCfgPortState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdCurCfgPortState.setStatus('current') ipFwdNewCfgPortTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4), ) if mibBuilder.loadTexts: ipFwdNewCfgPortTable.setStatus('current') ipFwdNewCfgPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipFwdNewCfgPortIndex")) if mibBuilder.loadTexts: ipFwdNewCfgPortEntry.setStatus('current') ipFwdNewCfgPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdNewCfgPortIndex.setStatus('current') ipFwdNewCfgPortState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ipFwdNewCfgPortState.setStatus('current') ipFwdLocalTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdLocalTableMaxSize.setStatus('current') ipFwdCurCfgLocalTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6), ) if mibBuilder.loadTexts: ipFwdCurCfgLocalTable.setStatus('current') ipFwdCurCfgLocalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipFwdCurCfgLocalIndex")) if mibBuilder.loadTexts: ipFwdCurCfgLocalEntry.setStatus('current') ipFwdCurCfgLocalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdCurCfgLocalIndex.setStatus('current') ipFwdCurCfgLocalSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdCurCfgLocalSubnet.setStatus('current') ipFwdCurCfgLocalMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdCurCfgLocalMask.setStatus('current') ipFwdNewCfgLocalTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7), ) if mibBuilder.loadTexts: ipFwdNewCfgLocalTable.setStatus('current') ipFwdNewCfgLocalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipFwdNewCfgLocalIndex")) if mibBuilder.loadTexts: ipFwdNewCfgLocalEntry.setStatus('current') ipFwdNewCfgLocalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipFwdNewCfgLocalIndex.setStatus('current') ipFwdNewCfgLocalSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 2), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipFwdNewCfgLocalSubnet.setStatus('current') ipFwdNewCfgLocalMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 3), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipFwdNewCfgLocalMask.setStatus('current') ipFwdNewCfgLocalDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipFwdNewCfgLocalDelete.setStatus('current') arpCurCfgReARPPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 120))).setMaxAccess("readonly") if mibBuilder.loadTexts: arpCurCfgReARPPeriod.setStatus('current') arpNewCfgReARPPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 120))).setMaxAccess("readwrite") if mibBuilder.loadTexts: arpNewCfgReARPPeriod.setStatus('current') ipCurCfgBootpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgBootpAddr.setStatus('current') ipNewCfgBootpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ipNewCfgBootpAddr.setStatus('current') ipCurCfgBootpAddr2 = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgBootpAddr2.setStatus('current') ipNewCfgBootpAddr2 = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 4), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ipNewCfgBootpAddr2.setStatus('current') ipCurCfgBootpState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgBootpState.setStatus('current') ipNewCfgBootpState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ipNewCfgBootpState.setStatus('current') vrrpGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1)) vrrpCurCfgGenState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgGenState.setStatus('current') vrrpNewCfgGenState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vrrpNewCfgGenState.setStatus('current') vrrpCurCfgGenTckVirtRtrInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgGenTckVirtRtrInc.setStatus('current') vrrpNewCfgGenTckVirtRtrInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vrrpNewCfgGenTckVirtRtrInc.setStatus('current') vrrpCurCfgGenTckIpIntfInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgGenTckIpIntfInc.setStatus('current') vrrpNewCfgGenTckIpIntfInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vrrpNewCfgGenTckIpIntfInc.setStatus('current') vrrpCurCfgGenTckVlanPortInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgGenTckVlanPortInc.setStatus('current') vrrpNewCfgGenTckVlanPortInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vrrpNewCfgGenTckVlanPortInc.setStatus('current') vrrpCurCfgGenTckL4PortInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgGenTckL4PortInc.setStatus('current') vrrpNewCfgGenTckL4PortInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vrrpNewCfgGenTckL4PortInc.setStatus('current') vrrpCurCfgGenTckRServerInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgGenTckRServerInc.setStatus('current') vrrpNewCfgGenTckRServerInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vrrpNewCfgGenTckRServerInc.setStatus('current') vrrpCurCfgGenTckHsrpInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgGenTckHsrpInc.setStatus('current') vrrpNewCfgGenTckHsrpInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vrrpNewCfgGenTckHsrpInc.setStatus('current') vrrpCurCfgGenHotstandby = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgGenHotstandby.setStatus('current') vrrpNewCfgGenHotstandby = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vrrpNewCfgGenHotstandby.setStatus('current') vrrpCurCfgGenTckHsrvInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgGenTckHsrvInc.setStatus('current') vrrpNewCfgGenTckHsrvInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vrrpNewCfgGenTckHsrvInc.setStatus('current') vrrpCurCfgGenHoldoff = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgGenHoldoff.setStatus('current') vrrpNewCfgGenHoldoff = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vrrpNewCfgGenHoldoff.setStatus('current') vrrpVirtRtrTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpVirtRtrTableMaxSize.setStatus('current') vrrpCurCfgVirtRtrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3), ) if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTable.setStatus('current') vrrpCurCfgVirtRtrTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpCurCfgVirtRtrIndx")) if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTableEntry.setStatus('current') vrrpCurCfgVirtRtrIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIndx.setStatus('current') vrrpCurCfgVirtRtrID = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrID.setStatus('current') vrrpCurCfgVirtRtrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrAddr.setStatus('current') vrrpCurCfgVirtRtrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIfIndex.setStatus('current') vrrpCurCfgVirtRtrInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrInterval.setStatus('current') vrrpCurCfgVirtRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrPriority.setStatus('current') vrrpCurCfgVirtRtrPreempt = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrPreempt.setStatus('current') vrrpCurCfgVirtRtrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrState.setStatus('current') vrrpCurCfgVirtRtrSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrSharing.setStatus('current') vrrpCurCfgVirtRtrTckVirtRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckVirtRtr.setStatus('current') vrrpCurCfgVirtRtrTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckIpIntf.setStatus('current') vrrpCurCfgVirtRtrTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckVlanPort.setStatus('current') vrrpCurCfgVirtRtrTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckL4Port.setStatus('current') vrrpCurCfgVirtRtrTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckRServer.setStatus('current') vrrpCurCfgVirtRtrTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckHsrp.setStatus('current') vrrpCurCfgVirtRtrTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckHsrv.setStatus('current') vrrpCurCfgVirtRtrVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v4", 1), ("v6", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVersion.setStatus('current') vrrpCurCfgVirtRtrIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 18), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIpv6Addr.setStatus('current') vrrpCurCfgVirtRtrIpv6Interval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1045))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIpv6Interval.setStatus('current') vrrpNewCfgVirtRtrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4), ) if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTable.setStatus('current') vrrpNewCfgVirtRtrTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpNewCfgVirtRtrIndx")) if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTableEntry.setStatus('current') vrrpNewCfgVirtRtrIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIndx.setStatus('current') vrrpNewCfgVirtRtrID = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrID.setStatus('current') vrrpNewCfgVirtRtrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 3), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrAddr.setStatus('current') vrrpNewCfgVirtRtrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 4), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIfIndex.setStatus('current') vrrpNewCfgVirtRtrInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrInterval.setStatus('current') vrrpNewCfgVirtRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrPriority.setStatus('current') vrrpNewCfgVirtRtrPreempt = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrPreempt.setStatus('current') vrrpNewCfgVirtRtrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrState.setStatus('current') vrrpNewCfgVirtRtrDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrDelete.setStatus('current') vrrpNewCfgVirtRtrSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrSharing.setStatus('current') vrrpNewCfgVirtRtrTckVirtRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckVirtRtr.setStatus('current') vrrpNewCfgVirtRtrTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckIpIntf.setStatus('current') vrrpNewCfgVirtRtrTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckVlanPort.setStatus('current') vrrpNewCfgVirtRtrTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckL4Port.setStatus('current') vrrpNewCfgVirtRtrTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckRServer.setStatus('current') vrrpNewCfgVirtRtrTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckHsrp.setStatus('current') vrrpNewCfgVirtRtrTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckHsrv.setStatus('current') vrrpNewCfgVirtRtrVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v4", 1), ("v6", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVersion.setStatus('current') vrrpNewCfgVirtRtrIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 19), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIpv6Addr.setStatus('current') vrrpNewCfgVirtRtrIpv6Interval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIpv6Interval.setStatus('current') vrrpIfTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpIfTableMaxSize.setStatus('current') vrrpCurCfgIfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6), ) if mibBuilder.loadTexts: vrrpCurCfgIfTable.setStatus('current') vrrpCurCfgIfTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpCurCfgIfIndx")) if mibBuilder.loadTexts: vrrpCurCfgIfTableEntry.setStatus('current') vrrpCurCfgIfIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgIfIndx.setStatus('current') vrrpCurCfgIfAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("simple-text-password", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgIfAuthType.setStatus('current') vrrpCurCfgIfPasswd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgIfPasswd.setStatus('current') vrrpCurCfgIfIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 4), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgIfIpAddr.setStatus('current') vrrpNewCfgIfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7), ) if mibBuilder.loadTexts: vrrpNewCfgIfTable.setStatus('current') vrrpNewCfgIfTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpNewCfgIfIndx")) if mibBuilder.loadTexts: vrrpNewCfgIfTableEntry.setStatus('current') vrrpNewCfgIfIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpNewCfgIfIndx.setStatus('current') vrrpNewCfgIfAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("simple-text-password", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgIfAuthType.setStatus('current') vrrpNewCfgIfPasswd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 7))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgIfPasswd.setStatus('current') vrrpNewCfgIfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgIfDelete.setStatus('current') vrrpVirtRtrGrpTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpVirtRtrGrpTableMaxSize.setStatus('current') vrrpCurCfgVirtRtrGrpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9), ) if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTable.setStatus('current') vrrpCurCfgVirtRtrGrpTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpCurCfgVirtRtrGrpIndx")) if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTableEntry.setStatus('current') vrrpCurCfgVirtRtrGrpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIndx.setStatus('current') vrrpCurCfgVirtRtrGrpID = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpID.setStatus('current') vrrpCurCfgVirtRtrGrpIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIfIndex.setStatus('current') vrrpCurCfgVirtRtrGrpInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpInterval.setStatus('current') vrrpCurCfgVirtRtrGrpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpPriority.setStatus('current') vrrpCurCfgVirtRtrGrpPreempt = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpPreempt.setStatus('current') vrrpCurCfgVirtRtrGrpState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpState.setStatus('current') vrrpCurCfgVirtRtrGrpSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpSharing.setStatus('current') vrrpCurCfgVirtRtrGrpTckVirtRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckVirtRtr.setStatus('current') vrrpCurCfgVirtRtrGrpTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckIpIntf.setStatus('current') vrrpCurCfgVirtRtrGrpTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckVlanPort.setStatus('current') vrrpCurCfgVirtRtrGrpTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckL4Port.setStatus('current') vrrpCurCfgVirtRtrGrpTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckRServer.setStatus('current') vrrpCurCfgVirtRtrGrpTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckHsrp.setStatus('current') vrrpCurCfgVirtRtrGrpTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckHsrv.setStatus('current') vrrpCurCfgVirtRtrGrpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v4", 1), ("v6", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpVersion.setStatus('current') vrrpCurCfgVirtRtrGrpIpv6Interval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIpv6Interval.setStatus('current') vrrpNewCfgVirtRtrGrpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10), ) if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTable.setStatus('current') vrrpNewCfgVirtRtrGrpTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpNewCfgVirtRtrGrpIndx")) if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTableEntry.setStatus('current') vrrpNewCfgVirtRtrGrpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIndx.setStatus('current') vrrpNewCfgVirtRtrGrpID = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpID.setStatus('current') vrrpNewCfgVirtRtrGrpIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 3), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIfIndex.setStatus('current') vrrpNewCfgVirtRtrGrpInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpInterval.setStatus('current') vrrpNewCfgVirtRtrGrpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpPriority.setStatus('current') vrrpNewCfgVirtRtrGrpPreempt = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpPreempt.setStatus('current') vrrpNewCfgVirtRtrGrpState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpState.setStatus('current') vrrpNewCfgVirtRtrGrpDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpDelete.setStatus('current') vrrpNewCfgVirtRtrGrpSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpSharing.setStatus('current') vrrpNewCfgVirtRtrGrpTckVirtRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckVirtRtr.setStatus('current') vrrpNewCfgVirtRtrGrpTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckIpIntf.setStatus('current') vrrpNewCfgVirtRtrGrpTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckVlanPort.setStatus('current') vrrpNewCfgVirtRtrGrpTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckL4Port.setStatus('current') vrrpNewCfgVirtRtrGrpTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckRServer.setStatus('current') vrrpNewCfgVirtRtrGrpTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckHsrp.setStatus('current') vrrpNewCfgVirtRtrGrpTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckHsrv.setStatus('current') vrrpNewCfgVirtRtrGrpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v4", 1), ("v6", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpVersion.setStatus('current') vrrpNewCfgVirtRtrGrpIpv6Interval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIpv6Interval.setStatus('current') vrrpVirtRtrVrGrpTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpVirtRtrVrGrpTableMaxSize.setStatus('current') vrrpCurCfgVirtRtrVrGrpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12), ) if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTable.setStatus('current') vrrpCurCfgVirtRtrVrGrpTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpCurCfgVirtRtrVrGrpIndx")) if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTableEntry.setStatus('current') vrrpCurCfgVirtRtrVrGrpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpIndx.setStatus('current') vrrpCurCfgVirtRtrVrGrpName = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpName.setStatus('current') vrrpCurCfgVirtRtrVrGrpState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpState.setStatus('current') vrrpCurCfgVirtRtrVrGrpBmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 4), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpBmap.setStatus('current') vrrpCurCfgVirtRtrVrGrpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpPriority.setStatus('current') vrrpCurCfgVirtRtrVrGrpTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckIpIntf.setStatus('current') vrrpCurCfgVirtRtrVrGrpTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckVlanPort.setStatus('current') vrrpCurCfgVirtRtrVrGrpTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckL4Port.setStatus('current') vrrpCurCfgVirtRtrVrGrpTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckRServer.setStatus('current') vrrpCurCfgVirtRtrVrGrpTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckHsrp.setStatus('current') vrrpCurCfgVirtRtrVrGrpTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckHsrv.setStatus('current') vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1024))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo.setStatus('current') vrrpCurCfgVirtRtrVrGrpAdd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1024))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpAdd.setStatus('current') vrrpCurCfgVirtRtrVrGrpAdverInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpAdverInterval.setStatus('current') vrrpCurCfgVirtRtrVrGrpPreemption = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpPreemption.setStatus('current') vrrpCurCfgVirtRtrVrGrpSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpSharing.setStatus('current') vrrpNewCfgVirtRtrVrGrpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13), ) if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTable.setStatus('current') vrrpNewCfgVirtRtrVrGrpTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpNewCfgVirtRtrVrGrpIndx")) if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTableEntry.setStatus('current') vrrpNewCfgVirtRtrVrGrpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpIndx.setStatus('current') vrrpNewCfgVirtRtrVrGrpName = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpName.setStatus('current') vrrpNewCfgVirtRtrVrGrpAdd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpAdd.setStatus('current') vrrpNewCfgVirtRtrVrGrpRem = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpRem.setStatus('current') vrrpNewCfgVirtRtrVrGrpState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpState.setStatus('current') vrrpNewCfgVirtRtrVrGrpDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpDelete.setStatus('current') vrrpNewCfgVirtRtrVrGrpBmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 7), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpBmap.setStatus('current') vrrpNewCfgVirtRtrVrGrpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpPriority.setStatus('current') vrrpNewCfgVirtRtrVrGrpTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckIpIntf.setStatus('current') vrrpNewCfgVirtRtrVrGrpTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckVlanPort.setStatus('current') vrrpNewCfgVirtRtrVrGrpTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckL4Port.setStatus('current') vrrpNewCfgVirtRtrVrGrpTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckRServer.setStatus('current') vrrpNewCfgVirtRtrVrGrpTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckHsrp.setStatus('current') vrrpNewCfgVirtRtrVrGrpTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckHsrv.setStatus('current') vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1024))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo.setStatus('current') vrrpNewCfgVirtRtrVrGrpAdverInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpAdverInterval.setStatus('current') vrrpNewCfgVirtRtrVrGrpPreemption = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpPreemption.setStatus('current') vrrpNewCfgVirtRtrVrGrpSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpSharing.setStatus('current') dnsCurCfgPrimaryIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: dnsCurCfgPrimaryIpAddr.setStatus('current') dnsNewCfgPrimaryIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dnsNewCfgPrimaryIpAddr.setStatus('current') dnsCurCfgSecondaryIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: dnsCurCfgSecondaryIpAddr.setStatus('current') dnsNewCfgSecondaryIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 4), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dnsNewCfgSecondaryIpAddr.setStatus('current') dnsCurCfgDomainName = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 191))).setMaxAccess("readonly") if mibBuilder.loadTexts: dnsCurCfgDomainName.setStatus('current') dnsNewCfgDomainName = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 191))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dnsNewCfgDomainName.setStatus('current') dnsCurCfgPrimaryIpv6Addr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly") if mibBuilder.loadTexts: dnsCurCfgPrimaryIpv6Addr.setStatus('current') dnsNewCfgPrimaryIpv6Addr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dnsNewCfgPrimaryIpv6Addr.setStatus('current') dnsCurCfgSecondaryIpv6Addr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly") if mibBuilder.loadTexts: dnsCurCfgSecondaryIpv6Addr.setStatus('current') dnsNewCfgSecondaryIpv6Addr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dnsNewCfgSecondaryIpv6Addr.setStatus('current') ipNwfTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipNwfTableMax.setStatus('current') ipCurCfgNwfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2), ) if mibBuilder.loadTexts: ipCurCfgNwfTable.setStatus('current') ipCurCfgNwfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgNwfIndex")) if mibBuilder.loadTexts: ipCurCfgNwfEntry.setStatus('current') ipCurCfgNwfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgNwfIndex.setStatus('current') ipCurCfgNwfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgNwfAddr.setStatus('current') ipCurCfgNwfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgNwfMask.setStatus('current') ipCurCfgNwfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgNwfState.setStatus('current') ipNewCfgNwfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3), ) if mibBuilder.loadTexts: ipNewCfgNwfTable.setStatus('current') ipNewCfgNwfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgNwfIndex")) if mibBuilder.loadTexts: ipNewCfgNwfEntry.setStatus('current') ipNewCfgNwfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipNewCfgNwfIndex.setStatus('current') ipNewCfgNwfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 2), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgNwfAddr.setStatus('current') ipNewCfgNwfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 3), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgNwfMask.setStatus('current') ipNewCfgNwfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgNwfState.setStatus('current') ipNewCfgNwfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgNwfDelete.setStatus('current') ipRmapTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRmapTableMax.setStatus('current') ipCurCfgRmapTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2), ) if mibBuilder.loadTexts: ipCurCfgRmapTable.setStatus('current') ipCurCfgRmapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgRmapIndex")) if mibBuilder.loadTexts: ipCurCfgRmapEntry.setStatus('current') ipCurCfgRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgRmapIndex.setStatus('current') ipCurCfgRmapLp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgRmapLp.setStatus('current') ipCurCfgRmapMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgRmapMetric.setStatus('current') ipCurCfgRmapPrec = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgRmapPrec.setStatus('current') ipCurCfgRmapWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgRmapWeight.setStatus('current') ipCurCfgRmapState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgRmapState.setStatus('current') ipCurCfgRmapAp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 18))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgRmapAp.setStatus('current') ipCurCfgRmapMetricType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgRmapMetricType.setStatus('current') ipNewCfgRmapTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3), ) if mibBuilder.loadTexts: ipNewCfgRmapTable.setStatus('current') ipNewCfgRmapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgRmapIndex")) if mibBuilder.loadTexts: ipNewCfgRmapEntry.setStatus('current') ipNewCfgRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipNewCfgRmapIndex.setStatus('current') ipNewCfgRmapLp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgRmapLp.setStatus('current') ipNewCfgRmapMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgRmapMetric.setStatus('current') ipNewCfgRmapPrec = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgRmapPrec.setStatus('current') ipNewCfgRmapWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgRmapWeight.setStatus('current') ipNewCfgRmapState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgRmapState.setStatus('current') ipNewCfgRmapAp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 18))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgRmapAp.setStatus('current') ipNewCfgRmapMetricType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgRmapMetricType.setStatus('current') ipNewCfgRmapDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgRmapDelete.setStatus('current') ipAlistTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipAlistTableMax.setStatus('current') ipCurCfgAlistTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5), ) if mibBuilder.loadTexts: ipCurCfgAlistTable.setStatus('current') ipCurCfgAlistEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgAlistRmapIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgAlistIndex")) if mibBuilder.loadTexts: ipCurCfgAlistEntry.setStatus('current') ipCurCfgAlistRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgAlistRmapIndex.setStatus('current') ipCurCfgAlistIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgAlistIndex.setStatus('current') ipCurCfgAlistNwf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgAlistNwf.setStatus('current') ipCurCfgAlistMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgAlistMetric.setStatus('current') ipCurCfgAlistAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permit", 1), ("deny", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgAlistAction.setStatus('current') ipCurCfgAlistState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgAlistState.setStatus('current') ipNewCfgAlistTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6), ) if mibBuilder.loadTexts: ipNewCfgAlistTable.setStatus('current') ipNewCfgAlistEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgAlistRmapIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgAlistIndex")) if mibBuilder.loadTexts: ipNewCfgAlistEntry.setStatus('current') ipNewCfgAlistRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipNewCfgAlistRmapIndex.setStatus('current') ipNewCfgAlistIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipNewCfgAlistIndex.setStatus('current') ipNewCfgAlistNwf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgAlistNwf.setStatus('current') ipNewCfgAlistMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgAlistMetric.setStatus('current') ipNewCfgAlistAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permit", 1), ("deny", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgAlistAction.setStatus('current') ipNewCfgAlistState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgAlistState.setStatus('current') ipNewCfgAlistDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgAlistDelete.setStatus('current') ipAspathTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipAspathTableMax.setStatus('current') ipCurCfgAspathTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8), ) if mibBuilder.loadTexts: ipCurCfgAspathTable.setStatus('current') ipCurCfgAspathEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgAspathRmapIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgAlistIndex")) if mibBuilder.loadTexts: ipCurCfgAspathEntry.setStatus('current') ipCurCfgAspathRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgAspathRmapIndex.setStatus('current') ipCurCfgAspathIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgAspathIndex.setStatus('current') ipCurCfgAspathAS = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgAspathAS.setStatus('current') ipCurCfgAspathAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permit", 1), ("deny", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgAspathAction.setStatus('current') ipCurCfgAspathState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgAspathState.setStatus('current') ipNewCfgAspathTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9), ) if mibBuilder.loadTexts: ipNewCfgAspathTable.setStatus('current') ipNewCfgAspathEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgAspathRmapIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgAspathIndex")) if mibBuilder.loadTexts: ipNewCfgAspathEntry.setStatus('current') ipNewCfgAspathRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipNewCfgAspathRmapIndex.setStatus('current') ipNewCfgAspathIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipNewCfgAspathIndex.setStatus('current') ipNewCfgAspathAS = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgAspathAS.setStatus('current') ipNewCfgAspathAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permit", 1), ("deny", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgAspathAction.setStatus('current') ipNewCfgAspathState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgAspathState.setStatus('current') ipNewCfgAspathDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgAspathDelete.setStatus('current') bgpGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1)) bgpCurCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgState.setStatus('current') bgpNewCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bgpNewCfgState.setStatus('current') bgpCurCfgLocalPref = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967294))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgLocalPref.setStatus('current') bgpNewCfgLocalPref = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967294))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bgpNewCfgLocalPref.setStatus('current') bgpCurCfgMaxASPath = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 127))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgMaxASPath.setStatus('current') bgpNewCfgMaxASPath = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 127))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bgpNewCfgMaxASPath.setStatus('current') bgpCurCfgASNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgASNumber.setStatus('current') bgpNewCfgASNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bgpNewCfgASNumber.setStatus('current') bgpPeerTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpPeerTableMax.setStatus('current') bgpCurCfgPeerTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3), ) if mibBuilder.loadTexts: bgpCurCfgPeerTable.setStatus('current') bgpCurCfgPeerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "bgpCurCfgPeerIndex")) if mibBuilder.loadTexts: bgpCurCfgPeerEntry.setStatus('current') bgpCurCfgPeerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerIndex.setStatus('current') bgpCurCfgPeerRemoteAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerRemoteAddr.setStatus('current') bgpCurCfgPeerRemoteAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerRemoteAs.setStatus('current') bgpCurCfgPeerTtl = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerTtl.setStatus('current') bgpCurCfgPeerState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerState.setStatus('current') bgpCurCfgPeerMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967294))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerMetric.setStatus('current') bgpCurCfgPeerDefaultAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("import", 2), ("originate", 3), ("redistribute", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerDefaultAction.setStatus('current') bgpCurCfgPeerOspfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerOspfState.setStatus('current') bgpCurCfgPeerFixedState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerFixedState.setStatus('current') bgpCurCfgPeerStaticState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerStaticState.setStatus('current') bgpCurCfgPeerVipState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerVipState.setStatus('current') bgpCurCfgPeerInRmapList = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 16), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerInRmapList.setStatus('current') bgpCurCfgPeerOutRmapList = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 17), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerOutRmapList.setStatus('current') bgpCurCfgPeerHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerHoldTime.setStatus('current') bgpCurCfgPeerKeepAlive = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 21845))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerKeepAlive.setStatus('current') bgpCurCfgPeerMinTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerMinTime.setStatus('current') bgpCurCfgPeerConRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerConRetry.setStatus('current') bgpCurCfgPeerMinAS = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerMinAS.setStatus('current') bgpCurCfgPeerRipState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgPeerRipState.setStatus('current') bgpNewCfgPeerTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4), ) if mibBuilder.loadTexts: bgpNewCfgPeerTable.setStatus('current') bgpNewCfgPeerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "bgpNewCfgPeerIndex")) if mibBuilder.loadTexts: bgpNewCfgPeerEntry.setStatus('current') bgpNewCfgPeerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpNewCfgPeerIndex.setStatus('current') bgpNewCfgPeerRemoteAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 2), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerRemoteAddr.setStatus('current') bgpNewCfgPeerRemoteAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerRemoteAs.setStatus('current') bgpNewCfgPeerTtl = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerTtl.setStatus('current') bgpNewCfgPeerState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerState.setStatus('current') bgpNewCfgPeerDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerDelete.setStatus('current') bgpNewCfgPeerMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967294))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerMetric.setStatus('current') bgpNewCfgPeerDefaultAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("import", 2), ("originate", 3), ("redistribute", 4)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerDefaultAction.setStatus('current') bgpNewCfgPeerOspfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerOspfState.setStatus('current') bgpNewCfgPeerFixedState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerFixedState.setStatus('current') bgpNewCfgPeerStaticState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerStaticState.setStatus('current') bgpNewCfgPeerVipState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerVipState.setStatus('current') bgpNewCfgPeerInRmapList = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 16), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpNewCfgPeerInRmapList.setStatus('current') bgpNewCfgPeerOutRmapList = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 17), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpNewCfgPeerOutRmapList.setStatus('current') bgpNewCfgPeerAddInRmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 18), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerAddInRmap.setStatus('current') bgpNewCfgPeerAddOutRmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 19), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerAddOutRmap.setStatus('current') bgpNewCfgPeerRemoveInRmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 20), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerRemoveInRmap.setStatus('current') bgpNewCfgPeerRemoveOutRmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 21), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerRemoveOutRmap.setStatus('current') bgpNewCfgPeerHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerHoldTime.setStatus('current') bgpNewCfgPeerKeepAlive = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 21845))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerKeepAlive.setStatus('current') bgpNewCfgPeerMinTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerMinTime.setStatus('current') bgpNewCfgPeerConRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerConRetry.setStatus('current') bgpNewCfgPeerMinAS = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerMinAS.setStatus('current') bgpNewCfgPeerRipState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgPeerRipState.setStatus('current') bgpAggrTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpAggrTableMax.setStatus('current') bgpCurCfgAggrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6), ) if mibBuilder.loadTexts: bgpCurCfgAggrTable.setStatus('current') bgpCurCfgAggrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "bgpCurCfgAggrIndex")) if mibBuilder.loadTexts: bgpCurCfgAggrEntry.setStatus('current') bgpCurCfgAggrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgAggrIndex.setStatus('current') bgpCurCfgAggrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgAggrAddr.setStatus('current') bgpCurCfgAggrMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgAggrMask.setStatus('current') bgpCurCfgAggrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpCurCfgAggrState.setStatus('current') bgpNewCfgAggrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7), ) if mibBuilder.loadTexts: bgpNewCfgAggrTable.setStatus('current') bgpNewCfgAggrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "bgpNewCfgAggrIndex")) if mibBuilder.loadTexts: bgpNewCfgAggrEntry.setStatus('current') bgpNewCfgAggrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bgpNewCfgAggrIndex.setStatus('current') bgpNewCfgAggrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 2), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgAggrAddr.setStatus('current') bgpNewCfgAggrMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 3), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgAggrMask.setStatus('current') bgpNewCfgAggrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgAggrState.setStatus('current') bgpNewCfgAggrDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: bgpNewCfgAggrDelete.setStatus('current') ospfGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1)) ospfCurCfgDefaultRouteMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgDefaultRouteMetric.setStatus('current') ospfNewCfgDefaultRouteMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgDefaultRouteMetric.setStatus('current') ospfCurCfgDefaultRouteMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgDefaultRouteMetricType.setStatus('current') ospfNewCfgDefaultRouteMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgDefaultRouteMetricType.setStatus('current') ospfIntfTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfTableMaxSize.setStatus('current') ospfAreaTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaTableMaxSize.setStatus('current') ospfRangeTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfRangeTableMaxSize.setStatus('current') ospfVirtIntfTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfVirtIntfTableMaxSize.setStatus('current') ospfHostTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfHostTableMaxSize.setStatus('current') ospfCurCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgState.setStatus('current') ospfNewCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgState.setStatus('current') ospfCurCfgLsdb = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2000))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgLsdb.setStatus('current') ospfNewCfgLsdb = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgLsdb.setStatus('current') ospfCurCfgAreaTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2), ) if mibBuilder.loadTexts: ospfCurCfgAreaTable.setStatus('current') ospfCurCfgAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgAreaIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgAreaId")) if mibBuilder.loadTexts: ospfCurCfgAreaEntry.setStatus('current') ospfCurCfgAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgAreaIndex.setStatus('current') ospfCurCfgAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgAreaId.setStatus('current') ospfCurCfgAreaSpfInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgAreaSpfInterval.setStatus('current') ospfCurCfgAreaAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("password", 2), ("md5", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgAreaAuthType.setStatus('current') ospfCurCfgAreaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("transit", 1), ("stub", 2), ("nssa", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgAreaType.setStatus('current') ospfCurCfgAreaMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgAreaMetric.setStatus('current') ospfCurCfgAreaState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgAreaState.setStatus('current') ospfNewCfgAreaTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3), ) if mibBuilder.loadTexts: ospfNewCfgAreaTable.setStatus('current') ospfNewCfgAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgAreaIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgAreaId")) if mibBuilder.loadTexts: ospfNewCfgAreaEntry.setStatus('current') ospfNewCfgAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgAreaIndex.setStatus('current') ospfNewCfgAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgAreaId.setStatus('current') ospfNewCfgAreaSpfInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgAreaSpfInterval.setStatus('current') ospfNewCfgAreaAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("password", 2), ("md5", 3)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgAreaAuthType.setStatus('current') ospfNewCfgAreaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("transit", 1), ("stub", 2), ("nssa", 3)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgAreaType.setStatus('current') ospfNewCfgAreaMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgAreaMetric.setStatus('current') ospfNewCfgAreaState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgAreaState.setStatus('current') ospfNewCfgAreaDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgAreaDelete.setStatus('current') ospfNewCfgVisionAreaTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16), ) if mibBuilder.loadTexts: ospfNewCfgVisionAreaTable.setStatus('current') ospfNewCfgVisionAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgVisionAreaIndex")) if mibBuilder.loadTexts: ospfNewCfgVisionAreaEntry.setStatus('current') ospfNewCfgVisionAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgVisionAreaIndex.setStatus('current') ospfNewCfgVisionAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgVisionAreaId.setStatus('current') ospfNewCfgVisionAreaSpfInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVisionAreaSpfInterval.setStatus('current') ospfNewCfgVisionAreaAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("password", 2), ("md5", 3)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVisionAreaAuthType.setStatus('current') ospfNewCfgVisionAreaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("transit", 1), ("stub", 2), ("nssa", 3)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVisionAreaType.setStatus('current') ospfNewCfgVisionAreaMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVisionAreaMetric.setStatus('current') ospfNewCfgVisionAreaState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVisionAreaState.setStatus('current') ospfNewCfgVisionAreaDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVisionAreaDelete.setStatus('current') ospfCurCfgHostTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12), ) if mibBuilder.loadTexts: ospfCurCfgHostTable.setStatus('current') ospfCurCfgHostEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgHostIndex")) if mibBuilder.loadTexts: ospfCurCfgHostEntry.setStatus('current') ospfCurCfgHostIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgHostIndex.setStatus('current') ospfCurCfgHostIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgHostIpAddr.setStatus('current') ospfCurCfgHostAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgHostAreaIndex.setStatus('current') ospfCurCfgHostCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgHostCost.setStatus('current') ospfCurCfgHostState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgHostState.setStatus('current') ospfNewCfgHostTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13), ) if mibBuilder.loadTexts: ospfNewCfgHostTable.setStatus('current') ospfNewCfgHostEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgHostIndex")) if mibBuilder.loadTexts: ospfNewCfgHostEntry.setStatus('current') ospfNewCfgHostIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgHostIndex.setStatus('current') ospfNewCfgHostIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 2), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgHostIpAddr.setStatus('current') ospfNewCfgHostAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 3), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgHostAreaIndex.setStatus('current') ospfNewCfgHostCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgHostCost.setStatus('current') ospfNewCfgHostState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgHostState.setStatus('current') ospfNewCfgHostDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgHostDelete.setStatus('current') ospfMdkeyTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfMdkeyTableMaxSize.setStatus('current') ospfCurCfgMdkeyTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5), ) if mibBuilder.loadTexts: ospfCurCfgMdkeyTable.setStatus('current') ospfCurCfgMdkeyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgMdkeyIndex")) if mibBuilder.loadTexts: ospfCurCfgMdkeyEntry.setStatus('current') ospfCurCfgMdkeyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgMdkeyIndex.setStatus('current') ospfCurCfgMdkeyKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgMdkeyKey.setStatus('current') ospfNewCfgMdkeyTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6), ) if mibBuilder.loadTexts: ospfNewCfgMdkeyTable.setStatus('current') ospfNewCfgMdkeyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgMdkeyIndex")) if mibBuilder.loadTexts: ospfNewCfgMdkeyEntry.setStatus('current') ospfNewCfgMdkeyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgMdkeyIndex.setStatus('current') ospfNewCfgMdkeyKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgMdkeyKey.setStatus('current') ospfNewCfgMdkeyDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgMdkeyDelete.setStatus('current') ospfCurCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7), ) if mibBuilder.loadTexts: ospfCurCfgIntfTable.setStatus('current') ospfCurCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgIntfIndex")) if mibBuilder.loadTexts: ospfCurCfgIntfEntry.setStatus('current') ospfCurCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIntfIndex.setStatus('current') ospfCurCfgIntfId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIntfId.setStatus('current') ospfCurCfgIntfMdkey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIntfMdkey.setStatus('current') ospfCurCfgIntfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIntfAreaId.setStatus('current') ospfCurCfgIntfPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIntfPriority.setStatus('current') ospfCurCfgIntfCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIntfCost.setStatus('current') ospfCurCfgIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIntfHello.setStatus('current') ospfCurCfgIntfDead = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIntfDead.setStatus('current') ospfCurCfgIntfTransit = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIntfTransit.setStatus('current') ospfCurCfgIntfRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIntfRetrans.setStatus('current') ospfCurCfgIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIntfKey.setStatus('current') ospfCurCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIntfState.setStatus('current') ospfNewCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8), ) if mibBuilder.loadTexts: ospfNewCfgIntfTable.setStatus('current') ospfNewCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgIntfIndex")) if mibBuilder.loadTexts: ospfNewCfgIntfEntry.setStatus('current') ospfNewCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgIntfIndex.setStatus('current') ospfNewCfgIntfId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgIntfId.setStatus('current') ospfNewCfgIntfMdkey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgIntfMdkey.setStatus('current') ospfNewCfgIntfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgIntfAreaId.setStatus('current') ospfNewCfgIntfPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgIntfPriority.setStatus('current') ospfNewCfgIntfCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgIntfCost.setStatus('current') ospfNewCfgIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgIntfHello.setStatus('current') ospfNewCfgIntfDead = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgIntfDead.setStatus('current') ospfNewCfgIntfTransit = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgIntfTransit.setStatus('current') ospfNewCfgIntfRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgIntfRetrans.setStatus('current') ospfNewCfgIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgIntfKey.setStatus('current') ospfNewCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgIntfState.setStatus('current') ospfNewCfgIntfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgIntfDelete.setStatus('current') ospfCurCfgVirtIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9), ) if mibBuilder.loadTexts: ospfCurCfgVirtIntfTable.setStatus('current') ospfCurCfgVirtIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgVirtIntfIndex")) if mibBuilder.loadTexts: ospfCurCfgVirtIntfEntry.setStatus('current') ospfCurCfgVirtIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgVirtIntfIndex.setStatus('current') ospfCurCfgVirtIntfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgVirtIntfAreaId.setStatus('current') ospfCurCfgVirtIntfNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgVirtIntfNbr.setStatus('current') ospfCurCfgVirtIntfMdkey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgVirtIntfMdkey.setStatus('current') ospfCurCfgVirtIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgVirtIntfHello.setStatus('current') ospfCurCfgVirtIntfDead = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgVirtIntfDead.setStatus('current') ospfCurCfgVirtIntfTransit = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgVirtIntfTransit.setStatus('current') ospfCurCfgVirtIntfRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgVirtIntfRetrans.setStatus('current') ospfCurCfgVirtIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgVirtIntfKey.setStatus('current') ospfCurCfgVirtIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgVirtIntfState.setStatus('current') ospfNewCfgVirtIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10), ) if mibBuilder.loadTexts: ospfNewCfgVirtIntfTable.setStatus('current') ospfNewCfgVirtIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgVirtIntfIndex")) if mibBuilder.loadTexts: ospfNewCfgVirtIntfEntry.setStatus('current') ospfNewCfgVirtIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgVirtIntfIndex.setStatus('current') ospfNewCfgVirtIntfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVirtIntfAreaId.setStatus('current') ospfNewCfgVirtIntfNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 3), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVirtIntfNbr.setStatus('current') ospfNewCfgVirtIntfMdkey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVirtIntfMdkey.setStatus('current') ospfNewCfgVirtIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVirtIntfHello.setStatus('current') ospfNewCfgVirtIntfDead = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVirtIntfDead.setStatus('current') ospfNewCfgVirtIntfTransit = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVirtIntfTransit.setStatus('current') ospfNewCfgVirtIntfRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVirtIntfRetrans.setStatus('current') ospfNewCfgVirtIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVirtIntfKey.setStatus('current') ospfNewCfgVirtIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVirtIntfState.setStatus('current') ospfNewCfgVirtIntfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgVirtIntfDelete.setStatus('current') ospfCurCfgRangeTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14), ) if mibBuilder.loadTexts: ospfCurCfgRangeTable.setStatus('current') ospfCurCfgRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgRangeIndex")) if mibBuilder.loadTexts: ospfCurCfgRangeEntry.setStatus('current') ospfCurCfgRangeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgRangeIndex.setStatus('current') ospfCurCfgRangeAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgRangeAddr.setStatus('current') ospfCurCfgRangeMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgRangeMask.setStatus('current') ospfCurCfgRangeAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgRangeAreaIndex.setStatus('current') ospfCurCfgRangeHideState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgRangeHideState.setStatus('current') ospfCurCfgRangeState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgRangeState.setStatus('current') ospfNewCfgRangeTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15), ) if mibBuilder.loadTexts: ospfNewCfgRangeTable.setStatus('current') ospfNewCfgRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgRangeIndex")) if mibBuilder.loadTexts: ospfNewCfgRangeEntry.setStatus('current') ospfNewCfgRangeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgRangeIndex.setStatus('current') ospfNewCfgRangeAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 2), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgRangeAddr.setStatus('current') ospfNewCfgRangeMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 3), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgRangeMask.setStatus('current') ospfNewCfgRangeAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 4), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgRangeAreaIndex.setStatus('current') ospfNewCfgRangeHideState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgRangeHideState.setStatus('current') ospfNewCfgRangeState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgRangeState.setStatus('current') ospfNewCfgRangeDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ospfNewCfgRangeDelete.setStatus('current') ospfRouteRedistribution = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4)) ospfRedistributeStatic = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1)) ospfCurCfgStaticMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgStaticMetric.setStatus('current') ospfNewCfgStaticMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgStaticMetric.setStatus('current') ospfCurCfgStaticMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgStaticMetricType.setStatus('current') ospfNewCfgStaticMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgStaticMetricType.setStatus('current') ospfCurCfgStaticOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 5), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgStaticOutRmapList.setStatus('current') ospfNewCfgStaticOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 6), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgStaticOutRmapList.setStatus('current') ospfNewCfgStaticAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgStaticAddOutRmap.setStatus('current') ospfNewCfgStaticRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgStaticRemoveOutRmap.setStatus('current') ospfRedistributeEbgp = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2)) ospfCurCfgEbgpMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgEbgpMetric.setStatus('current') ospfNewCfgEbgpMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgEbgpMetric.setStatus('current') ospfCurCfgEbgpMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgEbgpMetricType.setStatus('current') ospfNewCfgEbgpMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgEbgpMetricType.setStatus('current') ospfCurCfgEbgpOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 5), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgEbgpOutRmapList.setStatus('current') ospfNewCfgEbgpOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 6), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgEbgpOutRmapList.setStatus('current') ospfNewCfgEbgpAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgEbgpAddOutRmap.setStatus('current') ospfNewCfgEbgpRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgEbgpRemoveOutRmap.setStatus('current') ospfRedistributeIbgp = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3)) ospfCurCfgIbgpMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIbgpMetric.setStatus('current') ospfNewCfgIbgpMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgIbgpMetric.setStatus('current') ospfCurCfgIbgpMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIbgpMetricType.setStatus('current') ospfNewCfgIbgpMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgIbgpMetricType.setStatus('current') ospfCurCfgIbgpOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 5), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgIbgpOutRmapList.setStatus('current') ospfNewCfgIbgpOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 6), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgIbgpOutRmapList.setStatus('current') ospfNewCfgIbgpAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgIbgpAddOutRmap.setStatus('current') ospfNewCfgIbgpRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgIbgpRemoveOutRmap.setStatus('current') ospfRedistributeFixed = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4)) ospfCurCfgFixedMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgFixedMetric.setStatus('current') ospfNewCfgFixedMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgFixedMetric.setStatus('current') ospfCurCfgFixedMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgFixedMetricType.setStatus('current') ospfNewCfgFixedMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgFixedMetricType.setStatus('current') ospfCurCfgFixedOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 5), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgFixedOutRmapList.setStatus('current') ospfNewCfgFixedOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 6), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgFixedOutRmapList.setStatus('current') ospfNewCfgFixedAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgFixedAddOutRmap.setStatus('current') ospfNewCfgFixedRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgFixedRemoveOutRmap.setStatus('current') ospfRedistributeRip = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5)) ospfCurCfgRipMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgRipMetric.setStatus('current') ospfNewCfgRipMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgRipMetric.setStatus('current') ospfCurCfgRipMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgRipMetricType.setStatus('current') ospfNewCfgRipMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgRipMetricType.setStatus('current') ospfCurCfgRipOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 5), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCurCfgRipOutRmapList.setStatus('current') ospfNewCfgRipOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 6), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNewCfgRipOutRmapList.setStatus('current') ospfNewCfgRipAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgRipAddOutRmap.setStatus('current') ospfNewCfgRipRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ospfNewCfgRipRemoveOutRmap.setStatus('current') ipCurCfgRouterID = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgRouterID.setStatus('current') ipNewCfgRouterID = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: ipNewCfgRouterID.setStatus('current') ipCurCfgASNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgASNumber.setStatus('current') ipNewCfgASNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ipNewCfgASNumber.setStatus('current') ipStaticArpTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipStaticArpTableMaxSize.setStatus('current') ipCurCfgStaticArpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2), ) if mibBuilder.loadTexts: ipCurCfgStaticArpTable.setStatus('current') ipCurCfgStaticArpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgStaticArpIndx")) if mibBuilder.loadTexts: ipCurCfgStaticArpEntry.setStatus('current') ipCurCfgStaticArpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgStaticArpIndx.setStatus('current') ipCurCfgStaticArpIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgStaticArpIp.setStatus('current') ipCurCfgStaticArpMAC = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 3), PhysAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgStaticArpMAC.setStatus('current') ipCurCfgStaticArpVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgStaticArpVlan.setStatus('current') ipCurCfgStaticArpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipCurCfgStaticArpPort.setStatus('current') ipNewCfgStaticArpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3), ) if mibBuilder.loadTexts: ipNewCfgStaticArpTable.setStatus('current') ipNewCfgStaticArpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgStaticArpIndx")) if mibBuilder.loadTexts: ipNewCfgStaticArpEntry.setStatus('current') ipNewCfgStaticArpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipNewCfgStaticArpIndx.setStatus('current') ipNewCfgStaticArpIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 2), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgStaticArpIp.setStatus('current') ipNewCfgStaticArpMAC = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 3), PhysAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgStaticArpMAC.setStatus('current') ipNewCfgStaticArpVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 4), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgStaticArpVlan.setStatus('current') ipNewCfgStaticArpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 5), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgStaticArpPort.setStatus('current') ipNewCfgStaticArpAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: ipNewCfgStaticArpAction.setStatus('current') ipStaticArpTableNextAvailableIndex = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipStaticArpTableNextAvailableIndex.setStatus('current') ripStatInPackets = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatInPackets.setStatus('current') ripStatOutPackets = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatOutPackets.setStatus('current') ripStatInRequestPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatInRequestPkts.setStatus('current') ripStatInResponsePkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatInResponsePkts.setStatus('current') ripStatOutRequestPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatOutRequestPkts.setStatus('current') ripStatOutResponsePkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatOutResponsePkts.setStatus('current') ripStatRouteTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatRouteTimeout.setStatus('current') ripStatInBadSizePkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatInBadSizePkts.setStatus('current') ripStatInBadVersion = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatInBadVersion.setStatus('current') ripStatInBadZeros = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatInBadZeros.setStatus('current') ripStatInBadSourcePort = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatInBadSourcePort.setStatus('current') ripStatInBadSourceIP = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatInBadSourceIP.setStatus('current') ripStatInSelfRcvPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripStatInSelfRcvPkts.setStatus('current') tcpStatCurConn = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tcpStatCurConn.setStatus('current') tcpStatCurInConn = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tcpStatCurInConn.setStatus('current') tcpStatCurOutConn = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tcpStatCurOutConn.setStatus('current') arpStatEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 1), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: arpStatEntries.setStatus('current') arpStatHighWater = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 2), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: arpStatHighWater.setStatus('current') arpStatMaxEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 3), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: arpStatMaxEntries.setStatus('current') routeStatEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 1), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: routeStatEntries.setStatus('current') routeStatHighWater = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 2), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: routeStatHighWater.setStatus('current') routeStatMaxEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 3), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: routeStatMaxEntries.setStatus('current') dnsStatInGoodDnsRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dnsStatInGoodDnsRequests.setStatus('current') dnsStatInBadDnsRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dnsStatInBadDnsRequests.setStatus('current') dnsStatOutDnsRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dnsStatOutDnsRequests.setStatus('current') vrrpStatInAdvers = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpStatInAdvers.setStatus('current') vrrpStatOutAdvers = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpStatOutAdvers.setStatus('current') vrrpStatOutBadAdvers = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpStatOutBadAdvers.setStatus('current') ipClearStats = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ipClearStats.setStatus('current') ifStatsTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2), ) if mibBuilder.loadTexts: ifStatsTable.setStatus('current') ifStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ifStatsIndex")) if mibBuilder.loadTexts: ifStatsEntry.setStatus('current') ifStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ifStatsIndex.setStatus('current') ifClearStats = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: ifClearStats.setStatus('current') ospfGeneralStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1)) ospfCumRxTxStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1)) ospfCumNbrChangeStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2)) ospfCumIntfChangeStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3)) ospfTimersKickOffStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4)) ospfArea = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2)) ospfAreaRxTxStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1), ) if mibBuilder.loadTexts: ospfAreaRxTxStats.setStatus('current') ospfAreaRxTxStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaRxTxIndex")) if mibBuilder.loadTexts: ospfAreaRxTxStatsEntry.setStatus('current') ospfAreaRxTxIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaRxTxIndex.setStatus('current') ospfAreaRxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaRxPkts.setStatus('current') ospfAreaTxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaTxPkts.setStatus('current') ospfAreaRxHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaRxHello.setStatus('current') ospfAreaTxHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaTxHello.setStatus('current') ospfAreaRxDatabase = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaRxDatabase.setStatus('current') ospfAreaTxDatabase = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaTxDatabase.setStatus('current') ospfAreaRxlsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaRxlsReqs.setStatus('current') ospfAreaTxlsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaTxlsReqs.setStatus('current') ospfAreaRxlsAcks = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaRxlsAcks.setStatus('current') ospfAreaTxlsAcks = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaTxlsAcks.setStatus('current') ospfAreaRxlsUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaRxlsUpdates.setStatus('current') ospfAreaTxlsUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaTxlsUpdates.setStatus('current') ospfAreaNbrChangeStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2), ) if mibBuilder.loadTexts: ospfAreaNbrChangeStats.setStatus('current') ospfAreaNbrChangeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaNbrIndex")) if mibBuilder.loadTexts: ospfAreaNbrChangeStatsEntry.setStatus('current') ospfAreaNbrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrIndex.setStatus('current') ospfAreaNbrhello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrhello.setStatus('current') ospfAreaNbrStart = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrStart.setStatus('current') ospfAreaNbrAdjointOk = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrAdjointOk.setStatus('current') ospfAreaNbrNegotiationDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrNegotiationDone.setStatus('current') ospfAreaNbrExchangeDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrExchangeDone.setStatus('current') ospfAreaNbrBadRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrBadRequests.setStatus('current') ospfAreaNbrBadSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrBadSequence.setStatus('current') ospfAreaNbrLoadingDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrLoadingDone.setStatus('current') ospfAreaNbrN1way = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrN1way.setStatus('current') ospfAreaNbrRstAd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrRstAd.setStatus('current') ospfAreaNbrDown = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrDown.setStatus('current') ospfAreaNbrN2way = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaNbrN2way.setStatus('current') ospfAreaChangeStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3), ) if mibBuilder.loadTexts: ospfAreaChangeStats.setStatus('current') ospfAreaChangeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaIntfIndex")) if mibBuilder.loadTexts: ospfAreaChangeStatsEntry.setStatus('current') ospfAreaIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaIntfIndex.setStatus('current') ospfAreaIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaIntfHello.setStatus('current') ospfAreaIntfDown = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaIntfDown.setStatus('current') ospfAreaIntfLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaIntfLoop.setStatus('current') ospfAreaIntfUnloop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaIntfUnloop.setStatus('current') ospfAreaIntfWaitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaIntfWaitTimer.setStatus('current') ospfAreaIntfBackup = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaIntfBackup.setStatus('current') ospfAreaIntfNbrChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaIntfNbrChange.setStatus('current') ospfAreaErrorStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4), ) if mibBuilder.loadTexts: ospfAreaErrorStats.setStatus('current') ospfAreaErrorStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaErrIndex")) if mibBuilder.loadTexts: ospfAreaErrorStatsEntry.setStatus('current') ospfAreaErrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaErrIndex.setStatus('current') ospfAreaErrAuthFailure = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaErrAuthFailure.setStatus('current') ospfAreaErrNetmaskMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaErrNetmaskMismatch.setStatus('current') ospfAreaErrHelloMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaErrHelloMismatch.setStatus('current') ospfAreaErrDeadMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaErrDeadMismatch.setStatus('current') ospfAreaErrOptionsMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaErrOptionsMismatch.setStatus('current') ospfAreaErrUnknownNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaErrUnknownNbr.setStatus('current') ospfInterface = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3)) ospfIntfRxTxStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1), ) if mibBuilder.loadTexts: ospfIntfRxTxStats.setStatus('current') ospfIntfRxTxStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIntfRxTxIndex")) if mibBuilder.loadTexts: ospfIntfRxTxStatsEntry.setStatus('current') ospfIntfRxTxIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfRxTxIndex.setStatus('current') ospfIntfRxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfRxPkts.setStatus('current') ospfIntfTxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfTxPkts.setStatus('current') ospfIntfRxHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfRxHello.setStatus('current') ospfIntfTxHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfTxHello.setStatus('current') ospfIntfRxDatabase = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfRxDatabase.setStatus('current') ospfIntfTxDatabase = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfTxDatabase.setStatus('current') ospfIntfRxlsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfRxlsReqs.setStatus('current') ospfIntfTxlsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfTxlsReqs.setStatus('current') ospfIntfRxlsAcks = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfRxlsAcks.setStatus('current') ospfIntfTxlsAcks = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfTxlsAcks.setStatus('current') ospfIntfRxlsUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfRxlsUpdates.setStatus('current') ospfIntfTxlsUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfTxlsUpdates.setStatus('current') ospfIntfNbrChangeStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2), ) if mibBuilder.loadTexts: ospfIntfNbrChangeStats.setStatus('current') ospfIntfNbrChangeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIntfNbrIndex")) if mibBuilder.loadTexts: ospfIntfNbrChangeStatsEntry.setStatus('current') ospfIntfNbrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrIndex.setStatus('current') ospfIntfNbrhello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrhello.setStatus('current') ospfIntfNbrStart = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrStart.setStatus('current') ospfIntfNbrAdjointOk = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrAdjointOk.setStatus('current') ospfIntfNbrNegotiationDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrNegotiationDone.setStatus('current') ospfIntfNbrExchangeDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrExchangeDone.setStatus('current') ospfIntfNbrBadRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrBadRequests.setStatus('current') ospfIntfNbrBadSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrBadSequence.setStatus('current') ospfIntfNbrLoadingDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrLoadingDone.setStatus('current') ospfIntfNbrN1way = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrN1way.setStatus('current') ospfIntfNbrRstAd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrRstAd.setStatus('current') ospfIntfNbrDown = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrDown.setStatus('current') ospfIntfNbrN2way = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrN2way.setStatus('current') ospfIntfChangeStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3), ) if mibBuilder.loadTexts: ospfIntfChangeStats.setStatus('current') ospfIntfChangeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIntfIndex")) if mibBuilder.loadTexts: ospfIntfChangeStatsEntry.setStatus('current') ospfIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfIndex.setStatus('current') ospfIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfHello.setStatus('current') ospfIntfDown = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfDown.setStatus('current') ospfIntfLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfLoop.setStatus('current') ospfIntfUnloop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfUnloop.setStatus('current') ospfIntfWaitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfWaitTimer.setStatus('current') ospfIntfBackup = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfBackup.setStatus('current') ospfIntfNbrChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfNbrChange.setStatus('current') ospfIntfErrorStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4), ) if mibBuilder.loadTexts: ospfIntfErrorStats.setStatus('current') ospfIntfErrorStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIntfErrIndex")) if mibBuilder.loadTexts: ospfIntfErrorStatsEntry.setStatus('current') ospfIntfErrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfErrIndex.setStatus('current') ospfIntfErrAuthFailure = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfErrAuthFailure.setStatus('current') ospfIntfErrNetmaskMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfErrNetmaskMismatch.setStatus('current') ospfIntfErrHelloMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfErrHelloMismatch.setStatus('current') ospfIntfErrDeadMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfErrDeadMismatch.setStatus('current') ospfIntfErrOptionsMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfErrOptionsMismatch.setStatus('current') ospfIntfErrUnknownNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfErrUnknownNbr.setStatus('current') ospfCumRxPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumRxPkts.setStatus('current') ospfCumTxPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumTxPkts.setStatus('current') ospfCumRxHello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumRxHello.setStatus('current') ospfCumTxHello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumTxHello.setStatus('current') ospfCumRxDatabase = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumRxDatabase.setStatus('current') ospfCumTxDatabase = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumTxDatabase.setStatus('current') ospfCumRxlsReqs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumRxlsReqs.setStatus('current') ospfCumTxlsReqs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumTxlsReqs.setStatus('current') ospfCumRxlsAcks = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumRxlsAcks.setStatus('current') ospfCumTxlsAcks = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumTxlsAcks.setStatus('current') ospfCumRxlsUpdates = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumRxlsUpdates.setStatus('current') ospfCumTxlsUpdates = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumTxlsUpdates.setStatus('current') ospfCumNbrhello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumNbrhello.setStatus('current') ospfCumNbrStart = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumNbrStart.setStatus('current') ospfCumNbrAdjointOk = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumNbrAdjointOk.setStatus('current') ospfCumNbrNegotiationDone = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumNbrNegotiationDone.setStatus('current') ospfCumNbrExchangeDone = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumNbrExchangeDone.setStatus('current') ospfCumNbrBadRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumNbrBadRequests.setStatus('current') ospfCumNbrBadSequence = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumNbrBadSequence.setStatus('current') ospfCumNbrLoadingDone = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumNbrLoadingDone.setStatus('current') ospfCumNbrN1way = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumNbrN1way.setStatus('current') ospfCumNbrRstAd = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumNbrRstAd.setStatus('current') ospfCumNbrDown = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumNbrDown.setStatus('current') ospfCumNbrN2way = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumNbrN2way.setStatus('current') ospfCumIntfHello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumIntfHello.setStatus('current') ospfCumIntfDown = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumIntfDown.setStatus('current') ospfCumIntfLoop = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumIntfLoop.setStatus('current') ospfCumIntfUnloop = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumIntfUnloop.setStatus('current') ospfCumIntfWaitTimer = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumIntfWaitTimer.setStatus('current') ospfCumIntfBackup = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumIntfBackup.setStatus('current') ospfCumIntfNbrChange = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfCumIntfNbrChange.setStatus('current') ospfTmrsKckOffHello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfTmrsKckOffHello.setStatus('current') ospfTmrsKckOffRetransmit = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfTmrsKckOffRetransmit.setStatus('current') ospfTmrsKckOffLsaLock = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfTmrsKckOffLsaLock.setStatus('current') ospfTmrsKckOffLsaAck = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfTmrsKckOffLsaAck.setStatus('current') ospfTmrsKckOffDbage = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfTmrsKckOffDbage.setStatus('current') ospfTmrsKckOffSummary = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfTmrsKckOffSummary.setStatus('current') ospfTmrsKckOffAseExport = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfTmrsKckOffAseExport.setStatus('current') ip6InReceives = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6InReceives.setStatus('current') ip6ForwDatagrams = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6ForwDatagrams.setStatus('current') ip6InDelivers = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6InDelivers.setStatus('current') ip6InDiscards = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6InDiscards.setStatus('current') ip6InUnknownProtos = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6InUnknownProtos.setStatus('current') ip6InAddrErrors = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6InAddrErrors.setStatus('current') ip6OutRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6OutRequests.setStatus('current') ip6OutNoRoutes = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6OutNoRoutes.setStatus('current') ip6ReasmOKs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6ReasmOKs.setStatus('current') ip6ReasmFails = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6ReasmFails.setStatus('current') ip6icmpInMsgs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6icmpInMsgs.setStatus('current') ip6icmpOutMsgs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6icmpOutMsgs.setStatus('current') ip6icmpInErrors = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6icmpInErrors.setStatus('current') ip6icmpOutErrors = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6icmpOutErrors.setStatus('current') icmp6StatsTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1), ) if mibBuilder.loadTexts: icmp6StatsTable.setStatus('current') icmp6StatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "icmp6StatsIndx")) if mibBuilder.loadTexts: icmp6StatsEntry.setStatus('current') icmp6StatsIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6StatsIndx.setStatus('current') icmp6IntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6IntfIndex.setStatus('current') icmp6InMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InMsgs.setStatus('current') icmp6InErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InErrors.setStatus('current') icmp6InEchos = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InEchos.setStatus('current') icmp6InEchoReps = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InEchoReps.setStatus('current') icmp6InNSs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InNSs.setStatus('current') icmp6InNAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InNAs.setStatus('current') icmp6InRSs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InRSs.setStatus('current') icmp6InRAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InRAs.setStatus('current') icmp6InDestUnreachs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InDestUnreachs.setStatus('current') icmp6InTimeExcds = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InTimeExcds.setStatus('current') icmp6InTooBigs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InTooBigs.setStatus('current') icmp6InParmProbs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InParmProbs.setStatus('current') icmp6InRedirects = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6InRedirects.setStatus('current') icmp6OutMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6OutMsgs.setStatus('current') icmp6OutErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6OutErrors.setStatus('current') icmp6OutEchos = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6OutEchos.setStatus('current') icmp6OutEchoReps = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6OutEchoReps.setStatus('current') icmp6OutNSs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6OutNSs.setStatus('current') icmp6OutNAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6OutNAs.setStatus('current') icmp6OutRSs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6OutRSs.setStatus('current') icmp6OutRAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 23), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6OutRAs.setStatus('current') icmp6OutRedirects = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 24), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: icmp6OutRedirects.setStatus('current') ip6GwStatsTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1), ) if mibBuilder.loadTexts: ip6GwStatsTable.setStatus('current') ip6GwStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ip6GwStatsIndex")) if mibBuilder.loadTexts: ip6GwStatsEntry.setStatus('current') ip6GwStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6GwStatsIndex.setStatus('current') ip6GwIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6GwIndex.setStatus('current') ip6GwEchoreq = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6GwEchoreq.setStatus('current') ip6GwEchoresp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6GwEchoresp.setStatus('current') ip6GwFails = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6GwFails.setStatus('current') ip6GwMaster = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6GwMaster.setStatus('current') ip6IfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6IfIndex.setStatus('current') ip6GwRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ip6GwRetry.setStatus('current') ipIntfInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1), ) if mibBuilder.loadTexts: ipIntfInfoTable.setStatus('current') intfInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "intfInfoIndex")) if mibBuilder.loadTexts: intfInfoEntry.setStatus('current') intfInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: intfInfoIndex.setStatus('current') intfInfoIpver = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: intfInfoIpver.setStatus('current') intfInfoAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: intfInfoAddr.setStatus('current') intfInfoNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: intfInfoNetMask.setStatus('current') intfInfoBcastAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: intfInfoBcastAddr.setStatus('current') intfInfoVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: intfInfoVlan.setStatus('current') intfInfoStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: intfInfoStatus.setStatus('current') intfInfoLinkLocalAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 8), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: intfInfoLinkLocalAddr.setStatus('current') ipRouteInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1), ) if mibBuilder.loadTexts: ipRouteInfoTable.setStatus('current') ipRouteInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipRouteInfoIndx")) if mibBuilder.loadTexts: ipRouteInfoEntry.setStatus('current') ipRouteInfoIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRouteInfoIndx.setStatus('current') ipRouteInfoDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRouteInfoDestIp.setStatus('current') ipRouteInfoMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRouteInfoMask.setStatus('current') ipRouteInfoGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 4), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRouteInfoGateway.setStatus('current') ipRouteInfoTag = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("fixed", 1), ("static", 2), ("addr", 3), ("rip", 4), ("broadcast", 5), ("martian", 6), ("multicast", 7), ("vip", 8), ("bgp", 9), ("ospf", 10), ("none", 11)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRouteInfoTag.setStatus('current') ipRouteInfoType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("indirect", 1), ("direct", 2), ("local", 3), ("broadcast", 4), ("martian", 5), ("multicast", 6), ("other", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRouteInfoType.setStatus('current') ipRouteInfoInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRouteInfoInterface.setStatus('current') ipRouteInfoGateway1 = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 8), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRouteInfoGateway1.setStatus('current') ipRouteInfoGateway2 = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 9), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRouteInfoGateway2.setStatus('current') ipRouteInfoMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRouteInfoMetric.setStatus('current') routeTableClear = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: routeTableClear.setStatus('current') arpInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1), ) if mibBuilder.loadTexts: arpInfoTable.setStatus('current') arpInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "arpInfoDestIp")) if mibBuilder.loadTexts: arpInfoEntry.setStatus('current') arpInfoDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: arpInfoDestIp.setStatus('current') arpInfoMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 2), PhysAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: arpInfoMacAddr.setStatus('current') arpInfoVLAN = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: arpInfoVLAN.setStatus('current') arpInfoSrcPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: arpInfoSrcPort.setStatus('current') arpInfoRefPorts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: arpInfoRefPorts.setStatus('current') arpInfoFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("clear", 1), ("unresolved", 2), ("permanent", 3), ("indirect", 4), ("layer4", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: arpInfoFlag.setStatus('current') arpCacheClear = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: arpCacheClear.setStatus('current') vrrpInfoVirtRtrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1), ) if mibBuilder.loadTexts: vrrpInfoVirtRtrTable.setStatus('current') vrrpInfoVirtRtrTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpInfoVirtRtrIndex")) if mibBuilder.loadTexts: vrrpInfoVirtRtrTableEntry.setStatus('current') vrrpInfoVirtRtrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpInfoVirtRtrIndex.setStatus('current') vrrpInfoVirtRtrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("init", 1), ("master", 2), ("backup", 3), ("holdoff", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpInfoVirtRtrState.setStatus('current') vrrpInfoVirtRtrOwnership = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("owner", 1), ("renter", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpInfoVirtRtrOwnership.setStatus('current') vrrpInfoVirtRtrServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpInfoVirtRtrServer.setStatus('current') vrrpInfoVirtRtrProxy = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpInfoVirtRtrProxy.setStatus('current') vrrpInfoVirtRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpInfoVirtRtrPriority.setStatus('current') ospfGeneralInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1)) ospfStartTime = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfStartTime.setStatus('current') ospfProcessUptime = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfProcessUptime.setStatus('current') ospfLsTypesSupported = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfLsTypesSupported.setStatus('current') ospfIntfCountForRouter = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIntfCountForRouter.setStatus('current') ospfVlinkCountForRouter = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfVlinkCountForRouter.setStatus('current') ospfTotalNeighbours = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfTotalNeighbours.setStatus('current') ospfNbrInInitState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNbrInInitState.setStatus('current') ospfNbrInExchState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNbrInExchState.setStatus('current') ospfNbrInFullState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNbrInFullState.setStatus('current') ospfTotalAreas = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfTotalAreas.setStatus('current') ospfTotalTransitAreas = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfTotalTransitAreas.setStatus('current') ospfTotalNssaAreas = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfTotalNssaAreas.setStatus('current') ospfAreaInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2), ) if mibBuilder.loadTexts: ospfAreaInfoTable.setStatus('current') ospfAreaInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaInfoIndex")) if mibBuilder.loadTexts: ospfAreaInfoEntry.setStatus('current') ospfAreaInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaInfoIndex.setStatus('current') ospfTotalNumberOfInterfaces = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfTotalNumberOfInterfaces.setStatus('current') ospfNumberOfInterfacesUp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNumberOfInterfacesUp.setStatus('current') ospfNumberOfLsdbEntries = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfNumberOfLsdbEntries.setStatus('current') ospfAreaInfoId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 5), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfAreaInfoId.setStatus('current') ospfIntfInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3), ) if mibBuilder.loadTexts: ospfIntfInfoTable.setStatus('current') ospfIntfInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIfInfoIndex")) if mibBuilder.loadTexts: ospfIntfInfoEntry.setStatus('current') ospfIfInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfInfoIndex.setStatus('current') ospfIfDesignatedRouterIP = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfDesignatedRouterIP.setStatus('current') ospfIfBackupDesignatedRouterIP = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfBackupDesignatedRouterIP.setStatus('current') ospfIfWaitInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfWaitInterval.setStatus('current') ospfIfTotalNeighbours = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfTotalNeighbours.setStatus('current') ospfIfInfoIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 6), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfInfoIpAddress.setStatus('current') ospfIfNbrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5), ) if mibBuilder.loadTexts: ospfIfNbrTable.setStatus('current') ospfIfNbrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIfNbrIntfIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIfNbrIpAddr")) if mibBuilder.loadTexts: ospfIfNbrEntry.setStatus('current') ospfIfNbrIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfNbrIntfIndex.setStatus('current') ospfIfNbrIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfNbrIpAddr.setStatus('current') ospfIfNbrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfNbrPriority.setStatus('current') ospfIfNbrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("down", 1), ("attempt", 2), ("init", 3), ("twoway", 4), ("exStart", 5), ("exchange", 6), ("loading", 7), ("full", 8)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfNbrState.setStatus('current') ospfIfNbrDesignatedRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 5), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfNbrDesignatedRtr.setStatus('current') ospfIfNbrBackupDesignatedRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 6), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfNbrBackupDesignatedRtr.setStatus('current') ospfIfNbrIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 7), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ospfIfNbrIpAddress.setStatus('current') gatewayInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1), ) if mibBuilder.loadTexts: gatewayInfoTable.setStatus('current') gatewayInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "gatewayInfoIndex")) if mibBuilder.loadTexts: gatewayInfoEntry.setStatus('current') gatewayInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gatewayInfoIndex.setStatus('current') gatewayInfoAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: gatewayInfoAddr.setStatus('current') gatewayInfoVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gatewayInfoVlan.setStatus('current') gatewayInfoStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("failed", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gatewayInfoStatus.setStatus('current') gatewayInfoAddr6 = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gatewayInfoAddr6.setStatus('current') nbrcacheInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1), ) if mibBuilder.loadTexts: nbrcacheInfoTable.setStatus('current') nbrcacheInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "nbrcacheInfoIndex")) if mibBuilder.loadTexts: nbrcacheInfoEntry.setStatus('current') nbrcacheInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbrcacheInfoIndex.setStatus('current') nbrcacheInfoDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbrcacheInfoDestIp.setStatus('current') nbrcacheInfoState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("undef", 1), ("reach", 2), ("stale", 3), ("delay", 4), ("probe", 5), ("inval", 6), ("unknown", 7), ("incmp", 8)))).setMaxAccess("readonly") if mibBuilder.loadTexts: nbrcacheInfoState.setStatus('current') nbrcacheInfoType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("undef", 1), ("other", 2), ("invalid", 3), ("dynamic", 4), ("static", 5), ("local", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: nbrcacheInfoType.setStatus('current') nbrcacheInfoMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 5), PhysAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbrcacheInfoMacAddr.setStatus('current') nbrcacheInfoVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbrcacheInfoVlanId.setStatus('current') nbrcacheInfoPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbrcacheInfoPortNum.setStatus('current') nbrcacheClear = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nbrcacheClear.setStatus('current') nbrcacheInfoTotDynamicEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbrcacheInfoTotDynamicEntries.setStatus('current') nbrcacheInfoTotLocalEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbrcacheInfoTotLocalEntries.setStatus('current') nbrcacheInfoTotOtherEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbrcacheInfoTotOtherEntries.setStatus('current') ipRoute6InfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1), ) if mibBuilder.loadTexts: ipRoute6InfoTable.setStatus('current') ipRoute6InfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipRoute6InfoIndx")) if mibBuilder.loadTexts: ipRoute6InfoEntry.setStatus('current') ipRoute6InfoIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRoute6InfoIndx.setStatus('current') ipRoute6InfoDestIp6 = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRoute6InfoDestIp6.setStatus('current') ipRoute6InfoInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRoute6InfoInterface.setStatus('current') ipRoute6InfoNextHop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRoute6InfoNextHop.setStatus('current') ipRoute6InfoProto = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=NamedValues(("isis", 1), ("rip", 2), ("ospf", 3), ("static", 4), ("local", 5), ("bgp", 6), ("stlow", 7), ("ospfi", 8), ("ospfe", 9), ("ospfe2", 10), ("ospfa", 11), ("ripa", 12), ("bgpa", 13), ("igmp", 14), ("unknown", 15), ("natpt", 16)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ipRoute6InfoProto.setStatus('current') rip2GeneralInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1)) ripInfoState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoState.setStatus('current') ripInfoUpdatePeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoUpdatePeriod.setStatus('current') ripInfoVip = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoVip.setStatus('current') ripInfoStaticSupply = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoStaticSupply.setStatus('current') rip2InfoIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2), ) if mibBuilder.loadTexts: rip2InfoIntfTable.setStatus('current') ripInfoIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ripInfoIntfIndex")) if mibBuilder.loadTexts: ripInfoIntfEntry.setStatus('current') ripInfoIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfIndex.setStatus('current') ripInfoIntfVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ripVersion1", 1), ("ripVersion2", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfVersion.setStatus('current') ripInfoIntfAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfAddress.setStatus('current') ripInfoIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfState.setStatus('current') ripInfoIntfListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfListen.setStatus('current') ripInfoIntfTrigUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfTrigUpdate.setStatus('current') ripInfoIntfMcastUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfMcastUpdate.setStatus('current') ripInfoIntfPoisonReverse = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfPoisonReverse.setStatus('current') ripInfoIntfSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfSupply.setStatus('current') ripInfoIntfMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfMetric.setStatus('current') ripInfoIntfAuth = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("password", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfAuth.setStatus('current') ripInfoIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfKey.setStatus('current') ripInfoIntfDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("both", 1), ("listen", 2), ("supply", 3), ("none", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ripInfoIntfDefault.setStatus('current') rip2RoutesInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1), ) if mibBuilder.loadTexts: rip2RoutesInfoTable.setStatus('current') rip2RoutesInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "rip2RoutesInfoDestIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "rip2RoutesInfoNxtHopIndex")) if mibBuilder.loadTexts: rip2RoutesInfoEntry.setStatus('current') rip2RoutesInfoDestIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rip2RoutesInfoDestIndex.setStatus('current') rip2RoutesInfoNxtHopIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rip2RoutesInfoNxtHopIndex.setStatus('current') rip2RoutesInfoDestination = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: rip2RoutesInfoDestination.setStatus('current') rip2RoutesInfoIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 4), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: rip2RoutesInfoIpAddress.setStatus('current') rip2RoutesInfoMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readonly") if mibBuilder.loadTexts: rip2RoutesInfoMetric.setStatus('current') allowedNwInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1), ) if mibBuilder.loadTexts: allowedNwInfoTable.setStatus('current') allowedNwInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "allowedNwInfoIndex")) if mibBuilder.loadTexts: allowedNwInfoEntry.setStatus('current') allowedNwInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: allowedNwInfoIndex.setStatus('current') allowedNwInfoIpver = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: allowedNwInfoIpver.setStatus('current') allowedNwInfoVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: allowedNwInfoVlan.setStatus('current') allowedNwInfoBeginIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: allowedNwInfoBeginIpAddr.setStatus('current') allowedNwInfoEndIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: allowedNwInfoEndIpAddr.setStatus('current') allowedNwInfoNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: allowedNwInfoNetMask.setStatus('current') allowedNwInfoIp6Prefix = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: allowedNwInfoIp6Prefix.setStatus('current') vrrpOperVirtRtrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1), ) if mibBuilder.loadTexts: vrrpOperVirtRtrTable.setStatus('current') vrrpOperVirtRtrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpOperVirtRtrIndex")) if mibBuilder.loadTexts: vrrpOperVirtRtrEntry.setStatus('current') vrrpOperVirtRtrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vrrpOperVirtRtrIndex.setStatus('current') vrrpOperVirtRtrBackup = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("backup", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vrrpOperVirtRtrBackup.setStatus('current') vrrpOperVirtRtrGroupBackup = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("backup", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vrrpOperVirtRtrGroupBackup.setStatus('current') bgpOper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1)) garpOper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2)) bgpOperStart = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1)) bgpOperStop = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2)) bgpOperStartPeerNum = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bgpOperStartPeerNum.setStatus('current') bgpOperStartSess = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("start", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bgpOperStartSess.setStatus('current') bgpOperStopPeerNum = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bgpOperStopPeerNum.setStatus('current') bgpOperStopSess = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("stop", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bgpOperStopSess.setStatus('current') garpOperIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 1), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: garpOperIpAddr.setStatus('current') garpOperVlanNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4090))).setMaxAccess("readwrite") if mibBuilder.loadTexts: garpOperVlanNumber.setStatus('current') garpOperSend = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("ok", 1), ("send", 2), ("error", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: garpOperSend.setStatus('current') mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", ipCurCfgIntfAddr=ipCurCfgIntfAddr, ipv6NewCfgStaticRouteTable=ipv6NewCfgStaticRouteTable, ipNewCfgBootpAddr=ipNewCfgBootpAddr, arpStatMaxEntries=arpStatMaxEntries, ip6InUnknownProtos=ip6InUnknownProtos, icmp6InRSs=icmp6InRSs, bgpNewCfgAggrState=bgpNewCfgAggrState, ospfCurCfgAreaId=ospfCurCfgAreaId, gatewayInfoIndex=gatewayInfoIndex, ospfCurCfgRangeEntry=ospfCurCfgRangeEntry, ipFwdCurCfgLocalMask=ipFwdCurCfgLocalMask, ospfNewCfgIntfMdkey=ospfNewCfgIntfMdkey, gatewayInfoEntry=gatewayInfoEntry, ospfIntfErrUnknownNbr=ospfIntfErrUnknownNbr, bgpNewCfgPeerVipState=bgpNewCfgPeerVipState, vrrpInfoVirtRtrTable=vrrpInfoVirtRtrTable, vrrpCurCfgVirtRtrIfIndex=vrrpCurCfgVirtRtrIfIndex, ospfIntfNbrRstAd=ospfIntfNbrRstAd, ospfCumNbrNegotiationDone=ospfCumNbrNegotiationDone, vrrpCurCfgVirtRtrGrpTckIpIntf=vrrpCurCfgVirtRtrGrpTckIpIntf, ospfNewCfgAreaAuthType=ospfNewCfgAreaAuthType, ipNewCfgIntfMask=ipNewCfgIntfMask, ipGeneralCfg=ipGeneralCfg, bgpCurCfgPeerVipState=bgpCurCfgPeerVipState, ipCurCfgIntfIndex=ipCurCfgIntfIndex, ipCurCfgNwfTable=ipCurCfgNwfTable, ospfNewCfgEbgpRemoveOutRmap=ospfNewCfgEbgpRemoveOutRmap, ospfNewCfgAreaIndex=ospfNewCfgAreaIndex, icmp6OutRSs=icmp6OutRSs, ospfNewCfgIbgpRemoveOutRmap=ospfNewCfgIbgpRemoveOutRmap, rip2Info=rip2Info, ospfCurCfgMdkeyTable=ospfCurCfgMdkeyTable, ospfNewCfgRangeIndex=ospfNewCfgRangeIndex, bgpNewCfgPeerOspfState=bgpNewCfgPeerOspfState, ospfNewCfgRangeDelete=ospfNewCfgRangeDelete, ripCurCfgIntfAuth=ripCurCfgIntfAuth, vrrpCurCfgVirtRtrGrpState=vrrpCurCfgVirtRtrGrpState, tcpStatCurOutConn=tcpStatCurOutConn, ipNewCfgGwInterval=ipNewCfgGwInterval, ospfNewCfgIntfPriority=ospfNewCfgIntfPriority, ipNewCfgAspathEntry=ipNewCfgAspathEntry, ip6IfIndex=ip6IfIndex, ospfTotalNssaAreas=ospfTotalNssaAreas, ospfNewCfgHostTable=ospfNewCfgHostTable, ipNewCfgGwIpv6Addr=ipNewCfgGwIpv6Addr, ospfNewCfgIntfId=ospfNewCfgIntfId, routeStatHighWater=routeStatHighWater, dnsStatInGoodDnsRequests=dnsStatInGoodDnsRequests, ipCurCfgStaticRouteGateway=ipCurCfgStaticRouteGateway, ipNewCfgAlistRmapIndex=ipNewCfgAlistRmapIndex, ospfCurCfgFixedMetric=ospfCurCfgFixedMetric, ospfCumRxlsReqs=ospfCumRxlsReqs, bgpCurCfgPeerDefaultAction=bgpCurCfgPeerDefaultAction, vrrpOperVirtRtrEntry=vrrpOperVirtRtrEntry, vrrpOperVirtRtrGroupBackup=vrrpOperVirtRtrGroupBackup, vrrpNewCfgVirtRtrGrpVersion=vrrpNewCfgVirtRtrGrpVersion, ospfCurCfgVirtIntfState=ospfCurCfgVirtIntfState, ripCurCfgIntfIndex=ripCurCfgIntfIndex, rip2Stats=rip2Stats, ipv6CurCfgStaticRouteGateway=ipv6CurCfgStaticRouteGateway, ospfCurCfgAreaMetric=ospfCurCfgAreaMetric, ospfNewCfgVisionAreaTable=ospfNewCfgVisionAreaTable, ospfCurCfgIntfTable=ospfCurCfgIntfTable, ipv6CurCfgStaticRouteMask=ipv6CurCfgStaticRouteMask, ospfCumTxPkts=ospfCumTxPkts, ripStatInPackets=ripStatInPackets, ospfAreaErrIndex=ospfAreaErrIndex, ipCurCfgRmapTable=ipCurCfgRmapTable, icmp6StatsEntry=icmp6StatsEntry, tcpStats=tcpStats, ipForwardCfg=ipForwardCfg, vrrpStats=vrrpStats, ospfNewCfgVirtIntfHello=ospfNewCfgVirtIntfHello, ripCurCfgIntfListen=ripCurCfgIntfListen, vrrpCurCfgVirtRtrVrGrpName=vrrpCurCfgVirtRtrVrGrpName, ripInfoState=ripInfoState, ospfNewCfgIbgpMetricType=ospfNewCfgIbgpMetricType, ospfIfNbrIpAddr=ospfIfNbrIpAddr, ripInfoIntfVersion=ripInfoIntfVersion, ospfCumIntfUnloop=ospfCumIntfUnloop, ifStatsIndex=ifStatsIndex, ospfProcessUptime=ospfProcessUptime, bgpOperStopSess=bgpOperStopSess, ospfCurCfgIbgpMetricType=ospfCurCfgIbgpMetricType, vrrpInfoVirtRtrIndex=vrrpInfoVirtRtrIndex, nbrcacheInfoIndex=nbrcacheInfoIndex, ipFwdNewCfgNoICMPRedirect=ipFwdNewCfgNoICMPRedirect, vrrpNewCfgGenTckVirtRtrInc=vrrpNewCfgGenTckVirtRtrInc, vrrpCurCfgVirtRtrVrGrpTckHsrv=vrrpCurCfgVirtRtrVrGrpTckHsrv, ipNewCfgAspathAction=ipNewCfgAspathAction, rip2RoutesInfoDestIndex=rip2RoutesInfoDestIndex, dnsStats=dnsStats, rip2CurCfgState=rip2CurCfgState, ospfAreaErrNetmaskMismatch=ospfAreaErrNetmaskMismatch, vrrpOper=vrrpOper, ipNewCfgRmapLp=ipNewCfgRmapLp, bgpCurCfgPeerFixedState=bgpCurCfgPeerFixedState, vrrpNewCfgVirtRtrVersion=vrrpNewCfgVirtRtrVersion, ospfNewCfgVirtIntfDelete=ospfNewCfgVirtIntfDelete, icmp6InRAs=icmp6InRAs, ipNewCfgGwRetry=ipNewCfgGwRetry, ipCurCfgGwPriority=ipCurCfgGwPriority, bgpNewCfgPeerRemoteAs=bgpNewCfgPeerRemoteAs, ospfIntfRxPkts=ospfIntfRxPkts, nbrcacheInfoVlanId=nbrcacheInfoVlanId, ripNewCfgIntfMetric=ripNewCfgIntfMetric, vrrpCurCfgIfIpAddr=vrrpCurCfgIfIpAddr, ospfCumRxlsAcks=ospfCumRxlsAcks, ospfAreaTxHello=ospfAreaTxHello, ospfIfBackupDesignatedRouterIP=ospfIfBackupDesignatedRouterIP, ipNewCfgIntfState=ipNewCfgIntfState, ipv6CurCfgStaticRouteEntry=ipv6CurCfgStaticRouteEntry, ospfAreaNbrBadRequests=ospfAreaNbrBadRequests, bgpNewCfgPeerRemoveOutRmap=bgpNewCfgPeerRemoveOutRmap, ospfNewCfgVirtIntfAreaId=ospfNewCfgVirtIntfAreaId, ip6GwStatsEntry=ip6GwStatsEntry, ipStaticRouteCfg=ipStaticRouteCfg, ipNewCfgStaticRouteAction=ipNewCfgStaticRouteAction, bgpGeneral=bgpGeneral, ospfAreaIntfIndex=ospfAreaIntfIndex, arpInfoDestIp=arpInfoDestIp, ripStatOutRequestPkts=ripStatOutRequestPkts, ospfTmrsKckOffLsaAck=ospfTmrsKckOffLsaAck, ospfTotalNeighbours=ospfTotalNeighbours, ospfAreaIntfUnloop=ospfAreaIntfUnloop, ipNewCfgStaticRouteMask=ipNewCfgStaticRouteMask, ospfNewCfgVirtIntfRetrans=ospfNewCfgVirtIntfRetrans, ospfCurCfgVirtIntfTable=ospfCurCfgVirtIntfTable, vrrpCurCfgVirtRtrVrGrpTckVlanPort=vrrpCurCfgVirtRtrVrGrpTckVlanPort, ripInfoIntfMetric=ripInfoIntfMetric, ipCurCfgIntfPrefixLen=ipCurCfgIntfPrefixLen, ospfNewCfgRangeEntry=ospfNewCfgRangeEntry, ospfIfNbrState=ospfIfNbrState, gatewayInfoTable=gatewayInfoTable, ospfNewCfgHostIndex=ospfNewCfgHostIndex, dnsCurCfgPrimaryIpAddr=dnsCurCfgPrimaryIpAddr, vrrpCurCfgVirtRtrVrGrpBmap=vrrpCurCfgVirtRtrVrGrpBmap, ospfCurCfgRangeAddr=ospfCurCfgRangeAddr, ospfIntfTxHello=ospfIntfTxHello, vrrpNewCfgVirtRtrIpv6Addr=vrrpNewCfgVirtRtrIpv6Addr, ipFwdCurCfgDirectedBcast=ipFwdCurCfgDirectedBcast, vrrpCurCfgVirtRtrGrpID=vrrpCurCfgVirtRtrGrpID, ospfAreaNbrLoadingDone=ospfAreaNbrLoadingDone, ipNewCfgStaticRouteGateway=ipNewCfgStaticRouteGateway, ipCurCfgAlistEntry=ipCurCfgAlistEntry, ospfIntfNbrAdjointOk=ospfIntfNbrAdjointOk, ripCurCfgIntfVersion=ripCurCfgIntfVersion, ipNewCfgStaticRouteIndx=ipNewCfgStaticRouteIndx, ospfIntfTableMaxSize=ospfIntfTableMaxSize, ipAspathTableMax=ipAspathTableMax, vrrpCurCfgGenTckL4PortInc=vrrpCurCfgGenTckL4PortInc, ipCurCfgNwfIndex=ipCurCfgNwfIndex, bgpNewCfgPeerConRetry=bgpNewCfgPeerConRetry, ospfIntfRxDatabase=ospfIntfRxDatabase, icmp6InDestUnreachs=icmp6InDestUnreachs, vrrpCurCfgVirtRtrTable=vrrpCurCfgVirtRtrTable, ripCurCfgIntfTable=ripCurCfgIntfTable, ospfNewCfgVirtIntfEntry=ospfNewCfgVirtIntfEntry, vrrpStatOutAdvers=vrrpStatOutAdvers, icmp6OutMsgs=icmp6OutMsgs, vrrpNewCfgVirtRtrVrGrpPriority=vrrpNewCfgVirtRtrVrGrpPriority, ospfCurCfgRangeIndex=ospfCurCfgRangeIndex, ospfCurCfgIntfCost=ospfCurCfgIntfCost, bgpCurCfgPeerOutRmapList=bgpCurCfgPeerOutRmapList, ospfIntfTxlsReqs=ospfIntfTxlsReqs, vrrpNewCfgVirtRtrTableEntry=vrrpNewCfgVirtRtrTableEntry, vrrpNewCfgIfTable=vrrpNewCfgIfTable, bgpCurCfgAggrTable=bgpCurCfgAggrTable, ipStaticArpTableMaxSize=ipStaticArpTableMaxSize, nbrcacheInfoType=nbrcacheInfoType, vrrpCurCfgGenHotstandby=vrrpCurCfgGenHotstandby, ipNwfCfg=ipNwfCfg, ripCurCfgIntfTrigUpdate=ripCurCfgIntfTrigUpdate, ipNewCfgNwfState=ipNewCfgNwfState, ipNewCfgIntfPrefixLen=ipNewCfgIntfPrefixLen, vrrpNewCfgVirtRtrVrGrpTableEntry=vrrpNewCfgVirtRtrVrGrpTableEntry, ipStaticRouteTableMaxSize=ipStaticRouteTableMaxSize, ipCurCfgStaticArpIndx=ipCurCfgStaticArpIndx, ripInfoIntfSupply=ripInfoIntfSupply, vrrpNewCfgVirtRtrTckHsrv=vrrpNewCfgVirtRtrTckHsrv, ipNewCfgASNumber=ipNewCfgASNumber, rip2CurCfgStaticSupply=rip2CurCfgStaticSupply, ipv6NewCfgStaticRouteIndx=ipv6NewCfgStaticRouteIndx, ospfCurCfgHostTable=ospfCurCfgHostTable, ospfCumIntfChangeStats=ospfCumIntfChangeStats, ospfCurCfgHostEntry=ospfCurCfgHostEntry, ospfIntfBackup=ospfIntfBackup, ipRouteInfoIndx=ipRouteInfoIndx, vrrpCurCfgGenTckRServerInc=vrrpCurCfgGenTckRServerInc, vrrpNewCfgVirtRtrGrpTckVirtRtr=vrrpNewCfgVirtRtrGrpTckVirtRtr, vrrpCurCfgVirtRtrVrGrpTckHsrp=vrrpCurCfgVirtRtrVrGrpTckHsrp, dnsStatOutDnsRequests=dnsStatOutDnsRequests, vrrpNewCfgVirtRtrGrpTable=vrrpNewCfgVirtRtrGrpTable, bgpOper=bgpOper, ospfAreaInfoTable=ospfAreaInfoTable, ospfCumNbrBadSequence=ospfCumNbrBadSequence, ipNwfTableMax=ipNwfTableMax, ospfNewCfgIntfTransit=ospfNewCfgIntfTransit, ip6OutRequests=ip6OutRequests, ipNewCfgGwAddr=ipNewCfgGwAddr, ospfNewCfgVisionAreaAuthType=ospfNewCfgVisionAreaAuthType, ipNewCfgGwArp=ipNewCfgGwArp, ospfCurCfgHostState=ospfCurCfgHostState, icmp6OutRAs=icmp6OutRAs, allowedNwInfo=allowedNwInfo, ipCurCfgRmapMetric=ipCurCfgRmapMetric, ospfNewCfgFixedAddOutRmap=ospfNewCfgFixedAddOutRmap, icmp6InTimeExcds=icmp6InTimeExcds, ospfNewCfgIntfRetrans=ospfNewCfgIntfRetrans, ripCurCfgIntfDefListen=ripCurCfgIntfDefListen, vrrpCurCfgVirtRtrVrGrpAdd=vrrpCurCfgVirtRtrVrGrpAdd, ospfNewCfgLsdb=ospfNewCfgLsdb, allowedNwInfoNetMask=allowedNwInfoNetMask, ip6InAddrErrors=ip6InAddrErrors, ipNewCfgStaticRouteInterface=ipNewCfgStaticRouteInterface, ospfCumTxHello=ospfCumTxHello, ipRouteInfoMetric=ipRouteInfoMetric, ip6InReceives=ip6InReceives, ospfCumIntfHello=ospfCumIntfHello, bgpCurCfgLocalPref=bgpCurCfgLocalPref, ospfNewCfgVisionAreaState=ospfNewCfgVisionAreaState, ospfCumIntfBackup=ospfCumIntfBackup, ipNewCfgNwfMask=ipNewCfgNwfMask, ospfIfNbrIpAddress=ospfIfNbrIpAddress, ipCurCfgIntfIpVer=ipCurCfgIntfIpVer, vrrpNewCfgVirtRtrVrGrpBmap=vrrpNewCfgVirtRtrVrGrpBmap, rip2CurCfgUpdatePeriod=rip2CurCfgUpdatePeriod, vrrpNewCfgVirtRtrPreempt=vrrpNewCfgVirtRtrPreempt, nbrcacheClear=nbrcacheClear, ipv6CurCfgStaticRouteInterface=ipv6CurCfgStaticRouteInterface, ripGeneral=ripGeneral, layer3Configs=layer3Configs, ipCurCfgBootpAddr2=ipCurCfgBootpAddr2, ospfNewCfgIntfCost=ospfNewCfgIntfCost, ipRoute6InfoIndx=ipRoute6InfoIndx, ipCurCfgAspathAS=ipCurCfgAspathAS, bgpNewCfgAggrAddr=bgpNewCfgAggrAddr, icmp6InRedirects=icmp6InRedirects, gatewayInfoAddr6=gatewayInfoAddr6, ipv6NewCfgStaticRouteGateway=ipv6NewCfgStaticRouteGateway, ospfIntfNbrNegotiationDone=ospfIntfNbrNegotiationDone, ospfNewCfgStaticRemoveOutRmap=ospfNewCfgStaticRemoveOutRmap, vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo=vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo, vrrpCurCfgVirtRtrTckIpIntf=vrrpCurCfgVirtRtrTckIpIntf, ipCurCfgGwIpVer=ipCurCfgGwIpVer, ospfNewCfgRangeAddr=ospfNewCfgRangeAddr, ospfAreaTxlsUpdates=ospfAreaTxlsUpdates, ip6ReasmFails=ip6ReasmFails, ipIntfInfoTable=ipIntfInfoTable, ipRouteInfoEntry=ipRouteInfoEntry, ipCurCfgGwTable=ipCurCfgGwTable, ipRouteInfoType=ipRouteInfoType, ipv6CurCfgStaticRouteDestIp=ipv6CurCfgStaticRouteDestIp, vrrpCurCfgVirtRtrTckL4Port=vrrpCurCfgVirtRtrTckL4Port) mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", ospfCumTxlsReqs=ospfCumTxlsReqs, intfInfoBcastAddr=intfInfoBcastAddr, ospfCurCfgVirtIntfAreaId=ospfCurCfgVirtIntfAreaId, ipNewCfgIntfBroadcast=ipNewCfgIntfBroadcast, vrrpNewCfgVirtRtrGrpPriority=vrrpNewCfgVirtRtrGrpPriority, bgpCurCfgAggrMask=bgpCurCfgAggrMask, vrrpInfoVirtRtrOwnership=vrrpInfoVirtRtrOwnership, ipFwdCurCfgPortIndex=ipFwdCurCfgPortIndex, ospfCurCfgDefaultRouteMetric=ospfCurCfgDefaultRouteMetric, rip2RoutesInfo=rip2RoutesInfo, ospfCumRxDatabase=ospfCumRxDatabase, ipNewCfgGwPriority=ipNewCfgGwPriority, ospfVlinkCountForRouter=ospfVlinkCountForRouter, vrrpCurCfgIfAuthType=vrrpCurCfgIfAuthType, bgpCurCfgPeerState=bgpCurCfgPeerState, ipNewCfgStaticArpVlan=ipNewCfgStaticArpVlan, ipv6NewCfgStaticRouteInterface=ipv6NewCfgStaticRouteInterface, ospfGeneralStats=ospfGeneralStats, ip6GwEchoresp=ip6GwEchoresp, vrrpInfoVirtRtrTableEntry=vrrpInfoVirtRtrTableEntry, ipFwdCurCfgLocalTable=ipFwdCurCfgLocalTable, ipFwdCurCfgRtCache=ipFwdCurCfgRtCache, ipCurCfgAlistIndex=ipCurCfgAlistIndex, ospfCurCfgMdkeyKey=ospfCurCfgMdkeyKey, icmp6InMsgs=icmp6InMsgs, bgpOperStart=bgpOperStart, ospfNewCfgIbgpOutRmapList=ospfNewCfgIbgpOutRmapList, nbrcacheInfoDestIp=nbrcacheInfoDestIp, bgpNewCfgPeerTtl=bgpNewCfgPeerTtl, ip6icmpOutErrors=ip6icmpOutErrors, ospfCurCfgDefaultRouteMetricType=ospfCurCfgDefaultRouteMetricType, ospfNewCfgIntfAreaId=ospfNewCfgIntfAreaId, vrrpOperVirtRtrIndex=vrrpOperVirtRtrIndex, ip6GwRetry=ip6GwRetry, ipv6CurCfgStaticRouteTable=ipv6CurCfgStaticRouteTable, vrrpCurCfgVirtRtrGrpTckL4Port=vrrpCurCfgVirtRtrGrpTckL4Port, ipStaticArpCfg=ipStaticArpCfg, ospfNewCfgIntfTable=ospfNewCfgIntfTable, ipNewCfgRmapState=ipNewCfgRmapState, vrrpOperVirtRtrBackup=vrrpOperVirtRtrBackup, ospfTmrsKckOffDbage=ospfTmrsKckOffDbage, vrrpCurCfgVirtRtrInterval=vrrpCurCfgVirtRtrInterval, ospfRouteRedistribution=ospfRouteRedistribution, vrrpCurCfgGenTckHsrpInc=vrrpCurCfgGenTckHsrpInc, ipFwdNewCfgPortTable=ipFwdNewCfgPortTable, arpInfoMacAddr=arpInfoMacAddr, ripNewCfgIntfSupply=ripNewCfgIntfSupply, ripCurCfgIntfState=ripCurCfgIntfState, vrrpInfoVirtRtrState=vrrpInfoVirtRtrState, rip2RoutesInfoMetric=rip2RoutesInfoMetric, ipCurCfgStaticArpEntry=ipCurCfgStaticArpEntry, vrrpCurCfgVirtRtrVrGrpTckL4Port=vrrpCurCfgVirtRtrVrGrpTckL4Port, ospfNewCfgVisionAreaSpfInterval=ospfNewCfgVisionAreaSpfInterval, icmp6IntfIndex=icmp6IntfIndex, dnsCfg=dnsCfg, ipCurCfgAlistNwf=ipCurCfgAlistNwf, ipCurCfgGwInterval=ipCurCfgGwInterval, ipv6NewCfgStaticRouteEntry=ipv6NewCfgStaticRouteEntry, ospfIfTotalNeighbours=ospfIfTotalNeighbours, bgpNewCfgAggrMask=bgpNewCfgAggrMask, ospfCurCfgIntfState=ospfCurCfgIntfState, ospfNewCfgIntfHello=ospfNewCfgIntfHello, ipFwdPortTableMaxSize=ipFwdPortTableMaxSize, ospfCurCfgIntfId=ospfCurCfgIntfId, ripStatOutResponsePkts=ripStatOutResponsePkts, ospfAreaNbrRstAd=ospfAreaNbrRstAd, vrrpNewCfgVirtRtrGrpIpv6Interval=vrrpNewCfgVirtRtrGrpIpv6Interval, ospfAreaNbrNegotiationDone=ospfAreaNbrNegotiationDone, ipNewCfgStaticRouteTable=ipNewCfgStaticRouteTable, vrrpNewCfgVirtRtrVrGrpTckIpIntf=vrrpNewCfgVirtRtrVrGrpTckIpIntf, ospfCurCfgVirtIntfMdkey=ospfCurCfgVirtIntfMdkey, ospfNewCfgAreaDelete=ospfNewCfgAreaDelete, vrrpCurCfgVirtRtrPreempt=vrrpCurCfgVirtRtrPreempt, ipv6CurCfgStaticRouteIndx=ipv6CurCfgStaticRouteIndx, ipNewCfgAlistTable=ipNewCfgAlistTable, gatewayInfoStatus=gatewayInfoStatus, ipNewCfgRmapDelete=ipNewCfgRmapDelete, ipNewCfgGwMetric=ipNewCfgGwMetric, ospfCurCfgEbgpMetric=ospfCurCfgEbgpMetric, ipCurCfgNwfEntry=ipCurCfgNwfEntry, vrrpNewCfgVirtRtrVrGrpName=vrrpNewCfgVirtRtrVrGrpName, ospfIntfNbrN2way=ospfIntfNbrN2way, ipNewCfgIntfIpv6Addr=ipNewCfgIntfIpv6Addr, ospfAreaErrorStats=ospfAreaErrorStats, ospfCumNbrhello=ospfCumNbrhello, ipAlistTableMax=ipAlistTableMax, ospfCumIntfDown=ospfCumIntfDown, ipRmapTableMax=ipRmapTableMax, ospfNewCfgIntfKey=ospfNewCfgIntfKey, ripInfoIntfKey=ripInfoIntfKey, vrrpCurCfgVirtRtrVersion=vrrpCurCfgVirtRtrVersion, ipFwdNewCfgPortEntry=ipFwdNewCfgPortEntry, ospfAreaIntfLoop=ospfAreaIntfLoop, ospfRedistributeIbgp=ospfRedistributeIbgp, vrrpNewCfgVirtRtrVrGrpAdd=vrrpNewCfgVirtRtrVrGrpAdd, ospfCurCfgIntfHello=ospfCurCfgIntfHello, ripStatInBadVersion=ripStatInBadVersion, ripNewCfgIntfMcastUpdate=ripNewCfgIntfMcastUpdate, ospfCumIntfLoop=ospfCumIntfLoop, ospfCurCfgVirtIntfRetrans=ospfCurCfgVirtIntfRetrans, ipNewCfgStaticArpPort=ipNewCfgStaticArpPort, bgpNewCfgPeerHoldTime=bgpNewCfgPeerHoldTime, ospfTimersKickOffStats=ospfTimersKickOffStats, ipCurCfgGwState=ipCurCfgGwState, ospfAreaIntfWaitTimer=ospfAreaIntfWaitTimer, ipCurCfgIntfMask=ipCurCfgIntfMask, ospfAreaNbrChangeStats=ospfAreaNbrChangeStats, ipCurCfgRmapPrec=ipCurCfgRmapPrec, ipNewCfgRmapWeight=ipNewCfgRmapWeight, bgpNewCfgPeerAddOutRmap=bgpNewCfgPeerAddOutRmap, ospfIntfErrAuthFailure=ospfIntfErrAuthFailure, allowedNwInfoIp6Prefix=allowedNwInfoIp6Prefix, arpInfoRefPorts=arpInfoRefPorts, ospfIntfDown=ospfIntfDown, bgpNewCfgPeerRemoveInRmap=bgpNewCfgPeerRemoveInRmap, ipFwdCurCfgPortTable=ipFwdCurCfgPortTable, vrrpCurCfgVirtRtrID=vrrpCurCfgVirtRtrID, ospfIntfNbrN1way=ospfIntfNbrN1way, ipRoute6InfoTable=ipRoute6InfoTable, ospfIntfLoop=ospfIntfLoop, ifStatsTable=ifStatsTable, ipNewCfgStaticRouteDestIp=ipNewCfgStaticRouteDestIp, ipBootpCfg=ipBootpCfg, nbrcacheInfo=nbrcacheInfo, ospfTmrsKckOffLsaLock=ospfTmrsKckOffLsaLock, ospfAreaNbrChangeStatsEntry=ospfAreaNbrChangeStatsEntry, bgpNewCfgPeerIndex=bgpNewCfgPeerIndex, bgpNewCfgAggrIndex=bgpNewCfgAggrIndex, ospfAreaInfoEntry=ospfAreaInfoEntry, bgpNewCfgPeerMinTime=bgpNewCfgPeerMinTime, ospfAreaIntfDown=ospfAreaIntfDown, ipCurCfgIntfEntry=ipCurCfgIntfEntry, ipNewCfgStaticArpMAC=ipNewCfgStaticArpMAC, ripCurCfgIntfMetric=ripCurCfgIntfMetric, ipNewCfgAspathState=ipNewCfgAspathState, vrrpCurCfgVirtRtrVrGrpPreemption=vrrpCurCfgVirtRtrVrGrpPreemption, ospfCurCfgAreaSpfInterval=ospfCurCfgAreaSpfInterval, ospfIntfErrHelloMismatch=ospfIntfErrHelloMismatch, vrrpStatInAdvers=vrrpStatInAdvers, vrrpCurCfgGenTckVlanPortInc=vrrpCurCfgGenTckVlanPortInc, allowedNwInfoIpver=allowedNwInfoIpver, ipNewCfgAspathTable=ipNewCfgAspathTable, ospfGeneralInfo=ospfGeneralInfo, ospfAreaChangeStatsEntry=ospfAreaChangeStatsEntry, ospfAreaIntfBackup=ospfAreaIntfBackup, vrrpCurCfgVirtRtrAddr=vrrpCurCfgVirtRtrAddr, ripCurCfgIntfSupply=ripCurCfgIntfSupply, icmp6OutErrors=icmp6OutErrors, ospfTmrsKckOffHello=ospfTmrsKckOffHello, vrrpNewCfgVirtRtrDelete=vrrpNewCfgVirtRtrDelete, ipNewCfgNwfAddr=ipNewCfgNwfAddr, arpInfoEntry=arpInfoEntry, ipCurCfgIntfState=ipCurCfgIntfState, allowedNwInfoBeginIpAddr=allowedNwInfoBeginIpAddr, arpStats=arpStats, ipFwdNewCfgPortIndex=ipFwdNewCfgPortIndex, ospfNewCfgRangeMask=ospfNewCfgRangeMask, ipNewCfgAlistNwf=ipNewCfgAlistNwf, bgpCurCfgPeerMinAS=bgpCurCfgPeerMinAS, vrrpNewCfgGenTckL4PortInc=vrrpNewCfgGenTckL4PortInc, ipInterfaceTableMax=ipInterfaceTableMax, ospfIntfNbrChangeStatsEntry=ospfIntfNbrChangeStatsEntry, ospfIntfRxHello=ospfIntfRxHello, ipCurCfgStaticArpMAC=ipCurCfgStaticArpMAC, icmp6StatsIndx=icmp6StatsIndx, ospfNewCfgRangeAreaIndex=ospfNewCfgRangeAreaIndex, rip2RoutesInfoNxtHopIndex=rip2RoutesInfoNxtHopIndex, ipNewCfgIntfVlan=ipNewCfgIntfVlan, ospfAreaTxlsReqs=ospfAreaTxlsReqs, garpOper=garpOper, ospfNewCfgAreaState=ospfNewCfgAreaState, ospfStats=ospfStats, ip6ForwDatagrams=ip6ForwDatagrams, ospfIfInfoIndex=ospfIfInfoIndex, rip2NewCfgVip=rip2NewCfgVip, ipFwdCurCfgLocalSubnet=ipFwdCurCfgLocalSubnet, ipNewCfgBootpState=ipNewCfgBootpState, ospfInterface=ospfInterface, bgpOperStop=bgpOperStop, garpOperVlanNumber=garpOperVlanNumber, bgpCurCfgPeerConRetry=bgpCurCfgPeerConRetry, ospfCumRxHello=ospfCumRxHello, vrrpNewCfgGenState=vrrpNewCfgGenState, PYSNMP_MODULE_ID=layer3, rip2Cfg=rip2Cfg, ospfNewCfgStaticAddOutRmap=ospfNewCfgStaticAddOutRmap, ipNewCfgIntfIndex=ipNewCfgIntfIndex, ospfNewCfgVirtIntfIndex=ospfNewCfgVirtIntfIndex, ipClearStats=ipClearStats, gatewayInfo=gatewayInfo, ospfAreaRxTxStats=ospfAreaRxTxStats, ipNewCfgAlistDelete=ipNewCfgAlistDelete, ospfCumTxlsUpdates=ospfCumTxlsUpdates, vrrpNewCfgGenHotstandby=vrrpNewCfgGenHotstandby, ospfIntfErrOptionsMismatch=ospfIntfErrOptionsMismatch, ipRoute6InfoEntry=ipRoute6InfoEntry, ospfNewCfgVisionAreaIndex=ospfNewCfgVisionAreaIndex, vrrpNewCfgVirtRtrGrpSharing=vrrpNewCfgVirtRtrGrpSharing, ipCurCfgGwMetric=ipCurCfgGwMetric, vrrpCurCfgVirtRtrVrGrpTckRServer=vrrpCurCfgVirtRtrVrGrpTckRServer, ospfCurCfgIntfMdkey=ospfCurCfgIntfMdkey, ospfCurCfgIbgpOutRmapList=ospfCurCfgIbgpOutRmapList, vrrpNewCfgVirtRtrVrGrpTckVlanPort=vrrpNewCfgVirtRtrVrGrpTckVlanPort, ipNewCfgAspathAS=ipNewCfgAspathAS, ospfCumIntfNbrChange=ospfCumIntfNbrChange, ospfNewCfgHostDelete=ospfNewCfgHostDelete, vrrpNewCfgVirtRtrVrGrpTckRServer=vrrpNewCfgVirtRtrVrGrpTckRServer, intfInfoEntry=intfInfoEntry, bgpNewCfgState=bgpNewCfgState, ospfCurCfgHostAreaIndex=ospfCurCfgHostAreaIndex, ipCurCfgRouterID=ipCurCfgRouterID, icmp6InNSs=icmp6InNSs, icmp6InParmProbs=icmp6InParmProbs, ipCurCfgNwfState=ipCurCfgNwfState, ipNewCfgAlistEntry=ipNewCfgAlistEntry, bgpCurCfgPeerRemoteAddr=bgpCurCfgPeerRemoteAddr, vrrpNewCfgVirtRtrGrpIfIndex=vrrpNewCfgVirtRtrGrpIfIndex, ospfCurCfgFixedOutRmapList=ospfCurCfgFixedOutRmapList, ospfNewCfgFixedOutRmapList=ospfNewCfgFixedOutRmapList, ospfAreaRxTxIndex=ospfAreaRxTxIndex, ipRoute6InfoNextHop=ipRoute6InfoNextHop, ospfIntfInfoTable=ospfIntfInfoTable, ospfGeneral=ospfGeneral, ospfAreaNbrBadSequence=ospfAreaNbrBadSequence, ospfVirtIntfTableMaxSize=ospfVirtIntfTableMaxSize, ipFwdNewCfgState=ipFwdNewCfgState, ospfCurCfgIntfKey=ospfCurCfgIntfKey, ospfNewCfgVirtIntfTransit=ospfNewCfgVirtIntfTransit, ospfIfInfoIpAddress=ospfIfInfoIpAddress, vrrpCurCfgGenTckHsrvInc=vrrpCurCfgGenTckHsrvInc, ospfAreaTableMaxSize=ospfAreaTableMaxSize, ipCurCfgIntfRouteAdv=ipCurCfgIntfRouteAdv, ipCurCfgAlistAction=ipCurCfgAlistAction, ripStatInBadSourcePort=ripStatInBadSourcePort, ipCurCfgAlistState=ipCurCfgAlistState, bgpNewCfgMaxASPath=bgpNewCfgMaxASPath, ospfCurCfgVirtIntfTransit=ospfCurCfgVirtIntfTransit, nbrcacheInfoState=nbrcacheInfoState, ospfNewCfgMdkeyDelete=ospfNewCfgMdkeyDelete, ipCurCfgStaticRouteInterface=ipCurCfgStaticRouteInterface, bgpNewCfgAggrDelete=bgpNewCfgAggrDelete, ospfAreaTxPkts=ospfAreaTxPkts, routeStatMaxEntries=routeStatMaxEntries, ipNewCfgNwfEntry=ipNewCfgNwfEntry, ipRouteInfoMask=ipRouteInfoMask, dnsNewCfgDomainName=dnsNewCfgDomainName, ospfNbrInFullState=ospfNbrInFullState, vrrpNewCfgVirtRtrVrGrpIndx=vrrpNewCfgVirtRtrVrGrpIndx, ipCurCfgRmapIndex=ipCurCfgRmapIndex, vrrpNewCfgVirtRtrIndx=vrrpNewCfgVirtRtrIndx, ospfCurCfgIntfIndex=ospfCurCfgIntfIndex, vrrpNewCfgVirtRtrVrGrpSharing=vrrpNewCfgVirtRtrVrGrpSharing, ospfCurCfgIntfAreaId=ospfCurCfgIntfAreaId, ospfNewCfgVisionAreaId=ospfNewCfgVisionAreaId) mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", ripStatInRequestPkts=ripStatInRequestPkts, arpInfoSrcPort=arpInfoSrcPort, ipFwdCurCfgLocalEntry=ipFwdCurCfgLocalEntry, bgpPeerTableMax=bgpPeerTableMax, ospfIfNbrBackupDesignatedRtr=ospfIfNbrBackupDesignatedRtr, vrrpCurCfgVirtRtrGrpPriority=vrrpCurCfgVirtRtrGrpPriority, ospfIntfNbrBadSequence=ospfIntfNbrBadSequence, ipCurCfgBootpAddr=ipCurCfgBootpAddr, ipCurCfgStaticArpVlan=ipCurCfgStaticArpVlan, bgpCurCfgAggrEntry=bgpCurCfgAggrEntry, ospfAreaRxlsAcks=ospfAreaRxlsAcks, vrrpNewCfgVirtRtrGrpTableEntry=vrrpNewCfgVirtRtrGrpTableEntry, ospfCurCfgRipMetric=ospfCurCfgRipMetric, vrrpNewCfgVirtRtrGrpTckIpIntf=vrrpNewCfgVirtRtrGrpTckIpIntf, ipNewCfgRmapIndex=ipNewCfgRmapIndex, ospfNewCfgHostIpAddr=ospfNewCfgHostIpAddr, vrrpNewCfgVirtRtrGrpTckRServer=vrrpNewCfgVirtRtrGrpTckRServer, ospfCurCfgIntfRetrans=ospfCurCfgIntfRetrans, vrrpNewCfgIfTableEntry=vrrpNewCfgIfTableEntry, dnsCurCfgPrimaryIpv6Addr=dnsCurCfgPrimaryIpv6Addr, vrrpCurCfgVirtRtrSharing=vrrpCurCfgVirtRtrSharing, ipCurCfgGwVlan=ipCurCfgGwVlan, bgpCurCfgPeerTtl=bgpCurCfgPeerTtl, bgpCurCfgPeerTable=bgpCurCfgPeerTable, ospfCurCfgRangeTable=ospfCurCfgRangeTable, ospfNewCfgRangeState=ospfNewCfgRangeState, ospfTotalAreas=ospfTotalAreas, ipCurCfgNwfAddr=ipCurCfgNwfAddr, ipCurCfgAspathState=ipCurCfgAspathState, ospfNewCfgAreaId=ospfNewCfgAreaId, ospfNewCfgEbgpOutRmapList=ospfNewCfgEbgpOutRmapList, ospfNewCfgMdkeyEntry=ospfNewCfgMdkeyEntry, ospfIntfNbrChangeStats=ospfIntfNbrChangeStats, dnsCurCfgSecondaryIpAddr=dnsCurCfgSecondaryIpAddr, ospfCurCfgVirtIntfDead=ospfCurCfgVirtIntfDead, rip2NewCfgState=rip2NewCfgState, vrrpCurCfgVirtRtrGrpTckVlanPort=vrrpCurCfgVirtRtrGrpTckVlanPort, ip6ReasmOKs=ip6ReasmOKs, bgpCurCfgPeerHoldTime=bgpCurCfgPeerHoldTime, ripNewCfgIntfTrigUpdate=ripNewCfgIntfTrigUpdate, ospfIntfHello=ospfIntfHello, ipv6NewCfgStaticRouteMask=ipv6NewCfgStaticRouteMask, icmp6InErrors=icmp6InErrors, nbrcacheInfoTable=nbrcacheInfoTable, ip6icmpInMsgs=ip6icmpInMsgs, ipNewCfgRmapTable=ipNewCfgRmapTable, vrrpCurCfgVirtRtrGrpTckHsrp=vrrpCurCfgVirtRtrGrpTckHsrp, vrrpNewCfgIfDelete=vrrpNewCfgIfDelete, ipNewCfgNwfIndex=ipNewCfgNwfIndex, ospfNewCfgVirtIntfKey=ospfNewCfgVirtIntfKey, ipNewCfgIntfAddr=ipNewCfgIntfAddr, ospfCurCfgEbgpMetricType=ospfCurCfgEbgpMetricType, ospfNewCfgEbgpAddOutRmap=ospfNewCfgEbgpAddOutRmap, ipNewCfgStaticArpIp=ipNewCfgStaticArpIp, ipCurCfgAlistTable=ipCurCfgAlistTable, nbrcacheInfoTotDynamicEntries=nbrcacheInfoTotDynamicEntries, ripNewCfgIntfDefault=ripNewCfgIntfDefault, ipNewCfgIntfTable=ipNewCfgIntfTable, bgpNewCfgPeerEntry=bgpNewCfgPeerEntry, ipRouteInfoTag=ipRouteInfoTag, ospfNewCfgFixedMetric=ospfNewCfgFixedMetric, ospfCurCfgRipOutRmapList=ospfCurCfgRipOutRmapList, ipRouteInfoGateway1=ipRouteInfoGateway1, ospfCurCfgVirtIntfKey=ospfCurCfgVirtIntfKey, ipFwdGeneralCfg=ipFwdGeneralCfg, vrrpNewCfgVirtRtrGrpState=vrrpNewCfgVirtRtrGrpState, ospfIntfTxPkts=ospfIntfTxPkts, ospfCumNbrExchangeDone=ospfCumNbrExchangeDone, ospfRedistributeStatic=ospfRedistributeStatic, ospfCumNbrStart=ospfCumNbrStart, ospfCumRxTxStats=ospfCumRxTxStats, garpOperSend=garpOperSend, ipNewCfgGwIndex=ipNewCfgGwIndex, ospfIntfErrIndex=ospfIntfErrIndex, icmp6Stats=icmp6Stats, ospfCurCfgFixedMetricType=ospfCurCfgFixedMetricType, ripStatInBadZeros=ripStatInBadZeros, ipNewCfgRmapMetricType=ipNewCfgRmapMetricType, ospfTmrsKckOffRetransmit=ospfTmrsKckOffRetransmit, vrrpOperVirtRtrTable=vrrpOperVirtRtrTable, ospfIntfErrNetmaskMismatch=ospfIntfErrNetmaskMismatch, vrrpNewCfgVirtRtrGrpID=vrrpNewCfgVirtRtrGrpID, ospfNewCfgVirtIntfNbr=ospfNewCfgVirtIntfNbr, ospfAreaChangeStats=ospfAreaChangeStats, ospfHostTableMaxSize=ospfHostTableMaxSize, bgpNewCfgPeerRemoteAddr=bgpNewCfgPeerRemoteAddr, ospfNewCfgDefaultRouteMetric=ospfNewCfgDefaultRouteMetric, ip6GwStatsTable=ip6GwStatsTable, ospfCumNbrN2way=ospfCumNbrN2way, ospfNewCfgHostCost=ospfNewCfgHostCost, ospfCurCfgVirtIntfIndex=ospfCurCfgVirtIntfIndex, ipNewCfgIntfIpVer=ipNewCfgIntfIpVer, ipOper=ipOper, arpCurCfgReARPPeriod=arpCurCfgReARPPeriod, ripStatInBadSizePkts=ripStatInBadSizePkts, ipCurCfgAlistRmapIndex=ipCurCfgAlistRmapIndex, bgpOperStartSess=bgpOperStartSess, dnsNewCfgPrimaryIpAddr=dnsNewCfgPrimaryIpAddr, vrrpCurCfgVirtRtrVrGrpIndx=vrrpCurCfgVirtRtrVrGrpIndx, ipFwdNewCfgLocalSubnet=ipFwdNewCfgLocalSubnet, ospfCumNbrLoadingDone=ospfCumNbrLoadingDone, ipCurCfgStaticRouteIndx=ipCurCfgStaticRouteIndx, ospfNewCfgHostAreaIndex=ospfNewCfgHostAreaIndex, ipRouteInfoInterface=ipRouteInfoInterface, ospfIfNbrDesignatedRtr=ospfIfNbrDesignatedRtr, icmp6InEchos=icmp6InEchos, ospfNewCfgDefaultRouteMetricType=ospfNewCfgDefaultRouteMetricType, arpCacheClear=arpCacheClear, nbrcacheInfoEntry=nbrcacheInfoEntry, rip2RoutesInfoIpAddress=rip2RoutesInfoIpAddress, ipCurCfgStaticRouteTable=ipCurCfgStaticRouteTable, tcpStatCurInConn=tcpStatCurInConn, ripNewCfgIntfVersion=ripNewCfgIntfVersion, vrrpNewCfgVirtRtrInterval=vrrpNewCfgVirtRtrInterval, vrrpNewCfgGenHoldoff=vrrpNewCfgGenHoldoff, ospfIntfRxlsUpdates=ospfIntfRxlsUpdates, arpInfoVLAN=arpInfoVLAN, vrrpCurCfgIfIndx=vrrpCurCfgIfIndx, ospfTotalTransitAreas=ospfTotalTransitAreas, bgpCurCfgPeerMetric=bgpCurCfgPeerMetric, ip6GwIndex=ip6GwIndex, ipCurCfgStaticArpTable=ipCurCfgStaticArpTable, ospfNewCfgMdkeyKey=ospfNewCfgMdkeyKey, ospfNewCfgVirtIntfDead=ospfNewCfgVirtIntfDead, ospfIntfNbrDown=ospfIntfNbrDown, dnsCurCfgDomainName=dnsCurCfgDomainName, ospfNewCfgIntfState=ospfNewCfgIntfState, ospfNewCfgAreaSpfInterval=ospfNewCfgAreaSpfInterval, bgpCurCfgASNumber=bgpCurCfgASNumber, ospfCurCfgEbgpOutRmapList=ospfCurCfgEbgpOutRmapList, vrrpCurCfgVirtRtrVrGrpState=vrrpCurCfgVirtRtrVrGrpState, ospfAreaIntfNbrChange=ospfAreaIntfNbrChange, ospfIntfRxTxIndex=ospfIntfRxTxIndex, vrrpNewCfgVirtRtrTable=vrrpNewCfgVirtRtrTable, ospfCurCfgAreaTable=ospfCurCfgAreaTable, ip6GwEchoreq=ip6GwEchoreq, dnsNewCfgSecondaryIpAddr=dnsNewCfgSecondaryIpAddr, ospfCurCfgIbgpMetric=ospfCurCfgIbgpMetric, rip2InfoIntfTable=rip2InfoIntfTable, ip6Stats=ip6Stats, ipNewCfgAlistState=ipNewCfgAlistState, ospfIntfNbrStart=ospfIntfNbrStart, allowedNwInfoVlan=allowedNwInfoVlan, vrrpNewCfgIfPasswd=vrrpNewCfgIfPasswd, vrrpCurCfgVirtRtrTableEntry=vrrpCurCfgVirtRtrTableEntry, ospfIntfUnloop=ospfIntfUnloop, vrrpCurCfgVirtRtrGrpPreempt=vrrpCurCfgVirtRtrGrpPreempt, ospfNbrInExchState=ospfNbrInExchState, ipFwdNewCfgRtCache=ipFwdNewCfgRtCache, ospfNewCfgState=ospfNewCfgState, ospfIntfNbrLoadingDone=ospfIntfNbrLoadingDone, ip6GwMaster=ip6GwMaster, ospfIntfNbrChange=ospfIntfNbrChange, ipNewCfgGwIpVer=ipNewCfgGwIpVer, ospfCumNbrBadRequests=ospfCumNbrBadRequests, ipCurCfgAspathEntry=ipCurCfgAspathEntry, bgpNewCfgPeerStaticState=bgpNewCfgPeerStaticState, vrrpInfoVirtRtrPriority=vrrpInfoVirtRtrPriority, bgpNewCfgPeerRipState=bgpNewCfgPeerRipState, ripCurCfgIntfDefault=ripCurCfgIntfDefault, ipCurCfgAspathTable=ipCurCfgAspathTable, bgpCurCfgPeerRipState=bgpCurCfgPeerRipState, ospfNewCfgRangeTable=ospfNewCfgRangeTable, ospfNewCfgIbgpAddOutRmap=ospfNewCfgIbgpAddOutRmap, icmp6InNAs=icmp6InNAs, ipFwdCurCfgPortState=ipFwdCurCfgPortState, vrrpInfoVirtRtrServer=vrrpInfoVirtRtrServer, ripInfoUpdatePeriod=ripInfoUpdatePeriod, ripInfoIntfMcastUpdate=ripInfoIntfMcastUpdate, arpCfg=arpCfg, vrrpNewCfgVirtRtrIpv6Interval=vrrpNewCfgVirtRtrIpv6Interval, ospfIntfErrorStatsEntry=ospfIntfErrorStatsEntry, vrrpNewCfgVirtRtrVrGrpState=vrrpNewCfgVirtRtrVrGrpState, ipNewCfgGwTable=ipNewCfgGwTable, ipFwdNewCfgLocalMask=ipFwdNewCfgLocalMask, bgpCurCfgPeerIndex=bgpCurCfgPeerIndex, vrrpCfg=vrrpCfg, vrrpNewCfgIfIndx=vrrpNewCfgIfIndx, ipRouteInfoDestIp=ipRouteInfoDestIp, ipNewCfgStaticArpAction=ipNewCfgStaticArpAction, vrrpNewCfgVirtRtrID=vrrpNewCfgVirtRtrID, ipCurCfgRmapState=ipCurCfgRmapState, ospfAreaRxHello=ospfAreaRxHello, ospfAreaInfoIndex=ospfAreaInfoIndex, ipNewCfgGwVlan=ipNewCfgGwVlan, ospfTmrsKckOffSummary=ospfTmrsKckOffSummary, nbrcacheInfoPortNum=nbrcacheInfoPortNum, bgpOperStopPeerNum=bgpOperStopPeerNum, ospfNewCfgRipMetricType=ospfNewCfgRipMetricType, ospfNewCfgFixedRemoveOutRmap=ospfNewCfgFixedRemoveOutRmap, ospfAreaNbrN2way=ospfAreaNbrN2way, vrrpCurCfgVirtRtrGrpIfIndex=vrrpCurCfgVirtRtrGrpIfIndex, ipCurCfgASNumber=ipCurCfgASNumber, ipNewCfgNwfDelete=ipNewCfgNwfDelete, ipCurCfgIntfTable=ipCurCfgIntfTable, ospfNewCfgAreaEntry=ospfNewCfgAreaEntry, ripStatInBadSourceIP=ripStatInBadSourceIP, ospfIntfNbrBadRequests=ospfIntfNbrBadRequests, icmp6OutRedirects=icmp6OutRedirects, ospfAreaTxDatabase=ospfAreaTxDatabase, ospfIntfTxlsAcks=ospfIntfTxlsAcks, ospfAreaIntfHello=ospfAreaIntfHello, ipCurCfgIntfBootpRelay=ipCurCfgIntfBootpRelay, ripInfoIntfDefault=ripInfoIntfDefault, ospfCumNbrChangeStats=ospfCumNbrChangeStats, allowedNwInfoTable=allowedNwInfoTable, ipStaticArpTableNextAvailableIndex=ipStaticArpTableNextAvailableIndex, ospfIntfTxlsUpdates=ospfIntfTxlsUpdates, ospfLsTypesSupported=ospfLsTypesSupported, vrrpNewCfgVirtRtrPriority=vrrpNewCfgVirtRtrPriority, ipCurCfgNwfMask=ipCurCfgNwfMask, vrrpCurCfgVirtRtrPriority=vrrpCurCfgVirtRtrPriority, ospfCurCfgAreaState=ospfCurCfgAreaState, bgpNewCfgPeerState=bgpNewCfgPeerState, ospfCumNbrN1way=ospfCumNbrN1way, bgpCurCfgPeerMinTime=bgpCurCfgPeerMinTime, ipFwdLocalTableMaxSize=ipFwdLocalTableMaxSize, bgpNewCfgASNumber=bgpNewCfgASNumber, ospfAreaNbrAdjointOk=ospfAreaNbrAdjointOk, arpInfoTable=arpInfoTable, ipFwdCurCfgState=ipFwdCurCfgState, ipCurCfgRmapMetricType=ipCurCfgRmapMetricType, gatewayInfoVlan=gatewayInfoVlan, routeStats=routeStats, ifStatsEntry=ifStatsEntry, ospfCurCfgHostIpAddr=ospfCurCfgHostIpAddr, ospfCurCfgAreaEntry=ospfCurCfgAreaEntry, vrrpCurCfgVirtRtrVrGrpTableEntry=vrrpCurCfgVirtRtrVrGrpTableEntry, ipRoute6Info=ipRoute6Info, ipGatewayCfg=ipGatewayCfg, vrrpCurCfgVirtRtrVrGrpTckIpIntf=vrrpCurCfgVirtRtrVrGrpTckIpIntf, ipCurCfgRmapWeight=ipCurCfgRmapWeight, ripInfoStaticSupply=ripInfoStaticSupply, ospfNewCfgIntfDead=ospfNewCfgIntfDead, intfInfoVlan=intfInfoVlan, vrrpCurCfgIfPasswd=vrrpCurCfgIfPasswd, ospfIfNbrPriority=ospfIfNbrPriority, ripInfoIntfTrigUpdate=ripInfoIntfTrigUpdate, vrrpNewCfgVirtRtrGrpIndx=vrrpNewCfgVirtRtrGrpIndx, ipFwdCurCfgLocalIndex=ipFwdCurCfgLocalIndex, vrrpCurCfgVirtRtrGrpInterval=vrrpCurCfgVirtRtrGrpInterval, vrrpCurCfgIfTable=vrrpCurCfgIfTable, ripNewCfgIntfDefListen=ripNewCfgIntfDefListen, ipFwdNewCfgLocalTable=ipFwdNewCfgLocalTable, ospfRedistributeEbgp=ospfRedistributeEbgp, ipNewCfgStaticArpEntry=ipNewCfgStaticArpEntry, ospfAreaErrOptionsMismatch=ospfAreaErrOptionsMismatch, vrrpVirtRtrTableMaxSize=vrrpVirtRtrTableMaxSize, ospfCurCfgStaticMetricType=ospfCurCfgStaticMetricType, ospfAreaErrUnknownNbr=ospfAreaErrUnknownNbr, intfInfoNetMask=intfInfoNetMask, ospfCurCfgRipMetricType=ospfCurCfgRipMetricType, ospfTotalNumberOfInterfaces=ospfTotalNumberOfInterfaces, routeTableClear=routeTableClear) mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", ospfIntfCountForRouter=ospfIntfCountForRouter, layer3Stats=layer3Stats, ipNewCfgStaticRouteEntry=ipNewCfgStaticRouteEntry, vrrpNewCfgGenTckRServerInc=vrrpNewCfgGenTckRServerInc, ipv6NewCfgStaticRouteDestIp=ipv6NewCfgStaticRouteDestIp, vrrpNewCfgVirtRtrVrGrpTable=vrrpNewCfgVirtRtrVrGrpTable, ospfRangeTableMaxSize=ospfRangeTableMaxSize, ospfCurCfgRangeHideState=ospfCurCfgRangeHideState, ospfIntfChangeStatsEntry=ospfIntfChangeStatsEntry, ipRoute6InfoProto=ipRoute6InfoProto, ospfRedistributeRip=ospfRedistributeRip, vrrpCurCfgVirtRtrGrpIndx=vrrpCurCfgVirtRtrGrpIndx, icmp6StatsTable=icmp6StatsTable, rip2GeneralInfo=rip2GeneralInfo, vrrpNewCfgGenTckVlanPortInc=vrrpNewCfgGenTckVlanPortInc, vrrpNewCfgVirtRtrTckL4Port=vrrpNewCfgVirtRtrTckL4Port, icmp6OutNSs=icmp6OutNSs, ipRouteInfoGateway=ipRouteInfoGateway, bgpCfg=bgpCfg, ospfTmrsKckOffAseExport=ospfTmrsKckOffAseExport, layer3Oper=layer3Oper, icmp6OutEchos=icmp6OutEchos, vrrpCurCfgVirtRtrGrpIpv6Interval=vrrpCurCfgVirtRtrGrpIpv6Interval, ospfIntfNbrIndex=ospfIntfNbrIndex, ospfIntfNbrExchangeDone=ospfIntfNbrExchangeDone, ospfCurCfgRangeAreaIndex=ospfCurCfgRangeAreaIndex, ipNewCfgRmapMetric=ipNewCfgRmapMetric, bgpAggrTableMax=bgpAggrTableMax, ip6InDelivers=ip6InDelivers, vrrpCurCfgVirtRtrGrpTckHsrv=vrrpCurCfgVirtRtrGrpTckHsrv, ipNewCfgIntfBootpRelay=ipNewCfgIntfBootpRelay, ipNewCfgRmapEntry=ipNewCfgRmapEntry, vrrpCurCfgVirtRtrIpv6Addr=vrrpCurCfgVirtRtrIpv6Addr, tcpStatCurConn=tcpStatCurConn, icmp6OutEchoReps=icmp6OutEchoReps, ospfIfDesignatedRouterIP=ospfIfDesignatedRouterIP, vrrpNewCfgVirtRtrGrpTckVlanPort=vrrpNewCfgVirtRtrGrpTckVlanPort, ospfCurCfgHostIndex=ospfCurCfgHostIndex, vrrpCurCfgVirtRtrGrpSharing=vrrpCurCfgVirtRtrGrpSharing, ripNewCfgIntfPoisonReverse=ripNewCfgIntfPoisonReverse, ospfNewCfgVisionAreaMetric=ospfNewCfgVisionAreaMetric, ospfAreaErrHelloMismatch=ospfAreaErrHelloMismatch, ripInfoIntfListen=ripInfoIntfListen, ospfIntfErrDeadMismatch=ospfIntfErrDeadMismatch, vrrpNewCfgVirtRtrGrpTckHsrv=vrrpNewCfgVirtRtrGrpTckHsrv, ipNewCfgNwfTable=ipNewCfgNwfTable, vrrpNewCfgVirtRtrVrGrpTckHsrv=vrrpNewCfgVirtRtrVrGrpTckHsrv, ospfCumIntfWaitTimer=ospfCumIntfWaitTimer, vrrpCurCfgVirtRtrVrGrpAdverInterval=vrrpCurCfgVirtRtrVrGrpAdverInterval, ospfinfo=ospfinfo, ospfAreaErrAuthFailure=ospfAreaErrAuthFailure, ipCurCfgAlistMetric=ipCurCfgAlistMetric, ospfAreaRxPkts=ospfAreaRxPkts, ospfIfNbrIntfIndex=ospfIfNbrIntfIndex, vrrpCurCfgVirtRtrGrpVersion=vrrpCurCfgVirtRtrGrpVersion, ripNewCfgIntfAuth=ripNewCfgIntfAuth, vrrpNewCfgVirtRtrState=vrrpNewCfgVirtRtrState, intfInfoLinkLocalAddr=intfInfoLinkLocalAddr, ipFwdNewCfgLocalEntry=ipFwdNewCfgLocalEntry, ipFwdNewCfgLocalIndex=ipFwdNewCfgLocalIndex, vrrpCurCfgVirtRtrTckHsrv=vrrpCurCfgVirtRtrTckHsrv, vrrpCurCfgGenState=vrrpCurCfgGenState, ipNewCfgStaticArpTable=ipNewCfgStaticArpTable, ospfIntfIndex=ospfIntfIndex, ripInfoIntfAddress=ripInfoIntfAddress, ospfIntfInfoEntry=ospfIntfInfoEntry, ospfNewCfgHostState=ospfNewCfgHostState, ripInfoIntfPoisonReverse=ripInfoIntfPoisonReverse, ripStatInResponsePkts=ripStatInResponsePkts, vrrpNewCfgVirtRtrGrpInterval=vrrpNewCfgVirtRtrGrpInterval, ospfIntfRxlsAcks=ospfIntfRxlsAcks, vrrpVirtRtrVrGrpTableMaxSize=vrrpVirtRtrVrGrpTableMaxSize, vrrpCurCfgVirtRtrVrGrpPriority=vrrpCurCfgVirtRtrVrGrpPriority, bgpNewCfgPeerMinAS=bgpNewCfgPeerMinAS, ipCurCfgStaticRouteMask=ipCurCfgStaticRouteMask, arpNewCfgReARPPeriod=arpNewCfgReARPPeriod, ipRoute6InfoDestIp6=ipRoute6InfoDestIp6, vrrpCurCfgIfTableEntry=vrrpCurCfgIfTableEntry, vrrpNewCfgVirtRtrGrpDelete=vrrpNewCfgVirtRtrGrpDelete, ripCurCfgIntfEntry=ripCurCfgIntfEntry, ipRoutingInfo=ipRoutingInfo, vrrpNewCfgVirtRtrGrpTckL4Port=vrrpNewCfgVirtRtrGrpTckL4Port, bgpCurCfgState=bgpCurCfgState, rip2CurCfgVip=rip2CurCfgVip, bgpNewCfgAggrEntry=bgpNewCfgAggrEntry, ospfNewCfgVisionAreaDelete=ospfNewCfgVisionAreaDelete, ospfNewCfgIbgpMetric=ospfNewCfgIbgpMetric, ipCurCfgIntfBroadcast=ipCurCfgIntfBroadcast, vrrpNewCfgIfAuthType=vrrpNewCfgIfAuthType, ospfIfNbrTable=ospfIfNbrTable, vrrpCurCfgVirtRtrTckHsrp=vrrpCurCfgVirtRtrTckHsrp, rip2RoutesInfoDestination=rip2RoutesInfoDestination, ipRouteInfoTable=ipRouteInfoTable, ip6OutNoRoutes=ip6OutNoRoutes, ipv6NewCfgStaticRouteAction=ipv6NewCfgStaticRouteAction, ospfAreaErrDeadMismatch=ospfAreaErrDeadMismatch, ospfIntfRxTxStats=ospfIntfRxTxStats, vrrpNewCfgVirtRtrVrGrpRem=vrrpNewCfgVirtRtrVrGrpRem, ospfAreaRxlsUpdates=ospfAreaRxlsUpdates, ripInfoIntfEntry=ripInfoIntfEntry, rip2RoutesInfoTable=rip2RoutesInfoTable, ipCurCfgGwArp=ipCurCfgGwArp, gatewayInfoAddr=gatewayInfoAddr, clearStats=clearStats, arpInfo=arpInfo, vrrpCurCfgVirtRtrTckRServer=vrrpCurCfgVirtRtrTckRServer, vrrpIfTableMaxSize=vrrpIfTableMaxSize, vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo=vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo, ospfNewCfgAreaType=ospfNewCfgAreaType, ospfCumNbrRstAd=ospfCumNbrRstAd, ip6InDiscards=ip6InDiscards, ip6icmpOutMsgs=ip6icmpOutMsgs, ipNewCfgAlistMetric=ipNewCfgAlistMetric, arpStatEntries=arpStatEntries, ospfCurCfgMdkeyIndex=ospfCurCfgMdkeyIndex, ospfCurCfgAreaIndex=ospfCurCfgAreaIndex, ipNewCfgStaticArpIndx=ipNewCfgStaticArpIndx, dnsStatInBadDnsRequests=dnsStatInBadDnsRequests, ospfAreaNbrhello=ospfAreaNbrhello, ipFwdCurCfgNoICMPRedirect=ipFwdCurCfgNoICMPRedirect, ifClearStats=ifClearStats, icmp6InEchoReps=icmp6InEchoReps, vrrpNewCfgVirtRtrSharing=vrrpNewCfgVirtRtrSharing, ospfNewCfgHostEntry=ospfNewCfgHostEntry, ripNewCfgIntfState=ripNewCfgIntfState, ospfCfg=ospfCfg, ripNewCfgIntfEntry=ripNewCfgIntfEntry, ripCurCfgIntfMcastUpdate=ripCurCfgIntfMcastUpdate, vrrpNewCfgVirtRtrTckIpIntf=vrrpNewCfgVirtRtrTckIpIntf, vrrpNewCfgVirtRtrVrGrpTckL4Port=vrrpNewCfgVirtRtrVrGrpTckL4Port, ipNewCfgRmapAp=ipNewCfgRmapAp, bgpNewCfgPeerInRmapList=bgpNewCfgPeerInRmapList, ripInfoIntfAuth=ripInfoIntfAuth, ospfAreaNbrStart=ospfAreaNbrStart, ospfCurCfgStaticMetric=ospfCurCfgStaticMetric, bgpNewCfgPeerOutRmapList=bgpNewCfgPeerOutRmapList, ripNewCfgIntfListen=ripNewCfgIntfListen, ipGatewayTableMax=ipGatewayTableMax, ripNewCfgIntfIndex=ripNewCfgIntfIndex, ospfNewCfgIntfIndex=ospfNewCfgIntfIndex, ipNewCfgAlistAction=ipNewCfgAlistAction, dnsNewCfgSecondaryIpv6Addr=dnsNewCfgSecondaryIpv6Addr, ospfCurCfgState=ospfCurCfgState, ipCurCfgAspathAction=ipCurCfgAspathAction, ospfCurCfgVirtIntfEntry=ospfCurCfgVirtIntfEntry, ospfNewCfgFixedMetricType=ospfNewCfgFixedMetricType, ospfCumNbrDown=ospfCumNbrDown, vrrpCurCfgVirtRtrGrpTableEntry=vrrpCurCfgVirtRtrGrpTableEntry, vrrpNewCfgVirtRtrTckHsrp=vrrpNewCfgVirtRtrTckHsrp, ospfCurCfgAreaType=ospfCurCfgAreaType, rip2NewCfgUpdatePeriod=rip2NewCfgUpdatePeriod, vrrpGeneral=vrrpGeneral, ospfNewCfgMdkeyIndex=ospfNewCfgMdkeyIndex, ospfCurCfgIntfTransit=ospfCurCfgIntfTransit, bgpNewCfgPeerTable=bgpNewCfgPeerTable, intfInfoIndex=intfInfoIndex, ipFwdNewCfgLocalDelete=ipFwdNewCfgLocalDelete, ipCurCfgBootpState=ipCurCfgBootpState, ospfCurCfgLsdb=ospfCurCfgLsdb, ospfCurCfgRangeState=ospfCurCfgRangeState, ospfNewCfgEbgpMetricType=ospfNewCfgEbgpMetricType, routeStatEntries=routeStatEntries, ospfAreaInfoId=ospfAreaInfoId, ipNewCfgAspathRmapIndex=ipNewCfgAspathRmapIndex, ospfNumberOfLsdbEntries=ospfNumberOfLsdbEntries, vrrpCurCfgVirtRtrGrpTable=vrrpCurCfgVirtRtrGrpTable, ospfAreaNbrN1way=ospfAreaNbrN1way, bgpNewCfgPeerDelete=bgpNewCfgPeerDelete, allowedNwInfoEndIpAddr=allowedNwInfoEndIpAddr, allowedNwInfoIndex=allowedNwInfoIndex, vrrpCurCfgGenTckIpIntfInc=vrrpCurCfgGenTckIpIntfInc, bgpOperStartPeerNum=bgpOperStartPeerNum, intfInfoStatus=intfInfoStatus, ospfNewCfgStaticMetric=ospfNewCfgStaticMetric, bgpCurCfgAggrState=bgpCurCfgAggrState, ospfCurCfgIntfEntry=ospfCurCfgIntfEntry, vrrpCurCfgGenHoldoff=vrrpCurCfgGenHoldoff, ospfMdkeyTableMaxSize=ospfMdkeyTableMaxSize, ospfIntfErrorStats=ospfIntfErrorStats, ospfNewCfgVisionAreaEntry=ospfNewCfgVisionAreaEntry, ipCurCfgGwRetry=ipCurCfgGwRetry, bgpNewCfgPeerFixedState=bgpNewCfgPeerFixedState, bgpCurCfgPeerKeepAlive=bgpCurCfgPeerKeepAlive, bgpCurCfgPeerOspfState=bgpCurCfgPeerOspfState, ospfNewCfgRipOutRmapList=ospfNewCfgRipOutRmapList, vrrpCurCfgVirtRtrIndx=vrrpCurCfgVirtRtrIndx, ospfNewCfgStaticMetricType=ospfNewCfgStaticMetricType, ripStatInSelfRcvPkts=ripStatInSelfRcvPkts, vrrpInfoVirtRtrProxy=vrrpInfoVirtRtrProxy, ipNewCfgRouterID=ipNewCfgRouterID, ospfStartTime=ospfStartTime, ospfNewCfgVirtIntfMdkey=ospfNewCfgVirtIntfMdkey, ipCurCfgGwAddr=ipCurCfgGwAddr, vrrpNewCfgVirtRtrVrGrpTckHsrp=vrrpNewCfgVirtRtrVrGrpTckHsrp, vrrpNewCfgVirtRtrVrGrpPreemption=vrrpNewCfgVirtRtrVrGrpPreemption, vrrpVirtRtrGrpTableMaxSize=vrrpVirtRtrGrpTableMaxSize, bgpCurCfgMaxASPath=bgpCurCfgMaxASPath, ipCurCfgAspathIndex=ipCurCfgAspathIndex, ospfNewCfgVirtIntfTable=ospfNewCfgVirtIntfTable, ospfAreaTxlsAcks=ospfAreaTxlsAcks, allowedNwInfoEntry=allowedNwInfoEntry, icmp6InTooBigs=icmp6InTooBigs, bgpNewCfgPeerAddInRmap=bgpNewCfgPeerAddInRmap, ip6gwStats=ip6gwStats, ipCurCfgIntfIpv6Addr=ipCurCfgIntfIpv6Addr, rip2RoutesInfoEntry=rip2RoutesInfoEntry, bgpCurCfgAggrIndex=bgpCurCfgAggrIndex, ipRoute6InfoInterface=ipRoute6InfoInterface, vrrpNewCfgVirtRtrIfIndex=vrrpNewCfgVirtRtrIfIndex, nbrcacheInfoTotLocalEntries=nbrcacheInfoTotLocalEntries, nbrcacheInfoTotOtherEntries=nbrcacheInfoTotOtherEntries, vrrpNewCfgVirtRtrTckRServer=vrrpNewCfgVirtRtrTckRServer, ospfCumRxPkts=ospfCumRxPkts, ipCurCfgStaticRouteDestIp=ipCurCfgStaticRouteDestIp, vrrpStatOutBadAdvers=vrrpStatOutBadAdvers, vrrpCurCfgVirtRtrTckVirtRtr=vrrpCurCfgVirtRtrTckVirtRtr, ripNewCfgIntfKey=ripNewCfgIntfKey, ospfAreaRxTxStatsEntry=ospfAreaRxTxStatsEntry, ipCurCfgStaticArpPort=ipCurCfgStaticArpPort, ospfIfNbrEntry=ospfIfNbrEntry, ospfArea=ospfArea, ospfNewCfgAreaMetric=ospfNewCfgAreaMetric, vrrpNewCfgVirtRtrVrGrpAdverInterval=vrrpNewCfgVirtRtrVrGrpAdverInterval, arpStatHighWater=arpStatHighWater, ipCurCfgStaticRouteEntry=ipCurCfgStaticRouteEntry, ipCurCfgRmapAp=ipCurCfgRmapAp, ipFwdCurCfgPortEntry=ipFwdCurCfgPortEntry, bgpNewCfgPeerKeepAlive=bgpNewCfgPeerKeepAlive, ripStatOutPackets=ripStatOutPackets, ospfAreaNbrDown=ospfAreaNbrDown, vrrpCurCfgVirtRtrGrpTckRServer=vrrpCurCfgVirtRtrGrpTckRServer, ospfNewCfgRangeHideState=ospfNewCfgRangeHideState, ipRmapCfg=ipRmapCfg, ospfNbrInInitState=ospfNbrInInitState, ipCurCfgAspathRmapIndex=ipCurCfgAspathRmapIndex, ipIntfInfo=ipIntfInfo, vrrpNewCfgVirtRtrVrGrpDelete=vrrpNewCfgVirtRtrVrGrpDelete, dnsCurCfgSecondaryIpv6Addr=dnsCurCfgSecondaryIpv6Addr, ospfNewCfgVisionAreaType=ospfNewCfgVisionAreaType, ospfIntfWaitTimer=ospfIntfWaitTimer, ospfIfWaitInterval=ospfIfWaitInterval, ripInfoVip=ripInfoVip, ospfNewCfgIntfEntry=ospfNewCfgIntfEntry, ospfCurCfgRangeMask=ospfCurCfgRangeMask, garpOperIpAddr=garpOperIpAddr, ipCurCfgGwEntry=ipCurCfgGwEntry, ipCurCfgGwIndex=ipCurCfgGwIndex, vrrpCurCfgVirtRtrTckVlanPort=vrrpCurCfgVirtRtrTckVlanPort, ospfIntfRxlsReqs=ospfIntfRxlsReqs, ospfNewCfgAreaTable=ospfNewCfgAreaTable, ipInterfaceCfg=ipInterfaceCfg, vrrpInfo=vrrpInfo, ipCurCfgIntfVlan=ipCurCfgIntfVlan, ospfCurCfgHostCost=ospfCurCfgHostCost) mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", ospfAreaNbrExchangeDone=ospfAreaNbrExchangeDone, bgpNewCfgAggrTable=bgpNewCfgAggrTable, ipNewCfgAlistIndex=ipNewCfgAlistIndex, bgpCurCfgPeerInRmapList=bgpCurCfgPeerInRmapList, ospfIntfNbrhello=ospfIntfNbrhello, ospfRedistributeFixed=ospfRedistributeFixed, ipNewCfgGwEntry=ipNewCfgGwEntry, bgpCurCfgPeerStaticState=bgpCurCfgPeerStaticState, ospfCumNbrAdjointOk=ospfCumNbrAdjointOk, vrrpCurCfgVirtRtrGrpTckVirtRtr=vrrpCurCfgVirtRtrGrpTckVirtRtr, vrrpCurCfgGenTckVirtRtrInc=vrrpCurCfgGenTckVirtRtrInc, bgpCurCfgPeerRemoteAs=bgpCurCfgPeerRemoteAs, ipFwdNewCfgPortState=ipFwdNewCfgPortState, vrrpNewCfgGenTckIpIntfInc=vrrpNewCfgGenTckIpIntfInc, ipNewCfgGwDelete=ipNewCfgGwDelete, vrrpNewCfgVirtRtrGrpPreempt=vrrpNewCfgVirtRtrGrpPreempt, ipNewCfgGwState=ipNewCfgGwState, vrrpNewCfgVirtRtrGrpTckHsrp=vrrpNewCfgVirtRtrGrpTckHsrp, intfInfoAddr=intfInfoAddr, ospfCumTxDatabase=ospfCumTxDatabase, vrrpNewCfgVirtRtrAddr=vrrpNewCfgVirtRtrAddr, ripCurCfgIntfKey=ripCurCfgIntfKey, vrrpNewCfgGenTckHsrvInc=vrrpNewCfgGenTckHsrvInc, ospfCurCfgStaticOutRmapList=ospfCurCfgStaticOutRmapList, ripNewCfgIntfTable=ripNewCfgIntfTable, rip2NewCfgStaticSupply=rip2NewCfgStaticSupply, dnsNewCfgPrimaryIpv6Addr=dnsNewCfgPrimaryIpv6Addr, bgpCurCfgAggrAddr=bgpCurCfgAggrAddr, ospfNewCfgRipAddOutRmap=ospfNewCfgRipAddOutRmap, vrrpCurCfgVirtRtrIpv6Interval=vrrpCurCfgVirtRtrIpv6Interval, ospfNewCfgStaticOutRmapList=ospfNewCfgStaticOutRmapList, intfInfoIpver=intfInfoIpver, ospfCurCfgIntfPriority=ospfCurCfgIntfPriority, ipCurCfgStaticArpIp=ipCurCfgStaticArpIp, vrrpNewCfgVirtRtrTckVlanPort=vrrpNewCfgVirtRtrTckVlanPort, ripCurCfgIntfPoisonReverse=ripCurCfgIntfPoisonReverse, ipNewCfgRmapPrec=ipNewCfgRmapPrec, arpInfoFlag=arpInfoFlag, ospfCurCfgIntfDead=ospfCurCfgIntfDead, ripInfoIntfIndex=ripInfoIntfIndex, vrrpCurCfgVirtRtrVrGrpSharing=vrrpCurCfgVirtRtrVrGrpSharing, ipCurCfgRmapLp=ipCurCfgRmapLp, ospfCurCfgVirtIntfNbr=ospfCurCfgVirtIntfNbr, ospfIntfChangeStats=ospfIntfChangeStats, layer3Info=layer3Info, ospfAreaRxlsReqs=ospfAreaRxlsReqs, ospfCumTxlsAcks=ospfCumTxlsAcks, ip6GwStatsIndex=ip6GwStatsIndex, ospfNewCfgVirtIntfState=ospfNewCfgVirtIntfState, ospfAreaNbrIndex=ospfAreaNbrIndex, ospfCumRxlsUpdates=ospfCumRxlsUpdates, ospfCurCfgAreaAuthType=ospfCurCfgAreaAuthType, ipNewCfgIntfDelete=ipNewCfgIntfDelete, ipRouteInfoGateway2=ipRouteInfoGateway2, bgpNewCfgPeerDefaultAction=bgpNewCfgPeerDefaultAction, ipCurCfgGwIpv6Addr=ipCurCfgGwIpv6Addr, ipNewCfgIntfRouteAdv=ipNewCfgIntfRouteAdv, ospfNewCfgEbgpMetric=ospfNewCfgEbgpMetric, ospfIntfTxDatabase=ospfIntfTxDatabase, ipNewCfgIntfEntry=ipNewCfgIntfEntry, ospfIntfRxTxStatsEntry=ospfIntfRxTxStatsEntry, ospfNewCfgRipMetric=ospfNewCfgRipMetric, ipNewCfgAspathIndex=ipNewCfgAspathIndex, vrrpNewCfgGenTckHsrpInc=vrrpNewCfgGenTckHsrpInc, ospfNewCfgMdkeyTable=ospfNewCfgMdkeyTable, ospfAreaRxDatabase=ospfAreaRxDatabase, bgpNewCfgLocalPref=bgpNewCfgLocalPref, ripInfoIntfState=ripInfoIntfState, layer3=layer3, ospfCurCfgVirtIntfHello=ospfCurCfgVirtIntfHello, ripStatRouteTimeout=ripStatRouteTimeout, icmp6OutNAs=icmp6OutNAs, ip6GwFails=ip6GwFails, bgpCurCfgPeerEntry=bgpCurCfgPeerEntry, nbrcacheInfoMacAddr=nbrcacheInfoMacAddr, ipNewCfgBootpAddr2=ipNewCfgBootpAddr2, ip6icmpInErrors=ip6icmpInErrors, vrrpCurCfgVirtRtrState=vrrpCurCfgVirtRtrState, ipCurCfgRmapEntry=ipCurCfgRmapEntry, ospfNewCfgIntfDelete=ospfNewCfgIntfDelete, ospfNewCfgRipRemoveOutRmap=ospfNewCfgRipRemoveOutRmap, ospfCurCfgMdkeyEntry=ospfCurCfgMdkeyEntry, ipNewCfgAspathDelete=ipNewCfgAspathDelete, vrrpCurCfgVirtRtrVrGrpTable=vrrpCurCfgVirtRtrVrGrpTable, vrrpNewCfgVirtRtrTckVirtRtr=vrrpNewCfgVirtRtrTckVirtRtr, bgpNewCfgPeerMetric=bgpNewCfgPeerMetric, ospfNumberOfInterfacesUp=ospfNumberOfInterfacesUp, ipFwdNewCfgDirectedBcast=ipFwdNewCfgDirectedBcast, ospfAreaErrorStatsEntry=ospfAreaErrorStatsEntry)
(aws_switch,) = mibBuilder.importSymbols('ALTEON-ROOT-MIB', 'aws-switch') (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, value_size_constraint, single_value_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (notification_type, counter32, ip_address, object_identity, integer32, gauge32, bits, module_identity, counter64, unsigned32, time_ticks, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'Counter32', 'IpAddress', 'ObjectIdentity', 'Integer32', 'Gauge32', 'Bits', 'ModuleIdentity', 'Counter64', 'Unsigned32', 'TimeTicks', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier') (display_string, textual_convention, phys_address) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention', 'PhysAddress') layer3 = module_identity((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3)) layer3.setRevisions(('2009-08-05 00:00',)) if mibBuilder.loadTexts: layer3.setLastUpdated('200908050000Z') if mibBuilder.loadTexts: layer3.setOrganization('Radware Ltd.') layer3_configs = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1)) layer3_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2)) layer3_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3)) layer3_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4)) ip_interface_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1)) ip_gateway_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2)) ip_static_route_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3)) ip_forward_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4)) vrrp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6)) arp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7)) ip_bootp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8)) dns_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9)) ip_nwf_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10)) ip_rmap_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11)) bgp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12)) ospf_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13)) ip_general_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14)) ip_static_arp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15)) rip2_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18)) arp_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2)) route_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3)) dns_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4)) vrrp_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5)) ospf_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6)) clear_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7)) ip6_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10)) icmp6_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11)) ip6gw_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12)) rip2_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13)) tcp_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14)) ip_routing_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1)) arp_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2)) vrrp_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3)) ospfinfo = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4)) gateway_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5)) nbrcache_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7)) ip_route6_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8)) ip_intf_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9)) rip2_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10)) rip2_routes_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11)) allowed_nw_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12)) vrrp_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1)) ip_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2)) ip_interface_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipInterfaceTableMax.setStatus('current') ip_cur_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2)) if mibBuilder.loadTexts: ipCurCfgIntfTable.setStatus('current') ip_cur_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgIntfIndex')) if mibBuilder.loadTexts: ipCurCfgIntfEntry.setStatus('current') ip_cur_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgIntfIndex.setStatus('current') ip_cur_cfg_intf_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgIntfAddr.setStatus('current') ip_cur_cfg_intf_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgIntfMask.setStatus('current') ip_cur_cfg_intf_broadcast = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 4), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgIntfBroadcast.setStatus('obsolete') ip_cur_cfg_intf_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgIntfVlan.setStatus('current') ip_cur_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgIntfState.setStatus('current') ip_cur_cfg_intf_bootp_relay = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgIntfBootpRelay.setStatus('current') ip_cur_cfg_intf_ip_ver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgIntfIpVer.setStatus('current') ip_cur_cfg_intf_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgIntfIpv6Addr.setStatus('current') ip_cur_cfg_intf_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgIntfPrefixLen.setStatus('current') ip_cur_cfg_intf_route_adv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgIntfRouteAdv.setStatus('current') ip_new_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3)) if mibBuilder.loadTexts: ipNewCfgIntfTable.setStatus('current') ip_new_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgIntfIndex')) if mibBuilder.loadTexts: ipNewCfgIntfEntry.setStatus('current') ip_new_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipNewCfgIntfIndex.setStatus('current') ip_new_cfg_intf_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 2), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgIntfAddr.setStatus('current') ip_new_cfg_intf_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 3), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgIntfMask.setStatus('current') ip_new_cfg_intf_broadcast = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 4), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgIntfBroadcast.setStatus('obsolete') ip_new_cfg_intf_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 5), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgIntfVlan.setStatus('current') ip_new_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgIntfState.setStatus('current') ip_new_cfg_intf_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgIntfDelete.setStatus('current') ip_new_cfg_intf_bootp_relay = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgIntfBootpRelay.setStatus('current') ip_new_cfg_intf_ip_ver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgIntfIpVer.setStatus('current') ip_new_cfg_intf_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgIntfIpv6Addr.setStatus('current') ip_new_cfg_intf_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgIntfPrefixLen.setStatus('current') ip_new_cfg_intf_route_adv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgIntfRouteAdv.setStatus('current') ip_cur_cfg_gw_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('strict', 1), ('roundrobin', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgGwMetric.setStatus('current') ip_new_cfg_gw_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('strict', 1), ('roundrobin', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ipNewCfgGwMetric.setStatus('current') ip_gateway_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipGatewayTableMax.setStatus('current') ip_cur_cfg_gw_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4)) if mibBuilder.loadTexts: ipCurCfgGwTable.setStatus('current') ip_cur_cfg_gw_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgGwIndex')) if mibBuilder.loadTexts: ipCurCfgGwEntry.setStatus('current') ip_cur_cfg_gw_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgGwIndex.setStatus('current') ip_cur_cfg_gw_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgGwAddr.setStatus('current') ip_cur_cfg_gw_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 60))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgGwInterval.setStatus('current') ip_cur_cfg_gw_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgGwRetry.setStatus('current') ip_cur_cfg_gw_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgGwState.setStatus('current') ip_cur_cfg_gw_arp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgGwArp.setStatus('current') ip_cur_cfg_gw_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgGwVlan.setStatus('current') ip_cur_cfg_gw_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('low', 1), ('high', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgGwPriority.setStatus('current') ip_cur_cfg_gw_ip_ver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgGwIpVer.setStatus('current') ip_cur_cfg_gw_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgGwIpv6Addr.setStatus('current') ip_new_cfg_gw_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5)) if mibBuilder.loadTexts: ipNewCfgGwTable.setStatus('current') ip_new_cfg_gw_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgGwIndex')) if mibBuilder.loadTexts: ipNewCfgGwEntry.setStatus('current') ip_new_cfg_gw_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipNewCfgGwIndex.setStatus('current') ip_new_cfg_gw_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 2), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgGwAddr.setStatus('current') ip_new_cfg_gw_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 60))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgGwInterval.setStatus('current') ip_new_cfg_gw_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgGwRetry.setStatus('current') ip_new_cfg_gw_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgGwState.setStatus('current') ip_new_cfg_gw_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgGwDelete.setStatus('current') ip_new_cfg_gw_arp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgGwArp.setStatus('current') ip_new_cfg_gw_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 8), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgGwVlan.setStatus('current') ip_new_cfg_gw_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('low', 1), ('high', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgGwPriority.setStatus('current') ip_new_cfg_gw_ip_ver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgGwIpVer.setStatus('current') ip_new_cfg_gw_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgGwIpv6Addr.setStatus('current') ip_static_route_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipStaticRouteTableMaxSize.setStatus('current') ip_cur_cfg_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2)) if mibBuilder.loadTexts: ipCurCfgStaticRouteTable.setStatus('current') ip_cur_cfg_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgStaticRouteIndx')) if mibBuilder.loadTexts: ipCurCfgStaticRouteEntry.setStatus('current') ip_cur_cfg_static_route_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgStaticRouteIndx.setStatus('current') ip_cur_cfg_static_route_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgStaticRouteDestIp.setStatus('current') ip_cur_cfg_static_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgStaticRouteMask.setStatus('current') ip_cur_cfg_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 4), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgStaticRouteGateway.setStatus('current') ip_cur_cfg_static_route_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgStaticRouteInterface.setStatus('current') ip_new_cfg_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3)) if mibBuilder.loadTexts: ipNewCfgStaticRouteTable.setStatus('current') ip_new_cfg_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgStaticRouteIndx')) if mibBuilder.loadTexts: ipNewCfgStaticRouteEntry.setStatus('current') ip_new_cfg_static_route_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipNewCfgStaticRouteIndx.setStatus('current') ip_new_cfg_static_route_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 2), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgStaticRouteDestIp.setStatus('current') ip_new_cfg_static_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 3), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgStaticRouteMask.setStatus('current') ip_new_cfg_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 4), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgStaticRouteGateway.setStatus('current') ip_new_cfg_static_route_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgStaticRouteAction.setStatus('current') ip_new_cfg_static_route_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 6), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgStaticRouteInterface.setStatus('current') ipv6_cur_cfg_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4)) if mibBuilder.loadTexts: ipv6CurCfgStaticRouteTable.setStatus('current') ipv6_cur_cfg_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipv6CurCfgStaticRouteIndx')) if mibBuilder.loadTexts: ipv6CurCfgStaticRouteEntry.setStatus('current') ipv6_cur_cfg_static_route_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipv6CurCfgStaticRouteIndx.setStatus('current') ipv6_cur_cfg_static_route_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipv6CurCfgStaticRouteDestIp.setStatus('current') ipv6_cur_cfg_static_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipv6CurCfgStaticRouteMask.setStatus('current') ipv6_cur_cfg_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipv6CurCfgStaticRouteGateway.setStatus('current') ipv6_cur_cfg_static_route_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipv6CurCfgStaticRouteInterface.setStatus('current') ipv6_new_cfg_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5)) if mibBuilder.loadTexts: ipv6NewCfgStaticRouteTable.setStatus('current') ipv6_new_cfg_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipv6NewCfgStaticRouteIndx')) if mibBuilder.loadTexts: ipv6NewCfgStaticRouteEntry.setStatus('current') ipv6_new_cfg_static_route_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 1), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipv6NewCfgStaticRouteIndx.setStatus('current') ipv6_new_cfg_static_route_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipv6NewCfgStaticRouteDestIp.setStatus('current') ipv6_new_cfg_static_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipv6NewCfgStaticRouteMask.setStatus('current') ipv6_new_cfg_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipv6NewCfgStaticRouteGateway.setStatus('current') ipv6_new_cfg_static_route_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipv6NewCfgStaticRouteAction.setStatus('current') ipv6_new_cfg_static_route_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipv6NewCfgStaticRouteInterface.setStatus('current') rip_cur_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1)) if mibBuilder.loadTexts: ripCurCfgIntfTable.setStatus('current') rip_cur_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ripCurCfgIntfIndex')) if mibBuilder.loadTexts: ripCurCfgIntfEntry.setStatus('current') rip_cur_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfIndex.setStatus('current') rip_cur_cfg_intf_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('ripVersion1', 1), ('ripVersion2', 2), ('both', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfVersion.setStatus('current') rip_cur_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfState.setStatus('current') rip_cur_cfg_intf_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfListen.setStatus('current') rip_cur_cfg_intf_def_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfDefListen.setStatus('obsolete') rip_cur_cfg_intf_trig_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfTrigUpdate.setStatus('current') rip_cur_cfg_intf_mcast_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfMcastUpdate.setStatus('current') rip_cur_cfg_intf_poison_reverse = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfPoisonReverse.setStatus('current') rip_cur_cfg_intf_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfSupply.setStatus('current') rip_cur_cfg_intf_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfMetric.setStatus('current') rip_cur_cfg_intf_auth = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('password', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfAuth.setStatus('current') rip_cur_cfg_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfKey.setStatus('current') rip_cur_cfg_intf_default = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('both', 1), ('listen', 2), ('supply', 3), ('none', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripCurCfgIntfDefault.setStatus('current') rip_new_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2)) if mibBuilder.loadTexts: ripNewCfgIntfTable.setStatus('current') rip_new_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ripNewCfgIntfIndex')) if mibBuilder.loadTexts: ripNewCfgIntfEntry.setStatus('current') rip_new_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripNewCfgIntfIndex.setStatus('current') rip_new_cfg_intf_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('ripVersion1', 1), ('ripVersion2', 2), ('both', 3)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ripNewCfgIntfVersion.setStatus('current') rip_new_cfg_intf_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ripNewCfgIntfSupply.setStatus('current') rip_new_cfg_intf_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ripNewCfgIntfListen.setStatus('current') rip_new_cfg_intf_def_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ripNewCfgIntfDefListen.setStatus('obsolete') rip_new_cfg_intf_trig_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ripNewCfgIntfTrigUpdate.setStatus('current') rip_new_cfg_intf_mcast_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ripNewCfgIntfMcastUpdate.setStatus('current') rip_new_cfg_intf_poison_reverse = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ripNewCfgIntfPoisonReverse.setStatus('current') rip_new_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ripNewCfgIntfState.setStatus('current') rip_new_cfg_intf_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ripNewCfgIntfMetric.setStatus('current') rip_new_cfg_intf_auth = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('password', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ripNewCfgIntfAuth.setStatus('current') rip_new_cfg_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ripNewCfgIntfKey.setStatus('current') rip_new_cfg_intf_default = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('both', 1), ('listen', 2), ('supply', 3), ('none', 4)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ripNewCfgIntfDefault.setStatus('current') rip_general = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3)) rip2_cur_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: rip2CurCfgState.setStatus('current') rip2_new_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: rip2NewCfgState.setStatus('current') rip2_cur_cfg_update_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readonly') if mibBuilder.loadTexts: rip2CurCfgUpdatePeriod.setStatus('current') rip2_new_cfg_update_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readwrite') if mibBuilder.loadTexts: rip2NewCfgUpdatePeriod.setStatus('current') rip2_cur_cfg_vip = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: rip2CurCfgVip.setStatus('current') rip2_new_cfg_vip = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: rip2NewCfgVip.setStatus('current') rip2_cur_cfg_static_supply = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: rip2CurCfgStaticSupply.setStatus('current') rip2_new_cfg_static_supply = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: rip2NewCfgStaticSupply.setStatus('current') ip_fwd_general_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1)) ip_fwd_cur_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('on', 2), ('off', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdCurCfgState.setStatus('current') ip_fwd_new_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('on', 2), ('off', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ipFwdNewCfgState.setStatus('current') ip_fwd_cur_cfg_directed_bcast = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdCurCfgDirectedBcast.setStatus('current') ip_fwd_new_cfg_directed_bcast = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ipFwdNewCfgDirectedBcast.setStatus('current') ip_fwd_cur_cfg_no_icmp_redirect = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdCurCfgNoICMPRedirect.setStatus('current') ip_fwd_new_cfg_no_icmp_redirect = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ipFwdNewCfgNoICMPRedirect.setStatus('current') ip_fwd_cur_cfg_rt_cache = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdCurCfgRtCache.setStatus('current') ip_fwd_new_cfg_rt_cache = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ipFwdNewCfgRtCache.setStatus('current') ip_fwd_port_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdPortTableMaxSize.setStatus('current') ip_fwd_cur_cfg_port_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3)) if mibBuilder.loadTexts: ipFwdCurCfgPortTable.setStatus('current') ip_fwd_cur_cfg_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipFwdCurCfgPortIndex')) if mibBuilder.loadTexts: ipFwdCurCfgPortEntry.setStatus('current') ip_fwd_cur_cfg_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdCurCfgPortIndex.setStatus('current') ip_fwd_cur_cfg_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdCurCfgPortState.setStatus('current') ip_fwd_new_cfg_port_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4)) if mibBuilder.loadTexts: ipFwdNewCfgPortTable.setStatus('current') ip_fwd_new_cfg_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipFwdNewCfgPortIndex')) if mibBuilder.loadTexts: ipFwdNewCfgPortEntry.setStatus('current') ip_fwd_new_cfg_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdNewCfgPortIndex.setStatus('current') ip_fwd_new_cfg_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ipFwdNewCfgPortState.setStatus('current') ip_fwd_local_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdLocalTableMaxSize.setStatus('current') ip_fwd_cur_cfg_local_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6)) if mibBuilder.loadTexts: ipFwdCurCfgLocalTable.setStatus('current') ip_fwd_cur_cfg_local_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipFwdCurCfgLocalIndex')) if mibBuilder.loadTexts: ipFwdCurCfgLocalEntry.setStatus('current') ip_fwd_cur_cfg_local_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdCurCfgLocalIndex.setStatus('current') ip_fwd_cur_cfg_local_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdCurCfgLocalSubnet.setStatus('current') ip_fwd_cur_cfg_local_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdCurCfgLocalMask.setStatus('current') ip_fwd_new_cfg_local_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7)) if mibBuilder.loadTexts: ipFwdNewCfgLocalTable.setStatus('current') ip_fwd_new_cfg_local_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipFwdNewCfgLocalIndex')) if mibBuilder.loadTexts: ipFwdNewCfgLocalEntry.setStatus('current') ip_fwd_new_cfg_local_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipFwdNewCfgLocalIndex.setStatus('current') ip_fwd_new_cfg_local_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 2), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipFwdNewCfgLocalSubnet.setStatus('current') ip_fwd_new_cfg_local_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 3), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipFwdNewCfgLocalMask.setStatus('current') ip_fwd_new_cfg_local_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipFwdNewCfgLocalDelete.setStatus('current') arp_cur_cfg_re_arp_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7, 1), integer32().subtype(subtypeSpec=value_range_constraint(2, 120))).setMaxAccess('readonly') if mibBuilder.loadTexts: arpCurCfgReARPPeriod.setStatus('current') arp_new_cfg_re_arp_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7, 2), integer32().subtype(subtypeSpec=value_range_constraint(2, 120))).setMaxAccess('readwrite') if mibBuilder.loadTexts: arpNewCfgReARPPeriod.setStatus('current') ip_cur_cfg_bootp_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 1), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgBootpAddr.setStatus('current') ip_new_cfg_bootp_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ipNewCfgBootpAddr.setStatus('current') ip_cur_cfg_bootp_addr2 = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgBootpAddr2.setStatus('current') ip_new_cfg_bootp_addr2 = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 4), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ipNewCfgBootpAddr2.setStatus('current') ip_cur_cfg_bootp_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgBootpState.setStatus('current') ip_new_cfg_bootp_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ipNewCfgBootpState.setStatus('current') vrrp_general = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1)) vrrp_cur_cfg_gen_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgGenState.setStatus('current') vrrp_new_cfg_gen_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vrrpNewCfgGenState.setStatus('current') vrrp_cur_cfg_gen_tck_virt_rtr_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgGenTckVirtRtrInc.setStatus('current') vrrp_new_cfg_gen_tck_virt_rtr_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vrrpNewCfgGenTckVirtRtrInc.setStatus('current') vrrp_cur_cfg_gen_tck_ip_intf_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgGenTckIpIntfInc.setStatus('current') vrrp_new_cfg_gen_tck_ip_intf_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vrrpNewCfgGenTckIpIntfInc.setStatus('current') vrrp_cur_cfg_gen_tck_vlan_port_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgGenTckVlanPortInc.setStatus('current') vrrp_new_cfg_gen_tck_vlan_port_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vrrpNewCfgGenTckVlanPortInc.setStatus('current') vrrp_cur_cfg_gen_tck_l4_port_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgGenTckL4PortInc.setStatus('current') vrrp_new_cfg_gen_tck_l4_port_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vrrpNewCfgGenTckL4PortInc.setStatus('current') vrrp_cur_cfg_gen_tck_r_server_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgGenTckRServerInc.setStatus('current') vrrp_new_cfg_gen_tck_r_server_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vrrpNewCfgGenTckRServerInc.setStatus('current') vrrp_cur_cfg_gen_tck_hsrp_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgGenTckHsrpInc.setStatus('current') vrrp_new_cfg_gen_tck_hsrp_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vrrpNewCfgGenTckHsrpInc.setStatus('current') vrrp_cur_cfg_gen_hotstandby = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgGenHotstandby.setStatus('current') vrrp_new_cfg_gen_hotstandby = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vrrpNewCfgGenHotstandby.setStatus('current') vrrp_cur_cfg_gen_tck_hsrv_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgGenTckHsrvInc.setStatus('current') vrrp_new_cfg_gen_tck_hsrv_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vrrpNewCfgGenTckHsrvInc.setStatus('current') vrrp_cur_cfg_gen_holdoff = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgGenHoldoff.setStatus('current') vrrp_new_cfg_gen_holdoff = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vrrpNewCfgGenHoldoff.setStatus('current') vrrp_virt_rtr_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpVirtRtrTableMaxSize.setStatus('current') vrrp_cur_cfg_virt_rtr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3)) if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTable.setStatus('current') vrrp_cur_cfg_virt_rtr_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpCurCfgVirtRtrIndx')) if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTableEntry.setStatus('current') vrrp_cur_cfg_virt_rtr_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIndx.setStatus('current') vrrp_cur_cfg_virt_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrID.setStatus('current') vrrp_cur_cfg_virt_rtr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrAddr.setStatus('current') vrrp_cur_cfg_virt_rtr_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIfIndex.setStatus('current') vrrp_cur_cfg_virt_rtr_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrInterval.setStatus('current') vrrp_cur_cfg_virt_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrPriority.setStatus('current') vrrp_cur_cfg_virt_rtr_preempt = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrPreempt.setStatus('current') vrrp_cur_cfg_virt_rtr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrState.setStatus('current') vrrp_cur_cfg_virt_rtr_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrSharing.setStatus('current') vrrp_cur_cfg_virt_rtr_tck_virt_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckVirtRtr.setStatus('current') vrrp_cur_cfg_virt_rtr_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckIpIntf.setStatus('current') vrrp_cur_cfg_virt_rtr_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckVlanPort.setStatus('current') vrrp_cur_cfg_virt_rtr_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckL4Port.setStatus('current') vrrp_cur_cfg_virt_rtr_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckRServer.setStatus('current') vrrp_cur_cfg_virt_rtr_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckHsrp.setStatus('current') vrrp_cur_cfg_virt_rtr_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckHsrv.setStatus('current') vrrp_cur_cfg_virt_rtr_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v4', 1), ('v6', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVersion.setStatus('current') vrrp_cur_cfg_virt_rtr_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 18), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIpv6Addr.setStatus('current') vrrp_cur_cfg_virt_rtr_ipv6_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 1045))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIpv6Interval.setStatus('current') vrrp_new_cfg_virt_rtr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4)) if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTable.setStatus('current') vrrp_new_cfg_virt_rtr_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpNewCfgVirtRtrIndx')) if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTableEntry.setStatus('current') vrrp_new_cfg_virt_rtr_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIndx.setStatus('current') vrrp_new_cfg_virt_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrID.setStatus('current') vrrp_new_cfg_virt_rtr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 3), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrAddr.setStatus('current') vrrp_new_cfg_virt_rtr_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 4), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIfIndex.setStatus('current') vrrp_new_cfg_virt_rtr_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrInterval.setStatus('current') vrrp_new_cfg_virt_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrPriority.setStatus('current') vrrp_new_cfg_virt_rtr_preempt = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrPreempt.setStatus('current') vrrp_new_cfg_virt_rtr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrState.setStatus('current') vrrp_new_cfg_virt_rtr_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrDelete.setStatus('current') vrrp_new_cfg_virt_rtr_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrSharing.setStatus('current') vrrp_new_cfg_virt_rtr_tck_virt_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckVirtRtr.setStatus('current') vrrp_new_cfg_virt_rtr_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckIpIntf.setStatus('current') vrrp_new_cfg_virt_rtr_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckVlanPort.setStatus('current') vrrp_new_cfg_virt_rtr_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckL4Port.setStatus('current') vrrp_new_cfg_virt_rtr_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckRServer.setStatus('current') vrrp_new_cfg_virt_rtr_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckHsrp.setStatus('current') vrrp_new_cfg_virt_rtr_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckHsrv.setStatus('current') vrrp_new_cfg_virt_rtr_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v4', 1), ('v6', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVersion.setStatus('current') vrrp_new_cfg_virt_rtr_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 19), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIpv6Addr.setStatus('current') vrrp_new_cfg_virt_rtr_ipv6_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIpv6Interval.setStatus('current') vrrp_if_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpIfTableMaxSize.setStatus('current') vrrp_cur_cfg_if_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6)) if mibBuilder.loadTexts: vrrpCurCfgIfTable.setStatus('current') vrrp_cur_cfg_if_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpCurCfgIfIndx')) if mibBuilder.loadTexts: vrrpCurCfgIfTableEntry.setStatus('current') vrrp_cur_cfg_if_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgIfIndx.setStatus('current') vrrp_cur_cfg_if_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('simple-text-password', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgIfAuthType.setStatus('current') vrrp_cur_cfg_if_passwd = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgIfPasswd.setStatus('current') vrrp_cur_cfg_if_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 4), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgIfIpAddr.setStatus('current') vrrp_new_cfg_if_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7)) if mibBuilder.loadTexts: vrrpNewCfgIfTable.setStatus('current') vrrp_new_cfg_if_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpNewCfgIfIndx')) if mibBuilder.loadTexts: vrrpNewCfgIfTableEntry.setStatus('current') vrrp_new_cfg_if_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpNewCfgIfIndx.setStatus('current') vrrp_new_cfg_if_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('simple-text-password', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgIfAuthType.setStatus('current') vrrp_new_cfg_if_passwd = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 7))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgIfPasswd.setStatus('current') vrrp_new_cfg_if_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgIfDelete.setStatus('current') vrrp_virt_rtr_grp_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 8), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpVirtRtrGrpTableMaxSize.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9)) if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTable.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpCurCfgVirtRtrGrpIndx')) if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTableEntry.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIndx.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpID.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIfIndex.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpInterval.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpPriority.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_preempt = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpPreempt.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpState.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpSharing.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_tck_virt_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckVirtRtr.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckIpIntf.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckVlanPort.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckL4Port.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckRServer.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckHsrp.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckHsrv.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v4', 1), ('v6', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpVersion.setStatus('current') vrrp_cur_cfg_virt_rtr_grp_ipv6_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIpv6Interval.setStatus('current') vrrp_new_cfg_virt_rtr_grp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10)) if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTable.setStatus('current') vrrp_new_cfg_virt_rtr_grp_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpNewCfgVirtRtrGrpIndx')) if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTableEntry.setStatus('current') vrrp_new_cfg_virt_rtr_grp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIndx.setStatus('current') vrrp_new_cfg_virt_rtr_grp_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpID.setStatus('current') vrrp_new_cfg_virt_rtr_grp_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 3), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIfIndex.setStatus('current') vrrp_new_cfg_virt_rtr_grp_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpInterval.setStatus('current') vrrp_new_cfg_virt_rtr_grp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpPriority.setStatus('current') vrrp_new_cfg_virt_rtr_grp_preempt = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpPreempt.setStatus('current') vrrp_new_cfg_virt_rtr_grp_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpState.setStatus('current') vrrp_new_cfg_virt_rtr_grp_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpDelete.setStatus('current') vrrp_new_cfg_virt_rtr_grp_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpSharing.setStatus('current') vrrp_new_cfg_virt_rtr_grp_tck_virt_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckVirtRtr.setStatus('current') vrrp_new_cfg_virt_rtr_grp_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckIpIntf.setStatus('current') vrrp_new_cfg_virt_rtr_grp_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckVlanPort.setStatus('current') vrrp_new_cfg_virt_rtr_grp_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckL4Port.setStatus('current') vrrp_new_cfg_virt_rtr_grp_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckRServer.setStatus('current') vrrp_new_cfg_virt_rtr_grp_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckHsrp.setStatus('current') vrrp_new_cfg_virt_rtr_grp_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckHsrv.setStatus('current') vrrp_new_cfg_virt_rtr_grp_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v4', 1), ('v6', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpVersion.setStatus('current') vrrp_new_cfg_virt_rtr_grp_ipv6_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIpv6Interval.setStatus('current') vrrp_virt_rtr_vr_grp_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 11), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpVirtRtrVrGrpTableMaxSize.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12)) if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTable.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpCurCfgVirtRtrVrGrpIndx')) if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTableEntry.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpIndx.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_name = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpName.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpState.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_bmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 4), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpBmap.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpPriority.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckIpIntf.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckVlanPort.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckL4Port.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckRServer.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckHsrp.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckHsrv.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_tck_virt_rtr_no = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 1024))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_add = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 1024))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpAdd.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_adver_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpAdverInterval.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_preemption = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpPreemption.setStatus('current') vrrp_cur_cfg_virt_rtr_vr_grp_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpSharing.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13)) if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTable.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpNewCfgVirtRtrVrGrpIndx')) if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTableEntry.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpIndx.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_name = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpName.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_add = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpAdd.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_rem = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpRem.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpState.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpDelete.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_bmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 7), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpBmap.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpPriority.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckIpIntf.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckVlanPort.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckL4Port.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckRServer.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckHsrp.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckHsrv.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_tck_virt_rtr_no = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 1024))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_adver_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpAdverInterval.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_preemption = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpPreemption.setStatus('current') vrrp_new_cfg_virt_rtr_vr_grp_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpSharing.setStatus('current') dns_cur_cfg_primary_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 1), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: dnsCurCfgPrimaryIpAddr.setStatus('current') dns_new_cfg_primary_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dnsNewCfgPrimaryIpAddr.setStatus('current') dns_cur_cfg_secondary_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: dnsCurCfgSecondaryIpAddr.setStatus('current') dns_new_cfg_secondary_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 4), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dnsNewCfgSecondaryIpAddr.setStatus('current') dns_cur_cfg_domain_name = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 191))).setMaxAccess('readonly') if mibBuilder.loadTexts: dnsCurCfgDomainName.setStatus('current') dns_new_cfg_domain_name = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 191))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dnsNewCfgDomainName.setStatus('current') dns_cur_cfg_primary_ipv6_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly') if mibBuilder.loadTexts: dnsCurCfgPrimaryIpv6Addr.setStatus('current') dns_new_cfg_primary_ipv6_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dnsNewCfgPrimaryIpv6Addr.setStatus('current') dns_cur_cfg_secondary_ipv6_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly') if mibBuilder.loadTexts: dnsCurCfgSecondaryIpv6Addr.setStatus('current') dns_new_cfg_secondary_ipv6_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dnsNewCfgSecondaryIpv6Addr.setStatus('current') ip_nwf_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipNwfTableMax.setStatus('current') ip_cur_cfg_nwf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2)) if mibBuilder.loadTexts: ipCurCfgNwfTable.setStatus('current') ip_cur_cfg_nwf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgNwfIndex')) if mibBuilder.loadTexts: ipCurCfgNwfEntry.setStatus('current') ip_cur_cfg_nwf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgNwfIndex.setStatus('current') ip_cur_cfg_nwf_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgNwfAddr.setStatus('current') ip_cur_cfg_nwf_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgNwfMask.setStatus('current') ip_cur_cfg_nwf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgNwfState.setStatus('current') ip_new_cfg_nwf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3)) if mibBuilder.loadTexts: ipNewCfgNwfTable.setStatus('current') ip_new_cfg_nwf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgNwfIndex')) if mibBuilder.loadTexts: ipNewCfgNwfEntry.setStatus('current') ip_new_cfg_nwf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipNewCfgNwfIndex.setStatus('current') ip_new_cfg_nwf_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 2), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgNwfAddr.setStatus('current') ip_new_cfg_nwf_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 3), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgNwfMask.setStatus('current') ip_new_cfg_nwf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgNwfState.setStatus('current') ip_new_cfg_nwf_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgNwfDelete.setStatus('current') ip_rmap_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRmapTableMax.setStatus('current') ip_cur_cfg_rmap_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2)) if mibBuilder.loadTexts: ipCurCfgRmapTable.setStatus('current') ip_cur_cfg_rmap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgRmapIndex')) if mibBuilder.loadTexts: ipCurCfgRmapEntry.setStatus('current') ip_cur_cfg_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgRmapIndex.setStatus('current') ip_cur_cfg_rmap_lp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgRmapLp.setStatus('current') ip_cur_cfg_rmap_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgRmapMetric.setStatus('current') ip_cur_cfg_rmap_prec = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgRmapPrec.setStatus('current') ip_cur_cfg_rmap_weight = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgRmapWeight.setStatus('current') ip_cur_cfg_rmap_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgRmapState.setStatus('current') ip_cur_cfg_rmap_ap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 18))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgRmapAp.setStatus('current') ip_cur_cfg_rmap_metric_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgRmapMetricType.setStatus('current') ip_new_cfg_rmap_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3)) if mibBuilder.loadTexts: ipNewCfgRmapTable.setStatus('current') ip_new_cfg_rmap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgRmapIndex')) if mibBuilder.loadTexts: ipNewCfgRmapEntry.setStatus('current') ip_new_cfg_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipNewCfgRmapIndex.setStatus('current') ip_new_cfg_rmap_lp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgRmapLp.setStatus('current') ip_new_cfg_rmap_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgRmapMetric.setStatus('current') ip_new_cfg_rmap_prec = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgRmapPrec.setStatus('current') ip_new_cfg_rmap_weight = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgRmapWeight.setStatus('current') ip_new_cfg_rmap_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgRmapState.setStatus('current') ip_new_cfg_rmap_ap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 18))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgRmapAp.setStatus('current') ip_new_cfg_rmap_metric_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgRmapMetricType.setStatus('current') ip_new_cfg_rmap_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgRmapDelete.setStatus('current') ip_alist_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipAlistTableMax.setStatus('current') ip_cur_cfg_alist_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5)) if mibBuilder.loadTexts: ipCurCfgAlistTable.setStatus('current') ip_cur_cfg_alist_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgAlistRmapIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgAlistIndex')) if mibBuilder.loadTexts: ipCurCfgAlistEntry.setStatus('current') ip_cur_cfg_alist_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgAlistRmapIndex.setStatus('current') ip_cur_cfg_alist_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgAlistIndex.setStatus('current') ip_cur_cfg_alist_nwf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgAlistNwf.setStatus('current') ip_cur_cfg_alist_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgAlistMetric.setStatus('current') ip_cur_cfg_alist_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permit', 1), ('deny', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgAlistAction.setStatus('current') ip_cur_cfg_alist_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgAlistState.setStatus('current') ip_new_cfg_alist_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6)) if mibBuilder.loadTexts: ipNewCfgAlistTable.setStatus('current') ip_new_cfg_alist_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgAlistRmapIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgAlistIndex')) if mibBuilder.loadTexts: ipNewCfgAlistEntry.setStatus('current') ip_new_cfg_alist_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipNewCfgAlistRmapIndex.setStatus('current') ip_new_cfg_alist_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipNewCfgAlistIndex.setStatus('current') ip_new_cfg_alist_nwf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgAlistNwf.setStatus('current') ip_new_cfg_alist_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgAlistMetric.setStatus('current') ip_new_cfg_alist_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permit', 1), ('deny', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgAlistAction.setStatus('current') ip_new_cfg_alist_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgAlistState.setStatus('current') ip_new_cfg_alist_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgAlistDelete.setStatus('current') ip_aspath_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipAspathTableMax.setStatus('current') ip_cur_cfg_aspath_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8)) if mibBuilder.loadTexts: ipCurCfgAspathTable.setStatus('current') ip_cur_cfg_aspath_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgAspathRmapIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgAlistIndex')) if mibBuilder.loadTexts: ipCurCfgAspathEntry.setStatus('current') ip_cur_cfg_aspath_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgAspathRmapIndex.setStatus('current') ip_cur_cfg_aspath_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgAspathIndex.setStatus('current') ip_cur_cfg_aspath_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgAspathAS.setStatus('current') ip_cur_cfg_aspath_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permit', 1), ('deny', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgAspathAction.setStatus('current') ip_cur_cfg_aspath_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgAspathState.setStatus('current') ip_new_cfg_aspath_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9)) if mibBuilder.loadTexts: ipNewCfgAspathTable.setStatus('current') ip_new_cfg_aspath_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgAspathRmapIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgAspathIndex')) if mibBuilder.loadTexts: ipNewCfgAspathEntry.setStatus('current') ip_new_cfg_aspath_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipNewCfgAspathRmapIndex.setStatus('current') ip_new_cfg_aspath_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipNewCfgAspathIndex.setStatus('current') ip_new_cfg_aspath_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgAspathAS.setStatus('current') ip_new_cfg_aspath_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permit', 1), ('deny', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgAspathAction.setStatus('current') ip_new_cfg_aspath_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgAspathState.setStatus('current') ip_new_cfg_aspath_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgAspathDelete.setStatus('current') bgp_general = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1)) bgp_cur_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgState.setStatus('current') bgp_new_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bgpNewCfgState.setStatus('current') bgp_cur_cfg_local_pref = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967294))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgLocalPref.setStatus('current') bgp_new_cfg_local_pref = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967294))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bgpNewCfgLocalPref.setStatus('current') bgp_cur_cfg_max_as_path = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 127))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgMaxASPath.setStatus('current') bgp_new_cfg_max_as_path = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 127))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bgpNewCfgMaxASPath.setStatus('current') bgp_cur_cfg_as_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgASNumber.setStatus('current') bgp_new_cfg_as_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bgpNewCfgASNumber.setStatus('current') bgp_peer_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpPeerTableMax.setStatus('current') bgp_cur_cfg_peer_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3)) if mibBuilder.loadTexts: bgpCurCfgPeerTable.setStatus('current') bgp_cur_cfg_peer_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'bgpCurCfgPeerIndex')) if mibBuilder.loadTexts: bgpCurCfgPeerEntry.setStatus('current') bgp_cur_cfg_peer_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerIndex.setStatus('current') bgp_cur_cfg_peer_remote_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerRemoteAddr.setStatus('current') bgp_cur_cfg_peer_remote_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerRemoteAs.setStatus('current') bgp_cur_cfg_peer_ttl = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerTtl.setStatus('current') bgp_cur_cfg_peer_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerState.setStatus('current') bgp_cur_cfg_peer_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967294))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerMetric.setStatus('current') bgp_cur_cfg_peer_default_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('import', 2), ('originate', 3), ('redistribute', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerDefaultAction.setStatus('current') bgp_cur_cfg_peer_ospf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerOspfState.setStatus('current') bgp_cur_cfg_peer_fixed_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerFixedState.setStatus('current') bgp_cur_cfg_peer_static_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerStaticState.setStatus('current') bgp_cur_cfg_peer_vip_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerVipState.setStatus('current') bgp_cur_cfg_peer_in_rmap_list = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 16), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerInRmapList.setStatus('current') bgp_cur_cfg_peer_out_rmap_list = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 17), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerOutRmapList.setStatus('current') bgp_cur_cfg_peer_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerHoldTime.setStatus('current') bgp_cur_cfg_peer_keep_alive = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 21845))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerKeepAlive.setStatus('current') bgp_cur_cfg_peer_min_time = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerMinTime.setStatus('current') bgp_cur_cfg_peer_con_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerConRetry.setStatus('current') bgp_cur_cfg_peer_min_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(30, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerMinAS.setStatus('current') bgp_cur_cfg_peer_rip_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgPeerRipState.setStatus('current') bgp_new_cfg_peer_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4)) if mibBuilder.loadTexts: bgpNewCfgPeerTable.setStatus('current') bgp_new_cfg_peer_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'bgpNewCfgPeerIndex')) if mibBuilder.loadTexts: bgpNewCfgPeerEntry.setStatus('current') bgp_new_cfg_peer_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpNewCfgPeerIndex.setStatus('current') bgp_new_cfg_peer_remote_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 2), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerRemoteAddr.setStatus('current') bgp_new_cfg_peer_remote_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerRemoteAs.setStatus('current') bgp_new_cfg_peer_ttl = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerTtl.setStatus('current') bgp_new_cfg_peer_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerState.setStatus('current') bgp_new_cfg_peer_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerDelete.setStatus('current') bgp_new_cfg_peer_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967294))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerMetric.setStatus('current') bgp_new_cfg_peer_default_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('import', 2), ('originate', 3), ('redistribute', 4)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerDefaultAction.setStatus('current') bgp_new_cfg_peer_ospf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerOspfState.setStatus('current') bgp_new_cfg_peer_fixed_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerFixedState.setStatus('current') bgp_new_cfg_peer_static_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerStaticState.setStatus('current') bgp_new_cfg_peer_vip_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerVipState.setStatus('current') bgp_new_cfg_peer_in_rmap_list = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 16), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpNewCfgPeerInRmapList.setStatus('current') bgp_new_cfg_peer_out_rmap_list = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 17), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpNewCfgPeerOutRmapList.setStatus('current') bgp_new_cfg_peer_add_in_rmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 18), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerAddInRmap.setStatus('current') bgp_new_cfg_peer_add_out_rmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 19), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerAddOutRmap.setStatus('current') bgp_new_cfg_peer_remove_in_rmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 20), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerRemoveInRmap.setStatus('current') bgp_new_cfg_peer_remove_out_rmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 21), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerRemoveOutRmap.setStatus('current') bgp_new_cfg_peer_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerHoldTime.setStatus('current') bgp_new_cfg_peer_keep_alive = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(1, 21845))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerKeepAlive.setStatus('current') bgp_new_cfg_peer_min_time = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerMinTime.setStatus('current') bgp_new_cfg_peer_con_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerConRetry.setStatus('current') bgp_new_cfg_peer_min_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(30, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerMinAS.setStatus('current') bgp_new_cfg_peer_rip_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgPeerRipState.setStatus('current') bgp_aggr_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpAggrTableMax.setStatus('current') bgp_cur_cfg_aggr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6)) if mibBuilder.loadTexts: bgpCurCfgAggrTable.setStatus('current') bgp_cur_cfg_aggr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'bgpCurCfgAggrIndex')) if mibBuilder.loadTexts: bgpCurCfgAggrEntry.setStatus('current') bgp_cur_cfg_aggr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgAggrIndex.setStatus('current') bgp_cur_cfg_aggr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgAggrAddr.setStatus('current') bgp_cur_cfg_aggr_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgAggrMask.setStatus('current') bgp_cur_cfg_aggr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpCurCfgAggrState.setStatus('current') bgp_new_cfg_aggr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7)) if mibBuilder.loadTexts: bgpNewCfgAggrTable.setStatus('current') bgp_new_cfg_aggr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'bgpNewCfgAggrIndex')) if mibBuilder.loadTexts: bgpNewCfgAggrEntry.setStatus('current') bgp_new_cfg_aggr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bgpNewCfgAggrIndex.setStatus('current') bgp_new_cfg_aggr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 2), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgAggrAddr.setStatus('current') bgp_new_cfg_aggr_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 3), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgAggrMask.setStatus('current') bgp_new_cfg_aggr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgAggrState.setStatus('current') bgp_new_cfg_aggr_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: bgpNewCfgAggrDelete.setStatus('current') ospf_general = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1)) ospf_cur_cfg_default_route_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgDefaultRouteMetric.setStatus('current') ospf_new_cfg_default_route_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgDefaultRouteMetric.setStatus('current') ospf_cur_cfg_default_route_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgDefaultRouteMetricType.setStatus('current') ospf_new_cfg_default_route_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgDefaultRouteMetricType.setStatus('current') ospf_intf_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfTableMaxSize.setStatus('current') ospf_area_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaTableMaxSize.setStatus('current') ospf_range_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfRangeTableMaxSize.setStatus('current') ospf_virt_intf_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 8), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfVirtIntfTableMaxSize.setStatus('current') ospf_host_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 9), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfHostTableMaxSize.setStatus('current') ospf_cur_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgState.setStatus('current') ospf_new_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgState.setStatus('current') ospf_cur_cfg_lsdb = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 2000))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgLsdb.setStatus('current') ospf_new_cfg_lsdb = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 2000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgLsdb.setStatus('current') ospf_cur_cfg_area_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2)) if mibBuilder.loadTexts: ospfCurCfgAreaTable.setStatus('current') ospf_cur_cfg_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgAreaIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgAreaId')) if mibBuilder.loadTexts: ospfCurCfgAreaEntry.setStatus('current') ospf_cur_cfg_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgAreaIndex.setStatus('current') ospf_cur_cfg_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgAreaId.setStatus('current') ospf_cur_cfg_area_spf_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgAreaSpfInterval.setStatus('current') ospf_cur_cfg_area_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('password', 2), ('md5', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgAreaAuthType.setStatus('current') ospf_cur_cfg_area_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('transit', 1), ('stub', 2), ('nssa', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgAreaType.setStatus('current') ospf_cur_cfg_area_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgAreaMetric.setStatus('current') ospf_cur_cfg_area_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgAreaState.setStatus('current') ospf_new_cfg_area_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3)) if mibBuilder.loadTexts: ospfNewCfgAreaTable.setStatus('current') ospf_new_cfg_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgAreaIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgAreaId')) if mibBuilder.loadTexts: ospfNewCfgAreaEntry.setStatus('current') ospf_new_cfg_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgAreaIndex.setStatus('current') ospf_new_cfg_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgAreaId.setStatus('current') ospf_new_cfg_area_spf_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgAreaSpfInterval.setStatus('current') ospf_new_cfg_area_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('password', 2), ('md5', 3)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgAreaAuthType.setStatus('current') ospf_new_cfg_area_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('transit', 1), ('stub', 2), ('nssa', 3)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgAreaType.setStatus('current') ospf_new_cfg_area_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgAreaMetric.setStatus('current') ospf_new_cfg_area_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgAreaState.setStatus('current') ospf_new_cfg_area_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgAreaDelete.setStatus('current') ospf_new_cfg_vision_area_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16)) if mibBuilder.loadTexts: ospfNewCfgVisionAreaTable.setStatus('current') ospf_new_cfg_vision_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgVisionAreaIndex')) if mibBuilder.loadTexts: ospfNewCfgVisionAreaEntry.setStatus('current') ospf_new_cfg_vision_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgVisionAreaIndex.setStatus('current') ospf_new_cfg_vision_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgVisionAreaId.setStatus('current') ospf_new_cfg_vision_area_spf_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVisionAreaSpfInterval.setStatus('current') ospf_new_cfg_vision_area_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('password', 2), ('md5', 3)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVisionAreaAuthType.setStatus('current') ospf_new_cfg_vision_area_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('transit', 1), ('stub', 2), ('nssa', 3)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVisionAreaType.setStatus('current') ospf_new_cfg_vision_area_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVisionAreaMetric.setStatus('current') ospf_new_cfg_vision_area_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVisionAreaState.setStatus('current') ospf_new_cfg_vision_area_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVisionAreaDelete.setStatus('current') ospf_cur_cfg_host_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12)) if mibBuilder.loadTexts: ospfCurCfgHostTable.setStatus('current') ospf_cur_cfg_host_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgHostIndex')) if mibBuilder.loadTexts: ospfCurCfgHostEntry.setStatus('current') ospf_cur_cfg_host_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgHostIndex.setStatus('current') ospf_cur_cfg_host_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgHostIpAddr.setStatus('current') ospf_cur_cfg_host_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgHostAreaIndex.setStatus('current') ospf_cur_cfg_host_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgHostCost.setStatus('current') ospf_cur_cfg_host_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgHostState.setStatus('current') ospf_new_cfg_host_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13)) if mibBuilder.loadTexts: ospfNewCfgHostTable.setStatus('current') ospf_new_cfg_host_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgHostIndex')) if mibBuilder.loadTexts: ospfNewCfgHostEntry.setStatus('current') ospf_new_cfg_host_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgHostIndex.setStatus('current') ospf_new_cfg_host_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 2), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgHostIpAddr.setStatus('current') ospf_new_cfg_host_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 3), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgHostAreaIndex.setStatus('current') ospf_new_cfg_host_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgHostCost.setStatus('current') ospf_new_cfg_host_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgHostState.setStatus('current') ospf_new_cfg_host_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgHostDelete.setStatus('current') ospf_mdkey_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 11), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfMdkeyTableMaxSize.setStatus('current') ospf_cur_cfg_mdkey_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5)) if mibBuilder.loadTexts: ospfCurCfgMdkeyTable.setStatus('current') ospf_cur_cfg_mdkey_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgMdkeyIndex')) if mibBuilder.loadTexts: ospfCurCfgMdkeyEntry.setStatus('current') ospf_cur_cfg_mdkey_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgMdkeyIndex.setStatus('current') ospf_cur_cfg_mdkey_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgMdkeyKey.setStatus('current') ospf_new_cfg_mdkey_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6)) if mibBuilder.loadTexts: ospfNewCfgMdkeyTable.setStatus('current') ospf_new_cfg_mdkey_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgMdkeyIndex')) if mibBuilder.loadTexts: ospfNewCfgMdkeyEntry.setStatus('current') ospf_new_cfg_mdkey_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgMdkeyIndex.setStatus('current') ospf_new_cfg_mdkey_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgMdkeyKey.setStatus('current') ospf_new_cfg_mdkey_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgMdkeyDelete.setStatus('current') ospf_cur_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7)) if mibBuilder.loadTexts: ospfCurCfgIntfTable.setStatus('current') ospf_cur_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgIntfIndex')) if mibBuilder.loadTexts: ospfCurCfgIntfEntry.setStatus('current') ospf_cur_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIntfIndex.setStatus('current') ospf_cur_cfg_intf_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIntfId.setStatus('current') ospf_cur_cfg_intf_mdkey = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIntfMdkey.setStatus('current') ospf_cur_cfg_intf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIntfAreaId.setStatus('current') ospf_cur_cfg_intf_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIntfPriority.setStatus('current') ospf_cur_cfg_intf_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIntfCost.setStatus('current') ospf_cur_cfg_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIntfHello.setStatus('current') ospf_cur_cfg_intf_dead = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIntfDead.setStatus('current') ospf_cur_cfg_intf_transit = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIntfTransit.setStatus('current') ospf_cur_cfg_intf_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIntfRetrans.setStatus('current') ospf_cur_cfg_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIntfKey.setStatus('current') ospf_cur_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIntfState.setStatus('current') ospf_new_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8)) if mibBuilder.loadTexts: ospfNewCfgIntfTable.setStatus('current') ospf_new_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgIntfIndex')) if mibBuilder.loadTexts: ospfNewCfgIntfEntry.setStatus('current') ospf_new_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgIntfIndex.setStatus('current') ospf_new_cfg_intf_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgIntfId.setStatus('current') ospf_new_cfg_intf_mdkey = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgIntfMdkey.setStatus('current') ospf_new_cfg_intf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgIntfAreaId.setStatus('current') ospf_new_cfg_intf_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgIntfPriority.setStatus('current') ospf_new_cfg_intf_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgIntfCost.setStatus('current') ospf_new_cfg_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgIntfHello.setStatus('current') ospf_new_cfg_intf_dead = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgIntfDead.setStatus('current') ospf_new_cfg_intf_transit = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgIntfTransit.setStatus('current') ospf_new_cfg_intf_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgIntfRetrans.setStatus('current') ospf_new_cfg_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgIntfKey.setStatus('current') ospf_new_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgIntfState.setStatus('current') ospf_new_cfg_intf_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgIntfDelete.setStatus('current') ospf_cur_cfg_virt_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9)) if mibBuilder.loadTexts: ospfCurCfgVirtIntfTable.setStatus('current') ospf_cur_cfg_virt_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgVirtIntfIndex')) if mibBuilder.loadTexts: ospfCurCfgVirtIntfEntry.setStatus('current') ospf_cur_cfg_virt_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgVirtIntfIndex.setStatus('current') ospf_cur_cfg_virt_intf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgVirtIntfAreaId.setStatus('current') ospf_cur_cfg_virt_intf_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgVirtIntfNbr.setStatus('current') ospf_cur_cfg_virt_intf_mdkey = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgVirtIntfMdkey.setStatus('current') ospf_cur_cfg_virt_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgVirtIntfHello.setStatus('current') ospf_cur_cfg_virt_intf_dead = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgVirtIntfDead.setStatus('current') ospf_cur_cfg_virt_intf_transit = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgVirtIntfTransit.setStatus('current') ospf_cur_cfg_virt_intf_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgVirtIntfRetrans.setStatus('current') ospf_cur_cfg_virt_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgVirtIntfKey.setStatus('current') ospf_cur_cfg_virt_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgVirtIntfState.setStatus('current') ospf_new_cfg_virt_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10)) if mibBuilder.loadTexts: ospfNewCfgVirtIntfTable.setStatus('current') ospf_new_cfg_virt_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgVirtIntfIndex')) if mibBuilder.loadTexts: ospfNewCfgVirtIntfEntry.setStatus('current') ospf_new_cfg_virt_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgVirtIntfIndex.setStatus('current') ospf_new_cfg_virt_intf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVirtIntfAreaId.setStatus('current') ospf_new_cfg_virt_intf_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 3), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVirtIntfNbr.setStatus('current') ospf_new_cfg_virt_intf_mdkey = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVirtIntfMdkey.setStatus('current') ospf_new_cfg_virt_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVirtIntfHello.setStatus('current') ospf_new_cfg_virt_intf_dead = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVirtIntfDead.setStatus('current') ospf_new_cfg_virt_intf_transit = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVirtIntfTransit.setStatus('current') ospf_new_cfg_virt_intf_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVirtIntfRetrans.setStatus('current') ospf_new_cfg_virt_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVirtIntfKey.setStatus('current') ospf_new_cfg_virt_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVirtIntfState.setStatus('current') ospf_new_cfg_virt_intf_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgVirtIntfDelete.setStatus('current') ospf_cur_cfg_range_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14)) if mibBuilder.loadTexts: ospfCurCfgRangeTable.setStatus('current') ospf_cur_cfg_range_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgRangeIndex')) if mibBuilder.loadTexts: ospfCurCfgRangeEntry.setStatus('current') ospf_cur_cfg_range_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgRangeIndex.setStatus('current') ospf_cur_cfg_range_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgRangeAddr.setStatus('current') ospf_cur_cfg_range_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgRangeMask.setStatus('current') ospf_cur_cfg_range_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgRangeAreaIndex.setStatus('current') ospf_cur_cfg_range_hide_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgRangeHideState.setStatus('current') ospf_cur_cfg_range_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgRangeState.setStatus('current') ospf_new_cfg_range_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15)) if mibBuilder.loadTexts: ospfNewCfgRangeTable.setStatus('current') ospf_new_cfg_range_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgRangeIndex')) if mibBuilder.loadTexts: ospfNewCfgRangeEntry.setStatus('current') ospf_new_cfg_range_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgRangeIndex.setStatus('current') ospf_new_cfg_range_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 2), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgRangeAddr.setStatus('current') ospf_new_cfg_range_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 3), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgRangeMask.setStatus('current') ospf_new_cfg_range_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 4), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgRangeAreaIndex.setStatus('current') ospf_new_cfg_range_hide_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgRangeHideState.setStatus('current') ospf_new_cfg_range_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgRangeState.setStatus('current') ospf_new_cfg_range_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ospfNewCfgRangeDelete.setStatus('current') ospf_route_redistribution = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4)) ospf_redistribute_static = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1)) ospf_cur_cfg_static_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgStaticMetric.setStatus('current') ospf_new_cfg_static_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgStaticMetric.setStatus('current') ospf_cur_cfg_static_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgStaticMetricType.setStatus('current') ospf_new_cfg_static_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgStaticMetricType.setStatus('current') ospf_cur_cfg_static_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 5), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgStaticOutRmapList.setStatus('current') ospf_new_cfg_static_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 6), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgStaticOutRmapList.setStatus('current') ospf_new_cfg_static_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgStaticAddOutRmap.setStatus('current') ospf_new_cfg_static_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgStaticRemoveOutRmap.setStatus('current') ospf_redistribute_ebgp = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2)) ospf_cur_cfg_ebgp_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgEbgpMetric.setStatus('current') ospf_new_cfg_ebgp_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgEbgpMetric.setStatus('current') ospf_cur_cfg_ebgp_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgEbgpMetricType.setStatus('current') ospf_new_cfg_ebgp_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgEbgpMetricType.setStatus('current') ospf_cur_cfg_ebgp_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 5), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgEbgpOutRmapList.setStatus('current') ospf_new_cfg_ebgp_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 6), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgEbgpOutRmapList.setStatus('current') ospf_new_cfg_ebgp_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgEbgpAddOutRmap.setStatus('current') ospf_new_cfg_ebgp_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgEbgpRemoveOutRmap.setStatus('current') ospf_redistribute_ibgp = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3)) ospf_cur_cfg_ibgp_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIbgpMetric.setStatus('current') ospf_new_cfg_ibgp_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgIbgpMetric.setStatus('current') ospf_cur_cfg_ibgp_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIbgpMetricType.setStatus('current') ospf_new_cfg_ibgp_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgIbgpMetricType.setStatus('current') ospf_cur_cfg_ibgp_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 5), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgIbgpOutRmapList.setStatus('current') ospf_new_cfg_ibgp_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 6), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgIbgpOutRmapList.setStatus('current') ospf_new_cfg_ibgp_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgIbgpAddOutRmap.setStatus('current') ospf_new_cfg_ibgp_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgIbgpRemoveOutRmap.setStatus('current') ospf_redistribute_fixed = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4)) ospf_cur_cfg_fixed_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgFixedMetric.setStatus('current') ospf_new_cfg_fixed_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgFixedMetric.setStatus('current') ospf_cur_cfg_fixed_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgFixedMetricType.setStatus('current') ospf_new_cfg_fixed_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgFixedMetricType.setStatus('current') ospf_cur_cfg_fixed_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 5), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgFixedOutRmapList.setStatus('current') ospf_new_cfg_fixed_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 6), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgFixedOutRmapList.setStatus('current') ospf_new_cfg_fixed_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgFixedAddOutRmap.setStatus('current') ospf_new_cfg_fixed_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgFixedRemoveOutRmap.setStatus('current') ospf_redistribute_rip = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5)) ospf_cur_cfg_rip_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgRipMetric.setStatus('current') ospf_new_cfg_rip_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgRipMetric.setStatus('current') ospf_cur_cfg_rip_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgRipMetricType.setStatus('current') ospf_new_cfg_rip_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgRipMetricType.setStatus('current') ospf_cur_cfg_rip_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 5), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCurCfgRipOutRmapList.setStatus('current') ospf_new_cfg_rip_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 6), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNewCfgRipOutRmapList.setStatus('current') ospf_new_cfg_rip_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgRipAddOutRmap.setStatus('current') ospf_new_cfg_rip_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ospfNewCfgRipRemoveOutRmap.setStatus('current') ip_cur_cfg_router_id = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 1), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgRouterID.setStatus('current') ip_new_cfg_router_id = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: ipNewCfgRouterID.setStatus('current') ip_cur_cfg_as_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgASNumber.setStatus('current') ip_new_cfg_as_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ipNewCfgASNumber.setStatus('current') ip_static_arp_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipStaticArpTableMaxSize.setStatus('current') ip_cur_cfg_static_arp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2)) if mibBuilder.loadTexts: ipCurCfgStaticArpTable.setStatus('current') ip_cur_cfg_static_arp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgStaticArpIndx')) if mibBuilder.loadTexts: ipCurCfgStaticArpEntry.setStatus('current') ip_cur_cfg_static_arp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgStaticArpIndx.setStatus('current') ip_cur_cfg_static_arp_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgStaticArpIp.setStatus('current') ip_cur_cfg_static_arp_mac = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 3), phys_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgStaticArpMAC.setStatus('current') ip_cur_cfg_static_arp_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgStaticArpVlan.setStatus('current') ip_cur_cfg_static_arp_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipCurCfgStaticArpPort.setStatus('current') ip_new_cfg_static_arp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3)) if mibBuilder.loadTexts: ipNewCfgStaticArpTable.setStatus('current') ip_new_cfg_static_arp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgStaticArpIndx')) if mibBuilder.loadTexts: ipNewCfgStaticArpEntry.setStatus('current') ip_new_cfg_static_arp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipNewCfgStaticArpIndx.setStatus('current') ip_new_cfg_static_arp_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 2), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgStaticArpIp.setStatus('current') ip_new_cfg_static_arp_mac = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 3), phys_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgStaticArpMAC.setStatus('current') ip_new_cfg_static_arp_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 4), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgStaticArpVlan.setStatus('current') ip_new_cfg_static_arp_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 5), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgStaticArpPort.setStatus('current') ip_new_cfg_static_arp_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: ipNewCfgStaticArpAction.setStatus('current') ip_static_arp_table_next_available_index = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipStaticArpTableNextAvailableIndex.setStatus('current') rip_stat_in_packets = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatInPackets.setStatus('current') rip_stat_out_packets = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatOutPackets.setStatus('current') rip_stat_in_request_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatInRequestPkts.setStatus('current') rip_stat_in_response_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatInResponsePkts.setStatus('current') rip_stat_out_request_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatOutRequestPkts.setStatus('current') rip_stat_out_response_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatOutResponsePkts.setStatus('current') rip_stat_route_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatRouteTimeout.setStatus('current') rip_stat_in_bad_size_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatInBadSizePkts.setStatus('current') rip_stat_in_bad_version = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatInBadVersion.setStatus('current') rip_stat_in_bad_zeros = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatInBadZeros.setStatus('current') rip_stat_in_bad_source_port = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatInBadSourcePort.setStatus('current') rip_stat_in_bad_source_ip = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatInBadSourceIP.setStatus('current') rip_stat_in_self_rcv_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripStatInSelfRcvPkts.setStatus('current') tcp_stat_cur_conn = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tcpStatCurConn.setStatus('current') tcp_stat_cur_in_conn = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tcpStatCurInConn.setStatus('current') tcp_stat_cur_out_conn = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tcpStatCurOutConn.setStatus('current') arp_stat_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 1), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: arpStatEntries.setStatus('current') arp_stat_high_water = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 2), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: arpStatHighWater.setStatus('current') arp_stat_max_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 3), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: arpStatMaxEntries.setStatus('current') route_stat_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 1), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: routeStatEntries.setStatus('current') route_stat_high_water = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 2), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: routeStatHighWater.setStatus('current') route_stat_max_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 3), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: routeStatMaxEntries.setStatus('current') dns_stat_in_good_dns_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dnsStatInGoodDnsRequests.setStatus('current') dns_stat_in_bad_dns_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dnsStatInBadDnsRequests.setStatus('current') dns_stat_out_dns_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dnsStatOutDnsRequests.setStatus('current') vrrp_stat_in_advers = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpStatInAdvers.setStatus('current') vrrp_stat_out_advers = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpStatOutAdvers.setStatus('current') vrrp_stat_out_bad_advers = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpStatOutBadAdvers.setStatus('current') ip_clear_stats = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ipClearStats.setStatus('current') if_stats_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2)) if mibBuilder.loadTexts: ifStatsTable.setStatus('current') if_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ifStatsIndex')) if mibBuilder.loadTexts: ifStatsEntry.setStatus('current') if_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ifStatsIndex.setStatus('current') if_clear_stats = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: ifClearStats.setStatus('current') ospf_general_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1)) ospf_cum_rx_tx_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1)) ospf_cum_nbr_change_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2)) ospf_cum_intf_change_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3)) ospf_timers_kick_off_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4)) ospf_area = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2)) ospf_area_rx_tx_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1)) if mibBuilder.loadTexts: ospfAreaRxTxStats.setStatus('current') ospf_area_rx_tx_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaRxTxIndex')) if mibBuilder.loadTexts: ospfAreaRxTxStatsEntry.setStatus('current') ospf_area_rx_tx_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaRxTxIndex.setStatus('current') ospf_area_rx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaRxPkts.setStatus('current') ospf_area_tx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaTxPkts.setStatus('current') ospf_area_rx_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaRxHello.setStatus('current') ospf_area_tx_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaTxHello.setStatus('current') ospf_area_rx_database = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaRxDatabase.setStatus('current') ospf_area_tx_database = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaTxDatabase.setStatus('current') ospf_area_rxls_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaRxlsReqs.setStatus('current') ospf_area_txls_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaTxlsReqs.setStatus('current') ospf_area_rxls_acks = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaRxlsAcks.setStatus('current') ospf_area_txls_acks = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaTxlsAcks.setStatus('current') ospf_area_rxls_updates = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaRxlsUpdates.setStatus('current') ospf_area_txls_updates = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaTxlsUpdates.setStatus('current') ospf_area_nbr_change_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2)) if mibBuilder.loadTexts: ospfAreaNbrChangeStats.setStatus('current') ospf_area_nbr_change_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaNbrIndex')) if mibBuilder.loadTexts: ospfAreaNbrChangeStatsEntry.setStatus('current') ospf_area_nbr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrIndex.setStatus('current') ospf_area_nbrhello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrhello.setStatus('current') ospf_area_nbr_start = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrStart.setStatus('current') ospf_area_nbr_adjoint_ok = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrAdjointOk.setStatus('current') ospf_area_nbr_negotiation_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrNegotiationDone.setStatus('current') ospf_area_nbr_exchange_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrExchangeDone.setStatus('current') ospf_area_nbr_bad_requests = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrBadRequests.setStatus('current') ospf_area_nbr_bad_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrBadSequence.setStatus('current') ospf_area_nbr_loading_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrLoadingDone.setStatus('current') ospf_area_nbr_n1way = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrN1way.setStatus('current') ospf_area_nbr_rst_ad = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrRstAd.setStatus('current') ospf_area_nbr_down = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrDown.setStatus('current') ospf_area_nbr_n2way = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaNbrN2way.setStatus('current') ospf_area_change_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3)) if mibBuilder.loadTexts: ospfAreaChangeStats.setStatus('current') ospf_area_change_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaIntfIndex')) if mibBuilder.loadTexts: ospfAreaChangeStatsEntry.setStatus('current') ospf_area_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaIntfIndex.setStatus('current') ospf_area_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaIntfHello.setStatus('current') ospf_area_intf_down = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaIntfDown.setStatus('current') ospf_area_intf_loop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaIntfLoop.setStatus('current') ospf_area_intf_unloop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaIntfUnloop.setStatus('current') ospf_area_intf_wait_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaIntfWaitTimer.setStatus('current') ospf_area_intf_backup = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaIntfBackup.setStatus('current') ospf_area_intf_nbr_change = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaIntfNbrChange.setStatus('current') ospf_area_error_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4)) if mibBuilder.loadTexts: ospfAreaErrorStats.setStatus('current') ospf_area_error_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaErrIndex')) if mibBuilder.loadTexts: ospfAreaErrorStatsEntry.setStatus('current') ospf_area_err_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaErrIndex.setStatus('current') ospf_area_err_auth_failure = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaErrAuthFailure.setStatus('current') ospf_area_err_netmask_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaErrNetmaskMismatch.setStatus('current') ospf_area_err_hello_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaErrHelloMismatch.setStatus('current') ospf_area_err_dead_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaErrDeadMismatch.setStatus('current') ospf_area_err_options_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaErrOptionsMismatch.setStatus('current') ospf_area_err_unknown_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaErrUnknownNbr.setStatus('current') ospf_interface = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3)) ospf_intf_rx_tx_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1)) if mibBuilder.loadTexts: ospfIntfRxTxStats.setStatus('current') ospf_intf_rx_tx_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIntfRxTxIndex')) if mibBuilder.loadTexts: ospfIntfRxTxStatsEntry.setStatus('current') ospf_intf_rx_tx_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfRxTxIndex.setStatus('current') ospf_intf_rx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfRxPkts.setStatus('current') ospf_intf_tx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfTxPkts.setStatus('current') ospf_intf_rx_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfRxHello.setStatus('current') ospf_intf_tx_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfTxHello.setStatus('current') ospf_intf_rx_database = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfRxDatabase.setStatus('current') ospf_intf_tx_database = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfTxDatabase.setStatus('current') ospf_intf_rxls_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfRxlsReqs.setStatus('current') ospf_intf_txls_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfTxlsReqs.setStatus('current') ospf_intf_rxls_acks = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfRxlsAcks.setStatus('current') ospf_intf_txls_acks = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfTxlsAcks.setStatus('current') ospf_intf_rxls_updates = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfRxlsUpdates.setStatus('current') ospf_intf_txls_updates = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfTxlsUpdates.setStatus('current') ospf_intf_nbr_change_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2)) if mibBuilder.loadTexts: ospfIntfNbrChangeStats.setStatus('current') ospf_intf_nbr_change_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIntfNbrIndex')) if mibBuilder.loadTexts: ospfIntfNbrChangeStatsEntry.setStatus('current') ospf_intf_nbr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrIndex.setStatus('current') ospf_intf_nbrhello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrhello.setStatus('current') ospf_intf_nbr_start = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrStart.setStatus('current') ospf_intf_nbr_adjoint_ok = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrAdjointOk.setStatus('current') ospf_intf_nbr_negotiation_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrNegotiationDone.setStatus('current') ospf_intf_nbr_exchange_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrExchangeDone.setStatus('current') ospf_intf_nbr_bad_requests = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrBadRequests.setStatus('current') ospf_intf_nbr_bad_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrBadSequence.setStatus('current') ospf_intf_nbr_loading_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrLoadingDone.setStatus('current') ospf_intf_nbr_n1way = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrN1way.setStatus('current') ospf_intf_nbr_rst_ad = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrRstAd.setStatus('current') ospf_intf_nbr_down = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrDown.setStatus('current') ospf_intf_nbr_n2way = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrN2way.setStatus('current') ospf_intf_change_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3)) if mibBuilder.loadTexts: ospfIntfChangeStats.setStatus('current') ospf_intf_change_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIntfIndex')) if mibBuilder.loadTexts: ospfIntfChangeStatsEntry.setStatus('current') ospf_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfIndex.setStatus('current') ospf_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfHello.setStatus('current') ospf_intf_down = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfDown.setStatus('current') ospf_intf_loop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfLoop.setStatus('current') ospf_intf_unloop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfUnloop.setStatus('current') ospf_intf_wait_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfWaitTimer.setStatus('current') ospf_intf_backup = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfBackup.setStatus('current') ospf_intf_nbr_change = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfNbrChange.setStatus('current') ospf_intf_error_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4)) if mibBuilder.loadTexts: ospfIntfErrorStats.setStatus('current') ospf_intf_error_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIntfErrIndex')) if mibBuilder.loadTexts: ospfIntfErrorStatsEntry.setStatus('current') ospf_intf_err_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfErrIndex.setStatus('current') ospf_intf_err_auth_failure = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfErrAuthFailure.setStatus('current') ospf_intf_err_netmask_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfErrNetmaskMismatch.setStatus('current') ospf_intf_err_hello_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfErrHelloMismatch.setStatus('current') ospf_intf_err_dead_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfErrDeadMismatch.setStatus('current') ospf_intf_err_options_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfErrOptionsMismatch.setStatus('current') ospf_intf_err_unknown_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfErrUnknownNbr.setStatus('current') ospf_cum_rx_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumRxPkts.setStatus('current') ospf_cum_tx_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumTxPkts.setStatus('current') ospf_cum_rx_hello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumRxHello.setStatus('current') ospf_cum_tx_hello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumTxHello.setStatus('current') ospf_cum_rx_database = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumRxDatabase.setStatus('current') ospf_cum_tx_database = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumTxDatabase.setStatus('current') ospf_cum_rxls_reqs = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumRxlsReqs.setStatus('current') ospf_cum_txls_reqs = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumTxlsReqs.setStatus('current') ospf_cum_rxls_acks = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumRxlsAcks.setStatus('current') ospf_cum_txls_acks = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumTxlsAcks.setStatus('current') ospf_cum_rxls_updates = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumRxlsUpdates.setStatus('current') ospf_cum_txls_updates = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumTxlsUpdates.setStatus('current') ospf_cum_nbrhello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumNbrhello.setStatus('current') ospf_cum_nbr_start = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumNbrStart.setStatus('current') ospf_cum_nbr_adjoint_ok = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumNbrAdjointOk.setStatus('current') ospf_cum_nbr_negotiation_done = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumNbrNegotiationDone.setStatus('current') ospf_cum_nbr_exchange_done = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumNbrExchangeDone.setStatus('current') ospf_cum_nbr_bad_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumNbrBadRequests.setStatus('current') ospf_cum_nbr_bad_sequence = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumNbrBadSequence.setStatus('current') ospf_cum_nbr_loading_done = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumNbrLoadingDone.setStatus('current') ospf_cum_nbr_n1way = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumNbrN1way.setStatus('current') ospf_cum_nbr_rst_ad = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumNbrRstAd.setStatus('current') ospf_cum_nbr_down = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumNbrDown.setStatus('current') ospf_cum_nbr_n2way = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumNbrN2way.setStatus('current') ospf_cum_intf_hello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumIntfHello.setStatus('current') ospf_cum_intf_down = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumIntfDown.setStatus('current') ospf_cum_intf_loop = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumIntfLoop.setStatus('current') ospf_cum_intf_unloop = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumIntfUnloop.setStatus('current') ospf_cum_intf_wait_timer = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumIntfWaitTimer.setStatus('current') ospf_cum_intf_backup = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumIntfBackup.setStatus('current') ospf_cum_intf_nbr_change = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfCumIntfNbrChange.setStatus('current') ospf_tmrs_kck_off_hello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfTmrsKckOffHello.setStatus('current') ospf_tmrs_kck_off_retransmit = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfTmrsKckOffRetransmit.setStatus('current') ospf_tmrs_kck_off_lsa_lock = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfTmrsKckOffLsaLock.setStatus('current') ospf_tmrs_kck_off_lsa_ack = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfTmrsKckOffLsaAck.setStatus('current') ospf_tmrs_kck_off_dbage = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfTmrsKckOffDbage.setStatus('current') ospf_tmrs_kck_off_summary = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfTmrsKckOffSummary.setStatus('current') ospf_tmrs_kck_off_ase_export = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfTmrsKckOffAseExport.setStatus('current') ip6_in_receives = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6InReceives.setStatus('current') ip6_forw_datagrams = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6ForwDatagrams.setStatus('current') ip6_in_delivers = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6InDelivers.setStatus('current') ip6_in_discards = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6InDiscards.setStatus('current') ip6_in_unknown_protos = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6InUnknownProtos.setStatus('current') ip6_in_addr_errors = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6InAddrErrors.setStatus('current') ip6_out_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6OutRequests.setStatus('current') ip6_out_no_routes = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6OutNoRoutes.setStatus('current') ip6_reasm_o_ks = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6ReasmOKs.setStatus('current') ip6_reasm_fails = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6ReasmFails.setStatus('current') ip6icmp_in_msgs = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6icmpInMsgs.setStatus('current') ip6icmp_out_msgs = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6icmpOutMsgs.setStatus('current') ip6icmp_in_errors = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6icmpInErrors.setStatus('current') ip6icmp_out_errors = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6icmpOutErrors.setStatus('current') icmp6_stats_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1)) if mibBuilder.loadTexts: icmp6StatsTable.setStatus('current') icmp6_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'icmp6StatsIndx')) if mibBuilder.loadTexts: icmp6StatsEntry.setStatus('current') icmp6_stats_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6StatsIndx.setStatus('current') icmp6_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6IntfIndex.setStatus('current') icmp6_in_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InMsgs.setStatus('current') icmp6_in_errors = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InErrors.setStatus('current') icmp6_in_echos = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InEchos.setStatus('current') icmp6_in_echo_reps = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InEchoReps.setStatus('current') icmp6_in_n_ss = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InNSs.setStatus('current') icmp6_in_n_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InNAs.setStatus('current') icmp6_in_r_ss = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InRSs.setStatus('current') icmp6_in_r_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InRAs.setStatus('current') icmp6_in_dest_unreachs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InDestUnreachs.setStatus('current') icmp6_in_time_excds = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InTimeExcds.setStatus('current') icmp6_in_too_bigs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InTooBigs.setStatus('current') icmp6_in_parm_probs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InParmProbs.setStatus('current') icmp6_in_redirects = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6InRedirects.setStatus('current') icmp6_out_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6OutMsgs.setStatus('current') icmp6_out_errors = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6OutErrors.setStatus('current') icmp6_out_echos = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6OutEchos.setStatus('current') icmp6_out_echo_reps = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6OutEchoReps.setStatus('current') icmp6_out_n_ss = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6OutNSs.setStatus('current') icmp6_out_n_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 21), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6OutNAs.setStatus('current') icmp6_out_r_ss = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 22), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6OutRSs.setStatus('current') icmp6_out_r_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 23), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6OutRAs.setStatus('current') icmp6_out_redirects = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 24), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: icmp6OutRedirects.setStatus('current') ip6_gw_stats_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1)) if mibBuilder.loadTexts: ip6GwStatsTable.setStatus('current') ip6_gw_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ip6GwStatsIndex')) if mibBuilder.loadTexts: ip6GwStatsEntry.setStatus('current') ip6_gw_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6GwStatsIndex.setStatus('current') ip6_gw_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6GwIndex.setStatus('current') ip6_gw_echoreq = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6GwEchoreq.setStatus('current') ip6_gw_echoresp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6GwEchoresp.setStatus('current') ip6_gw_fails = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6GwFails.setStatus('current') ip6_gw_master = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6GwMaster.setStatus('current') ip6_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6IfIndex.setStatus('current') ip6_gw_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ip6GwRetry.setStatus('current') ip_intf_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1)) if mibBuilder.loadTexts: ipIntfInfoTable.setStatus('current') intf_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'intfInfoIndex')) if mibBuilder.loadTexts: intfInfoEntry.setStatus('current') intf_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: intfInfoIndex.setStatus('current') intf_info_ipver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: intfInfoIpver.setStatus('current') intf_info_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: intfInfoAddr.setStatus('current') intf_info_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: intfInfoNetMask.setStatus('current') intf_info_bcast_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: intfInfoBcastAddr.setStatus('current') intf_info_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: intfInfoVlan.setStatus('current') intf_info_status = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: intfInfoStatus.setStatus('current') intf_info_link_local_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 8), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: intfInfoLinkLocalAddr.setStatus('current') ip_route_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1)) if mibBuilder.loadTexts: ipRouteInfoTable.setStatus('current') ip_route_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipRouteInfoIndx')) if mibBuilder.loadTexts: ipRouteInfoEntry.setStatus('current') ip_route_info_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRouteInfoIndx.setStatus('current') ip_route_info_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRouteInfoDestIp.setStatus('current') ip_route_info_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRouteInfoMask.setStatus('current') ip_route_info_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 4), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRouteInfoGateway.setStatus('current') ip_route_info_tag = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('fixed', 1), ('static', 2), ('addr', 3), ('rip', 4), ('broadcast', 5), ('martian', 6), ('multicast', 7), ('vip', 8), ('bgp', 9), ('ospf', 10), ('none', 11)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRouteInfoTag.setStatus('current') ip_route_info_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('indirect', 1), ('direct', 2), ('local', 3), ('broadcast', 4), ('martian', 5), ('multicast', 6), ('other', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRouteInfoType.setStatus('current') ip_route_info_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRouteInfoInterface.setStatus('current') ip_route_info_gateway1 = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 8), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRouteInfoGateway1.setStatus('current') ip_route_info_gateway2 = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 9), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRouteInfoGateway2.setStatus('current') ip_route_info_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRouteInfoMetric.setStatus('current') route_table_clear = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: routeTableClear.setStatus('current') arp_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1)) if mibBuilder.loadTexts: arpInfoTable.setStatus('current') arp_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'arpInfoDestIp')) if mibBuilder.loadTexts: arpInfoEntry.setStatus('current') arp_info_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 1), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: arpInfoDestIp.setStatus('current') arp_info_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 2), phys_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: arpInfoMacAddr.setStatus('current') arp_info_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: arpInfoVLAN.setStatus('current') arp_info_src_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: arpInfoSrcPort.setStatus('current') arp_info_ref_ports = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: arpInfoRefPorts.setStatus('current') arp_info_flag = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('clear', 1), ('unresolved', 2), ('permanent', 3), ('indirect', 4), ('layer4', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: arpInfoFlag.setStatus('current') arp_cache_clear = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: arpCacheClear.setStatus('current') vrrp_info_virt_rtr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1)) if mibBuilder.loadTexts: vrrpInfoVirtRtrTable.setStatus('current') vrrp_info_virt_rtr_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpInfoVirtRtrIndex')) if mibBuilder.loadTexts: vrrpInfoVirtRtrTableEntry.setStatus('current') vrrp_info_virt_rtr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpInfoVirtRtrIndex.setStatus('current') vrrp_info_virt_rtr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('init', 1), ('master', 2), ('backup', 3), ('holdoff', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpInfoVirtRtrState.setStatus('current') vrrp_info_virt_rtr_ownership = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('owner', 1), ('renter', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpInfoVirtRtrOwnership.setStatus('current') vrrp_info_virt_rtr_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpInfoVirtRtrServer.setStatus('current') vrrp_info_virt_rtr_proxy = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpInfoVirtRtrProxy.setStatus('current') vrrp_info_virt_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpInfoVirtRtrPriority.setStatus('current') ospf_general_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1)) ospf_start_time = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfStartTime.setStatus('current') ospf_process_uptime = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfProcessUptime.setStatus('current') ospf_ls_types_supported = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfLsTypesSupported.setStatus('current') ospf_intf_count_for_router = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIntfCountForRouter.setStatus('current') ospf_vlink_count_for_router = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfVlinkCountForRouter.setStatus('current') ospf_total_neighbours = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfTotalNeighbours.setStatus('current') ospf_nbr_in_init_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNbrInInitState.setStatus('current') ospf_nbr_in_exch_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 8), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNbrInExchState.setStatus('current') ospf_nbr_in_full_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 9), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNbrInFullState.setStatus('current') ospf_total_areas = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfTotalAreas.setStatus('current') ospf_total_transit_areas = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 11), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfTotalTransitAreas.setStatus('current') ospf_total_nssa_areas = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 12), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfTotalNssaAreas.setStatus('current') ospf_area_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2)) if mibBuilder.loadTexts: ospfAreaInfoTable.setStatus('current') ospf_area_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaInfoIndex')) if mibBuilder.loadTexts: ospfAreaInfoEntry.setStatus('current') ospf_area_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaInfoIndex.setStatus('current') ospf_total_number_of_interfaces = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfTotalNumberOfInterfaces.setStatus('current') ospf_number_of_interfaces_up = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNumberOfInterfacesUp.setStatus('current') ospf_number_of_lsdb_entries = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfNumberOfLsdbEntries.setStatus('current') ospf_area_info_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 5), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfAreaInfoId.setStatus('current') ospf_intf_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3)) if mibBuilder.loadTexts: ospfIntfInfoTable.setStatus('current') ospf_intf_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIfInfoIndex')) if mibBuilder.loadTexts: ospfIntfInfoEntry.setStatus('current') ospf_if_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfInfoIndex.setStatus('current') ospf_if_designated_router_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfDesignatedRouterIP.setStatus('current') ospf_if_backup_designated_router_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfBackupDesignatedRouterIP.setStatus('current') ospf_if_wait_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfWaitInterval.setStatus('current') ospf_if_total_neighbours = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfTotalNeighbours.setStatus('current') ospf_if_info_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 6), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfInfoIpAddress.setStatus('current') ospf_if_nbr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5)) if mibBuilder.loadTexts: ospfIfNbrTable.setStatus('current') ospf_if_nbr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIfNbrIntfIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIfNbrIpAddr')) if mibBuilder.loadTexts: ospfIfNbrEntry.setStatus('current') ospf_if_nbr_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfNbrIntfIndex.setStatus('current') ospf_if_nbr_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfNbrIpAddr.setStatus('current') ospf_if_nbr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfNbrPriority.setStatus('current') ospf_if_nbr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('down', 1), ('attempt', 2), ('init', 3), ('twoway', 4), ('exStart', 5), ('exchange', 6), ('loading', 7), ('full', 8)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfNbrState.setStatus('current') ospf_if_nbr_designated_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 5), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfNbrDesignatedRtr.setStatus('current') ospf_if_nbr_backup_designated_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 6), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfNbrBackupDesignatedRtr.setStatus('current') ospf_if_nbr_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 7), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ospfIfNbrIpAddress.setStatus('current') gateway_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1)) if mibBuilder.loadTexts: gatewayInfoTable.setStatus('current') gateway_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'gatewayInfoIndex')) if mibBuilder.loadTexts: gatewayInfoEntry.setStatus('current') gateway_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gatewayInfoIndex.setStatus('current') gateway_info_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: gatewayInfoAddr.setStatus('current') gateway_info_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gatewayInfoVlan.setStatus('current') gateway_info_status = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('failed', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gatewayInfoStatus.setStatus('current') gateway_info_addr6 = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gatewayInfoAddr6.setStatus('current') nbrcache_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1)) if mibBuilder.loadTexts: nbrcacheInfoTable.setStatus('current') nbrcache_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'nbrcacheInfoIndex')) if mibBuilder.loadTexts: nbrcacheInfoEntry.setStatus('current') nbrcache_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbrcacheInfoIndex.setStatus('current') nbrcache_info_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbrcacheInfoDestIp.setStatus('current') nbrcache_info_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('undef', 1), ('reach', 2), ('stale', 3), ('delay', 4), ('probe', 5), ('inval', 6), ('unknown', 7), ('incmp', 8)))).setMaxAccess('readonly') if mibBuilder.loadTexts: nbrcacheInfoState.setStatus('current') nbrcache_info_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('undef', 1), ('other', 2), ('invalid', 3), ('dynamic', 4), ('static', 5), ('local', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: nbrcacheInfoType.setStatus('current') nbrcache_info_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 5), phys_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbrcacheInfoMacAddr.setStatus('current') nbrcache_info_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbrcacheInfoVlanId.setStatus('current') nbrcache_info_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbrcacheInfoPortNum.setStatus('current') nbrcache_clear = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nbrcacheClear.setStatus('current') nbrcache_info_tot_dynamic_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbrcacheInfoTotDynamicEntries.setStatus('current') nbrcache_info_tot_local_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbrcacheInfoTotLocalEntries.setStatus('current') nbrcache_info_tot_other_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbrcacheInfoTotOtherEntries.setStatus('current') ip_route6_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1)) if mibBuilder.loadTexts: ipRoute6InfoTable.setStatus('current') ip_route6_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipRoute6InfoIndx')) if mibBuilder.loadTexts: ipRoute6InfoEntry.setStatus('current') ip_route6_info_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRoute6InfoIndx.setStatus('current') ip_route6_info_dest_ip6 = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRoute6InfoDestIp6.setStatus('current') ip_route6_info_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRoute6InfoInterface.setStatus('current') ip_route6_info_next_hop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRoute6InfoNextHop.setStatus('current') ip_route6_info_proto = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 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))).clone(namedValues=named_values(('isis', 1), ('rip', 2), ('ospf', 3), ('static', 4), ('local', 5), ('bgp', 6), ('stlow', 7), ('ospfi', 8), ('ospfe', 9), ('ospfe2', 10), ('ospfa', 11), ('ripa', 12), ('bgpa', 13), ('igmp', 14), ('unknown', 15), ('natpt', 16)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ipRoute6InfoProto.setStatus('current') rip2_general_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1)) rip_info_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoState.setStatus('current') rip_info_update_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoUpdatePeriod.setStatus('current') rip_info_vip = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoVip.setStatus('current') rip_info_static_supply = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoStaticSupply.setStatus('current') rip2_info_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2)) if mibBuilder.loadTexts: rip2InfoIntfTable.setStatus('current') rip_info_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ripInfoIntfIndex')) if mibBuilder.loadTexts: ripInfoIntfEntry.setStatus('current') rip_info_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfIndex.setStatus('current') rip_info_intf_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ripVersion1', 1), ('ripVersion2', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfVersion.setStatus('current') rip_info_intf_address = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfAddress.setStatus('current') rip_info_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfState.setStatus('current') rip_info_intf_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfListen.setStatus('current') rip_info_intf_trig_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfTrigUpdate.setStatus('current') rip_info_intf_mcast_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfMcastUpdate.setStatus('current') rip_info_intf_poison_reverse = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfPoisonReverse.setStatus('current') rip_info_intf_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfSupply.setStatus('current') rip_info_intf_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfMetric.setStatus('current') rip_info_intf_auth = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('password', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfAuth.setStatus('current') rip_info_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfKey.setStatus('current') rip_info_intf_default = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('both', 1), ('listen', 2), ('supply', 3), ('none', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ripInfoIntfDefault.setStatus('current') rip2_routes_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1)) if mibBuilder.loadTexts: rip2RoutesInfoTable.setStatus('current') rip2_routes_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'rip2RoutesInfoDestIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'rip2RoutesInfoNxtHopIndex')) if mibBuilder.loadTexts: rip2RoutesInfoEntry.setStatus('current') rip2_routes_info_dest_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rip2RoutesInfoDestIndex.setStatus('current') rip2_routes_info_nxt_hop_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rip2RoutesInfoNxtHopIndex.setStatus('current') rip2_routes_info_destination = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: rip2RoutesInfoDestination.setStatus('current') rip2_routes_info_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 4), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: rip2RoutesInfoIpAddress.setStatus('current') rip2_routes_info_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readonly') if mibBuilder.loadTexts: rip2RoutesInfoMetric.setStatus('current') allowed_nw_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1)) if mibBuilder.loadTexts: allowedNwInfoTable.setStatus('current') allowed_nw_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'allowedNwInfoIndex')) if mibBuilder.loadTexts: allowedNwInfoEntry.setStatus('current') allowed_nw_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: allowedNwInfoIndex.setStatus('current') allowed_nw_info_ipver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: allowedNwInfoIpver.setStatus('current') allowed_nw_info_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: allowedNwInfoVlan.setStatus('current') allowed_nw_info_begin_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: allowedNwInfoBeginIpAddr.setStatus('current') allowed_nw_info_end_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: allowedNwInfoEndIpAddr.setStatus('current') allowed_nw_info_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: allowedNwInfoNetMask.setStatus('current') allowed_nw_info_ip6_prefix = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: allowedNwInfoIp6Prefix.setStatus('current') vrrp_oper_virt_rtr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1)) if mibBuilder.loadTexts: vrrpOperVirtRtrTable.setStatus('current') vrrp_oper_virt_rtr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpOperVirtRtrIndex')) if mibBuilder.loadTexts: vrrpOperVirtRtrEntry.setStatus('current') vrrp_oper_virt_rtr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vrrpOperVirtRtrIndex.setStatus('current') vrrp_oper_virt_rtr_backup = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('backup', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vrrpOperVirtRtrBackup.setStatus('current') vrrp_oper_virt_rtr_group_backup = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('backup', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vrrpOperVirtRtrGroupBackup.setStatus('current') bgp_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1)) garp_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2)) bgp_oper_start = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1)) bgp_oper_stop = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2)) bgp_oper_start_peer_num = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bgpOperStartPeerNum.setStatus('current') bgp_oper_start_sess = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('start', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bgpOperStartSess.setStatus('current') bgp_oper_stop_peer_num = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bgpOperStopPeerNum.setStatus('current') bgp_oper_stop_sess = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('stop', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bgpOperStopSess.setStatus('current') garp_oper_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: garpOperIpAddr.setStatus('current') garp_oper_vlan_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 4090))).setMaxAccess('readwrite') if mibBuilder.loadTexts: garpOperVlanNumber.setStatus('current') garp_oper_send = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('ok', 1), ('send', 2), ('error', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: garpOperSend.setStatus('current') mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', ipCurCfgIntfAddr=ipCurCfgIntfAddr, ipv6NewCfgStaticRouteTable=ipv6NewCfgStaticRouteTable, ipNewCfgBootpAddr=ipNewCfgBootpAddr, arpStatMaxEntries=arpStatMaxEntries, ip6InUnknownProtos=ip6InUnknownProtos, icmp6InRSs=icmp6InRSs, bgpNewCfgAggrState=bgpNewCfgAggrState, ospfCurCfgAreaId=ospfCurCfgAreaId, gatewayInfoIndex=gatewayInfoIndex, ospfCurCfgRangeEntry=ospfCurCfgRangeEntry, ipFwdCurCfgLocalMask=ipFwdCurCfgLocalMask, ospfNewCfgIntfMdkey=ospfNewCfgIntfMdkey, gatewayInfoEntry=gatewayInfoEntry, ospfIntfErrUnknownNbr=ospfIntfErrUnknownNbr, bgpNewCfgPeerVipState=bgpNewCfgPeerVipState, vrrpInfoVirtRtrTable=vrrpInfoVirtRtrTable, vrrpCurCfgVirtRtrIfIndex=vrrpCurCfgVirtRtrIfIndex, ospfIntfNbrRstAd=ospfIntfNbrRstAd, ospfCumNbrNegotiationDone=ospfCumNbrNegotiationDone, vrrpCurCfgVirtRtrGrpTckIpIntf=vrrpCurCfgVirtRtrGrpTckIpIntf, ospfNewCfgAreaAuthType=ospfNewCfgAreaAuthType, ipNewCfgIntfMask=ipNewCfgIntfMask, ipGeneralCfg=ipGeneralCfg, bgpCurCfgPeerVipState=bgpCurCfgPeerVipState, ipCurCfgIntfIndex=ipCurCfgIntfIndex, ipCurCfgNwfTable=ipCurCfgNwfTable, ospfNewCfgEbgpRemoveOutRmap=ospfNewCfgEbgpRemoveOutRmap, ospfNewCfgAreaIndex=ospfNewCfgAreaIndex, icmp6OutRSs=icmp6OutRSs, ospfNewCfgIbgpRemoveOutRmap=ospfNewCfgIbgpRemoveOutRmap, rip2Info=rip2Info, ospfCurCfgMdkeyTable=ospfCurCfgMdkeyTable, ospfNewCfgRangeIndex=ospfNewCfgRangeIndex, bgpNewCfgPeerOspfState=bgpNewCfgPeerOspfState, ospfNewCfgRangeDelete=ospfNewCfgRangeDelete, ripCurCfgIntfAuth=ripCurCfgIntfAuth, vrrpCurCfgVirtRtrGrpState=vrrpCurCfgVirtRtrGrpState, tcpStatCurOutConn=tcpStatCurOutConn, ipNewCfgGwInterval=ipNewCfgGwInterval, ospfNewCfgIntfPriority=ospfNewCfgIntfPriority, ipNewCfgAspathEntry=ipNewCfgAspathEntry, ip6IfIndex=ip6IfIndex, ospfTotalNssaAreas=ospfTotalNssaAreas, ospfNewCfgHostTable=ospfNewCfgHostTable, ipNewCfgGwIpv6Addr=ipNewCfgGwIpv6Addr, ospfNewCfgIntfId=ospfNewCfgIntfId, routeStatHighWater=routeStatHighWater, dnsStatInGoodDnsRequests=dnsStatInGoodDnsRequests, ipCurCfgStaticRouteGateway=ipCurCfgStaticRouteGateway, ipNewCfgAlistRmapIndex=ipNewCfgAlistRmapIndex, ospfCurCfgFixedMetric=ospfCurCfgFixedMetric, ospfCumRxlsReqs=ospfCumRxlsReqs, bgpCurCfgPeerDefaultAction=bgpCurCfgPeerDefaultAction, vrrpOperVirtRtrEntry=vrrpOperVirtRtrEntry, vrrpOperVirtRtrGroupBackup=vrrpOperVirtRtrGroupBackup, vrrpNewCfgVirtRtrGrpVersion=vrrpNewCfgVirtRtrGrpVersion, ospfCurCfgVirtIntfState=ospfCurCfgVirtIntfState, ripCurCfgIntfIndex=ripCurCfgIntfIndex, rip2Stats=rip2Stats, ipv6CurCfgStaticRouteGateway=ipv6CurCfgStaticRouteGateway, ospfCurCfgAreaMetric=ospfCurCfgAreaMetric, ospfNewCfgVisionAreaTable=ospfNewCfgVisionAreaTable, ospfCurCfgIntfTable=ospfCurCfgIntfTable, ipv6CurCfgStaticRouteMask=ipv6CurCfgStaticRouteMask, ospfCumTxPkts=ospfCumTxPkts, ripStatInPackets=ripStatInPackets, ospfAreaErrIndex=ospfAreaErrIndex, ipCurCfgRmapTable=ipCurCfgRmapTable, icmp6StatsEntry=icmp6StatsEntry, tcpStats=tcpStats, ipForwardCfg=ipForwardCfg, vrrpStats=vrrpStats, ospfNewCfgVirtIntfHello=ospfNewCfgVirtIntfHello, ripCurCfgIntfListen=ripCurCfgIntfListen, vrrpCurCfgVirtRtrVrGrpName=vrrpCurCfgVirtRtrVrGrpName, ripInfoState=ripInfoState, ospfNewCfgIbgpMetricType=ospfNewCfgIbgpMetricType, ospfIfNbrIpAddr=ospfIfNbrIpAddr, ripInfoIntfVersion=ripInfoIntfVersion, ospfCumIntfUnloop=ospfCumIntfUnloop, ifStatsIndex=ifStatsIndex, ospfProcessUptime=ospfProcessUptime, bgpOperStopSess=bgpOperStopSess, ospfCurCfgIbgpMetricType=ospfCurCfgIbgpMetricType, vrrpInfoVirtRtrIndex=vrrpInfoVirtRtrIndex, nbrcacheInfoIndex=nbrcacheInfoIndex, ipFwdNewCfgNoICMPRedirect=ipFwdNewCfgNoICMPRedirect, vrrpNewCfgGenTckVirtRtrInc=vrrpNewCfgGenTckVirtRtrInc, vrrpCurCfgVirtRtrVrGrpTckHsrv=vrrpCurCfgVirtRtrVrGrpTckHsrv, ipNewCfgAspathAction=ipNewCfgAspathAction, rip2RoutesInfoDestIndex=rip2RoutesInfoDestIndex, dnsStats=dnsStats, rip2CurCfgState=rip2CurCfgState, ospfAreaErrNetmaskMismatch=ospfAreaErrNetmaskMismatch, vrrpOper=vrrpOper, ipNewCfgRmapLp=ipNewCfgRmapLp, bgpCurCfgPeerFixedState=bgpCurCfgPeerFixedState, vrrpNewCfgVirtRtrVersion=vrrpNewCfgVirtRtrVersion, ospfNewCfgVirtIntfDelete=ospfNewCfgVirtIntfDelete, icmp6InRAs=icmp6InRAs, ipNewCfgGwRetry=ipNewCfgGwRetry, ipCurCfgGwPriority=ipCurCfgGwPriority, bgpNewCfgPeerRemoteAs=bgpNewCfgPeerRemoteAs, ospfIntfRxPkts=ospfIntfRxPkts, nbrcacheInfoVlanId=nbrcacheInfoVlanId, ripNewCfgIntfMetric=ripNewCfgIntfMetric, vrrpCurCfgIfIpAddr=vrrpCurCfgIfIpAddr, ospfCumRxlsAcks=ospfCumRxlsAcks, ospfAreaTxHello=ospfAreaTxHello, ospfIfBackupDesignatedRouterIP=ospfIfBackupDesignatedRouterIP, ipNewCfgIntfState=ipNewCfgIntfState, ipv6CurCfgStaticRouteEntry=ipv6CurCfgStaticRouteEntry, ospfAreaNbrBadRequests=ospfAreaNbrBadRequests, bgpNewCfgPeerRemoveOutRmap=bgpNewCfgPeerRemoveOutRmap, ospfNewCfgVirtIntfAreaId=ospfNewCfgVirtIntfAreaId, ip6GwStatsEntry=ip6GwStatsEntry, ipStaticRouteCfg=ipStaticRouteCfg, ipNewCfgStaticRouteAction=ipNewCfgStaticRouteAction, bgpGeneral=bgpGeneral, ospfAreaIntfIndex=ospfAreaIntfIndex, arpInfoDestIp=arpInfoDestIp, ripStatOutRequestPkts=ripStatOutRequestPkts, ospfTmrsKckOffLsaAck=ospfTmrsKckOffLsaAck, ospfTotalNeighbours=ospfTotalNeighbours, ospfAreaIntfUnloop=ospfAreaIntfUnloop, ipNewCfgStaticRouteMask=ipNewCfgStaticRouteMask, ospfNewCfgVirtIntfRetrans=ospfNewCfgVirtIntfRetrans, ospfCurCfgVirtIntfTable=ospfCurCfgVirtIntfTable, vrrpCurCfgVirtRtrVrGrpTckVlanPort=vrrpCurCfgVirtRtrVrGrpTckVlanPort, ripInfoIntfMetric=ripInfoIntfMetric, ipCurCfgIntfPrefixLen=ipCurCfgIntfPrefixLen, ospfNewCfgRangeEntry=ospfNewCfgRangeEntry, ospfIfNbrState=ospfIfNbrState, gatewayInfoTable=gatewayInfoTable, ospfNewCfgHostIndex=ospfNewCfgHostIndex, dnsCurCfgPrimaryIpAddr=dnsCurCfgPrimaryIpAddr, vrrpCurCfgVirtRtrVrGrpBmap=vrrpCurCfgVirtRtrVrGrpBmap, ospfCurCfgRangeAddr=ospfCurCfgRangeAddr, ospfIntfTxHello=ospfIntfTxHello, vrrpNewCfgVirtRtrIpv6Addr=vrrpNewCfgVirtRtrIpv6Addr, ipFwdCurCfgDirectedBcast=ipFwdCurCfgDirectedBcast, vrrpCurCfgVirtRtrGrpID=vrrpCurCfgVirtRtrGrpID, ospfAreaNbrLoadingDone=ospfAreaNbrLoadingDone, ipNewCfgStaticRouteGateway=ipNewCfgStaticRouteGateway, ipCurCfgAlistEntry=ipCurCfgAlistEntry, ospfIntfNbrAdjointOk=ospfIntfNbrAdjointOk, ripCurCfgIntfVersion=ripCurCfgIntfVersion, ipNewCfgStaticRouteIndx=ipNewCfgStaticRouteIndx, ospfIntfTableMaxSize=ospfIntfTableMaxSize, ipAspathTableMax=ipAspathTableMax, vrrpCurCfgGenTckL4PortInc=vrrpCurCfgGenTckL4PortInc, ipCurCfgNwfIndex=ipCurCfgNwfIndex, bgpNewCfgPeerConRetry=bgpNewCfgPeerConRetry, ospfIntfRxDatabase=ospfIntfRxDatabase, icmp6InDestUnreachs=icmp6InDestUnreachs, vrrpCurCfgVirtRtrTable=vrrpCurCfgVirtRtrTable, ripCurCfgIntfTable=ripCurCfgIntfTable, ospfNewCfgVirtIntfEntry=ospfNewCfgVirtIntfEntry, vrrpStatOutAdvers=vrrpStatOutAdvers, icmp6OutMsgs=icmp6OutMsgs, vrrpNewCfgVirtRtrVrGrpPriority=vrrpNewCfgVirtRtrVrGrpPriority, ospfCurCfgRangeIndex=ospfCurCfgRangeIndex, ospfCurCfgIntfCost=ospfCurCfgIntfCost, bgpCurCfgPeerOutRmapList=bgpCurCfgPeerOutRmapList, ospfIntfTxlsReqs=ospfIntfTxlsReqs, vrrpNewCfgVirtRtrTableEntry=vrrpNewCfgVirtRtrTableEntry, vrrpNewCfgIfTable=vrrpNewCfgIfTable, bgpCurCfgAggrTable=bgpCurCfgAggrTable, ipStaticArpTableMaxSize=ipStaticArpTableMaxSize, nbrcacheInfoType=nbrcacheInfoType, vrrpCurCfgGenHotstandby=vrrpCurCfgGenHotstandby, ipNwfCfg=ipNwfCfg, ripCurCfgIntfTrigUpdate=ripCurCfgIntfTrigUpdate, ipNewCfgNwfState=ipNewCfgNwfState, ipNewCfgIntfPrefixLen=ipNewCfgIntfPrefixLen, vrrpNewCfgVirtRtrVrGrpTableEntry=vrrpNewCfgVirtRtrVrGrpTableEntry, ipStaticRouteTableMaxSize=ipStaticRouteTableMaxSize, ipCurCfgStaticArpIndx=ipCurCfgStaticArpIndx, ripInfoIntfSupply=ripInfoIntfSupply, vrrpNewCfgVirtRtrTckHsrv=vrrpNewCfgVirtRtrTckHsrv, ipNewCfgASNumber=ipNewCfgASNumber, rip2CurCfgStaticSupply=rip2CurCfgStaticSupply, ipv6NewCfgStaticRouteIndx=ipv6NewCfgStaticRouteIndx, ospfCurCfgHostTable=ospfCurCfgHostTable, ospfCumIntfChangeStats=ospfCumIntfChangeStats, ospfCurCfgHostEntry=ospfCurCfgHostEntry, ospfIntfBackup=ospfIntfBackup, ipRouteInfoIndx=ipRouteInfoIndx, vrrpCurCfgGenTckRServerInc=vrrpCurCfgGenTckRServerInc, vrrpNewCfgVirtRtrGrpTckVirtRtr=vrrpNewCfgVirtRtrGrpTckVirtRtr, vrrpCurCfgVirtRtrVrGrpTckHsrp=vrrpCurCfgVirtRtrVrGrpTckHsrp, dnsStatOutDnsRequests=dnsStatOutDnsRequests, vrrpNewCfgVirtRtrGrpTable=vrrpNewCfgVirtRtrGrpTable, bgpOper=bgpOper, ospfAreaInfoTable=ospfAreaInfoTable, ospfCumNbrBadSequence=ospfCumNbrBadSequence, ipNwfTableMax=ipNwfTableMax, ospfNewCfgIntfTransit=ospfNewCfgIntfTransit, ip6OutRequests=ip6OutRequests, ipNewCfgGwAddr=ipNewCfgGwAddr, ospfNewCfgVisionAreaAuthType=ospfNewCfgVisionAreaAuthType, ipNewCfgGwArp=ipNewCfgGwArp, ospfCurCfgHostState=ospfCurCfgHostState, icmp6OutRAs=icmp6OutRAs, allowedNwInfo=allowedNwInfo, ipCurCfgRmapMetric=ipCurCfgRmapMetric, ospfNewCfgFixedAddOutRmap=ospfNewCfgFixedAddOutRmap, icmp6InTimeExcds=icmp6InTimeExcds, ospfNewCfgIntfRetrans=ospfNewCfgIntfRetrans, ripCurCfgIntfDefListen=ripCurCfgIntfDefListen, vrrpCurCfgVirtRtrVrGrpAdd=vrrpCurCfgVirtRtrVrGrpAdd, ospfNewCfgLsdb=ospfNewCfgLsdb, allowedNwInfoNetMask=allowedNwInfoNetMask, ip6InAddrErrors=ip6InAddrErrors, ipNewCfgStaticRouteInterface=ipNewCfgStaticRouteInterface, ospfCumTxHello=ospfCumTxHello, ipRouteInfoMetric=ipRouteInfoMetric, ip6InReceives=ip6InReceives, ospfCumIntfHello=ospfCumIntfHello, bgpCurCfgLocalPref=bgpCurCfgLocalPref, ospfNewCfgVisionAreaState=ospfNewCfgVisionAreaState, ospfCumIntfBackup=ospfCumIntfBackup, ipNewCfgNwfMask=ipNewCfgNwfMask, ospfIfNbrIpAddress=ospfIfNbrIpAddress, ipCurCfgIntfIpVer=ipCurCfgIntfIpVer, vrrpNewCfgVirtRtrVrGrpBmap=vrrpNewCfgVirtRtrVrGrpBmap, rip2CurCfgUpdatePeriod=rip2CurCfgUpdatePeriod, vrrpNewCfgVirtRtrPreempt=vrrpNewCfgVirtRtrPreempt, nbrcacheClear=nbrcacheClear, ipv6CurCfgStaticRouteInterface=ipv6CurCfgStaticRouteInterface, ripGeneral=ripGeneral, layer3Configs=layer3Configs, ipCurCfgBootpAddr2=ipCurCfgBootpAddr2, ospfNewCfgIntfCost=ospfNewCfgIntfCost, ipRoute6InfoIndx=ipRoute6InfoIndx, ipCurCfgAspathAS=ipCurCfgAspathAS, bgpNewCfgAggrAddr=bgpNewCfgAggrAddr, icmp6InRedirects=icmp6InRedirects, gatewayInfoAddr6=gatewayInfoAddr6, ipv6NewCfgStaticRouteGateway=ipv6NewCfgStaticRouteGateway, ospfIntfNbrNegotiationDone=ospfIntfNbrNegotiationDone, ospfNewCfgStaticRemoveOutRmap=ospfNewCfgStaticRemoveOutRmap, vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo=vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo, vrrpCurCfgVirtRtrTckIpIntf=vrrpCurCfgVirtRtrTckIpIntf, ipCurCfgGwIpVer=ipCurCfgGwIpVer, ospfNewCfgRangeAddr=ospfNewCfgRangeAddr, ospfAreaTxlsUpdates=ospfAreaTxlsUpdates, ip6ReasmFails=ip6ReasmFails, ipIntfInfoTable=ipIntfInfoTable, ipRouteInfoEntry=ipRouteInfoEntry, ipCurCfgGwTable=ipCurCfgGwTable, ipRouteInfoType=ipRouteInfoType, ipv6CurCfgStaticRouteDestIp=ipv6CurCfgStaticRouteDestIp, vrrpCurCfgVirtRtrTckL4Port=vrrpCurCfgVirtRtrTckL4Port) mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', ospfCumTxlsReqs=ospfCumTxlsReqs, intfInfoBcastAddr=intfInfoBcastAddr, ospfCurCfgVirtIntfAreaId=ospfCurCfgVirtIntfAreaId, ipNewCfgIntfBroadcast=ipNewCfgIntfBroadcast, vrrpNewCfgVirtRtrGrpPriority=vrrpNewCfgVirtRtrGrpPriority, bgpCurCfgAggrMask=bgpCurCfgAggrMask, vrrpInfoVirtRtrOwnership=vrrpInfoVirtRtrOwnership, ipFwdCurCfgPortIndex=ipFwdCurCfgPortIndex, ospfCurCfgDefaultRouteMetric=ospfCurCfgDefaultRouteMetric, rip2RoutesInfo=rip2RoutesInfo, ospfCumRxDatabase=ospfCumRxDatabase, ipNewCfgGwPriority=ipNewCfgGwPriority, ospfVlinkCountForRouter=ospfVlinkCountForRouter, vrrpCurCfgIfAuthType=vrrpCurCfgIfAuthType, bgpCurCfgPeerState=bgpCurCfgPeerState, ipNewCfgStaticArpVlan=ipNewCfgStaticArpVlan, ipv6NewCfgStaticRouteInterface=ipv6NewCfgStaticRouteInterface, ospfGeneralStats=ospfGeneralStats, ip6GwEchoresp=ip6GwEchoresp, vrrpInfoVirtRtrTableEntry=vrrpInfoVirtRtrTableEntry, ipFwdCurCfgLocalTable=ipFwdCurCfgLocalTable, ipFwdCurCfgRtCache=ipFwdCurCfgRtCache, ipCurCfgAlistIndex=ipCurCfgAlistIndex, ospfCurCfgMdkeyKey=ospfCurCfgMdkeyKey, icmp6InMsgs=icmp6InMsgs, bgpOperStart=bgpOperStart, ospfNewCfgIbgpOutRmapList=ospfNewCfgIbgpOutRmapList, nbrcacheInfoDestIp=nbrcacheInfoDestIp, bgpNewCfgPeerTtl=bgpNewCfgPeerTtl, ip6icmpOutErrors=ip6icmpOutErrors, ospfCurCfgDefaultRouteMetricType=ospfCurCfgDefaultRouteMetricType, ospfNewCfgIntfAreaId=ospfNewCfgIntfAreaId, vrrpOperVirtRtrIndex=vrrpOperVirtRtrIndex, ip6GwRetry=ip6GwRetry, ipv6CurCfgStaticRouteTable=ipv6CurCfgStaticRouteTable, vrrpCurCfgVirtRtrGrpTckL4Port=vrrpCurCfgVirtRtrGrpTckL4Port, ipStaticArpCfg=ipStaticArpCfg, ospfNewCfgIntfTable=ospfNewCfgIntfTable, ipNewCfgRmapState=ipNewCfgRmapState, vrrpOperVirtRtrBackup=vrrpOperVirtRtrBackup, ospfTmrsKckOffDbage=ospfTmrsKckOffDbage, vrrpCurCfgVirtRtrInterval=vrrpCurCfgVirtRtrInterval, ospfRouteRedistribution=ospfRouteRedistribution, vrrpCurCfgGenTckHsrpInc=vrrpCurCfgGenTckHsrpInc, ipFwdNewCfgPortTable=ipFwdNewCfgPortTable, arpInfoMacAddr=arpInfoMacAddr, ripNewCfgIntfSupply=ripNewCfgIntfSupply, ripCurCfgIntfState=ripCurCfgIntfState, vrrpInfoVirtRtrState=vrrpInfoVirtRtrState, rip2RoutesInfoMetric=rip2RoutesInfoMetric, ipCurCfgStaticArpEntry=ipCurCfgStaticArpEntry, vrrpCurCfgVirtRtrVrGrpTckL4Port=vrrpCurCfgVirtRtrVrGrpTckL4Port, ospfNewCfgVisionAreaSpfInterval=ospfNewCfgVisionAreaSpfInterval, icmp6IntfIndex=icmp6IntfIndex, dnsCfg=dnsCfg, ipCurCfgAlistNwf=ipCurCfgAlistNwf, ipCurCfgGwInterval=ipCurCfgGwInterval, ipv6NewCfgStaticRouteEntry=ipv6NewCfgStaticRouteEntry, ospfIfTotalNeighbours=ospfIfTotalNeighbours, bgpNewCfgAggrMask=bgpNewCfgAggrMask, ospfCurCfgIntfState=ospfCurCfgIntfState, ospfNewCfgIntfHello=ospfNewCfgIntfHello, ipFwdPortTableMaxSize=ipFwdPortTableMaxSize, ospfCurCfgIntfId=ospfCurCfgIntfId, ripStatOutResponsePkts=ripStatOutResponsePkts, ospfAreaNbrRstAd=ospfAreaNbrRstAd, vrrpNewCfgVirtRtrGrpIpv6Interval=vrrpNewCfgVirtRtrGrpIpv6Interval, ospfAreaNbrNegotiationDone=ospfAreaNbrNegotiationDone, ipNewCfgStaticRouteTable=ipNewCfgStaticRouteTable, vrrpNewCfgVirtRtrVrGrpTckIpIntf=vrrpNewCfgVirtRtrVrGrpTckIpIntf, ospfCurCfgVirtIntfMdkey=ospfCurCfgVirtIntfMdkey, ospfNewCfgAreaDelete=ospfNewCfgAreaDelete, vrrpCurCfgVirtRtrPreempt=vrrpCurCfgVirtRtrPreempt, ipv6CurCfgStaticRouteIndx=ipv6CurCfgStaticRouteIndx, ipNewCfgAlistTable=ipNewCfgAlistTable, gatewayInfoStatus=gatewayInfoStatus, ipNewCfgRmapDelete=ipNewCfgRmapDelete, ipNewCfgGwMetric=ipNewCfgGwMetric, ospfCurCfgEbgpMetric=ospfCurCfgEbgpMetric, ipCurCfgNwfEntry=ipCurCfgNwfEntry, vrrpNewCfgVirtRtrVrGrpName=vrrpNewCfgVirtRtrVrGrpName, ospfIntfNbrN2way=ospfIntfNbrN2way, ipNewCfgIntfIpv6Addr=ipNewCfgIntfIpv6Addr, ospfAreaErrorStats=ospfAreaErrorStats, ospfCumNbrhello=ospfCumNbrhello, ipAlistTableMax=ipAlistTableMax, ospfCumIntfDown=ospfCumIntfDown, ipRmapTableMax=ipRmapTableMax, ospfNewCfgIntfKey=ospfNewCfgIntfKey, ripInfoIntfKey=ripInfoIntfKey, vrrpCurCfgVirtRtrVersion=vrrpCurCfgVirtRtrVersion, ipFwdNewCfgPortEntry=ipFwdNewCfgPortEntry, ospfAreaIntfLoop=ospfAreaIntfLoop, ospfRedistributeIbgp=ospfRedistributeIbgp, vrrpNewCfgVirtRtrVrGrpAdd=vrrpNewCfgVirtRtrVrGrpAdd, ospfCurCfgIntfHello=ospfCurCfgIntfHello, ripStatInBadVersion=ripStatInBadVersion, ripNewCfgIntfMcastUpdate=ripNewCfgIntfMcastUpdate, ospfCumIntfLoop=ospfCumIntfLoop, ospfCurCfgVirtIntfRetrans=ospfCurCfgVirtIntfRetrans, ipNewCfgStaticArpPort=ipNewCfgStaticArpPort, bgpNewCfgPeerHoldTime=bgpNewCfgPeerHoldTime, ospfTimersKickOffStats=ospfTimersKickOffStats, ipCurCfgGwState=ipCurCfgGwState, ospfAreaIntfWaitTimer=ospfAreaIntfWaitTimer, ipCurCfgIntfMask=ipCurCfgIntfMask, ospfAreaNbrChangeStats=ospfAreaNbrChangeStats, ipCurCfgRmapPrec=ipCurCfgRmapPrec, ipNewCfgRmapWeight=ipNewCfgRmapWeight, bgpNewCfgPeerAddOutRmap=bgpNewCfgPeerAddOutRmap, ospfIntfErrAuthFailure=ospfIntfErrAuthFailure, allowedNwInfoIp6Prefix=allowedNwInfoIp6Prefix, arpInfoRefPorts=arpInfoRefPorts, ospfIntfDown=ospfIntfDown, bgpNewCfgPeerRemoveInRmap=bgpNewCfgPeerRemoveInRmap, ipFwdCurCfgPortTable=ipFwdCurCfgPortTable, vrrpCurCfgVirtRtrID=vrrpCurCfgVirtRtrID, ospfIntfNbrN1way=ospfIntfNbrN1way, ipRoute6InfoTable=ipRoute6InfoTable, ospfIntfLoop=ospfIntfLoop, ifStatsTable=ifStatsTable, ipNewCfgStaticRouteDestIp=ipNewCfgStaticRouteDestIp, ipBootpCfg=ipBootpCfg, nbrcacheInfo=nbrcacheInfo, ospfTmrsKckOffLsaLock=ospfTmrsKckOffLsaLock, ospfAreaNbrChangeStatsEntry=ospfAreaNbrChangeStatsEntry, bgpNewCfgPeerIndex=bgpNewCfgPeerIndex, bgpNewCfgAggrIndex=bgpNewCfgAggrIndex, ospfAreaInfoEntry=ospfAreaInfoEntry, bgpNewCfgPeerMinTime=bgpNewCfgPeerMinTime, ospfAreaIntfDown=ospfAreaIntfDown, ipCurCfgIntfEntry=ipCurCfgIntfEntry, ipNewCfgStaticArpMAC=ipNewCfgStaticArpMAC, ripCurCfgIntfMetric=ripCurCfgIntfMetric, ipNewCfgAspathState=ipNewCfgAspathState, vrrpCurCfgVirtRtrVrGrpPreemption=vrrpCurCfgVirtRtrVrGrpPreemption, ospfCurCfgAreaSpfInterval=ospfCurCfgAreaSpfInterval, ospfIntfErrHelloMismatch=ospfIntfErrHelloMismatch, vrrpStatInAdvers=vrrpStatInAdvers, vrrpCurCfgGenTckVlanPortInc=vrrpCurCfgGenTckVlanPortInc, allowedNwInfoIpver=allowedNwInfoIpver, ipNewCfgAspathTable=ipNewCfgAspathTable, ospfGeneralInfo=ospfGeneralInfo, ospfAreaChangeStatsEntry=ospfAreaChangeStatsEntry, ospfAreaIntfBackup=ospfAreaIntfBackup, vrrpCurCfgVirtRtrAddr=vrrpCurCfgVirtRtrAddr, ripCurCfgIntfSupply=ripCurCfgIntfSupply, icmp6OutErrors=icmp6OutErrors, ospfTmrsKckOffHello=ospfTmrsKckOffHello, vrrpNewCfgVirtRtrDelete=vrrpNewCfgVirtRtrDelete, ipNewCfgNwfAddr=ipNewCfgNwfAddr, arpInfoEntry=arpInfoEntry, ipCurCfgIntfState=ipCurCfgIntfState, allowedNwInfoBeginIpAddr=allowedNwInfoBeginIpAddr, arpStats=arpStats, ipFwdNewCfgPortIndex=ipFwdNewCfgPortIndex, ospfNewCfgRangeMask=ospfNewCfgRangeMask, ipNewCfgAlistNwf=ipNewCfgAlistNwf, bgpCurCfgPeerMinAS=bgpCurCfgPeerMinAS, vrrpNewCfgGenTckL4PortInc=vrrpNewCfgGenTckL4PortInc, ipInterfaceTableMax=ipInterfaceTableMax, ospfIntfNbrChangeStatsEntry=ospfIntfNbrChangeStatsEntry, ospfIntfRxHello=ospfIntfRxHello, ipCurCfgStaticArpMAC=ipCurCfgStaticArpMAC, icmp6StatsIndx=icmp6StatsIndx, ospfNewCfgRangeAreaIndex=ospfNewCfgRangeAreaIndex, rip2RoutesInfoNxtHopIndex=rip2RoutesInfoNxtHopIndex, ipNewCfgIntfVlan=ipNewCfgIntfVlan, ospfAreaTxlsReqs=ospfAreaTxlsReqs, garpOper=garpOper, ospfNewCfgAreaState=ospfNewCfgAreaState, ospfStats=ospfStats, ip6ForwDatagrams=ip6ForwDatagrams, ospfIfInfoIndex=ospfIfInfoIndex, rip2NewCfgVip=rip2NewCfgVip, ipFwdCurCfgLocalSubnet=ipFwdCurCfgLocalSubnet, ipNewCfgBootpState=ipNewCfgBootpState, ospfInterface=ospfInterface, bgpOperStop=bgpOperStop, garpOperVlanNumber=garpOperVlanNumber, bgpCurCfgPeerConRetry=bgpCurCfgPeerConRetry, ospfCumRxHello=ospfCumRxHello, vrrpNewCfgGenState=vrrpNewCfgGenState, PYSNMP_MODULE_ID=layer3, rip2Cfg=rip2Cfg, ospfNewCfgStaticAddOutRmap=ospfNewCfgStaticAddOutRmap, ipNewCfgIntfIndex=ipNewCfgIntfIndex, ospfNewCfgVirtIntfIndex=ospfNewCfgVirtIntfIndex, ipClearStats=ipClearStats, gatewayInfo=gatewayInfo, ospfAreaRxTxStats=ospfAreaRxTxStats, ipNewCfgAlistDelete=ipNewCfgAlistDelete, ospfCumTxlsUpdates=ospfCumTxlsUpdates, vrrpNewCfgGenHotstandby=vrrpNewCfgGenHotstandby, ospfIntfErrOptionsMismatch=ospfIntfErrOptionsMismatch, ipRoute6InfoEntry=ipRoute6InfoEntry, ospfNewCfgVisionAreaIndex=ospfNewCfgVisionAreaIndex, vrrpNewCfgVirtRtrGrpSharing=vrrpNewCfgVirtRtrGrpSharing, ipCurCfgGwMetric=ipCurCfgGwMetric, vrrpCurCfgVirtRtrVrGrpTckRServer=vrrpCurCfgVirtRtrVrGrpTckRServer, ospfCurCfgIntfMdkey=ospfCurCfgIntfMdkey, ospfCurCfgIbgpOutRmapList=ospfCurCfgIbgpOutRmapList, vrrpNewCfgVirtRtrVrGrpTckVlanPort=vrrpNewCfgVirtRtrVrGrpTckVlanPort, ipNewCfgAspathAS=ipNewCfgAspathAS, ospfCumIntfNbrChange=ospfCumIntfNbrChange, ospfNewCfgHostDelete=ospfNewCfgHostDelete, vrrpNewCfgVirtRtrVrGrpTckRServer=vrrpNewCfgVirtRtrVrGrpTckRServer, intfInfoEntry=intfInfoEntry, bgpNewCfgState=bgpNewCfgState, ospfCurCfgHostAreaIndex=ospfCurCfgHostAreaIndex, ipCurCfgRouterID=ipCurCfgRouterID, icmp6InNSs=icmp6InNSs, icmp6InParmProbs=icmp6InParmProbs, ipCurCfgNwfState=ipCurCfgNwfState, ipNewCfgAlistEntry=ipNewCfgAlistEntry, bgpCurCfgPeerRemoteAddr=bgpCurCfgPeerRemoteAddr, vrrpNewCfgVirtRtrGrpIfIndex=vrrpNewCfgVirtRtrGrpIfIndex, ospfCurCfgFixedOutRmapList=ospfCurCfgFixedOutRmapList, ospfNewCfgFixedOutRmapList=ospfNewCfgFixedOutRmapList, ospfAreaRxTxIndex=ospfAreaRxTxIndex, ipRoute6InfoNextHop=ipRoute6InfoNextHop, ospfIntfInfoTable=ospfIntfInfoTable, ospfGeneral=ospfGeneral, ospfAreaNbrBadSequence=ospfAreaNbrBadSequence, ospfVirtIntfTableMaxSize=ospfVirtIntfTableMaxSize, ipFwdNewCfgState=ipFwdNewCfgState, ospfCurCfgIntfKey=ospfCurCfgIntfKey, ospfNewCfgVirtIntfTransit=ospfNewCfgVirtIntfTransit, ospfIfInfoIpAddress=ospfIfInfoIpAddress, vrrpCurCfgGenTckHsrvInc=vrrpCurCfgGenTckHsrvInc, ospfAreaTableMaxSize=ospfAreaTableMaxSize, ipCurCfgIntfRouteAdv=ipCurCfgIntfRouteAdv, ipCurCfgAlistAction=ipCurCfgAlistAction, ripStatInBadSourcePort=ripStatInBadSourcePort, ipCurCfgAlistState=ipCurCfgAlistState, bgpNewCfgMaxASPath=bgpNewCfgMaxASPath, ospfCurCfgVirtIntfTransit=ospfCurCfgVirtIntfTransit, nbrcacheInfoState=nbrcacheInfoState, ospfNewCfgMdkeyDelete=ospfNewCfgMdkeyDelete, ipCurCfgStaticRouteInterface=ipCurCfgStaticRouteInterface, bgpNewCfgAggrDelete=bgpNewCfgAggrDelete, ospfAreaTxPkts=ospfAreaTxPkts, routeStatMaxEntries=routeStatMaxEntries, ipNewCfgNwfEntry=ipNewCfgNwfEntry, ipRouteInfoMask=ipRouteInfoMask, dnsNewCfgDomainName=dnsNewCfgDomainName, ospfNbrInFullState=ospfNbrInFullState, vrrpNewCfgVirtRtrVrGrpIndx=vrrpNewCfgVirtRtrVrGrpIndx, ipCurCfgRmapIndex=ipCurCfgRmapIndex, vrrpNewCfgVirtRtrIndx=vrrpNewCfgVirtRtrIndx, ospfCurCfgIntfIndex=ospfCurCfgIntfIndex, vrrpNewCfgVirtRtrVrGrpSharing=vrrpNewCfgVirtRtrVrGrpSharing, ospfCurCfgIntfAreaId=ospfCurCfgIntfAreaId, ospfNewCfgVisionAreaId=ospfNewCfgVisionAreaId) mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', ripStatInRequestPkts=ripStatInRequestPkts, arpInfoSrcPort=arpInfoSrcPort, ipFwdCurCfgLocalEntry=ipFwdCurCfgLocalEntry, bgpPeerTableMax=bgpPeerTableMax, ospfIfNbrBackupDesignatedRtr=ospfIfNbrBackupDesignatedRtr, vrrpCurCfgVirtRtrGrpPriority=vrrpCurCfgVirtRtrGrpPriority, ospfIntfNbrBadSequence=ospfIntfNbrBadSequence, ipCurCfgBootpAddr=ipCurCfgBootpAddr, ipCurCfgStaticArpVlan=ipCurCfgStaticArpVlan, bgpCurCfgAggrEntry=bgpCurCfgAggrEntry, ospfAreaRxlsAcks=ospfAreaRxlsAcks, vrrpNewCfgVirtRtrGrpTableEntry=vrrpNewCfgVirtRtrGrpTableEntry, ospfCurCfgRipMetric=ospfCurCfgRipMetric, vrrpNewCfgVirtRtrGrpTckIpIntf=vrrpNewCfgVirtRtrGrpTckIpIntf, ipNewCfgRmapIndex=ipNewCfgRmapIndex, ospfNewCfgHostIpAddr=ospfNewCfgHostIpAddr, vrrpNewCfgVirtRtrGrpTckRServer=vrrpNewCfgVirtRtrGrpTckRServer, ospfCurCfgIntfRetrans=ospfCurCfgIntfRetrans, vrrpNewCfgIfTableEntry=vrrpNewCfgIfTableEntry, dnsCurCfgPrimaryIpv6Addr=dnsCurCfgPrimaryIpv6Addr, vrrpCurCfgVirtRtrSharing=vrrpCurCfgVirtRtrSharing, ipCurCfgGwVlan=ipCurCfgGwVlan, bgpCurCfgPeerTtl=bgpCurCfgPeerTtl, bgpCurCfgPeerTable=bgpCurCfgPeerTable, ospfCurCfgRangeTable=ospfCurCfgRangeTable, ospfNewCfgRangeState=ospfNewCfgRangeState, ospfTotalAreas=ospfTotalAreas, ipCurCfgNwfAddr=ipCurCfgNwfAddr, ipCurCfgAspathState=ipCurCfgAspathState, ospfNewCfgAreaId=ospfNewCfgAreaId, ospfNewCfgEbgpOutRmapList=ospfNewCfgEbgpOutRmapList, ospfNewCfgMdkeyEntry=ospfNewCfgMdkeyEntry, ospfIntfNbrChangeStats=ospfIntfNbrChangeStats, dnsCurCfgSecondaryIpAddr=dnsCurCfgSecondaryIpAddr, ospfCurCfgVirtIntfDead=ospfCurCfgVirtIntfDead, rip2NewCfgState=rip2NewCfgState, vrrpCurCfgVirtRtrGrpTckVlanPort=vrrpCurCfgVirtRtrGrpTckVlanPort, ip6ReasmOKs=ip6ReasmOKs, bgpCurCfgPeerHoldTime=bgpCurCfgPeerHoldTime, ripNewCfgIntfTrigUpdate=ripNewCfgIntfTrigUpdate, ospfIntfHello=ospfIntfHello, ipv6NewCfgStaticRouteMask=ipv6NewCfgStaticRouteMask, icmp6InErrors=icmp6InErrors, nbrcacheInfoTable=nbrcacheInfoTable, ip6icmpInMsgs=ip6icmpInMsgs, ipNewCfgRmapTable=ipNewCfgRmapTable, vrrpCurCfgVirtRtrGrpTckHsrp=vrrpCurCfgVirtRtrGrpTckHsrp, vrrpNewCfgIfDelete=vrrpNewCfgIfDelete, ipNewCfgNwfIndex=ipNewCfgNwfIndex, ospfNewCfgVirtIntfKey=ospfNewCfgVirtIntfKey, ipNewCfgIntfAddr=ipNewCfgIntfAddr, ospfCurCfgEbgpMetricType=ospfCurCfgEbgpMetricType, ospfNewCfgEbgpAddOutRmap=ospfNewCfgEbgpAddOutRmap, ipNewCfgStaticArpIp=ipNewCfgStaticArpIp, ipCurCfgAlistTable=ipCurCfgAlistTable, nbrcacheInfoTotDynamicEntries=nbrcacheInfoTotDynamicEntries, ripNewCfgIntfDefault=ripNewCfgIntfDefault, ipNewCfgIntfTable=ipNewCfgIntfTable, bgpNewCfgPeerEntry=bgpNewCfgPeerEntry, ipRouteInfoTag=ipRouteInfoTag, ospfNewCfgFixedMetric=ospfNewCfgFixedMetric, ospfCurCfgRipOutRmapList=ospfCurCfgRipOutRmapList, ipRouteInfoGateway1=ipRouteInfoGateway1, ospfCurCfgVirtIntfKey=ospfCurCfgVirtIntfKey, ipFwdGeneralCfg=ipFwdGeneralCfg, vrrpNewCfgVirtRtrGrpState=vrrpNewCfgVirtRtrGrpState, ospfIntfTxPkts=ospfIntfTxPkts, ospfCumNbrExchangeDone=ospfCumNbrExchangeDone, ospfRedistributeStatic=ospfRedistributeStatic, ospfCumNbrStart=ospfCumNbrStart, ospfCumRxTxStats=ospfCumRxTxStats, garpOperSend=garpOperSend, ipNewCfgGwIndex=ipNewCfgGwIndex, ospfIntfErrIndex=ospfIntfErrIndex, icmp6Stats=icmp6Stats, ospfCurCfgFixedMetricType=ospfCurCfgFixedMetricType, ripStatInBadZeros=ripStatInBadZeros, ipNewCfgRmapMetricType=ipNewCfgRmapMetricType, ospfTmrsKckOffRetransmit=ospfTmrsKckOffRetransmit, vrrpOperVirtRtrTable=vrrpOperVirtRtrTable, ospfIntfErrNetmaskMismatch=ospfIntfErrNetmaskMismatch, vrrpNewCfgVirtRtrGrpID=vrrpNewCfgVirtRtrGrpID, ospfNewCfgVirtIntfNbr=ospfNewCfgVirtIntfNbr, ospfAreaChangeStats=ospfAreaChangeStats, ospfHostTableMaxSize=ospfHostTableMaxSize, bgpNewCfgPeerRemoteAddr=bgpNewCfgPeerRemoteAddr, ospfNewCfgDefaultRouteMetric=ospfNewCfgDefaultRouteMetric, ip6GwStatsTable=ip6GwStatsTable, ospfCumNbrN2way=ospfCumNbrN2way, ospfNewCfgHostCost=ospfNewCfgHostCost, ospfCurCfgVirtIntfIndex=ospfCurCfgVirtIntfIndex, ipNewCfgIntfIpVer=ipNewCfgIntfIpVer, ipOper=ipOper, arpCurCfgReARPPeriod=arpCurCfgReARPPeriod, ripStatInBadSizePkts=ripStatInBadSizePkts, ipCurCfgAlistRmapIndex=ipCurCfgAlistRmapIndex, bgpOperStartSess=bgpOperStartSess, dnsNewCfgPrimaryIpAddr=dnsNewCfgPrimaryIpAddr, vrrpCurCfgVirtRtrVrGrpIndx=vrrpCurCfgVirtRtrVrGrpIndx, ipFwdNewCfgLocalSubnet=ipFwdNewCfgLocalSubnet, ospfCumNbrLoadingDone=ospfCumNbrLoadingDone, ipCurCfgStaticRouteIndx=ipCurCfgStaticRouteIndx, ospfNewCfgHostAreaIndex=ospfNewCfgHostAreaIndex, ipRouteInfoInterface=ipRouteInfoInterface, ospfIfNbrDesignatedRtr=ospfIfNbrDesignatedRtr, icmp6InEchos=icmp6InEchos, ospfNewCfgDefaultRouteMetricType=ospfNewCfgDefaultRouteMetricType, arpCacheClear=arpCacheClear, nbrcacheInfoEntry=nbrcacheInfoEntry, rip2RoutesInfoIpAddress=rip2RoutesInfoIpAddress, ipCurCfgStaticRouteTable=ipCurCfgStaticRouteTable, tcpStatCurInConn=tcpStatCurInConn, ripNewCfgIntfVersion=ripNewCfgIntfVersion, vrrpNewCfgVirtRtrInterval=vrrpNewCfgVirtRtrInterval, vrrpNewCfgGenHoldoff=vrrpNewCfgGenHoldoff, ospfIntfRxlsUpdates=ospfIntfRxlsUpdates, arpInfoVLAN=arpInfoVLAN, vrrpCurCfgIfIndx=vrrpCurCfgIfIndx, ospfTotalTransitAreas=ospfTotalTransitAreas, bgpCurCfgPeerMetric=bgpCurCfgPeerMetric, ip6GwIndex=ip6GwIndex, ipCurCfgStaticArpTable=ipCurCfgStaticArpTable, ospfNewCfgMdkeyKey=ospfNewCfgMdkeyKey, ospfNewCfgVirtIntfDead=ospfNewCfgVirtIntfDead, ospfIntfNbrDown=ospfIntfNbrDown, dnsCurCfgDomainName=dnsCurCfgDomainName, ospfNewCfgIntfState=ospfNewCfgIntfState, ospfNewCfgAreaSpfInterval=ospfNewCfgAreaSpfInterval, bgpCurCfgASNumber=bgpCurCfgASNumber, ospfCurCfgEbgpOutRmapList=ospfCurCfgEbgpOutRmapList, vrrpCurCfgVirtRtrVrGrpState=vrrpCurCfgVirtRtrVrGrpState, ospfAreaIntfNbrChange=ospfAreaIntfNbrChange, ospfIntfRxTxIndex=ospfIntfRxTxIndex, vrrpNewCfgVirtRtrTable=vrrpNewCfgVirtRtrTable, ospfCurCfgAreaTable=ospfCurCfgAreaTable, ip6GwEchoreq=ip6GwEchoreq, dnsNewCfgSecondaryIpAddr=dnsNewCfgSecondaryIpAddr, ospfCurCfgIbgpMetric=ospfCurCfgIbgpMetric, rip2InfoIntfTable=rip2InfoIntfTable, ip6Stats=ip6Stats, ipNewCfgAlistState=ipNewCfgAlistState, ospfIntfNbrStart=ospfIntfNbrStart, allowedNwInfoVlan=allowedNwInfoVlan, vrrpNewCfgIfPasswd=vrrpNewCfgIfPasswd, vrrpCurCfgVirtRtrTableEntry=vrrpCurCfgVirtRtrTableEntry, ospfIntfUnloop=ospfIntfUnloop, vrrpCurCfgVirtRtrGrpPreempt=vrrpCurCfgVirtRtrGrpPreempt, ospfNbrInExchState=ospfNbrInExchState, ipFwdNewCfgRtCache=ipFwdNewCfgRtCache, ospfNewCfgState=ospfNewCfgState, ospfIntfNbrLoadingDone=ospfIntfNbrLoadingDone, ip6GwMaster=ip6GwMaster, ospfIntfNbrChange=ospfIntfNbrChange, ipNewCfgGwIpVer=ipNewCfgGwIpVer, ospfCumNbrBadRequests=ospfCumNbrBadRequests, ipCurCfgAspathEntry=ipCurCfgAspathEntry, bgpNewCfgPeerStaticState=bgpNewCfgPeerStaticState, vrrpInfoVirtRtrPriority=vrrpInfoVirtRtrPriority, bgpNewCfgPeerRipState=bgpNewCfgPeerRipState, ripCurCfgIntfDefault=ripCurCfgIntfDefault, ipCurCfgAspathTable=ipCurCfgAspathTable, bgpCurCfgPeerRipState=bgpCurCfgPeerRipState, ospfNewCfgRangeTable=ospfNewCfgRangeTable, ospfNewCfgIbgpAddOutRmap=ospfNewCfgIbgpAddOutRmap, icmp6InNAs=icmp6InNAs, ipFwdCurCfgPortState=ipFwdCurCfgPortState, vrrpInfoVirtRtrServer=vrrpInfoVirtRtrServer, ripInfoUpdatePeriod=ripInfoUpdatePeriod, ripInfoIntfMcastUpdate=ripInfoIntfMcastUpdate, arpCfg=arpCfg, vrrpNewCfgVirtRtrIpv6Interval=vrrpNewCfgVirtRtrIpv6Interval, ospfIntfErrorStatsEntry=ospfIntfErrorStatsEntry, vrrpNewCfgVirtRtrVrGrpState=vrrpNewCfgVirtRtrVrGrpState, ipNewCfgGwTable=ipNewCfgGwTable, ipFwdNewCfgLocalMask=ipFwdNewCfgLocalMask, bgpCurCfgPeerIndex=bgpCurCfgPeerIndex, vrrpCfg=vrrpCfg, vrrpNewCfgIfIndx=vrrpNewCfgIfIndx, ipRouteInfoDestIp=ipRouteInfoDestIp, ipNewCfgStaticArpAction=ipNewCfgStaticArpAction, vrrpNewCfgVirtRtrID=vrrpNewCfgVirtRtrID, ipCurCfgRmapState=ipCurCfgRmapState, ospfAreaRxHello=ospfAreaRxHello, ospfAreaInfoIndex=ospfAreaInfoIndex, ipNewCfgGwVlan=ipNewCfgGwVlan, ospfTmrsKckOffSummary=ospfTmrsKckOffSummary, nbrcacheInfoPortNum=nbrcacheInfoPortNum, bgpOperStopPeerNum=bgpOperStopPeerNum, ospfNewCfgRipMetricType=ospfNewCfgRipMetricType, ospfNewCfgFixedRemoveOutRmap=ospfNewCfgFixedRemoveOutRmap, ospfAreaNbrN2way=ospfAreaNbrN2way, vrrpCurCfgVirtRtrGrpIfIndex=vrrpCurCfgVirtRtrGrpIfIndex, ipCurCfgASNumber=ipCurCfgASNumber, ipNewCfgNwfDelete=ipNewCfgNwfDelete, ipCurCfgIntfTable=ipCurCfgIntfTable, ospfNewCfgAreaEntry=ospfNewCfgAreaEntry, ripStatInBadSourceIP=ripStatInBadSourceIP, ospfIntfNbrBadRequests=ospfIntfNbrBadRequests, icmp6OutRedirects=icmp6OutRedirects, ospfAreaTxDatabase=ospfAreaTxDatabase, ospfIntfTxlsAcks=ospfIntfTxlsAcks, ospfAreaIntfHello=ospfAreaIntfHello, ipCurCfgIntfBootpRelay=ipCurCfgIntfBootpRelay, ripInfoIntfDefault=ripInfoIntfDefault, ospfCumNbrChangeStats=ospfCumNbrChangeStats, allowedNwInfoTable=allowedNwInfoTable, ipStaticArpTableNextAvailableIndex=ipStaticArpTableNextAvailableIndex, ospfIntfTxlsUpdates=ospfIntfTxlsUpdates, ospfLsTypesSupported=ospfLsTypesSupported, vrrpNewCfgVirtRtrPriority=vrrpNewCfgVirtRtrPriority, ipCurCfgNwfMask=ipCurCfgNwfMask, vrrpCurCfgVirtRtrPriority=vrrpCurCfgVirtRtrPriority, ospfCurCfgAreaState=ospfCurCfgAreaState, bgpNewCfgPeerState=bgpNewCfgPeerState, ospfCumNbrN1way=ospfCumNbrN1way, bgpCurCfgPeerMinTime=bgpCurCfgPeerMinTime, ipFwdLocalTableMaxSize=ipFwdLocalTableMaxSize, bgpNewCfgASNumber=bgpNewCfgASNumber, ospfAreaNbrAdjointOk=ospfAreaNbrAdjointOk, arpInfoTable=arpInfoTable, ipFwdCurCfgState=ipFwdCurCfgState, ipCurCfgRmapMetricType=ipCurCfgRmapMetricType, gatewayInfoVlan=gatewayInfoVlan, routeStats=routeStats, ifStatsEntry=ifStatsEntry, ospfCurCfgHostIpAddr=ospfCurCfgHostIpAddr, ospfCurCfgAreaEntry=ospfCurCfgAreaEntry, vrrpCurCfgVirtRtrVrGrpTableEntry=vrrpCurCfgVirtRtrVrGrpTableEntry, ipRoute6Info=ipRoute6Info, ipGatewayCfg=ipGatewayCfg, vrrpCurCfgVirtRtrVrGrpTckIpIntf=vrrpCurCfgVirtRtrVrGrpTckIpIntf, ipCurCfgRmapWeight=ipCurCfgRmapWeight, ripInfoStaticSupply=ripInfoStaticSupply, ospfNewCfgIntfDead=ospfNewCfgIntfDead, intfInfoVlan=intfInfoVlan, vrrpCurCfgIfPasswd=vrrpCurCfgIfPasswd, ospfIfNbrPriority=ospfIfNbrPriority, ripInfoIntfTrigUpdate=ripInfoIntfTrigUpdate, vrrpNewCfgVirtRtrGrpIndx=vrrpNewCfgVirtRtrGrpIndx, ipFwdCurCfgLocalIndex=ipFwdCurCfgLocalIndex, vrrpCurCfgVirtRtrGrpInterval=vrrpCurCfgVirtRtrGrpInterval, vrrpCurCfgIfTable=vrrpCurCfgIfTable, ripNewCfgIntfDefListen=ripNewCfgIntfDefListen, ipFwdNewCfgLocalTable=ipFwdNewCfgLocalTable, ospfRedistributeEbgp=ospfRedistributeEbgp, ipNewCfgStaticArpEntry=ipNewCfgStaticArpEntry, ospfAreaErrOptionsMismatch=ospfAreaErrOptionsMismatch, vrrpVirtRtrTableMaxSize=vrrpVirtRtrTableMaxSize, ospfCurCfgStaticMetricType=ospfCurCfgStaticMetricType, ospfAreaErrUnknownNbr=ospfAreaErrUnknownNbr, intfInfoNetMask=intfInfoNetMask, ospfCurCfgRipMetricType=ospfCurCfgRipMetricType, ospfTotalNumberOfInterfaces=ospfTotalNumberOfInterfaces, routeTableClear=routeTableClear) mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', ospfIntfCountForRouter=ospfIntfCountForRouter, layer3Stats=layer3Stats, ipNewCfgStaticRouteEntry=ipNewCfgStaticRouteEntry, vrrpNewCfgGenTckRServerInc=vrrpNewCfgGenTckRServerInc, ipv6NewCfgStaticRouteDestIp=ipv6NewCfgStaticRouteDestIp, vrrpNewCfgVirtRtrVrGrpTable=vrrpNewCfgVirtRtrVrGrpTable, ospfRangeTableMaxSize=ospfRangeTableMaxSize, ospfCurCfgRangeHideState=ospfCurCfgRangeHideState, ospfIntfChangeStatsEntry=ospfIntfChangeStatsEntry, ipRoute6InfoProto=ipRoute6InfoProto, ospfRedistributeRip=ospfRedistributeRip, vrrpCurCfgVirtRtrGrpIndx=vrrpCurCfgVirtRtrGrpIndx, icmp6StatsTable=icmp6StatsTable, rip2GeneralInfo=rip2GeneralInfo, vrrpNewCfgGenTckVlanPortInc=vrrpNewCfgGenTckVlanPortInc, vrrpNewCfgVirtRtrTckL4Port=vrrpNewCfgVirtRtrTckL4Port, icmp6OutNSs=icmp6OutNSs, ipRouteInfoGateway=ipRouteInfoGateway, bgpCfg=bgpCfg, ospfTmrsKckOffAseExport=ospfTmrsKckOffAseExport, layer3Oper=layer3Oper, icmp6OutEchos=icmp6OutEchos, vrrpCurCfgVirtRtrGrpIpv6Interval=vrrpCurCfgVirtRtrGrpIpv6Interval, ospfIntfNbrIndex=ospfIntfNbrIndex, ospfIntfNbrExchangeDone=ospfIntfNbrExchangeDone, ospfCurCfgRangeAreaIndex=ospfCurCfgRangeAreaIndex, ipNewCfgRmapMetric=ipNewCfgRmapMetric, bgpAggrTableMax=bgpAggrTableMax, ip6InDelivers=ip6InDelivers, vrrpCurCfgVirtRtrGrpTckHsrv=vrrpCurCfgVirtRtrGrpTckHsrv, ipNewCfgIntfBootpRelay=ipNewCfgIntfBootpRelay, ipNewCfgRmapEntry=ipNewCfgRmapEntry, vrrpCurCfgVirtRtrIpv6Addr=vrrpCurCfgVirtRtrIpv6Addr, tcpStatCurConn=tcpStatCurConn, icmp6OutEchoReps=icmp6OutEchoReps, ospfIfDesignatedRouterIP=ospfIfDesignatedRouterIP, vrrpNewCfgVirtRtrGrpTckVlanPort=vrrpNewCfgVirtRtrGrpTckVlanPort, ospfCurCfgHostIndex=ospfCurCfgHostIndex, vrrpCurCfgVirtRtrGrpSharing=vrrpCurCfgVirtRtrGrpSharing, ripNewCfgIntfPoisonReverse=ripNewCfgIntfPoisonReverse, ospfNewCfgVisionAreaMetric=ospfNewCfgVisionAreaMetric, ospfAreaErrHelloMismatch=ospfAreaErrHelloMismatch, ripInfoIntfListen=ripInfoIntfListen, ospfIntfErrDeadMismatch=ospfIntfErrDeadMismatch, vrrpNewCfgVirtRtrGrpTckHsrv=vrrpNewCfgVirtRtrGrpTckHsrv, ipNewCfgNwfTable=ipNewCfgNwfTable, vrrpNewCfgVirtRtrVrGrpTckHsrv=vrrpNewCfgVirtRtrVrGrpTckHsrv, ospfCumIntfWaitTimer=ospfCumIntfWaitTimer, vrrpCurCfgVirtRtrVrGrpAdverInterval=vrrpCurCfgVirtRtrVrGrpAdverInterval, ospfinfo=ospfinfo, ospfAreaErrAuthFailure=ospfAreaErrAuthFailure, ipCurCfgAlistMetric=ipCurCfgAlistMetric, ospfAreaRxPkts=ospfAreaRxPkts, ospfIfNbrIntfIndex=ospfIfNbrIntfIndex, vrrpCurCfgVirtRtrGrpVersion=vrrpCurCfgVirtRtrGrpVersion, ripNewCfgIntfAuth=ripNewCfgIntfAuth, vrrpNewCfgVirtRtrState=vrrpNewCfgVirtRtrState, intfInfoLinkLocalAddr=intfInfoLinkLocalAddr, ipFwdNewCfgLocalEntry=ipFwdNewCfgLocalEntry, ipFwdNewCfgLocalIndex=ipFwdNewCfgLocalIndex, vrrpCurCfgVirtRtrTckHsrv=vrrpCurCfgVirtRtrTckHsrv, vrrpCurCfgGenState=vrrpCurCfgGenState, ipNewCfgStaticArpTable=ipNewCfgStaticArpTable, ospfIntfIndex=ospfIntfIndex, ripInfoIntfAddress=ripInfoIntfAddress, ospfIntfInfoEntry=ospfIntfInfoEntry, ospfNewCfgHostState=ospfNewCfgHostState, ripInfoIntfPoisonReverse=ripInfoIntfPoisonReverse, ripStatInResponsePkts=ripStatInResponsePkts, vrrpNewCfgVirtRtrGrpInterval=vrrpNewCfgVirtRtrGrpInterval, ospfIntfRxlsAcks=ospfIntfRxlsAcks, vrrpVirtRtrVrGrpTableMaxSize=vrrpVirtRtrVrGrpTableMaxSize, vrrpCurCfgVirtRtrVrGrpPriority=vrrpCurCfgVirtRtrVrGrpPriority, bgpNewCfgPeerMinAS=bgpNewCfgPeerMinAS, ipCurCfgStaticRouteMask=ipCurCfgStaticRouteMask, arpNewCfgReARPPeriod=arpNewCfgReARPPeriod, ipRoute6InfoDestIp6=ipRoute6InfoDestIp6, vrrpCurCfgIfTableEntry=vrrpCurCfgIfTableEntry, vrrpNewCfgVirtRtrGrpDelete=vrrpNewCfgVirtRtrGrpDelete, ripCurCfgIntfEntry=ripCurCfgIntfEntry, ipRoutingInfo=ipRoutingInfo, vrrpNewCfgVirtRtrGrpTckL4Port=vrrpNewCfgVirtRtrGrpTckL4Port, bgpCurCfgState=bgpCurCfgState, rip2CurCfgVip=rip2CurCfgVip, bgpNewCfgAggrEntry=bgpNewCfgAggrEntry, ospfNewCfgVisionAreaDelete=ospfNewCfgVisionAreaDelete, ospfNewCfgIbgpMetric=ospfNewCfgIbgpMetric, ipCurCfgIntfBroadcast=ipCurCfgIntfBroadcast, vrrpNewCfgIfAuthType=vrrpNewCfgIfAuthType, ospfIfNbrTable=ospfIfNbrTable, vrrpCurCfgVirtRtrTckHsrp=vrrpCurCfgVirtRtrTckHsrp, rip2RoutesInfoDestination=rip2RoutesInfoDestination, ipRouteInfoTable=ipRouteInfoTable, ip6OutNoRoutes=ip6OutNoRoutes, ipv6NewCfgStaticRouteAction=ipv6NewCfgStaticRouteAction, ospfAreaErrDeadMismatch=ospfAreaErrDeadMismatch, ospfIntfRxTxStats=ospfIntfRxTxStats, vrrpNewCfgVirtRtrVrGrpRem=vrrpNewCfgVirtRtrVrGrpRem, ospfAreaRxlsUpdates=ospfAreaRxlsUpdates, ripInfoIntfEntry=ripInfoIntfEntry, rip2RoutesInfoTable=rip2RoutesInfoTable, ipCurCfgGwArp=ipCurCfgGwArp, gatewayInfoAddr=gatewayInfoAddr, clearStats=clearStats, arpInfo=arpInfo, vrrpCurCfgVirtRtrTckRServer=vrrpCurCfgVirtRtrTckRServer, vrrpIfTableMaxSize=vrrpIfTableMaxSize, vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo=vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo, ospfNewCfgAreaType=ospfNewCfgAreaType, ospfCumNbrRstAd=ospfCumNbrRstAd, ip6InDiscards=ip6InDiscards, ip6icmpOutMsgs=ip6icmpOutMsgs, ipNewCfgAlistMetric=ipNewCfgAlistMetric, arpStatEntries=arpStatEntries, ospfCurCfgMdkeyIndex=ospfCurCfgMdkeyIndex, ospfCurCfgAreaIndex=ospfCurCfgAreaIndex, ipNewCfgStaticArpIndx=ipNewCfgStaticArpIndx, dnsStatInBadDnsRequests=dnsStatInBadDnsRequests, ospfAreaNbrhello=ospfAreaNbrhello, ipFwdCurCfgNoICMPRedirect=ipFwdCurCfgNoICMPRedirect, ifClearStats=ifClearStats, icmp6InEchoReps=icmp6InEchoReps, vrrpNewCfgVirtRtrSharing=vrrpNewCfgVirtRtrSharing, ospfNewCfgHostEntry=ospfNewCfgHostEntry, ripNewCfgIntfState=ripNewCfgIntfState, ospfCfg=ospfCfg, ripNewCfgIntfEntry=ripNewCfgIntfEntry, ripCurCfgIntfMcastUpdate=ripCurCfgIntfMcastUpdate, vrrpNewCfgVirtRtrTckIpIntf=vrrpNewCfgVirtRtrTckIpIntf, vrrpNewCfgVirtRtrVrGrpTckL4Port=vrrpNewCfgVirtRtrVrGrpTckL4Port, ipNewCfgRmapAp=ipNewCfgRmapAp, bgpNewCfgPeerInRmapList=bgpNewCfgPeerInRmapList, ripInfoIntfAuth=ripInfoIntfAuth, ospfAreaNbrStart=ospfAreaNbrStart, ospfCurCfgStaticMetric=ospfCurCfgStaticMetric, bgpNewCfgPeerOutRmapList=bgpNewCfgPeerOutRmapList, ripNewCfgIntfListen=ripNewCfgIntfListen, ipGatewayTableMax=ipGatewayTableMax, ripNewCfgIntfIndex=ripNewCfgIntfIndex, ospfNewCfgIntfIndex=ospfNewCfgIntfIndex, ipNewCfgAlistAction=ipNewCfgAlistAction, dnsNewCfgSecondaryIpv6Addr=dnsNewCfgSecondaryIpv6Addr, ospfCurCfgState=ospfCurCfgState, ipCurCfgAspathAction=ipCurCfgAspathAction, ospfCurCfgVirtIntfEntry=ospfCurCfgVirtIntfEntry, ospfNewCfgFixedMetricType=ospfNewCfgFixedMetricType, ospfCumNbrDown=ospfCumNbrDown, vrrpCurCfgVirtRtrGrpTableEntry=vrrpCurCfgVirtRtrGrpTableEntry, vrrpNewCfgVirtRtrTckHsrp=vrrpNewCfgVirtRtrTckHsrp, ospfCurCfgAreaType=ospfCurCfgAreaType, rip2NewCfgUpdatePeriod=rip2NewCfgUpdatePeriod, vrrpGeneral=vrrpGeneral, ospfNewCfgMdkeyIndex=ospfNewCfgMdkeyIndex, ospfCurCfgIntfTransit=ospfCurCfgIntfTransit, bgpNewCfgPeerTable=bgpNewCfgPeerTable, intfInfoIndex=intfInfoIndex, ipFwdNewCfgLocalDelete=ipFwdNewCfgLocalDelete, ipCurCfgBootpState=ipCurCfgBootpState, ospfCurCfgLsdb=ospfCurCfgLsdb, ospfCurCfgRangeState=ospfCurCfgRangeState, ospfNewCfgEbgpMetricType=ospfNewCfgEbgpMetricType, routeStatEntries=routeStatEntries, ospfAreaInfoId=ospfAreaInfoId, ipNewCfgAspathRmapIndex=ipNewCfgAspathRmapIndex, ospfNumberOfLsdbEntries=ospfNumberOfLsdbEntries, vrrpCurCfgVirtRtrGrpTable=vrrpCurCfgVirtRtrGrpTable, ospfAreaNbrN1way=ospfAreaNbrN1way, bgpNewCfgPeerDelete=bgpNewCfgPeerDelete, allowedNwInfoEndIpAddr=allowedNwInfoEndIpAddr, allowedNwInfoIndex=allowedNwInfoIndex, vrrpCurCfgGenTckIpIntfInc=vrrpCurCfgGenTckIpIntfInc, bgpOperStartPeerNum=bgpOperStartPeerNum, intfInfoStatus=intfInfoStatus, ospfNewCfgStaticMetric=ospfNewCfgStaticMetric, bgpCurCfgAggrState=bgpCurCfgAggrState, ospfCurCfgIntfEntry=ospfCurCfgIntfEntry, vrrpCurCfgGenHoldoff=vrrpCurCfgGenHoldoff, ospfMdkeyTableMaxSize=ospfMdkeyTableMaxSize, ospfIntfErrorStats=ospfIntfErrorStats, ospfNewCfgVisionAreaEntry=ospfNewCfgVisionAreaEntry, ipCurCfgGwRetry=ipCurCfgGwRetry, bgpNewCfgPeerFixedState=bgpNewCfgPeerFixedState, bgpCurCfgPeerKeepAlive=bgpCurCfgPeerKeepAlive, bgpCurCfgPeerOspfState=bgpCurCfgPeerOspfState, ospfNewCfgRipOutRmapList=ospfNewCfgRipOutRmapList, vrrpCurCfgVirtRtrIndx=vrrpCurCfgVirtRtrIndx, ospfNewCfgStaticMetricType=ospfNewCfgStaticMetricType, ripStatInSelfRcvPkts=ripStatInSelfRcvPkts, vrrpInfoVirtRtrProxy=vrrpInfoVirtRtrProxy, ipNewCfgRouterID=ipNewCfgRouterID, ospfStartTime=ospfStartTime, ospfNewCfgVirtIntfMdkey=ospfNewCfgVirtIntfMdkey, ipCurCfgGwAddr=ipCurCfgGwAddr, vrrpNewCfgVirtRtrVrGrpTckHsrp=vrrpNewCfgVirtRtrVrGrpTckHsrp, vrrpNewCfgVirtRtrVrGrpPreemption=vrrpNewCfgVirtRtrVrGrpPreemption, vrrpVirtRtrGrpTableMaxSize=vrrpVirtRtrGrpTableMaxSize, bgpCurCfgMaxASPath=bgpCurCfgMaxASPath, ipCurCfgAspathIndex=ipCurCfgAspathIndex, ospfNewCfgVirtIntfTable=ospfNewCfgVirtIntfTable, ospfAreaTxlsAcks=ospfAreaTxlsAcks, allowedNwInfoEntry=allowedNwInfoEntry, icmp6InTooBigs=icmp6InTooBigs, bgpNewCfgPeerAddInRmap=bgpNewCfgPeerAddInRmap, ip6gwStats=ip6gwStats, ipCurCfgIntfIpv6Addr=ipCurCfgIntfIpv6Addr, rip2RoutesInfoEntry=rip2RoutesInfoEntry, bgpCurCfgAggrIndex=bgpCurCfgAggrIndex, ipRoute6InfoInterface=ipRoute6InfoInterface, vrrpNewCfgVirtRtrIfIndex=vrrpNewCfgVirtRtrIfIndex, nbrcacheInfoTotLocalEntries=nbrcacheInfoTotLocalEntries, nbrcacheInfoTotOtherEntries=nbrcacheInfoTotOtherEntries, vrrpNewCfgVirtRtrTckRServer=vrrpNewCfgVirtRtrTckRServer, ospfCumRxPkts=ospfCumRxPkts, ipCurCfgStaticRouteDestIp=ipCurCfgStaticRouteDestIp, vrrpStatOutBadAdvers=vrrpStatOutBadAdvers, vrrpCurCfgVirtRtrTckVirtRtr=vrrpCurCfgVirtRtrTckVirtRtr, ripNewCfgIntfKey=ripNewCfgIntfKey, ospfAreaRxTxStatsEntry=ospfAreaRxTxStatsEntry, ipCurCfgStaticArpPort=ipCurCfgStaticArpPort, ospfIfNbrEntry=ospfIfNbrEntry, ospfArea=ospfArea, ospfNewCfgAreaMetric=ospfNewCfgAreaMetric, vrrpNewCfgVirtRtrVrGrpAdverInterval=vrrpNewCfgVirtRtrVrGrpAdverInterval, arpStatHighWater=arpStatHighWater, ipCurCfgStaticRouteEntry=ipCurCfgStaticRouteEntry, ipCurCfgRmapAp=ipCurCfgRmapAp, ipFwdCurCfgPortEntry=ipFwdCurCfgPortEntry, bgpNewCfgPeerKeepAlive=bgpNewCfgPeerKeepAlive, ripStatOutPackets=ripStatOutPackets, ospfAreaNbrDown=ospfAreaNbrDown, vrrpCurCfgVirtRtrGrpTckRServer=vrrpCurCfgVirtRtrGrpTckRServer, ospfNewCfgRangeHideState=ospfNewCfgRangeHideState, ipRmapCfg=ipRmapCfg, ospfNbrInInitState=ospfNbrInInitState, ipCurCfgAspathRmapIndex=ipCurCfgAspathRmapIndex, ipIntfInfo=ipIntfInfo, vrrpNewCfgVirtRtrVrGrpDelete=vrrpNewCfgVirtRtrVrGrpDelete, dnsCurCfgSecondaryIpv6Addr=dnsCurCfgSecondaryIpv6Addr, ospfNewCfgVisionAreaType=ospfNewCfgVisionAreaType, ospfIntfWaitTimer=ospfIntfWaitTimer, ospfIfWaitInterval=ospfIfWaitInterval, ripInfoVip=ripInfoVip, ospfNewCfgIntfEntry=ospfNewCfgIntfEntry, ospfCurCfgRangeMask=ospfCurCfgRangeMask, garpOperIpAddr=garpOperIpAddr, ipCurCfgGwEntry=ipCurCfgGwEntry, ipCurCfgGwIndex=ipCurCfgGwIndex, vrrpCurCfgVirtRtrTckVlanPort=vrrpCurCfgVirtRtrTckVlanPort, ospfIntfRxlsReqs=ospfIntfRxlsReqs, ospfNewCfgAreaTable=ospfNewCfgAreaTable, ipInterfaceCfg=ipInterfaceCfg, vrrpInfo=vrrpInfo, ipCurCfgIntfVlan=ipCurCfgIntfVlan, ospfCurCfgHostCost=ospfCurCfgHostCost) mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', ospfAreaNbrExchangeDone=ospfAreaNbrExchangeDone, bgpNewCfgAggrTable=bgpNewCfgAggrTable, ipNewCfgAlistIndex=ipNewCfgAlistIndex, bgpCurCfgPeerInRmapList=bgpCurCfgPeerInRmapList, ospfIntfNbrhello=ospfIntfNbrhello, ospfRedistributeFixed=ospfRedistributeFixed, ipNewCfgGwEntry=ipNewCfgGwEntry, bgpCurCfgPeerStaticState=bgpCurCfgPeerStaticState, ospfCumNbrAdjointOk=ospfCumNbrAdjointOk, vrrpCurCfgVirtRtrGrpTckVirtRtr=vrrpCurCfgVirtRtrGrpTckVirtRtr, vrrpCurCfgGenTckVirtRtrInc=vrrpCurCfgGenTckVirtRtrInc, bgpCurCfgPeerRemoteAs=bgpCurCfgPeerRemoteAs, ipFwdNewCfgPortState=ipFwdNewCfgPortState, vrrpNewCfgGenTckIpIntfInc=vrrpNewCfgGenTckIpIntfInc, ipNewCfgGwDelete=ipNewCfgGwDelete, vrrpNewCfgVirtRtrGrpPreempt=vrrpNewCfgVirtRtrGrpPreempt, ipNewCfgGwState=ipNewCfgGwState, vrrpNewCfgVirtRtrGrpTckHsrp=vrrpNewCfgVirtRtrGrpTckHsrp, intfInfoAddr=intfInfoAddr, ospfCumTxDatabase=ospfCumTxDatabase, vrrpNewCfgVirtRtrAddr=vrrpNewCfgVirtRtrAddr, ripCurCfgIntfKey=ripCurCfgIntfKey, vrrpNewCfgGenTckHsrvInc=vrrpNewCfgGenTckHsrvInc, ospfCurCfgStaticOutRmapList=ospfCurCfgStaticOutRmapList, ripNewCfgIntfTable=ripNewCfgIntfTable, rip2NewCfgStaticSupply=rip2NewCfgStaticSupply, dnsNewCfgPrimaryIpv6Addr=dnsNewCfgPrimaryIpv6Addr, bgpCurCfgAggrAddr=bgpCurCfgAggrAddr, ospfNewCfgRipAddOutRmap=ospfNewCfgRipAddOutRmap, vrrpCurCfgVirtRtrIpv6Interval=vrrpCurCfgVirtRtrIpv6Interval, ospfNewCfgStaticOutRmapList=ospfNewCfgStaticOutRmapList, intfInfoIpver=intfInfoIpver, ospfCurCfgIntfPriority=ospfCurCfgIntfPriority, ipCurCfgStaticArpIp=ipCurCfgStaticArpIp, vrrpNewCfgVirtRtrTckVlanPort=vrrpNewCfgVirtRtrTckVlanPort, ripCurCfgIntfPoisonReverse=ripCurCfgIntfPoisonReverse, ipNewCfgRmapPrec=ipNewCfgRmapPrec, arpInfoFlag=arpInfoFlag, ospfCurCfgIntfDead=ospfCurCfgIntfDead, ripInfoIntfIndex=ripInfoIntfIndex, vrrpCurCfgVirtRtrVrGrpSharing=vrrpCurCfgVirtRtrVrGrpSharing, ipCurCfgRmapLp=ipCurCfgRmapLp, ospfCurCfgVirtIntfNbr=ospfCurCfgVirtIntfNbr, ospfIntfChangeStats=ospfIntfChangeStats, layer3Info=layer3Info, ospfAreaRxlsReqs=ospfAreaRxlsReqs, ospfCumTxlsAcks=ospfCumTxlsAcks, ip6GwStatsIndex=ip6GwStatsIndex, ospfNewCfgVirtIntfState=ospfNewCfgVirtIntfState, ospfAreaNbrIndex=ospfAreaNbrIndex, ospfCumRxlsUpdates=ospfCumRxlsUpdates, ospfCurCfgAreaAuthType=ospfCurCfgAreaAuthType, ipNewCfgIntfDelete=ipNewCfgIntfDelete, ipRouteInfoGateway2=ipRouteInfoGateway2, bgpNewCfgPeerDefaultAction=bgpNewCfgPeerDefaultAction, ipCurCfgGwIpv6Addr=ipCurCfgGwIpv6Addr, ipNewCfgIntfRouteAdv=ipNewCfgIntfRouteAdv, ospfNewCfgEbgpMetric=ospfNewCfgEbgpMetric, ospfIntfTxDatabase=ospfIntfTxDatabase, ipNewCfgIntfEntry=ipNewCfgIntfEntry, ospfIntfRxTxStatsEntry=ospfIntfRxTxStatsEntry, ospfNewCfgRipMetric=ospfNewCfgRipMetric, ipNewCfgAspathIndex=ipNewCfgAspathIndex, vrrpNewCfgGenTckHsrpInc=vrrpNewCfgGenTckHsrpInc, ospfNewCfgMdkeyTable=ospfNewCfgMdkeyTable, ospfAreaRxDatabase=ospfAreaRxDatabase, bgpNewCfgLocalPref=bgpNewCfgLocalPref, ripInfoIntfState=ripInfoIntfState, layer3=layer3, ospfCurCfgVirtIntfHello=ospfCurCfgVirtIntfHello, ripStatRouteTimeout=ripStatRouteTimeout, icmp6OutNAs=icmp6OutNAs, ip6GwFails=ip6GwFails, bgpCurCfgPeerEntry=bgpCurCfgPeerEntry, nbrcacheInfoMacAddr=nbrcacheInfoMacAddr, ipNewCfgBootpAddr2=ipNewCfgBootpAddr2, ip6icmpInErrors=ip6icmpInErrors, vrrpCurCfgVirtRtrState=vrrpCurCfgVirtRtrState, ipCurCfgRmapEntry=ipCurCfgRmapEntry, ospfNewCfgIntfDelete=ospfNewCfgIntfDelete, ospfNewCfgRipRemoveOutRmap=ospfNewCfgRipRemoveOutRmap, ospfCurCfgMdkeyEntry=ospfCurCfgMdkeyEntry, ipNewCfgAspathDelete=ipNewCfgAspathDelete, vrrpCurCfgVirtRtrVrGrpTable=vrrpCurCfgVirtRtrVrGrpTable, vrrpNewCfgVirtRtrTckVirtRtr=vrrpNewCfgVirtRtrTckVirtRtr, bgpNewCfgPeerMetric=bgpNewCfgPeerMetric, ospfNumberOfInterfacesUp=ospfNumberOfInterfacesUp, ipFwdNewCfgDirectedBcast=ipFwdNewCfgDirectedBcast, ospfAreaErrorStatsEntry=ospfAreaErrorStatsEntry)
# # PySNMP MIB module PDN-IFDEV-IWF-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/PDN-IFDEV-IWF-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 20:30:02 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsIntersection, SingleValueConstraint, ValueSizeConstraint, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsUnion") ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex") pdn_interfaces, = mibBuilder.importSymbols("PDN-HEADER-MIB", "pdn-interfaces") ObjectGroup, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "NotificationGroup", "ModuleCompliance") MibIdentifier, IpAddress, TimeTicks, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, Counter64, Integer32, iso, NotificationType, ModuleIdentity, Gauge32, Counter32, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "MibIdentifier", "IpAddress", "TimeTicks", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "Counter64", "Integer32", "iso", "NotificationType", "ModuleIdentity", "Gauge32", "Counter32", "Unsigned32") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") pdnIfDevIwfMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27)) pdnIfDevIwfMIB.setRevisions(('2004-09-10 00:00',)) if mibBuilder.loadTexts: pdnIfDevIwfMIB.setLastUpdated('200409100000Z') if mibBuilder.loadTexts: pdnIfDevIwfMIB.setOrganization('Paradyne Networks MIB Working Group Other information about group editing the MIB') pdnIfDevIwfNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 0)) pdnIfDevIwfObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1)) pdnIfDevIwfAFNs = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 2)) pdnIfDevIwfConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3)) class TxRxUnit(TextualConvention, Integer32): reference = "RFC 1662, Section 1.2, `Terminology'." status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6)) namedValues = NamedValues(("other", 1), ("bits", 2), ("octets", 3), ("frames", 4), ("packets", 5), ("datagrams", 6)) pdnIfDevIwfStatsTotalTable = MibTable((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1), ) if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalTable.setStatus('current') pdnIfDevIwfStatsTotalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalEntry.setStatus('current') pdnIfDevIwfStatsTotalBufferUnderruns = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalBufferUnderruns.setStatus('current') pdnIfDevIwfStatsTotalMRUErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalMRUErrors.setStatus('current') pdnIfDevIwfStatsTotalRxUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 3), TxRxUnit()).setMaxAccess("readonly") if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalRxUnit.setStatus('current') pdnIfDevIwfStatsTotalRx = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalRx.setStatus('current') pdnIfDevIwfCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 1)) pdnIfDevIwfGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2)) pdnIfDevIwfCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 1, 1)).setObjects(("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalBufferUnderrunsGroup"), ("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalMRUErrorsGroup"), ("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalRxGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdnIfDevIwfCompliance = pdnIfDevIwfCompliance.setStatus('current') pdnIfDevIwfObjGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1)) pdnIfDevIwfAfnGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 2)) pdnIfDevIwfNtfyGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 3)) pdnIfDevIwfStatsTotalBufferUnderrunsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1, 1)).setObjects(("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalBufferUnderruns")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdnIfDevIwfStatsTotalBufferUnderrunsGroup = pdnIfDevIwfStatsTotalBufferUnderrunsGroup.setStatus('current') pdnIfDevIwfStatsTotalMRUErrorsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1, 2)).setObjects(("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalMRUErrors")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdnIfDevIwfStatsTotalMRUErrorsGroup = pdnIfDevIwfStatsTotalMRUErrorsGroup.setStatus('current') pdnIfDevIwfStatsTotalRxGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1, 3)).setObjects(("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalRxUnit"), ("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalRx")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdnIfDevIwfStatsTotalRxGroup = pdnIfDevIwfStatsTotalRxGroup.setStatus('current') mibBuilder.exportSymbols("PDN-IFDEV-IWF-MIB", PYSNMP_MODULE_ID=pdnIfDevIwfMIB, pdnIfDevIwfStatsTotalRxUnit=pdnIfDevIwfStatsTotalRxUnit, pdnIfDevIwfObjects=pdnIfDevIwfObjects, pdnIfDevIwfStatsTotalTable=pdnIfDevIwfStatsTotalTable, pdnIfDevIwfStatsTotalMRUErrorsGroup=pdnIfDevIwfStatsTotalMRUErrorsGroup, TxRxUnit=TxRxUnit, pdnIfDevIwfCompliance=pdnIfDevIwfCompliance, pdnIfDevIwfStatsTotalMRUErrors=pdnIfDevIwfStatsTotalMRUErrors, pdnIfDevIwfStatsTotalRx=pdnIfDevIwfStatsTotalRx, pdnIfDevIwfMIB=pdnIfDevIwfMIB, pdnIfDevIwfAFNs=pdnIfDevIwfAFNs, pdnIfDevIwfAfnGroups=pdnIfDevIwfAfnGroups, pdnIfDevIwfStatsTotalBufferUnderrunsGroup=pdnIfDevIwfStatsTotalBufferUnderrunsGroup, pdnIfDevIwfStatsTotalEntry=pdnIfDevIwfStatsTotalEntry, pdnIfDevIwfObjGroups=pdnIfDevIwfObjGroups, pdnIfDevIwfGroups=pdnIfDevIwfGroups, pdnIfDevIwfNtfyGroups=pdnIfDevIwfNtfyGroups, pdnIfDevIwfNotifications=pdnIfDevIwfNotifications, pdnIfDevIwfStatsTotalRxGroup=pdnIfDevIwfStatsTotalRxGroup, pdnIfDevIwfStatsTotalBufferUnderruns=pdnIfDevIwfStatsTotalBufferUnderruns, pdnIfDevIwfConformance=pdnIfDevIwfConformance, pdnIfDevIwfCompliances=pdnIfDevIwfCompliances)
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_intersection, single_value_constraint, value_size_constraint, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsUnion') (if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex') (pdn_interfaces,) = mibBuilder.importSymbols('PDN-HEADER-MIB', 'pdn-interfaces') (object_group, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'NotificationGroup', 'ModuleCompliance') (mib_identifier, ip_address, time_ticks, bits, mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity, counter64, integer32, iso, notification_type, module_identity, gauge32, counter32, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibIdentifier', 'IpAddress', 'TimeTicks', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity', 'Counter64', 'Integer32', 'iso', 'NotificationType', 'ModuleIdentity', 'Gauge32', 'Counter32', 'Unsigned32') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') pdn_if_dev_iwf_mib = module_identity((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27)) pdnIfDevIwfMIB.setRevisions(('2004-09-10 00:00',)) if mibBuilder.loadTexts: pdnIfDevIwfMIB.setLastUpdated('200409100000Z') if mibBuilder.loadTexts: pdnIfDevIwfMIB.setOrganization('Paradyne Networks MIB Working Group Other information about group editing the MIB') pdn_if_dev_iwf_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 0)) pdn_if_dev_iwf_objects = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1)) pdn_if_dev_iwf_af_ns = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 2)) pdn_if_dev_iwf_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3)) class Txrxunit(TextualConvention, Integer32): reference = "RFC 1662, Section 1.2, `Terminology'." status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6)) named_values = named_values(('other', 1), ('bits', 2), ('octets', 3), ('frames', 4), ('packets', 5), ('datagrams', 6)) pdn_if_dev_iwf_stats_total_table = mib_table((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1)) if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalTable.setStatus('current') pdn_if_dev_iwf_stats_total_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex')) if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalEntry.setStatus('current') pdn_if_dev_iwf_stats_total_buffer_underruns = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalBufferUnderruns.setStatus('current') pdn_if_dev_iwf_stats_total_mru_errors = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalMRUErrors.setStatus('current') pdn_if_dev_iwf_stats_total_rx_unit = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 3), tx_rx_unit()).setMaxAccess('readonly') if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalRxUnit.setStatus('current') pdn_if_dev_iwf_stats_total_rx = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalRx.setStatus('current') pdn_if_dev_iwf_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 1)) pdn_if_dev_iwf_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2)) pdn_if_dev_iwf_compliance = module_compliance((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 1, 1)).setObjects(('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalBufferUnderrunsGroup'), ('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalMRUErrorsGroup'), ('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalRxGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdn_if_dev_iwf_compliance = pdnIfDevIwfCompliance.setStatus('current') pdn_if_dev_iwf_obj_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1)) pdn_if_dev_iwf_afn_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 2)) pdn_if_dev_iwf_ntfy_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 3)) pdn_if_dev_iwf_stats_total_buffer_underruns_group = object_group((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1, 1)).setObjects(('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalBufferUnderruns')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdn_if_dev_iwf_stats_total_buffer_underruns_group = pdnIfDevIwfStatsTotalBufferUnderrunsGroup.setStatus('current') pdn_if_dev_iwf_stats_total_mru_errors_group = object_group((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1, 2)).setObjects(('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalMRUErrors')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdn_if_dev_iwf_stats_total_mru_errors_group = pdnIfDevIwfStatsTotalMRUErrorsGroup.setStatus('current') pdn_if_dev_iwf_stats_total_rx_group = object_group((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1, 3)).setObjects(('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalRxUnit'), ('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalRx')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdn_if_dev_iwf_stats_total_rx_group = pdnIfDevIwfStatsTotalRxGroup.setStatus('current') mibBuilder.exportSymbols('PDN-IFDEV-IWF-MIB', PYSNMP_MODULE_ID=pdnIfDevIwfMIB, pdnIfDevIwfStatsTotalRxUnit=pdnIfDevIwfStatsTotalRxUnit, pdnIfDevIwfObjects=pdnIfDevIwfObjects, pdnIfDevIwfStatsTotalTable=pdnIfDevIwfStatsTotalTable, pdnIfDevIwfStatsTotalMRUErrorsGroup=pdnIfDevIwfStatsTotalMRUErrorsGroup, TxRxUnit=TxRxUnit, pdnIfDevIwfCompliance=pdnIfDevIwfCompliance, pdnIfDevIwfStatsTotalMRUErrors=pdnIfDevIwfStatsTotalMRUErrors, pdnIfDevIwfStatsTotalRx=pdnIfDevIwfStatsTotalRx, pdnIfDevIwfMIB=pdnIfDevIwfMIB, pdnIfDevIwfAFNs=pdnIfDevIwfAFNs, pdnIfDevIwfAfnGroups=pdnIfDevIwfAfnGroups, pdnIfDevIwfStatsTotalBufferUnderrunsGroup=pdnIfDevIwfStatsTotalBufferUnderrunsGroup, pdnIfDevIwfStatsTotalEntry=pdnIfDevIwfStatsTotalEntry, pdnIfDevIwfObjGroups=pdnIfDevIwfObjGroups, pdnIfDevIwfGroups=pdnIfDevIwfGroups, pdnIfDevIwfNtfyGroups=pdnIfDevIwfNtfyGroups, pdnIfDevIwfNotifications=pdnIfDevIwfNotifications, pdnIfDevIwfStatsTotalRxGroup=pdnIfDevIwfStatsTotalRxGroup, pdnIfDevIwfStatsTotalBufferUnderruns=pdnIfDevIwfStatsTotalBufferUnderruns, pdnIfDevIwfConformance=pdnIfDevIwfConformance, pdnIfDevIwfCompliances=pdnIfDevIwfCompliances)
n = int(input())/10e2 if 0.1 > n: print("00") elif 5 >= n: if len(str(int(n*10))) == 1: print("0{}".format(int(n*10))) else: print(int(n*10)) elif 30 >= n: print(int(n)+50) elif 70 >= n: print((int(n) - 30)//5 + 80) else: print(89)
n = int(input()) / 1000.0 if 0.1 > n: print('00') elif 5 >= n: if len(str(int(n * 10))) == 1: print('0{}'.format(int(n * 10))) else: print(int(n * 10)) elif 30 >= n: print(int(n) + 50) elif 70 >= n: print((int(n) - 30) // 5 + 80) else: print(89)
# Gareth Duffy 2-3-2018 # example of for loop using range function as iterator # for loops are definite iterators compared to e.g. while loops (indefinite) for i in range(1, 99, 2): # change range to experiment (third value is the 'step') print(i, end=' ') # end prints all on one line instead of separate lines
for i in range(1, 99, 2): print(i, end=' ')
fairumei = "alphabet.java" henkou = fairumei.split(".") print(henkou[-1])
fairumei = 'alphabet.java' henkou = fairumei.split('.') print(henkou[-1])
# AUTOGENERATED BY NBDEV! DO NOT EDIT! __all__ = ["index", "modules", "custom_doc_links", "git_url"] index = {"boto3_available": "00_utils.ipynb", "setStockDataRoot": "00_utils.ipynb", "stockDataRoot": "00_utils.ipynb", "requestUrl": "00_utils.ipynb", "setSecUserAgent": "00_utils.ipynb", "secIndexUrl": "00_utils.ipynb", "appendSpace": "00_utils.ipynb", "getCombTextRec": "00_utils.ipynb", "getCombSoupText": "00_utils.ipynb", "prTree": "00_utils.ipynb", "prAllTagNames": "00_utils.ipynb", "downloadSecUrl": "00_utils.ipynb", "secUrlPref": "00_utils.ipynb", "secRestDataPref": "00_utils.ipynb", "secHeaders": "00_utils.ipynb", "secSleepTime": "00_utils.ipynb", "accessNoPatStr": "00_utils.ipynb", "accessNoPat": "00_utils.ipynb", "spacesPat": "00_utils.ipynb", "tagsWithLeftSpace": "00_utils.ipynb", "pageUnavailablePat": "00_utils.ipynb", "delegates": "00_utils.ipynb", "callDelegated": "00_utils.ipynb", "compressGZipBytes": "00_utils.ipynb", "decompressGZipBytes": "00_utils.ipynb", "pickleToBytes": "00_utils.ipynb", "pickleFromBytes": "00_utils.ipynb", "pickSave": "00_utils.ipynb", "pickLoad": "00_utils.ipynb", "pickLoadIfPath": "00_utils.ipynb", "pickSaveToS3": "00_utils.ipynb", "pickLoadFromS3": "00_utils.ipynb", "pickLoadFromS3Public": "00_utils.ipynb", "savePklToDir": "00_utils.ipynb", "loadPklFromDir": "00_utils.ipynb", "saveSplitPklToDir": "00_utils.ipynb", "loadSplitPklFromDir": "00_utils.ipynb", "toDateStr": "00_utils.ipynb", "toDate": "00_utils.ipynb", "isWeekend": "00_utils.ipynb", "dateStrsBetween": "00_utils.ipynb", "formatDateStr": "00_utils.ipynb", "dateStr8Pat": "00_utils.ipynb", "curEasternUSTime": "00_utils.ipynb", "easternUSTimeZone": "00_utils.ipynb", "sanitizeText": "00_utils.ipynb", "secBrowse": "00_utils.ipynb", "printSamp": "00_utils.ipynb", "printErrInfoOrAccessNo": "00_utils.ipynb", "secMostRecentListUrl": "01_recentFeed.ipynb", "printXmlParseWarning": "01_recentFeed.ipynb", "getRecentChunk": "01_recentFeed.ipynb", "titlePat": "01_recentFeed.ipynb", "filedPat": "01_recentFeed.ipynb", "curEasternTimeStampAndDate": "01_recentFeed.ipynb", "initRecentFeedS3": "01_recentFeed.ipynb", "updateRecentFeedS3": "01_recentFeed.ipynb", "getRecentFromS3": "01_recentFeed.ipynb", "getRecentFromS3Public": "01_recentFeed.ipynb", "defaultDLDir": "02_dailyList.ipynb", "getQStr": "02_dailyList.ipynb", "getSecDailyIndexUrls": "02_dailyList.ipynb", "getDailyFList": "02_dailyList.ipynb", "downloadSecFormList": "02_dailyList.ipynb", "edgarTxtFPat": "02_dailyList.ipynb", "isInFormClass": "02_dailyList.ipynb", "namedFormClasses": "02_dailyList.ipynb", "noPeriodFormTypes": "02_dailyList.ipynb", "findCikName": "02_dailyList.ipynb", "checkMapDates": "02_dailyList.ipynb", "dailyList": "02_dailyList.ipynb", "getCikToTickersMap": "02_dailyList.ipynb", "dlCountFilings": "02_dailyList.ipynb", "loadAndUpdateDL": "02_dailyList.ipynb", "getSecTickerDict": "03_tickerMap.ipynb", "secTickerListUrl": "03_tickerMap.ipynb", "getRecent": "04_getCikFilings.ipynb", "defaultBasicInfoDir": "05_basicInfo.ipynb", "defaultTextLimit": "05_basicInfo.ipynb", "getSecFormLinkList": "05_basicInfo.ipynb", "getSecFormCiks": "05_basicInfo.ipynb", "getTextAfterTag": "05_basicInfo.ipynb", "get99Texts": "05_basicInfo.ipynb", "getSecFormInfo": "05_basicInfo.ipynb", "companyNameAndCikPat": "05_basicInfo.ipynb", "filedByPat": "05_basicInfo.ipynb", "periodPat": "05_basicInfo.ipynb", "periodDatePatStr": "05_basicInfo.ipynb", "periodDatePat": "05_basicInfo.ipynb", "acceptedPat": "05_basicInfo.ipynb", "acceptedDateTimePat": "05_basicInfo.ipynb", "itemsPat": "05_basicInfo.ipynb", "itemFormTypes": "05_basicInfo.ipynb", "startExhibitPat": "05_basicInfo.ipynb", "defaultBaseScrapeDir": "06_infoScraper.ipynb", "scraperBase": "06_infoScraper.ipynb", "default13FDir": "07_scrape13F.ipynb", "findChildEndingWith": "07_scrape13F.ipynb", "findChildSeries": "07_scrape13F.ipynb", "getRowInfo": "07_scrape13F.ipynb", "parse13FHoldings": "07_scrape13F.ipynb", "scraper13F": "07_scrape13F.ipynb", "callOptPat": "07_scrape13F.ipynb", "putOptPat": "07_scrape13F.ipynb", "condenseHoldings": "07_scrape13F.ipynb", "get13FAmendmentType": "07_scrape13F.ipynb", "indexMap": "07_scrape13F.ipynb", "getHoldingsMap": "07_scrape13F.ipynb", "addHoldingsMap": "07_scrape13F.ipynb", "printRemoveStocksMessage": "07_scrape13F.ipynb", "holdingsMapToMatrix": "07_scrape13F.ipynb", "getPeriodAndNextQStartEnd": "07_scrape13F.ipynb", "getNSSForQ": "07_scrape13F.ipynb", "saveConvMatrixPy2": "07_scrape13F.ipynb", "qStartEnds": "07_scrape13F.ipynb", "qPeriods": "07_scrape13F.ipynb", "default8KDir": "08_scrape8K.ipynb", "parse8K": "08_scrape8K.ipynb", "scraper8K": "08_scrape8K.ipynb", "itemPat": "08_scrape8K.ipynb", "explanPat": "08_scrape8K.ipynb", "default6KDir": "09_scrape6K.ipynb", "parse6K": "09_scrape6K.ipynb", "scraper6K": "09_scrape6K.ipynb", "reg12gStr": "09_scrape6K.ipynb", "header6KPat": "09_scrape6K.ipynb", "signaturePat": "09_scrape6K.ipynb", "skipJunkPat": "09_scrape6K.ipynb", "default13GDir": "10_scrape13G.ipynb", "getSec13NshAndPctFromText2": "10_scrape13G.ipynb", "addNshAndPct": "10_scrape13G.ipynb", "cusipChecksum": "10_scrape13G.ipynb", "monthNameToIso": "10_scrape13G.ipynb", "getMonthPatStr": "10_scrape13G.ipynb", "parseEventDate": "10_scrape13G.ipynb", "parse13GD": "10_scrape13G.ipynb", "scraper13G": "10_scrape13G.ipynb", "reOPTS": "10_scrape13G.ipynb", "aggregatePatStr": "10_scrape13G.ipynb", "percentOfClassPatStr": "10_scrape13G.ipynb", "typeOfRepPatStr": "10_scrape13G.ipynb", "form13PiecesPat1": "10_scrape13G.ipynb", "form13PiecesPat2": "10_scrape13G.ipynb", "form13PiecesPat3": "10_scrape13G.ipynb", "nSharesPatStr": "10_scrape13G.ipynb", "nPctBarePatStr": "10_scrape13G.ipynb", "nPctWithPctPatStr": "10_scrape13G.ipynb", "nshAndPctPat1Pref": "10_scrape13G.ipynb", "form13NshAndPctPats1": "10_scrape13G.ipynb", "form13NshAndPctPat2": "10_scrape13G.ipynb", "form13NshAndPctPat3": "10_scrape13G.ipynb", "purposePat": "10_scrape13G.ipynb", "strictCusipPatStr": "10_scrape13G.ipynb", "cusipPatStr": "10_scrape13G.ipynb", "cusipNumberPatStr": "10_scrape13G.ipynb", "cusipSearchPats": "10_scrape13G.ipynb", "spaceDashPat": "10_scrape13G.ipynb", "monthNames": "10_scrape13G.ipynb", "monthAbbrevStrs": "10_scrape13G.ipynb", "monthPatStr": "10_scrape13G.ipynb", "monthDayPatStr": "10_scrape13G.ipynb", "possCommaPatStr": "10_scrape13G.ipynb", "yearPatStr": "10_scrape13G.ipynb", "dateOfEventPatStr": "10_scrape13G.ipynb", "dateOfEventAtStartPatStr": "10_scrape13G.ipynb", "dateOfEventAtEndPatStr": "10_scrape13G.ipynb", "dateOfEventMonthPat1": "10_scrape13G.ipynb", "dateOfEventMonthRevPat1": "10_scrape13G.ipynb", "dateOfEventMonthPat2": "10_scrape13G.ipynb", "dateOfEventMonthRevPat2": "10_scrape13G.ipynb", "isoSepPatStr": "10_scrape13G.ipynb", "dateOfEventIsoPat1": "10_scrape13G.ipynb", "dateOfEventIsoRevPat1": "10_scrape13G.ipynb", "dateOfEventIsoPat2": "10_scrape13G.ipynb", "dateOfEventIsoRevPat2": "10_scrape13G.ipynb", "whitespacePat": "10_scrape13G.ipynb", "updateCik13GDPos": "10_scrape13G.ipynb", "cikSymStr": "10_scrape13G.ipynb", "calcBonusMap": "10_scrape13G.ipynb", "default13DDir": "11_scrape13D.ipynb", "scraper13D": "11_scrape13D.ipynb", "get13GDDatesForQ": "11_scrape13D.ipynb", "getCombNSSForQ": "11_scrape13D.ipynb", "oddballScreen": "11_scrape13D.ipynb", "default4Dir": "12_scrape4.ipynb", "formatF4Num": "12_scrape4.ipynb", "formatTrans": "12_scrape4.ipynb", "getForm4Value": "12_scrape4.ipynb", "parse34": "12_scrape4.ipynb", "scraper4": "12_scrape4.ipynb", "form4ReportingNamePat": "12_scrape4.ipynb", "form4ReportingCikPat": "12_scrape4.ipynb", "form4TransactionPat": "12_scrape4.ipynb", "form4ValueFieldsAndPats": "12_scrape4.ipynb", "form4ValueFields": "12_scrape4.ipynb", "form4ValuePats": "12_scrape4.ipynb", "form4ADCodes": "12_scrape4.ipynb", "form4DICodes": "12_scrape4.ipynb", "form4TransactionCodes": "12_scrape4.ipynb"} modules = ["utils.py", "recentFeed.py", "dailyList.py", "tickerMap.py", "getCikFilings.py", "basicInfo.py", "infoScraper.py", "scrape13F.py", "scrape8K.py", "scrape6K.py", "scrape13G.py", "scrape13D.py", "scrape4.py"] doc_url = "https://ikedim01.github.io/secscan/" git_url = "https://github.com/ikedim01/secscan/tree/master/" def custom_doc_links(name): return None
__all__ = ['index', 'modules', 'custom_doc_links', 'git_url'] index = {'boto3_available': '00_utils.ipynb', 'setStockDataRoot': '00_utils.ipynb', 'stockDataRoot': '00_utils.ipynb', 'requestUrl': '00_utils.ipynb', 'setSecUserAgent': '00_utils.ipynb', 'secIndexUrl': '00_utils.ipynb', 'appendSpace': '00_utils.ipynb', 'getCombTextRec': '00_utils.ipynb', 'getCombSoupText': '00_utils.ipynb', 'prTree': '00_utils.ipynb', 'prAllTagNames': '00_utils.ipynb', 'downloadSecUrl': '00_utils.ipynb', 'secUrlPref': '00_utils.ipynb', 'secRestDataPref': '00_utils.ipynb', 'secHeaders': '00_utils.ipynb', 'secSleepTime': '00_utils.ipynb', 'accessNoPatStr': '00_utils.ipynb', 'accessNoPat': '00_utils.ipynb', 'spacesPat': '00_utils.ipynb', 'tagsWithLeftSpace': '00_utils.ipynb', 'pageUnavailablePat': '00_utils.ipynb', 'delegates': '00_utils.ipynb', 'callDelegated': '00_utils.ipynb', 'compressGZipBytes': '00_utils.ipynb', 'decompressGZipBytes': '00_utils.ipynb', 'pickleToBytes': '00_utils.ipynb', 'pickleFromBytes': '00_utils.ipynb', 'pickSave': '00_utils.ipynb', 'pickLoad': '00_utils.ipynb', 'pickLoadIfPath': '00_utils.ipynb', 'pickSaveToS3': '00_utils.ipynb', 'pickLoadFromS3': '00_utils.ipynb', 'pickLoadFromS3Public': '00_utils.ipynb', 'savePklToDir': '00_utils.ipynb', 'loadPklFromDir': '00_utils.ipynb', 'saveSplitPklToDir': '00_utils.ipynb', 'loadSplitPklFromDir': '00_utils.ipynb', 'toDateStr': '00_utils.ipynb', 'toDate': '00_utils.ipynb', 'isWeekend': '00_utils.ipynb', 'dateStrsBetween': '00_utils.ipynb', 'formatDateStr': '00_utils.ipynb', 'dateStr8Pat': '00_utils.ipynb', 'curEasternUSTime': '00_utils.ipynb', 'easternUSTimeZone': '00_utils.ipynb', 'sanitizeText': '00_utils.ipynb', 'secBrowse': '00_utils.ipynb', 'printSamp': '00_utils.ipynb', 'printErrInfoOrAccessNo': '00_utils.ipynb', 'secMostRecentListUrl': '01_recentFeed.ipynb', 'printXmlParseWarning': '01_recentFeed.ipynb', 'getRecentChunk': '01_recentFeed.ipynb', 'titlePat': '01_recentFeed.ipynb', 'filedPat': '01_recentFeed.ipynb', 'curEasternTimeStampAndDate': '01_recentFeed.ipynb', 'initRecentFeedS3': '01_recentFeed.ipynb', 'updateRecentFeedS3': '01_recentFeed.ipynb', 'getRecentFromS3': '01_recentFeed.ipynb', 'getRecentFromS3Public': '01_recentFeed.ipynb', 'defaultDLDir': '02_dailyList.ipynb', 'getQStr': '02_dailyList.ipynb', 'getSecDailyIndexUrls': '02_dailyList.ipynb', 'getDailyFList': '02_dailyList.ipynb', 'downloadSecFormList': '02_dailyList.ipynb', 'edgarTxtFPat': '02_dailyList.ipynb', 'isInFormClass': '02_dailyList.ipynb', 'namedFormClasses': '02_dailyList.ipynb', 'noPeriodFormTypes': '02_dailyList.ipynb', 'findCikName': '02_dailyList.ipynb', 'checkMapDates': '02_dailyList.ipynb', 'dailyList': '02_dailyList.ipynb', 'getCikToTickersMap': '02_dailyList.ipynb', 'dlCountFilings': '02_dailyList.ipynb', 'loadAndUpdateDL': '02_dailyList.ipynb', 'getSecTickerDict': '03_tickerMap.ipynb', 'secTickerListUrl': '03_tickerMap.ipynb', 'getRecent': '04_getCikFilings.ipynb', 'defaultBasicInfoDir': '05_basicInfo.ipynb', 'defaultTextLimit': '05_basicInfo.ipynb', 'getSecFormLinkList': '05_basicInfo.ipynb', 'getSecFormCiks': '05_basicInfo.ipynb', 'getTextAfterTag': '05_basicInfo.ipynb', 'get99Texts': '05_basicInfo.ipynb', 'getSecFormInfo': '05_basicInfo.ipynb', 'companyNameAndCikPat': '05_basicInfo.ipynb', 'filedByPat': '05_basicInfo.ipynb', 'periodPat': '05_basicInfo.ipynb', 'periodDatePatStr': '05_basicInfo.ipynb', 'periodDatePat': '05_basicInfo.ipynb', 'acceptedPat': '05_basicInfo.ipynb', 'acceptedDateTimePat': '05_basicInfo.ipynb', 'itemsPat': '05_basicInfo.ipynb', 'itemFormTypes': '05_basicInfo.ipynb', 'startExhibitPat': '05_basicInfo.ipynb', 'defaultBaseScrapeDir': '06_infoScraper.ipynb', 'scraperBase': '06_infoScraper.ipynb', 'default13FDir': '07_scrape13F.ipynb', 'findChildEndingWith': '07_scrape13F.ipynb', 'findChildSeries': '07_scrape13F.ipynb', 'getRowInfo': '07_scrape13F.ipynb', 'parse13FHoldings': '07_scrape13F.ipynb', 'scraper13F': '07_scrape13F.ipynb', 'callOptPat': '07_scrape13F.ipynb', 'putOptPat': '07_scrape13F.ipynb', 'condenseHoldings': '07_scrape13F.ipynb', 'get13FAmendmentType': '07_scrape13F.ipynb', 'indexMap': '07_scrape13F.ipynb', 'getHoldingsMap': '07_scrape13F.ipynb', 'addHoldingsMap': '07_scrape13F.ipynb', 'printRemoveStocksMessage': '07_scrape13F.ipynb', 'holdingsMapToMatrix': '07_scrape13F.ipynb', 'getPeriodAndNextQStartEnd': '07_scrape13F.ipynb', 'getNSSForQ': '07_scrape13F.ipynb', 'saveConvMatrixPy2': '07_scrape13F.ipynb', 'qStartEnds': '07_scrape13F.ipynb', 'qPeriods': '07_scrape13F.ipynb', 'default8KDir': '08_scrape8K.ipynb', 'parse8K': '08_scrape8K.ipynb', 'scraper8K': '08_scrape8K.ipynb', 'itemPat': '08_scrape8K.ipynb', 'explanPat': '08_scrape8K.ipynb', 'default6KDir': '09_scrape6K.ipynb', 'parse6K': '09_scrape6K.ipynb', 'scraper6K': '09_scrape6K.ipynb', 'reg12gStr': '09_scrape6K.ipynb', 'header6KPat': '09_scrape6K.ipynb', 'signaturePat': '09_scrape6K.ipynb', 'skipJunkPat': '09_scrape6K.ipynb', 'default13GDir': '10_scrape13G.ipynb', 'getSec13NshAndPctFromText2': '10_scrape13G.ipynb', 'addNshAndPct': '10_scrape13G.ipynb', 'cusipChecksum': '10_scrape13G.ipynb', 'monthNameToIso': '10_scrape13G.ipynb', 'getMonthPatStr': '10_scrape13G.ipynb', 'parseEventDate': '10_scrape13G.ipynb', 'parse13GD': '10_scrape13G.ipynb', 'scraper13G': '10_scrape13G.ipynb', 'reOPTS': '10_scrape13G.ipynb', 'aggregatePatStr': '10_scrape13G.ipynb', 'percentOfClassPatStr': '10_scrape13G.ipynb', 'typeOfRepPatStr': '10_scrape13G.ipynb', 'form13PiecesPat1': '10_scrape13G.ipynb', 'form13PiecesPat2': '10_scrape13G.ipynb', 'form13PiecesPat3': '10_scrape13G.ipynb', 'nSharesPatStr': '10_scrape13G.ipynb', 'nPctBarePatStr': '10_scrape13G.ipynb', 'nPctWithPctPatStr': '10_scrape13G.ipynb', 'nshAndPctPat1Pref': '10_scrape13G.ipynb', 'form13NshAndPctPats1': '10_scrape13G.ipynb', 'form13NshAndPctPat2': '10_scrape13G.ipynb', 'form13NshAndPctPat3': '10_scrape13G.ipynb', 'purposePat': '10_scrape13G.ipynb', 'strictCusipPatStr': '10_scrape13G.ipynb', 'cusipPatStr': '10_scrape13G.ipynb', 'cusipNumberPatStr': '10_scrape13G.ipynb', 'cusipSearchPats': '10_scrape13G.ipynb', 'spaceDashPat': '10_scrape13G.ipynb', 'monthNames': '10_scrape13G.ipynb', 'monthAbbrevStrs': '10_scrape13G.ipynb', 'monthPatStr': '10_scrape13G.ipynb', 'monthDayPatStr': '10_scrape13G.ipynb', 'possCommaPatStr': '10_scrape13G.ipynb', 'yearPatStr': '10_scrape13G.ipynb', 'dateOfEventPatStr': '10_scrape13G.ipynb', 'dateOfEventAtStartPatStr': '10_scrape13G.ipynb', 'dateOfEventAtEndPatStr': '10_scrape13G.ipynb', 'dateOfEventMonthPat1': '10_scrape13G.ipynb', 'dateOfEventMonthRevPat1': '10_scrape13G.ipynb', 'dateOfEventMonthPat2': '10_scrape13G.ipynb', 'dateOfEventMonthRevPat2': '10_scrape13G.ipynb', 'isoSepPatStr': '10_scrape13G.ipynb', 'dateOfEventIsoPat1': '10_scrape13G.ipynb', 'dateOfEventIsoRevPat1': '10_scrape13G.ipynb', 'dateOfEventIsoPat2': '10_scrape13G.ipynb', 'dateOfEventIsoRevPat2': '10_scrape13G.ipynb', 'whitespacePat': '10_scrape13G.ipynb', 'updateCik13GDPos': '10_scrape13G.ipynb', 'cikSymStr': '10_scrape13G.ipynb', 'calcBonusMap': '10_scrape13G.ipynb', 'default13DDir': '11_scrape13D.ipynb', 'scraper13D': '11_scrape13D.ipynb', 'get13GDDatesForQ': '11_scrape13D.ipynb', 'getCombNSSForQ': '11_scrape13D.ipynb', 'oddballScreen': '11_scrape13D.ipynb', 'default4Dir': '12_scrape4.ipynb', 'formatF4Num': '12_scrape4.ipynb', 'formatTrans': '12_scrape4.ipynb', 'getForm4Value': '12_scrape4.ipynb', 'parse34': '12_scrape4.ipynb', 'scraper4': '12_scrape4.ipynb', 'form4ReportingNamePat': '12_scrape4.ipynb', 'form4ReportingCikPat': '12_scrape4.ipynb', 'form4TransactionPat': '12_scrape4.ipynb', 'form4ValueFieldsAndPats': '12_scrape4.ipynb', 'form4ValueFields': '12_scrape4.ipynb', 'form4ValuePats': '12_scrape4.ipynb', 'form4ADCodes': '12_scrape4.ipynb', 'form4DICodes': '12_scrape4.ipynb', 'form4TransactionCodes': '12_scrape4.ipynb'} modules = ['utils.py', 'recentFeed.py', 'dailyList.py', 'tickerMap.py', 'getCikFilings.py', 'basicInfo.py', 'infoScraper.py', 'scrape13F.py', 'scrape8K.py', 'scrape6K.py', 'scrape13G.py', 'scrape13D.py', 'scrape4.py'] doc_url = 'https://ikedim01.github.io/secscan/' git_url = 'https://github.com/ikedim01/secscan/tree/master/' def custom_doc_links(name): return None
# ============================================ # Global Constants # ============================================ # Shared variables PUZZLE_ROWS = 9 # Number of rows on the board. PUZZLE_COLUMNS = 9 # Number of columns on the board. # Game variables LEVEL_1_TOTAL_MEDALS = 3 LEVEL_2_TOTAL_MEDALS = 4 LEVEL_3_TOTAL_MEDALS = 5 SCORE = 0 MOVES_LEFT = 20 GEM_TYPES = 6 BONUS_TYPES = 3 ICE_ROWS = 5 ICE_LAYERS = 1 RANDOM_SEED = None # Set to NONE to use current system time # GUI variables HD_SCALE = 1.5 # Scale for changing the number of pixels. BASE_CELL_SIZE = 30 # Base width of each shape (pixels). GEM_RATIO = 0.9 # Gem size / cell size. BASE_MARGIN = 70 # Base margin around the board (pixels). BASE_TEXT_AREA = 75 # Base text area. ANIMATION_SCALE = 10 EXPLOSION_FRAMES = 9 # Testing TEST = False
puzzle_rows = 9 puzzle_columns = 9 level_1_total_medals = 3 level_2_total_medals = 4 level_3_total_medals = 5 score = 0 moves_left = 20 gem_types = 6 bonus_types = 3 ice_rows = 5 ice_layers = 1 random_seed = None hd_scale = 1.5 base_cell_size = 30 gem_ratio = 0.9 base_margin = 70 base_text_area = 75 animation_scale = 10 explosion_frames = 9 test = False
# Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.right = right class Solution: def diameterOfBinaryTree(self, root: TreeNode) -> int: if root is None: return 0 self.max_dist = 0 self.helper(root) return self.max_dist - 1 def helper(self, root): if root is None: return 0 l = self.helper(root.left) r = self.helper(root.right) self.max_dist = max(self.max_dist, l + r + 1) return max(l, r) + 1
class Solution: def diameter_of_binary_tree(self, root: TreeNode) -> int: if root is None: return 0 self.max_dist = 0 self.helper(root) return self.max_dist - 1 def helper(self, root): if root is None: return 0 l = self.helper(root.left) r = self.helper(root.right) self.max_dist = max(self.max_dist, l + r + 1) return max(l, r) + 1
class Dataset(): def __init__(self, train_images, test_images, train_labels, test_labels, emotion_index_map, time_delay=None): self._train_images = train_images self._test_images = test_images self._train_labels = train_labels self._test_labels = test_labels self._emotion_index_map = emotion_index_map self._time_delay = time_delay def get_training_data(self): return self._train_images, self._train_labels def get_test_data(self): return self._test_images, self._test_labels def get_emotion_index_map(self): return self._emotion_index_map def get_time_delay(self): return self._time_delay def num_test_images(self): return len(self._test_images) def num_train_images(self): return len(self._train_images) def num_images(self): return self.num_train_images() + self.num_test_images() def print_data_details(self): print('\nDATASET DETAILS') print('%d image samples' % (self.num_images())) print('%d training samples' % self.num_train_images()) print('%d test samples\n' % self.num_test_images())
class Dataset: def __init__(self, train_images, test_images, train_labels, test_labels, emotion_index_map, time_delay=None): self._train_images = train_images self._test_images = test_images self._train_labels = train_labels self._test_labels = test_labels self._emotion_index_map = emotion_index_map self._time_delay = time_delay def get_training_data(self): return (self._train_images, self._train_labels) def get_test_data(self): return (self._test_images, self._test_labels) def get_emotion_index_map(self): return self._emotion_index_map def get_time_delay(self): return self._time_delay def num_test_images(self): return len(self._test_images) def num_train_images(self): return len(self._train_images) def num_images(self): return self.num_train_images() + self.num_test_images() def print_data_details(self): print('\nDATASET DETAILS') print('%d image samples' % self.num_images()) print('%d training samples' % self.num_train_images()) print('%d test samples\n' % self.num_test_images())
__author__ = 'alvertisjo' recommenderSE='http://snf-561492.vm.okeanos.grnet.gr:8080/recommender-se/rest/recommender/' recommnederProductCategories=['Home Appliances', 'Electrical Supplies', 'Kitchen Merchandise', 'Pet Care - Food', 'Clothing', 'Sports Equipment', 'Healthcare', 'Communications', 'Lubricants', 'Audio Visual - Photography', 'Lawn - Garden Supplies', 'Computing', 'Cleaning - Hygiene Products', 'Baby Care', 'Tool Storage - Workshop Aids', 'Food - Beverage - Tobacco', 'Household - Office Furniture - Furnishings', 'Footwear', 'Cross Segment', 'Tools - Equipment - Power', 'Beauty - Personal Care - Hygiene', 'Stationery - Office Machinery - Occasion Supplies', 'Music', 'Safety - Protection - DIY', 'Toys - Games', 'Arts - Crafts - Needlework', 'Plumbing - Heating - Ventilation - Air Conditioning', 'Building Products', 'Personal Accessories', 'Automotive', 'Tools - Equipment - Hand'] #Categories to train the Product recommender ##cloudlet='...' platformAPI="https://demo2.openi-ict.eu:443/v.04/" ## http://147.102.6.98t:1988/v.04/photo/?user=tsourom&apps=[{"cbs": "instagram", "app_name": "OPENi"}]&method=filter_tags_photos&data={"lat": "37.9667", "lng": "23.7167", "tags": ["athens"]} cloudletAPI="https://193.1.188.34:443/api/v1/" swaggerAPI="http://openi.epu.ntua.gr:1988/v.04/" FoursquareURL='https://api.foursquare.com/v2/' productsDBurl='http://snf-561492.vm.okeanos.grnet.gr:8080/epuDemo/rest/demo/products/' demo2APIoAuth='https://demo2.openi-ict.eu:443/api/v1/auth/' ntuaPlatformAPI='https://demo2.openi-ict.eu:443/v.04/' searchAPIPath='https://demo2.openi-ict.eu:443/api/v1/search?with_property=cbsid&property_filter=cbsid%3Drecommender' apikey="ce7f31bc55dca7183faee99752b31bed" secretkey="88ed487d2d727490e5e4babd433c8236b886b1dea947e1f027c37ac6135a3b56" oauthURL="https://demo2.openi-ict.eu/auth/account?api_key=%s&secret=%s&redirectURL=http://localhost.com#"%(apikey,secretkey) shop1_username="shop_1" shop1_pass="shop_1shop_1" shop2_username="shop_2" shop2_pass="shop_2shop_2" #tempToken='eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJqdGkiOiJjXzcwNjQxYjY0Mzk5YzZhNDFkMzhjNDY2ZjdlZDE5NDE0X2YyYTM3OWZmLWJmMjUtNDVkOS1hOTQ5LTU2NDY1MTFiZTg4MCIsImlzcyI6Imh0dHBzOi8vMTI3LjAuMC4xL2F1dGgvdG9rZW4iLCJzdWIiOiJjXzcwNjQxYjY0Mzk5YzZhNDFkMzhjNDY2ZjdlZDE5NDE0IiwiZXhwIjoxNDM1ODc1MzU4LCJpYXQiOjE0MzU4MzIxNTgsIm5vbmNlIjoiMDEyMTk4ZDUtYWU2ZS00NmRlLWI0NDUtY2QxMWVkYjNkNmIxIiwidXNlcl9pZCI6ImNfNzA2NDFiNjQzOTljNmE0MWQzOGM0NjZmN2VkMTk0MTQiLCJjbG91ZGxldCI6ImNfNzA2NDFiNjQzOTljNmE0MWQzOGM0NjZmN2VkMTk0MTQiLCJjbGllbnRfaWQiOiJjZTdmMzFiYzU1ZGNhNzE4M2ZhZWU5OTc1MmIzMWJlZCIsImNsaWVudF9uYW1lIjoidGVzdGMiLCJjb250ZXh0IjoiY183ZTc4YjgzZGRhN2E0N2JjZTM5MjFlYjcyZTk1YjMyOSIsInNjb3BlIjoib3BlbmkiLCJvcGVuaS10b2tlbi10eXBlIjoidG9rZW4iLCJyZXNwb25zZV90eXBlIjoiaWRfdG9rZW4ifQ.HC8iJGLVxmZW_OdM5teclqZTfbXTJf7Gtdy7Yd28D3jhDuD035C0FydtkKzrAolOqCYpyQIv9PZ17jwxMwYRhg'
__author__ = 'alvertisjo' recommender_se = 'http://snf-561492.vm.okeanos.grnet.gr:8080/recommender-se/rest/recommender/' recommneder_product_categories = ['Home Appliances', 'Electrical Supplies', 'Kitchen Merchandise', 'Pet Care - Food', 'Clothing', 'Sports Equipment', 'Healthcare', 'Communications', 'Lubricants', 'Audio Visual - Photography', 'Lawn - Garden Supplies', 'Computing', 'Cleaning - Hygiene Products', 'Baby Care', 'Tool Storage - Workshop Aids', 'Food - Beverage - Tobacco', 'Household - Office Furniture - Furnishings', 'Footwear', 'Cross Segment', 'Tools - Equipment - Power', 'Beauty - Personal Care - Hygiene', 'Stationery - Office Machinery - Occasion Supplies', 'Music', 'Safety - Protection - DIY', 'Toys - Games', 'Arts - Crafts - Needlework', 'Plumbing - Heating - Ventilation - Air Conditioning', 'Building Products', 'Personal Accessories', 'Automotive', 'Tools - Equipment - Hand'] platform_api = 'https://demo2.openi-ict.eu:443/v.04/' cloudlet_api = 'https://193.1.188.34:443/api/v1/' swagger_api = 'http://openi.epu.ntua.gr:1988/v.04/' foursquare_url = 'https://api.foursquare.com/v2/' products_d_burl = 'http://snf-561492.vm.okeanos.grnet.gr:8080/epuDemo/rest/demo/products/' demo2_ap_io_auth = 'https://demo2.openi-ict.eu:443/api/v1/auth/' ntua_platform_api = 'https://demo2.openi-ict.eu:443/v.04/' search_api_path = 'https://demo2.openi-ict.eu:443/api/v1/search?with_property=cbsid&property_filter=cbsid%3Drecommender' apikey = 'ce7f31bc55dca7183faee99752b31bed' secretkey = '88ed487d2d727490e5e4babd433c8236b886b1dea947e1f027c37ac6135a3b56' oauth_url = 'https://demo2.openi-ict.eu/auth/account?api_key=%s&secret=%s&redirectURL=http://localhost.com#' % (apikey, secretkey) shop1_username = 'shop_1' shop1_pass = 'shop_1shop_1' shop2_username = 'shop_2' shop2_pass = 'shop_2shop_2'
# Python program showing no need to # use global keyword for accessing # a global value # global variable a = 15 b = 10 # function to perform addition def add(): c = a + b print(c) # calling a function add()
a = 15 b = 10 def add(): c = a + b print(c) add()
def test(): for i in xrange(1): t = '' for j in xrange(int(1e5)): t += 'x' #print(len(t)) test()
def test(): for i in xrange(1): t = '' for j in xrange(int(100000.0)): t += 'x' test()
def miniPeaks(nums): result = [] left = 0 right = 0 for i in range(1, len(nums) - 1): left = nums[i - 1] right = nums[i + 1] if nums[i] > left and nums[i] > right: result.append(nums[i]) return result # Time Complexity : O(n) # Space Complexity : O(m), # n = nos of elements # m = nos of peak elements
def mini_peaks(nums): result = [] left = 0 right = 0 for i in range(1, len(nums) - 1): left = nums[i - 1] right = nums[i + 1] if nums[i] > left and nums[i] > right: result.append(nums[i]) return result
#!/usr/bin/env python __author__ = "Aditya Pahuja" __copyright__ = "Copyright (c) 2020" __maintainer__ = "Aditya Pahuja" __email__ = "[email protected]" __status__ = "Production" class Window: def __init__(self, start_date, stop_date): self.start_date = start_date self.stop_date = stop_date
__author__ = 'Aditya Pahuja' __copyright__ = 'Copyright (c) 2020' __maintainer__ = 'Aditya Pahuja' __email__ = '[email protected]' __status__ = 'Production' class Window: def __init__(self, start_date, stop_date): self.start_date = start_date self.stop_date = stop_date