content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
# 10. Write a program to check whether an year is leap year or not.
year=int(input("Enter an year : "))
if (year%4==0) and (year%100!=0) or (year%400==0):
print(f"{year} is a leap year.")
else:
print(f"{year} is not a leap year.")
| year = int(input('Enter an year : '))
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
print(f'{year} is a leap year.')
else:
print(f'{year} is not a leap year.') |
def findone(L):
left = 0
right = len(L) - 1
while left < right:
mid = (left+right)// 2
isone = len(L[left:mid]) % 2
if L[mid] != L[mid-1] and L[mid] != L[mid+1]:
return L[mid]
if isone and L[mid] == L[mid-1]:
left = mid + 1
elif isone and L[mid] == L[mid + 1]:
right = mid - 1
elif not isone and L[mid] == L[mid-1]:
right = mid - 2
elif not isone and L[mid] == L[mid + 1]:
left = mid + 2
return L[left]
print(findone([3,3,7,7,10,11,11]))
print(findone([1,1,2,3,3,4,4,8,8]))
print(findone([9,9,1,1,2,3,3,4,4,8,8])) | def findone(L):
left = 0
right = len(L) - 1
while left < right:
mid = (left + right) // 2
isone = len(L[left:mid]) % 2
if L[mid] != L[mid - 1] and L[mid] != L[mid + 1]:
return L[mid]
if isone and L[mid] == L[mid - 1]:
left = mid + 1
elif isone and L[mid] == L[mid + 1]:
right = mid - 1
elif not isone and L[mid] == L[mid - 1]:
right = mid - 2
elif not isone and L[mid] == L[mid + 1]:
left = mid + 2
return L[left]
print(findone([3, 3, 7, 7, 10, 11, 11]))
print(findone([1, 1, 2, 3, 3, 4, 4, 8, 8]))
print(findone([9, 9, 1, 1, 2, 3, 3, 4, 4, 8, 8])) |
class BinarySearch:
def search(self, array, element):
first = 0
last = len(array) - 1
while first <= last:
mid = (first + last)//2
if array[mid] == element:
return mid
else:
if element < array[mid]:
last = mid - 1
else:
first = mid + 1
return False | class Binarysearch:
def search(self, array, element):
first = 0
last = len(array) - 1
while first <= last:
mid = (first + last) // 2
if array[mid] == element:
return mid
elif element < array[mid]:
last = mid - 1
else:
first = mid + 1
return False |
MAX_RESULTS = '50'
CHANNELS_PART = 'brandingSettings,contentDetails,contentOwnerDetails,id,localizations,snippet,statistics,status,topicDetails'
VIDEOS_PART = 'contentDetails,id,liveStreamingDetails,localizations,player,recordingDetails,snippet,statistics,status,topicDetails'
SEARCH_PARTS = 'snippet'
COMMENT_THREADS_PARTS = 'id,snippet,replies'
COMMENTS_PARTS = 'id,snippet'
PLAYLIST_ITEMS_PARTS = 'id,snippet,contentDetails,status'
PLAYLISTS_PARTS = 'id,snippet,contentDetails,status,player,localizations'
BASE_URL = 'https://www.googleapis.com/youtube/v3'
| max_results = '50'
channels_part = 'brandingSettings,contentDetails,contentOwnerDetails,id,localizations,snippet,statistics,status,topicDetails'
videos_part = 'contentDetails,id,liveStreamingDetails,localizations,player,recordingDetails,snippet,statistics,status,topicDetails'
search_parts = 'snippet'
comment_threads_parts = 'id,snippet,replies'
comments_parts = 'id,snippet'
playlist_items_parts = 'id,snippet,contentDetails,status'
playlists_parts = 'id,snippet,contentDetails,status,player,localizations'
base_url = 'https://www.googleapis.com/youtube/v3' |
heroes = {
"*Adagio*": "Adagio",
"*Alpha*": "Alpha",
"*Ardan*": "Ardan",
"*Baron*": "Baron",
"*Blackfeather*": "Blackfeather",
"*Catherine*": "Catherine",
"*Celeste*": "Celeste",
"*Flicker*": "Flicker",
"*Fortress*": "Fortress",
"*Glaive*": "Glaive",
"*Gwen*": "Gwen",
"*Krul*": "Krul",
"*Hero009*": "Krul",
"*Skaarf*": "Skaarf",
"*Hero010*": "Skaarf",
"*Rona*": "Rona",
"*Hero016*": "Rona",
"*Idris*": "Idris",
"*Joule*": "Joule",
"*Kestrel*": "Kestrel",
"*Koshka*": "Koshka",
"*Lance*": "Lance",
"*Lyra*": "Lyra",
"*Ozo*": "Ozo",
"*Petal*": "Petal",
"*Phinn*": "Phinn",
"*Reim*": "Reim",
"*Ringo*": "Ringo",
"*Samuel*": "Samuel",
"*SAW*": "SAW",
"*Taka*": "Taka",
"*Sayoc*": "Taka",
"*Skye*": "Skye",
"*Vox*": "Vox",
"*Grumpjaw*": "Grumpjaw",
"*Baptiste*": "Baptiste"
}
| heroes = {'*Adagio*': 'Adagio', '*Alpha*': 'Alpha', '*Ardan*': 'Ardan', '*Baron*': 'Baron', '*Blackfeather*': 'Blackfeather', '*Catherine*': 'Catherine', '*Celeste*': 'Celeste', '*Flicker*': 'Flicker', '*Fortress*': 'Fortress', '*Glaive*': 'Glaive', '*Gwen*': 'Gwen', '*Krul*': 'Krul', '*Hero009*': 'Krul', '*Skaarf*': 'Skaarf', '*Hero010*': 'Skaarf', '*Rona*': 'Rona', '*Hero016*': 'Rona', '*Idris*': 'Idris', '*Joule*': 'Joule', '*Kestrel*': 'Kestrel', '*Koshka*': 'Koshka', '*Lance*': 'Lance', '*Lyra*': 'Lyra', '*Ozo*': 'Ozo', '*Petal*': 'Petal', '*Phinn*': 'Phinn', '*Reim*': 'Reim', '*Ringo*': 'Ringo', '*Samuel*': 'Samuel', '*SAW*': 'SAW', '*Taka*': 'Taka', '*Sayoc*': 'Taka', '*Skye*': 'Skye', '*Vox*': 'Vox', '*Grumpjaw*': 'Grumpjaw', '*Baptiste*': 'Baptiste'} |
# Generated by h2py from /usr/include/netinet/in.h
# Included from net/nh.h
# Included from sys/machine.h
LITTLE_ENDIAN = 1234
BIG_ENDIAN = 4321
PDP_ENDIAN = 3412
BYTE_ORDER = BIG_ENDIAN
DEFAULT_GPR = 0xDEADBEEF
MSR_EE = 0x8000
MSR_PR = 0x4000
MSR_FP = 0x2000
MSR_ME = 0x1000
MSR_FE = 0x0800
MSR_FE0 = 0x0800
MSR_SE = 0x0400
MSR_BE = 0x0200
MSR_IE = 0x0100
MSR_FE1 = 0x0100
MSR_AL = 0x0080
MSR_IP = 0x0040
MSR_IR = 0x0020
MSR_DR = 0x0010
MSR_PM = 0x0004
DEFAULT_MSR = (MSR_EE | MSR_ME | MSR_AL | MSR_IR | MSR_DR)
DEFAULT_USER_MSR = (DEFAULT_MSR | MSR_PR)
CR_LT = 0x80000000
CR_GT = 0x40000000
CR_EQ = 0x20000000
CR_SO = 0x10000000
CR_FX = 0x08000000
CR_FEX = 0x04000000
CR_VX = 0x02000000
CR_OX = 0x01000000
XER_SO = 0x80000000
XER_OV = 0x40000000
XER_CA = 0x20000000
def XER_COMP_BYTE(xer): return ((xer >> 8) & 0x000000FF)
def XER_LENGTH(xer): return (xer & 0x0000007F)
DSISR_IO = 0x80000000
DSISR_PFT = 0x40000000
DSISR_LOCK = 0x20000000
DSISR_FPIO = 0x10000000
DSISR_PROT = 0x08000000
DSISR_LOOP = 0x04000000
DSISR_DRST = 0x04000000
DSISR_ST = 0x02000000
DSISR_SEGB = 0x01000000
DSISR_DABR = 0x00400000
DSISR_EAR = 0x00100000
SRR_IS_PFT = 0x40000000
SRR_IS_ISPEC = 0x20000000
SRR_IS_IIO = 0x10000000
SRR_IS_GUARD = 0x10000000
SRR_IS_PROT = 0x08000000
SRR_IS_LOOP = 0x04000000
SRR_PR_FPEN = 0x00100000
SRR_PR_INVAL = 0x00080000
SRR_PR_PRIV = 0x00040000
SRR_PR_TRAP = 0x00020000
SRR_PR_IMPRE = 0x00010000
def BUID_7F_SRVAL(raddr): return (0x87F00000 | (((uint)(raddr)) >> 28))
BT_256M = 0x1FFC
BT_128M = 0x0FFC
BT_64M = 0x07FC
BT_32M = 0x03FC
BT_16M = 0x01FC
BT_8M = 0x00FC
BT_4M = 0x007C
BT_2M = 0x003C
BT_1M = 0x001C
BT_512K = 0x000C
BT_256K = 0x0004
BT_128K = 0x0000
BT_NOACCESS = 0x0
BT_RDONLY = 0x1
BT_WRITE = 0x2
BT_VS = 0x2
BT_VP = 0x1
def BAT_ESEG(dbatu): return (((uint)(dbatu) >> 28))
MIN_BAT_SIZE = 0x00020000
MAX_BAT_SIZE = 0x10000000
def ntohl(x): return (x)
def ntohs(x): return (x)
def htonl(x): return (x)
def htons(x): return (x)
IPPROTO_IP = 0
IPPROTO_ICMP = 1
IPPROTO_IGMP = 2
IPPROTO_GGP = 3
IPPROTO_TCP = 6
IPPROTO_EGP = 8
IPPROTO_PUP = 12
IPPROTO_UDP = 17
IPPROTO_IDP = 22
IPPROTO_TP = 29
IPPROTO_LOCAL = 63
IPPROTO_EON = 80
IPPROTO_BIP = 0x53
IPPROTO_RAW = 255
IPPROTO_MAX = 256
IPPORT_RESERVED = 1024
IPPORT_USERRESERVED = 5000
IPPORT_TIMESERVER = 37
def IN_CLASSA(i): return (((int)(i) & 0x80000000) == 0)
IN_CLASSA_NET = 0xff000000
IN_CLASSA_NSHIFT = 24
IN_CLASSA_HOST = 0x00ffffff
IN_CLASSA_MAX = 128
def IN_CLASSB(i): return (((int)(i) & 0xc0000000) == 0x80000000)
IN_CLASSB_NET = 0xffff0000
IN_CLASSB_NSHIFT = 16
IN_CLASSB_HOST = 0x0000ffff
IN_CLASSB_MAX = 65536
def IN_CLASSC(i): return (((int)(i) & 0xe0000000) == 0xc0000000)
IN_CLASSC_NET = 0xffffff00
IN_CLASSC_NSHIFT = 8
IN_CLASSC_HOST = 0x000000ff
def IN_CLASSD(i): return (((int)(i) & 0xf0000000) == 0xe0000000)
def IN_MULTICAST(i): return IN_CLASSD(i)
IN_CLASSD_NET = 0xf0000000
IN_CLASSD_NSHIFT = 28
IN_CLASSD_HOST = 0x0fffffff
INADDR_UNSPEC_GROUP = 0xe0000000
INADDR_ALLHOSTS_GROUP = 0xe0000001
INADDR_MAX_LOCAL_GROUP = 0xe00000ff
def IN_EXPERIMENTAL(i): return (((int)(i) & 0xe0000000) == 0xe0000000)
def IN_BADCLASS(i): return (((int)(i) & 0xf0000000) == 0xf0000000)
INADDR_ANY = 0x00000000
INADDR_BROADCAST = 0xffffffff
INADDR_LOOPBACK = 0x7f000001
INADDR_NONE = 0xffffffff
IN_LOOPBACKNET = 127
IP_OPTIONS = 1
IP_HDRINCL = 2
IP_TOS = 3
IP_TTL = 4
IP_RECVOPTS = 5
IP_RECVRETOPTS = 6
IP_RECVDSTADDR = 7
IP_RETOPTS = 8
IP_MULTICAST_IF = 9
IP_MULTICAST_TTL = 10
IP_MULTICAST_LOOP = 11
IP_ADD_MEMBERSHIP = 12
IP_DROP_MEMBERSHIP = 13
IP_DEFAULT_MULTICAST_TTL = 1
IP_DEFAULT_MULTICAST_LOOP = 1
IP_MAX_MEMBERSHIPS = 20
| little_endian = 1234
big_endian = 4321
pdp_endian = 3412
byte_order = BIG_ENDIAN
default_gpr = 3735928559
msr_ee = 32768
msr_pr = 16384
msr_fp = 8192
msr_me = 4096
msr_fe = 2048
msr_fe0 = 2048
msr_se = 1024
msr_be = 512
msr_ie = 256
msr_fe1 = 256
msr_al = 128
msr_ip = 64
msr_ir = 32
msr_dr = 16
msr_pm = 4
default_msr = MSR_EE | MSR_ME | MSR_AL | MSR_IR | MSR_DR
default_user_msr = DEFAULT_MSR | MSR_PR
cr_lt = 2147483648
cr_gt = 1073741824
cr_eq = 536870912
cr_so = 268435456
cr_fx = 134217728
cr_fex = 67108864
cr_vx = 33554432
cr_ox = 16777216
xer_so = 2147483648
xer_ov = 1073741824
xer_ca = 536870912
def xer_comp_byte(xer):
return xer >> 8 & 255
def xer_length(xer):
return xer & 127
dsisr_io = 2147483648
dsisr_pft = 1073741824
dsisr_lock = 536870912
dsisr_fpio = 268435456
dsisr_prot = 134217728
dsisr_loop = 67108864
dsisr_drst = 67108864
dsisr_st = 33554432
dsisr_segb = 16777216
dsisr_dabr = 4194304
dsisr_ear = 1048576
srr_is_pft = 1073741824
srr_is_ispec = 536870912
srr_is_iio = 268435456
srr_is_guard = 268435456
srr_is_prot = 134217728
srr_is_loop = 67108864
srr_pr_fpen = 1048576
srr_pr_inval = 524288
srr_pr_priv = 262144
srr_pr_trap = 131072
srr_pr_impre = 65536
def buid_7_f_srval(raddr):
return 2280652800 | uint(raddr) >> 28
bt_256_m = 8188
bt_128_m = 4092
bt_64_m = 2044
bt_32_m = 1020
bt_16_m = 508
bt_8_m = 252
bt_4_m = 124
bt_2_m = 60
bt_1_m = 28
bt_512_k = 12
bt_256_k = 4
bt_128_k = 0
bt_noaccess = 0
bt_rdonly = 1
bt_write = 2
bt_vs = 2
bt_vp = 1
def bat_eseg(dbatu):
return uint(dbatu) >> 28
min_bat_size = 131072
max_bat_size = 268435456
def ntohl(x):
return x
def ntohs(x):
return x
def htonl(x):
return x
def htons(x):
return x
ipproto_ip = 0
ipproto_icmp = 1
ipproto_igmp = 2
ipproto_ggp = 3
ipproto_tcp = 6
ipproto_egp = 8
ipproto_pup = 12
ipproto_udp = 17
ipproto_idp = 22
ipproto_tp = 29
ipproto_local = 63
ipproto_eon = 80
ipproto_bip = 83
ipproto_raw = 255
ipproto_max = 256
ipport_reserved = 1024
ipport_userreserved = 5000
ipport_timeserver = 37
def in_classa(i):
return int(i) & 2147483648 == 0
in_classa_net = 4278190080
in_classa_nshift = 24
in_classa_host = 16777215
in_classa_max = 128
def in_classb(i):
return int(i) & 3221225472 == 2147483648
in_classb_net = 4294901760
in_classb_nshift = 16
in_classb_host = 65535
in_classb_max = 65536
def in_classc(i):
return int(i) & 3758096384 == 3221225472
in_classc_net = 4294967040
in_classc_nshift = 8
in_classc_host = 255
def in_classd(i):
return int(i) & 4026531840 == 3758096384
def in_multicast(i):
return in_classd(i)
in_classd_net = 4026531840
in_classd_nshift = 28
in_classd_host = 268435455
inaddr_unspec_group = 3758096384
inaddr_allhosts_group = 3758096385
inaddr_max_local_group = 3758096639
def in_experimental(i):
return int(i) & 3758096384 == 3758096384
def in_badclass(i):
return int(i) & 4026531840 == 4026531840
inaddr_any = 0
inaddr_broadcast = 4294967295
inaddr_loopback = 2130706433
inaddr_none = 4294967295
in_loopbacknet = 127
ip_options = 1
ip_hdrincl = 2
ip_tos = 3
ip_ttl = 4
ip_recvopts = 5
ip_recvretopts = 6
ip_recvdstaddr = 7
ip_retopts = 8
ip_multicast_if = 9
ip_multicast_ttl = 10
ip_multicast_loop = 11
ip_add_membership = 12
ip_drop_membership = 13
ip_default_multicast_ttl = 1
ip_default_multicast_loop = 1
ip_max_memberships = 20 |
characterMapNurse = {
"nurse_be1_001": "nurse_be1_001", # Auto: Same
"nurse_be1_002": "nurse_be1_002", # Auto: Same
"nurse_be1_003": "nurse_be1_003", # Auto: Same
"nurse_be1_full_001": "nurse_be1_full_001", # Auto: Same
"nurse_be1_full_002": "nurse_be1_full_002", # Auto: Same
"nurse_be1_full_003": "nurse_be1_full_003", # Auto: Same
"nurse_be1_full_naked_001": "nurse_be1_full_naked_001", # Auto: Same
"nurse_be1_full_naked_002": "nurse_be1_full_naked_002", # Auto: Same
"nurse_be1_full_naked_003": "nurse_be1_full_naked_003", # Auto: Same
"nurse_be1_full_skimp_001": "nurse_be1_full_skimp_001", # Auto: Same
"nurse_be1_full_skimp_002": "nurse_be1_full_skimp_002", # Auto: Same
"nurse_be1_full_skimp_003": "nurse_be1_full_skimp_003", # Auto: Same
"nurse_be1_full_under_001": "nurse_be1_full_under_001", # Auto: Same
"nurse_be1_full_under_002": "nurse_be1_full_under_002", # Auto: Same
"nurse_be1_full_under_003": "nurse_be1_full_under_003", # Auto: Same
"nurse_be1_naked_001": "nurse_be1_naked_001", # Auto: Same
"nurse_be1_naked_002": "nurse_be1_naked_002", # Auto: Same
"nurse_be1_naked_003": "nurse_be1_naked_003", # Auto: Same
"nurse_be1_skimp_001": "nurse_be1_skimp_001", # Auto: Same
"nurse_be1_skimp_002": "nurse_be1_skimp_002", # Auto: Same
"nurse_be1_skimp_003": "nurse_be1_skimp_003", # Auto: Same
"nurse_be1_under_001": "nurse_be1_under_001", # Auto: Same
"nurse_be1_under_002": "nurse_be1_under_002", # Auto: Same
"nurse_be1_under_003": "nurse_be1_under_003", # Auto: Same
"nurse_base_001": "nurse_base_001", # Auto: Edited
"nurse_base_002": "nurse_base_002", # Auto: Edited
"nurse_base_003": "nurse_base_003", # Auto: Edited
"nurse_base_full_001": "nurse_base_full_001", # Auto: Same
"nurse_base_full_002": "nurse_base_full_002", # Auto: Same
"nurse_base_full_003": "nurse_base_full_003", # Auto: Same
"nurse_base_full_naked_001": "nurse_base_full_naked_001", # Auto: Same
"nurse_base_full_naked_002": "nurse_base_full_naked_002", # Auto: Same
"nurse_base_full_naked_003": "nurse_base_full_naked_003", # Auto: Same
"nurse_base_full_skimp_001": "nurse_base_full_skimp_001", # Auto: Same
"nurse_base_full_skimp_002": "nurse_base_full_skimp_002", # Auto: Same
"nurse_base_full_skimp_003": "nurse_base_full_skimp_003", # Auto: Same
"nurse_base_full_under_001": "nurse_base_full_under_001", # Auto: Same
"nurse_base_full_under_002": "nurse_base_full_under_002", # Auto: Same
"nurse_base_full_under_003": "nurse_base_full_under_003", # Auto: Same
"nurse_base_naked_001": "nurse_base_naked_001", # Auto: Edited
"nurse_base_naked_002": "nurse_base_naked_002", # Auto: Edited
"nurse_base_naked_003": "nurse_base_naked_003", # Auto: Edited
"nurse_base_skimp_001": "nurse_base_skimp_001", # Auto: Edited
"nurse_base_skimp_002": "nurse_base_skimp_002", # Auto: Edited
"nurse_base_skimp_003": "nurse_base_skimp_003", # Auto: Edited
"nurse_base_under_001": "nurse_base_under_001", # Auto: Edited
"nurse_base_under_002": "nurse_base_under_002", # Auto: Edited
"nurse_base_under_003": "nurse_base_under_003", # Auto: Edited
"nurse_ex_001_001": "nurse_ex_001_001", # Auto: Same
"nurse_ex_001_neutral_001": "nurse_ex_001_neutral_001", # Auto: Same
"nurse_ex_001_smile_001": "nurse_ex_001_smile_001", # Auto: Same
"nurse_ex_002_001": "nurse_ex_002_smile_001", # Auto: Renamed
"nurse_ex_002_smile_001": "nurse_ex_002_001", # Auto: Renamed
"nurse_ex_003_001": "nurse_ex_003_irked_001", # Auto: Renamed
"nurse_ex_003_grin2_001": "nurse_ex_003_smile2_001", # Auto: Renamed
"nurse_ex_003_grin_001": "", # Auto: Deleted
"nurse_ex_003_open2_002": "nurse_ex_003_open2_002", # Auto: Same
"nurse_ex_003_open_001": "nurse_ex_003_irked2_001", # Auto: Renamed
"nurse_ex_004_001": "nurse_ex_004_open_001", # Auto: Renamed
"nurse_ex_004_closed_001": "nurse_ex_004_001", # Auto: Renamed
"nurse_ex_004_smile_001": "nurse_ex_004_smile_001", # Auto: Edited
"nurse_ex_005_001": "nurse_ex_005_001", # Auto: Same
"nurse_ex_005_open_001": "nurse_ex_005_open_001", # Auto: Same
"nurse_ex_005_smile2_001": "nurse_ex_005_smile2_001", # Auto: Same
"nurse_ex_005_smile_001": "nurse_ex_005_smile_001", # Auto: Same
"nurse_ex_006_001": "nurse_ex_006_001", # Auto: Same
"nurse_ex_006_open_001": "nurse_ex_006_open_001", # Auto: Same
"nurse_ex_006_smile2_001": "nurse_ex_006_smile2_001", # Auto: Same
"nurse_ex_006_smile_001": "nurse_ex_006_smile_001", # Auto: Same
"nurse_ex_007_001": "nurse_ex_005_aroused2_001", # Auto: Renamed
"nurse_ex_008_002": "", # Auto: Deleted
"nurse_ex_009_002": "nurse_ex_003_grin_002", # Auto: Renamed
"nurse_ex_010_002": "nurse_ex_012_002", # Auto: Renamed
"nurse_ex_011_003": "nurse_ex_007_003", # Auto: Renamed
"nurse_ex_012_003": "nurse_ex_008_003", # Auto: Renamed
"nurse_ex_013_003": "nurse_ex_013_003", # Auto: Same
"nurse_ex_full_001_001": "nurse_ex_full_001_001", # Auto: Same
"nurse_ex_full_001_neutral_001": "nurse_ex_full_001_neutral_001", # Auto: Same
"nurse_ex_full_001_smile_001": "nurse_ex_full_001_smile_001", # Auto: Same
"nurse_ex_full_002_001": "nurse_ex_full_002_smile_001", # Auto: Renamed
"nurse_ex_full_002_smile_001": "nurse_ex_full_002_001", # Auto: Renamed
"nurse_ex_full_003_001": "nurse_ex_full_003_irked_001", # Auto: Renamed
"nurse_ex_full_003_grin2_001": "nurse_ex_full_003_smile2_001", # Auto: Renamed
"nurse_ex_full_003_grin_001": "", # Auto: Deleted
"nurse_ex_full_003_open2_002": "nurse_ex_full_003_open2_002", # Auto: Same
"nurse_ex_full_003_open_001": "nurse_ex_full_003_irked2_001", # Auto: Renamed
"nurse_ex_full_004_001": "nurse_ex_full_004_open_001", # Auto: Renamed
"nurse_ex_full_004_closed_001": "nurse_ex_full_004_001", # Auto: Renamed
"nurse_ex_full_004_smile_001": "nurse_ex_full_004_smile_001", # Auto: Edited
"nurse_ex_full_005_001": "nurse_ex_full_005_001", # Auto: Same
"nurse_ex_full_005_open_001": "nurse_ex_full_005_open_001", # Auto: Same
"nurse_ex_full_005_smile2_001": "nurse_ex_full_005_smile2_001", # Auto: Same
"nurse_ex_full_005_smile_001": "nurse_ex_full_005_smile_001", # Auto: Same
"nurse_ex_full_006_001": "nurse_ex_full_006_001", # Auto: Same
"nurse_ex_full_006_open_001": "nurse_ex_full_006_open_001", # Auto: Same
"nurse_ex_full_006_smile2_001": "nurse_ex_full_006_smile2_001", # Auto: Same
"nurse_ex_full_006_smile_001": "nurse_ex_full_006_smile_001", # Auto: Same
"nurse_ex_full_007_001": "nurse_ex_full_005_aroused2_001", # Auto: Renamed
"nurse_ex_full_008_002": "", # Auto: Deleted
"nurse_ex_full_009_002": "nurse_ex_full_003_grin_002", # Auto: Renamed
"nurse_ex_full_010_002": "nurse_ex_full_012_002", # Auto: Renamed
"nurse_ex_full_011_003": "nurse_ex_full_007_003", # Auto: Renamed
"nurse_ex_full_012_003": "nurse_ex_full_008_003", # Auto: Renamed
"nurse_ex_full_013_003": "nurse_ex_full_013_003", # Auto: Same
}
| character_map_nurse = {'nurse_be1_001': 'nurse_be1_001', 'nurse_be1_002': 'nurse_be1_002', 'nurse_be1_003': 'nurse_be1_003', 'nurse_be1_full_001': 'nurse_be1_full_001', 'nurse_be1_full_002': 'nurse_be1_full_002', 'nurse_be1_full_003': 'nurse_be1_full_003', 'nurse_be1_full_naked_001': 'nurse_be1_full_naked_001', 'nurse_be1_full_naked_002': 'nurse_be1_full_naked_002', 'nurse_be1_full_naked_003': 'nurse_be1_full_naked_003', 'nurse_be1_full_skimp_001': 'nurse_be1_full_skimp_001', 'nurse_be1_full_skimp_002': 'nurse_be1_full_skimp_002', 'nurse_be1_full_skimp_003': 'nurse_be1_full_skimp_003', 'nurse_be1_full_under_001': 'nurse_be1_full_under_001', 'nurse_be1_full_under_002': 'nurse_be1_full_under_002', 'nurse_be1_full_under_003': 'nurse_be1_full_under_003', 'nurse_be1_naked_001': 'nurse_be1_naked_001', 'nurse_be1_naked_002': 'nurse_be1_naked_002', 'nurse_be1_naked_003': 'nurse_be1_naked_003', 'nurse_be1_skimp_001': 'nurse_be1_skimp_001', 'nurse_be1_skimp_002': 'nurse_be1_skimp_002', 'nurse_be1_skimp_003': 'nurse_be1_skimp_003', 'nurse_be1_under_001': 'nurse_be1_under_001', 'nurse_be1_under_002': 'nurse_be1_under_002', 'nurse_be1_under_003': 'nurse_be1_under_003', 'nurse_base_001': 'nurse_base_001', 'nurse_base_002': 'nurse_base_002', 'nurse_base_003': 'nurse_base_003', 'nurse_base_full_001': 'nurse_base_full_001', 'nurse_base_full_002': 'nurse_base_full_002', 'nurse_base_full_003': 'nurse_base_full_003', 'nurse_base_full_naked_001': 'nurse_base_full_naked_001', 'nurse_base_full_naked_002': 'nurse_base_full_naked_002', 'nurse_base_full_naked_003': 'nurse_base_full_naked_003', 'nurse_base_full_skimp_001': 'nurse_base_full_skimp_001', 'nurse_base_full_skimp_002': 'nurse_base_full_skimp_002', 'nurse_base_full_skimp_003': 'nurse_base_full_skimp_003', 'nurse_base_full_under_001': 'nurse_base_full_under_001', 'nurse_base_full_under_002': 'nurse_base_full_under_002', 'nurse_base_full_under_003': 'nurse_base_full_under_003', 'nurse_base_naked_001': 'nurse_base_naked_001', 'nurse_base_naked_002': 'nurse_base_naked_002', 'nurse_base_naked_003': 'nurse_base_naked_003', 'nurse_base_skimp_001': 'nurse_base_skimp_001', 'nurse_base_skimp_002': 'nurse_base_skimp_002', 'nurse_base_skimp_003': 'nurse_base_skimp_003', 'nurse_base_under_001': 'nurse_base_under_001', 'nurse_base_under_002': 'nurse_base_under_002', 'nurse_base_under_003': 'nurse_base_under_003', 'nurse_ex_001_001': 'nurse_ex_001_001', 'nurse_ex_001_neutral_001': 'nurse_ex_001_neutral_001', 'nurse_ex_001_smile_001': 'nurse_ex_001_smile_001', 'nurse_ex_002_001': 'nurse_ex_002_smile_001', 'nurse_ex_002_smile_001': 'nurse_ex_002_001', 'nurse_ex_003_001': 'nurse_ex_003_irked_001', 'nurse_ex_003_grin2_001': 'nurse_ex_003_smile2_001', 'nurse_ex_003_grin_001': '', 'nurse_ex_003_open2_002': 'nurse_ex_003_open2_002', 'nurse_ex_003_open_001': 'nurse_ex_003_irked2_001', 'nurse_ex_004_001': 'nurse_ex_004_open_001', 'nurse_ex_004_closed_001': 'nurse_ex_004_001', 'nurse_ex_004_smile_001': 'nurse_ex_004_smile_001', 'nurse_ex_005_001': 'nurse_ex_005_001', 'nurse_ex_005_open_001': 'nurse_ex_005_open_001', 'nurse_ex_005_smile2_001': 'nurse_ex_005_smile2_001', 'nurse_ex_005_smile_001': 'nurse_ex_005_smile_001', 'nurse_ex_006_001': 'nurse_ex_006_001', 'nurse_ex_006_open_001': 'nurse_ex_006_open_001', 'nurse_ex_006_smile2_001': 'nurse_ex_006_smile2_001', 'nurse_ex_006_smile_001': 'nurse_ex_006_smile_001', 'nurse_ex_007_001': 'nurse_ex_005_aroused2_001', 'nurse_ex_008_002': '', 'nurse_ex_009_002': 'nurse_ex_003_grin_002', 'nurse_ex_010_002': 'nurse_ex_012_002', 'nurse_ex_011_003': 'nurse_ex_007_003', 'nurse_ex_012_003': 'nurse_ex_008_003', 'nurse_ex_013_003': 'nurse_ex_013_003', 'nurse_ex_full_001_001': 'nurse_ex_full_001_001', 'nurse_ex_full_001_neutral_001': 'nurse_ex_full_001_neutral_001', 'nurse_ex_full_001_smile_001': 'nurse_ex_full_001_smile_001', 'nurse_ex_full_002_001': 'nurse_ex_full_002_smile_001', 'nurse_ex_full_002_smile_001': 'nurse_ex_full_002_001', 'nurse_ex_full_003_001': 'nurse_ex_full_003_irked_001', 'nurse_ex_full_003_grin2_001': 'nurse_ex_full_003_smile2_001', 'nurse_ex_full_003_grin_001': '', 'nurse_ex_full_003_open2_002': 'nurse_ex_full_003_open2_002', 'nurse_ex_full_003_open_001': 'nurse_ex_full_003_irked2_001', 'nurse_ex_full_004_001': 'nurse_ex_full_004_open_001', 'nurse_ex_full_004_closed_001': 'nurse_ex_full_004_001', 'nurse_ex_full_004_smile_001': 'nurse_ex_full_004_smile_001', 'nurse_ex_full_005_001': 'nurse_ex_full_005_001', 'nurse_ex_full_005_open_001': 'nurse_ex_full_005_open_001', 'nurse_ex_full_005_smile2_001': 'nurse_ex_full_005_smile2_001', 'nurse_ex_full_005_smile_001': 'nurse_ex_full_005_smile_001', 'nurse_ex_full_006_001': 'nurse_ex_full_006_001', 'nurse_ex_full_006_open_001': 'nurse_ex_full_006_open_001', 'nurse_ex_full_006_smile2_001': 'nurse_ex_full_006_smile2_001', 'nurse_ex_full_006_smile_001': 'nurse_ex_full_006_smile_001', 'nurse_ex_full_007_001': 'nurse_ex_full_005_aroused2_001', 'nurse_ex_full_008_002': '', 'nurse_ex_full_009_002': 'nurse_ex_full_003_grin_002', 'nurse_ex_full_010_002': 'nurse_ex_full_012_002', 'nurse_ex_full_011_003': 'nurse_ex_full_007_003', 'nurse_ex_full_012_003': 'nurse_ex_full_008_003', 'nurse_ex_full_013_003': 'nurse_ex_full_013_003'} |
nombre="roberto"
edad=25
persona=["jorge","peralta",34256643,1987,0]
print(persona)
clave_personal=persona[2] * persona[-2]
print(clave_personal)
persona[-1]=clave_personal
print(persona)
| nombre = 'roberto'
edad = 25
persona = ['jorge', 'peralta', 34256643, 1987, 0]
print(persona)
clave_personal = persona[2] * persona[-2]
print(clave_personal)
persona[-1] = clave_personal
print(persona) |
Mystring = "Castlevania"
Mystring2 = "C a s t l e v a n i a"
Otherstring = "Mankind"
# Comando dir -> Sacar Metodos
# print(dir(Mystring))
# print(Mystring.title())
# print(Mystring.upper())
# print(Otherstring.lower())
# print(Mystring.lower())
# print(Mystring.swapcase())
# print(Otherstring.replace("Mankind", "Pale"))
# print(Mystring.count("a"))
# print(Otherstring.count("n"))
# print(Mystring.startswith("C"))
# print(Mystring.endswith("C"))
# print(Mystring2.split())
# print(Mystring.split("a"))
# print(Mystring.find("C"))
# print(len(Mystring))
# print(Mystring[0])
# print(Mystring[1])
# print(Mystring[2])
# print(Mystring[3])
# print(Mystring[4])
# print(Mystring[5])
# print(Mystring[6])
# print(Mystring[7])
# print(Mystring[8])
# print(Mystring[9])
# print(Mystring[10])
# Formas de concatenar
print(f"My favorite game is {Mystring}") # 3.6 -> Version mas actual
print("My favorite game is " + Mystring)
print("My favorite game is {0}".format(Mystring))
print(f"{Otherstring} in spanish is Humanidad") | mystring = 'Castlevania'
mystring2 = 'C a s t l e v a n i a'
otherstring = 'Mankind'
print(f'My favorite game is {Mystring}')
print('My favorite game is ' + Mystring)
print('My favorite game is {0}'.format(Mystring))
print(f'{Otherstring} in spanish is Humanidad') |
# define the paths to the image directory
IMAGES_PATH = "../dataset/kaggle_dogs_vs_cats/train"
# since we do not have the validation data or acces to the testing
# labels we need to take a number of images from the training
# data and use them instead
NUM_CLASSES = 2
NUM_VALIDATION_IMAGES = 1250 * NUM_CLASSES
NUM_TEST_IMAGES = 1250 * NUM_CLASSES
# define the path to the output training, validation, and testing
# HDF5 files
TRAIN_HDF5 = "../dataset/kaggle_dogs_vs_cats/hdf5/train.hdf5"
VALIDATION_HDF5 = "../dataset/kaggle_dogs_vs_cats/hdf5/validation.hdf5"
TEST_HDF5 = "../dataset/kaggle_dogs_vs_cats/hdf5/test.hdf5"
# path to the output model file
MODEL_PATH = "output/alexnet_dogs_vs_cats.model"
# define the path to the dataset mean
DATASET_MEAN = "output/dogs_vs_cats_mean.json"
# define the path to the output directory used for storing plots,
# classification reports, etc
OUTPUT_PATH = "output" | images_path = '../dataset/kaggle_dogs_vs_cats/train'
num_classes = 2
num_validation_images = 1250 * NUM_CLASSES
num_test_images = 1250 * NUM_CLASSES
train_hdf5 = '../dataset/kaggle_dogs_vs_cats/hdf5/train.hdf5'
validation_hdf5 = '../dataset/kaggle_dogs_vs_cats/hdf5/validation.hdf5'
test_hdf5 = '../dataset/kaggle_dogs_vs_cats/hdf5/test.hdf5'
model_path = 'output/alexnet_dogs_vs_cats.model'
dataset_mean = 'output/dogs_vs_cats_mean.json'
output_path = 'output' |
##
## code
##
pmLookup = {
b'00': 'Film',
b'01': 'Cinema',
b'02': 'Animation',
b'03': 'Natural',
b'04': 'HDR10',
b'06': 'THX',
b'0B': 'FrameAdaptHDR',
b'0C': 'User1',
b'0D': 'User2',
b'0E': 'User3',
b'0F': 'User4',
b'10': 'User5',
b'11': 'User6',
b'14': 'HLG',
b'16': 'PanaPQ'
}
def getPictureMode(bin):
if bin in pmLookup:
return pmLookup[bin]
else:
return 'Unknown' + bin.decode('ascii') | pm_lookup = {b'00': 'Film', b'01': 'Cinema', b'02': 'Animation', b'03': 'Natural', b'04': 'HDR10', b'06': 'THX', b'0B': 'FrameAdaptHDR', b'0C': 'User1', b'0D': 'User2', b'0E': 'User3', b'0F': 'User4', b'10': 'User5', b'11': 'User6', b'14': 'HLG', b'16': 'PanaPQ'}
def get_picture_mode(bin):
if bin in pmLookup:
return pmLookup[bin]
else:
return 'Unknown' + bin.decode('ascii') |
# Copyright 2019 The Vearch Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# ==============================================================================
#Definition of parameters
# Define which port the web runs on
# you can view the result of searching by
# inputting http://yourIP:show_port in your web browse
port = 4101
# Batch Extraction Features, you can modify batch_size by
# your GPU Memory
batch_size = 16
# The name of model for web platform, Currently only one model is supported
detect_model = "yolo3"
extract_model = "vgg16"
# Define gpu parameters,
gpu = "0"
# Define deployment address of vearch
ip_address = "http://****"
ip_scheme = ip_address + ":443/space"
ip_insert = ip_address + ":80"
database_name = "test"
table_name = "test"
| port = 4101
batch_size = 16
detect_model = 'yolo3'
extract_model = 'vgg16'
gpu = '0'
ip_address = 'http://****'
ip_scheme = ip_address + ':443/space'
ip_insert = ip_address + ':80'
database_name = 'test'
table_name = 'test' |
class Test_2020(object):
def __init__(self):
self.a = 1
print(f'success')
def add_a(self):
self.a += 1
| class Test_2020(object):
def __init__(self):
self.a = 1
print(f'success')
def add_a(self):
self.a += 1 |
#
# PySNMP MIB module ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:01:40 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)
#
softentIND1Vfc, = mibBuilder.importSymbols("ALCATEL-IND1-BASE", "softentIND1Vfc")
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint, ConstraintsIntersection, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "SingleValueConstraint")
InterfaceIndex, = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup")
Integer32, IpAddress, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, Bits, ModuleIdentity, TimeTicks, Counter64, Unsigned32, Counter32, NotificationType, ObjectIdentity, Gauge32, iso = mibBuilder.importSymbols("SNMPv2-SMI", "Integer32", "IpAddress", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "Bits", "ModuleIdentity", "TimeTicks", "Counter64", "Unsigned32", "Counter32", "NotificationType", "ObjectIdentity", "Gauge32", "iso")
TextualConvention, RowStatus, DisplayString, DateAndTime = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "RowStatus", "DisplayString", "DateAndTime")
alcatelIND1VfcMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1))
alcatelIND1VfcMIB.setRevisions(('2010-03-15 00:00',))
if mibBuilder.loadTexts: alcatelIND1VfcMIB.setLastUpdated('201003150000Z')
if mibBuilder.loadTexts: alcatelIND1VfcMIB.setOrganization('Alcatel-Lucent')
alcatelIND1VfcMIBObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1))
if mibBuilder.loadTexts: alcatelIND1VfcMIBObjects.setStatus('current')
alcatelIND1VfcMIBConformance = ObjectIdentity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2))
if mibBuilder.loadTexts: alcatelIND1VfcMIBConformance.setStatus('current')
alcatelIND1VfcMIBGroups = ObjectIdentity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1))
if mibBuilder.loadTexts: alcatelIND1VfcMIBGroups.setStatus('current')
alcatelIND1VfcMIBCompliances = ObjectIdentity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 2))
if mibBuilder.loadTexts: alcatelIND1VfcMIBCompliances.setStatus('current')
alaVfcConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1))
alaVfcConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 2))
class VfcEnableState(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1))
namedValues = NamedValues(("disabled", 0), ("enabled", 1))
class VfcBwLimitType(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("mbits", 1), ("percentage", 2))
class VfcProfileType(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("wredProfile", 1), ("qsetProfile", 2), ("qProfile", 3))
class VfcQueueType(TextualConvention, Integer32):
status = 'current'
class VfcQsetAction(TextualConvention, Integer32):
status = 'deprecated'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))
namedValues = NamedValues(("default", 0), ("override", 1), ("detach", 2), ("revert", 3))
class VfcQsapList(TextualConvention, OctetString):
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 128)
class VfcQsapType(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))
namedValues = NamedValues(("all", 1), ("slot", 2), ("slotport", 3), ("lag", 4), ("ipif", 5), ("lsp", 6), ("sbind", 7), ("sap", 8))
class VfcSchedulingMethod(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("strictPriority", 1), ("queueSpecified", 2))
class VfcWfqMode(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("werr", 1), ("wrr", 2))
class VfcProfileMode(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("nonDcb", 1), ("dcb", 2))
alaVfcWREDProfileTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1), )
if mibBuilder.loadTexts: alaVfcWREDProfileTable.setStatus('current')
alaVfcWREDProfileEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1), ).setIndexNames((0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPId"))
if mibBuilder.loadTexts: alaVfcWREDProfileEntry.setStatus('current')
alaVfcWRPId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)))
if mibBuilder.loadTexts: alaVfcWRPId.setStatus('current')
alaVfcWRPAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 2), VfcEnableState().clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaVfcWRPAdminState.setStatus('deprecated')
alaVfcWRPName = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 3), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPName.setStatus('current')
alaVfcWRPGreenMinThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(90)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPGreenMinThreshold.setStatus('current')
alaVfcWRPGreenMaxThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(90)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPGreenMaxThreshold.setStatus('current')
alaVfcWRPGreenMaxDropProbability = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(10)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPGreenMaxDropProbability.setStatus('current')
alaVfcWRPGreenGain = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 15)).clone(7)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPGreenGain.setStatus('current')
alaVfcWRPYellowMinThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(90)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPYellowMinThreshold.setStatus('current')
alaVfcWRPYellowMaxThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 9), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(90)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPYellowMaxThreshold.setStatus('current')
alaVfcWRPYellowMaxDropProbability = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(10)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPYellowMaxDropProbability.setStatus('current')
alaVfcWRPYellowGain = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 11), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 15)).clone(7)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPYellowGain.setStatus('current')
alaVfcWRPRedMinThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 12), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(90)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPRedMinThreshold.setStatus('current')
alaVfcWRPRedMaxThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 13), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(90)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPRedMaxThreshold.setStatus('current')
alaVfcWRPRedMaxDropProbability = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 14), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(10)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPRedMaxDropProbability.setStatus('current')
alaVfcWRPRedGain = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 15), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 15)).clone(7)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPRedGain.setStatus('current')
alaVfcWRPStatsAdmin = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 16), VfcEnableState().clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPStatsAdmin.setStatus('deprecated')
alaVfcWRPAttachmentCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 17), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 16384))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPAttachmentCount.setStatus('current')
alaVfcWRPMTU = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 18), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 16384))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPMTU.setStatus('current')
alaVfcWRPLastChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 19), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPLastChange.setStatus('current')
alaVfcWRPRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 20), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcWRPRowStatus.setStatus('current')
alaVfcQsetProfileTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2), )
if mibBuilder.loadTexts: alaVfcQsetProfileTable.setStatus('current')
alaVfcQsetProfileEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1), ).setIndexNames((0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPId"))
if mibBuilder.loadTexts: alaVfcQsetProfileEntry.setStatus('current')
alaVfcQSPId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 8)))
if mibBuilder.loadTexts: alaVfcQSPId.setStatus('current')
alaVfcQSPAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 2), VfcEnableState().clone('enabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPAdminState.setStatus('deprecated')
alaVfcQSPName = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 3), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPName.setStatus('current')
alaVfcQSPType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("static", 1), ("dynamic", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPType.setStatus('current')
alaVfcQSPTemplateId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPTemplateId.setStatus('current')
alaVfcQSPTemplateName = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 6), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPTemplateName.setStatus('current')
alaVfcQSPBandwidthLimitType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 7), VfcBwLimitType().clone('percentage')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPBandwidthLimitType.setStatus('current')
alaVfcQSPBandwidthLimitValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 8), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPBandwidthLimitValue.setStatus('current')
alaVfcQSPQueueCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 9), Unsigned32().clone(8)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPQueueCount.setStatus('current')
alaVfcQSPWRPId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPWRPId.setStatus('current')
alaVfcQSPWRPName = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 11), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPWRPName.setStatus('current')
alaVfcQSPWRPAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 12), VfcEnableState().clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaVfcQSPWRPAdminState.setStatus('deprecated')
alaVfcQSPSchedulingMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 13), VfcSchedulingMethod().clone('strictPriority')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPSchedulingMethod.setStatus('current')
alaVfcQSPStatsAdmin = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 14), VfcEnableState().clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: alaVfcQSPStatsAdmin.setStatus('deprecated')
alaVfcQSPAttachmentCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 15), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPAttachmentCount.setStatus('current')
alaVfcQSPLastChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 16), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPLastChange.setStatus('current')
alaVfcQSPRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 17), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSPRowStatus.setStatus('current')
alaVfcQsetInstanceTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3), )
if mibBuilder.loadTexts: alaVfcQsetInstanceTable.setStatus('current')
alaVfcQsetInstanceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1), ).setIndexNames((0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetId"))
if mibBuilder.loadTexts: alaVfcQsetInstanceEntry.setStatus('current')
alaVfcQsetId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 1), Unsigned32())
if mibBuilder.loadTexts: alaVfcQsetId.setStatus('current')
alaVfcQsetQsapId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetQsapId.setStatus('current')
alaVfcQsetAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 3), VfcEnableState().clone('enabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsetAdminState.setStatus('deprecated')
alaVfcQsetOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 4), VfcEnableState().clone('enabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetOperState.setStatus('deprecated')
alaVfcQsetQSPId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsetQSPId.setStatus('current')
alaVfcQsetQSPName = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 6), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsetQSPName.setStatus('current')
alaVfcQsetOperBandwidthLimitType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 7), VfcBwLimitType().clone('percentage')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetOperBandwidthLimitType.setStatus('current')
alaVfcQsetOperBandwidthLimitValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 8), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetOperBandwidthLimitValue.setStatus('current')
alaVfcQsetBandwidthLimitType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 9), VfcBwLimitType().clone('percentage')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetBandwidthLimitType.setStatus('deprecated')
alaVfcQsetBandwidthLimitValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 10), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetBandwidthLimitValue.setStatus('deprecated')
alaVfcQsetQueueCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 11), Unsigned32().clone(8)).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetQueueCount.setStatus('deprecated')
alaVfcQsetWRPId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 12), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetWRPId.setStatus('deprecated')
alaVfcQsetWRPName = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 13), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetWRPName.setStatus('deprecated')
alaVfcQsetWRPAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 14), VfcEnableState().clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsetWRPAdminState.setStatus('current')
alaVfcQsetWRPOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 15), VfcEnableState().clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetWRPOperState.setStatus('current')
alaVfcQsetSchedulingMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 16), VfcSchedulingMethod().clone('strictPriority')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetSchedulingMethod.setStatus('deprecated')
alaVfcQsetStatsAdmin = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 17), VfcEnableState().clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsetStatsAdmin.setStatus('current')
alaVfcQsetStatsOper = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 18), VfcEnableState().clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetStatsOper.setStatus('current')
alaVfcQsetLastChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 19), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetLastChange.setStatus('current')
alaVfcQsetStatsClear = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 20), VfcEnableState().clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsetStatsClear.setStatus('current')
alaVfcQsetStatsInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 21), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(10, 300))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsetStatsInterval.setStatus('current')
alaVfcQsetMisconfigured = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 22), VfcEnableState().clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetMisconfigured.setStatus('current')
alaVfcQsetMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 23), VfcProfileMode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsetMode.setStatus('current')
alaVfcQProfileTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4), )
if mibBuilder.loadTexts: alaVfcQProfileTable.setStatus('current')
alaVfcQProfileEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1), ).setIndexNames((0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPQSPId"), (0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPQId"))
if mibBuilder.loadTexts: alaVfcQProfileEntry.setStatus('current')
alaVfcQPQSPId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 8)))
if mibBuilder.loadTexts: alaVfcQPQSPId.setStatus('current')
alaVfcQPQId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 8)))
if mibBuilder.loadTexts: alaVfcQPQId.setStatus('current')
alaVfcQPAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 3), VfcEnableState().clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPAdminState.setStatus('deprecated')
alaVfcQPWRPId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPWRPId.setStatus('current')
alaVfcQPWRPName = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 5), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPWRPName.setStatus('current')
alaVfcQPWRPAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 6), VfcEnableState().clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPWRPAdminState.setStatus('deprecated')
alaVfcQPQSPName = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 7), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPQSPName.setStatus('current')
alaVfcQPTrafficClass = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPTrafficClass.setStatus('current')
alaVfcQPQType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 9), VfcQueueType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPQType.setStatus('current')
alaVfcQPCIRBandwidthLimitType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 10), VfcBwLimitType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPCIRBandwidthLimitType.setStatus('current')
alaVfcQPCIRBandwidthLimitValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 11), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPCIRBandwidthLimitValue.setStatus('current')
alaVfcQPPIRBandwidthLimitType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 12), VfcBwLimitType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPPIRBandwidthLimitType.setStatus('current')
alaVfcQPPIRBandwidthLimitValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 13), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPPIRBandwidthLimitValue.setStatus('current')
alaVfcQPStatsAdmin = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 14), VfcEnableState().clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPStatsAdmin.setStatus('deprecated')
alaVfcQPCbs = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 15), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPCbs.setStatus('current')
alaVfcQPMbs = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 16), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPMbs.setStatus('current')
alaVfcQPLastChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 17), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPLastChange.setStatus('current')
alaVfcQPWfqWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 18), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPWfqWeight.setStatus('current')
alaVfcQPWfqMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 19), VfcWfqMode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQPWfqMode.setStatus('current')
alaVfcQInstanceTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5), )
if mibBuilder.loadTexts: alaVfcQInstanceTable.setStatus('current')
alaVfcQInstanceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1), ).setIndexNames((0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceQsiId"), (0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceQId"))
if mibBuilder.loadTexts: alaVfcQInstanceEntry.setStatus('current')
alaVfcQInstanceQsiId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 1), Unsigned32())
if mibBuilder.loadTexts: alaVfcQInstanceQsiId.setStatus('current')
alaVfcQInstanceQId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 8)))
if mibBuilder.loadTexts: alaVfcQInstanceQId.setStatus('current')
alaVfcQInstanceQsapId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceQsapId.setStatus('deprecated')
alaVfcQInstanceQSPId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceQSPId.setStatus('deprecated')
alaVfcQInstanceQSPName = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 5), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceQSPName.setStatus('deprecated')
alaVfcQInstanceAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 6), VfcEnableState().clone('enabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQInstanceAdminState.setStatus('deprecated')
alaVfcQInstanceOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 7), VfcEnableState().clone('enabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceOperState.setStatus('deprecated')
alaVfcQInstanceWRPAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 8), VfcEnableState().clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQInstanceWRPAdminState.setStatus('current')
alaVfcQInstanceWRPOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 9), VfcEnableState().clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceWRPOperState.setStatus('current')
alaVfcQInstanceWRPId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceWRPId.setStatus('deprecated')
alaVfcQInstanceWRPName = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 11), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceWRPName.setStatus('deprecated')
alaVfcQInstanceCIRBandwidthLimitType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 12), VfcBwLimitType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceCIRBandwidthLimitType.setStatus('deprecated')
alaVfcQInstanceCIRBandwidthLimitValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 13), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceCIRBandwidthLimitValue.setStatus('deprecated')
alaVfcQInstancePIRBandwidthLimitType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 14), VfcBwLimitType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstancePIRBandwidthLimitType.setStatus('deprecated')
alaVfcQInstancePIRBandwidthLimitValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 15), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstancePIRBandwidthLimitValue.setStatus('deprecated')
alaVfcQInstanceCIROperationalBandwidthLimitType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 16), VfcBwLimitType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceCIROperationalBandwidthLimitType.setStatus('current')
alaVfcQInstanceCIROperationalBandwidthLimitValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 17), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceCIROperationalBandwidthLimitValue.setStatus('current')
alaVfcQInstancePIROperationalBandwidthLimitType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 18), VfcBwLimitType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstancePIROperationalBandwidthLimitType.setStatus('current')
alaVfcQInstancePIROperationalBandwidthLimitValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 19), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstancePIROperationalBandwidthLimitValue.setStatus('current')
alaVfcQInstanceStatsAdmin = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 20), VfcEnableState().clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQInstanceStatsAdmin.setStatus('deprecated')
alaVfcQInstanceStatsOper = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 21), VfcEnableState().clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceStatsOper.setStatus('deprecated')
alaVfcQInstancePacketsEnqueued = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 22), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstancePacketsEnqueued.setStatus('current')
alaVfcQInstanceBytesEnqueued = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 23), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceBytesEnqueued.setStatus('current')
alaVfcQInstancePacketsDequeued = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 24), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstancePacketsDequeued.setStatus('deprecated')
alaVfcQInstanceBytesDequeued = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 25), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceBytesDequeued.setStatus('deprecated')
alaVfcQInstancePacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 26), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstancePacketsDropped.setStatus('current')
alaVfcQInstanceBytesDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 27), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceBytesDropped.setStatus('current')
alaVfcQInstanceGreenPacketsAccepted = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 28), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceGreenPacketsAccepted.setStatus('current')
alaVfcQInstanceGreenBytesAccepted = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 29), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceGreenBytesAccepted.setStatus('current')
alaVfcQInstanceGreenPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 30), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceGreenPacketsDropped.setStatus('current')
alaVfcQInstanceGreenBytesDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 31), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceGreenBytesDropped.setStatus('current')
alaVfcQInstanceYellowPacketsAccepted = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 32), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceYellowPacketsAccepted.setStatus('current')
alaVfcQInstanceYellowBytesAccepted = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 33), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceYellowBytesAccepted.setStatus('current')
alaVfcQInstanceYellowPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 34), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceYellowPacketsDropped.setStatus('current')
alaVfcQInstanceYellowBytesDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 35), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceYellowBytesDropped.setStatus('current')
alaVfcQInstanceRedPacketsAccepted = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 36), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceRedPacketsAccepted.setStatus('current')
alaVfcQInstanceRedBytesAccepted = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 37), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceRedBytesAccepted.setStatus('current')
alaVfcQInstanceRedPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 38), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceRedPacketsDropped.setStatus('current')
alaVfcQInstanceRedBytesDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 39), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceRedBytesDropped.setStatus('current')
alaVfcQInstanceLastChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 40), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQInstanceLastChange.setStatus('current')
alaVfcQInstanceStatsClear = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 41), VfcEnableState().clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQInstanceStatsClear.setStatus('deprecated')
alaVfcQsapTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6), )
if mibBuilder.loadTexts: alaVfcQsapTable.setStatus('current')
alaVfcQsapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1), ).setIndexNames((0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapId"))
if mibBuilder.loadTexts: alaVfcQsapEntry.setStatus('current')
alaVfcQsapId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 1), Unsigned32())
if mibBuilder.loadTexts: alaVfcQsapId.setStatus('current')
alaVfcQsapAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 2), VfcEnableState().clone('enabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsapAdminState.setStatus('deprecated')
alaVfcQsapType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 3), VfcQsapType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsapType.setStatus('current')
alaVfcQsapValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsapValue.setStatus('current')
alaVfcQsapQSPId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsapQSPId.setStatus('deprecated')
alaVfcQsapQSPName = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 6), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsapQSPName.setStatus('deprecated')
alaVfcQsapWRPAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 7), VfcEnableState().clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsapWRPAdminState.setStatus('deprecated')
alaVfcQsapStatsAdmin = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 8), VfcEnableState().clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsapStatsAdmin.setStatus('deprecated')
alaVfcQsapBandwidthLimitType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 9), VfcBwLimitType().clone('percentage')).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsapBandwidthLimitType.setStatus('current')
alaVfcQsapBandwidthLimitValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 10), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsapBandwidthLimitValue.setStatus('current')
alaVfcQsapClearStats = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("default", 0), ("reset", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsapClearStats.setStatus('deprecated')
alaVfcQsapQpId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 12), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsapQpId.setStatus('deprecated')
alaVfcQsapAction = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 13), VfcQsetAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaVfcQsapAction.setStatus('deprecated')
alaVfcQsapLastChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 14), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsapLastChange.setStatus('current')
alaVfcQsapParent = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 15), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQsapParent.setStatus('current')
alaVfcProfileIndexLookupTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 7), )
if mibBuilder.loadTexts: alaVfcProfileIndexLookupTable.setStatus('current')
alaVfcProfileIndexLookupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 7, 1), ).setIndexNames((0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcProfileType"), (1, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcProfileName"))
if mibBuilder.loadTexts: alaVfcProfileIndexLookupEntry.setStatus('current')
alaVfcProfileType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 7, 1, 1), VfcProfileType())
if mibBuilder.loadTexts: alaVfcProfileType.setStatus('current')
alaVfcProfileName = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 7, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 32)))
if mibBuilder.loadTexts: alaVfcProfileName.setStatus('current')
alaVfcProfileId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 7, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcProfileId.setStatus('current')
alaVfcProfileQsapLookupTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 8), )
if mibBuilder.loadTexts: alaVfcProfileQsapLookupTable.setStatus('current')
alaVfcProfileQsapLookupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 8, 1), ).setIndexNames((0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcProfileQsapLookupType"), (0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcProfileQsapLookupId"), (0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcProfileQsapLookupValue"))
if mibBuilder.loadTexts: alaVfcProfileQsapLookupEntry.setStatus('current')
alaVfcProfileQsapLookupType = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 8, 1, 1), VfcProfileType())
if mibBuilder.loadTexts: alaVfcProfileQsapLookupType.setStatus('current')
alaVfcProfileQsapLookupId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 8, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 64)))
if mibBuilder.loadTexts: alaVfcProfileQsapLookupId.setStatus('current')
alaVfcProfileQsapLookupValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 8, 1, 3), Unsigned32())
if mibBuilder.loadTexts: alaVfcProfileQsapLookupValue.setStatus('current')
alaVfcProfileQsapLookupList = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 8, 1, 4), VfcQsapList()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcProfileQsapLookupList.setStatus('current')
alaVfcQSIQsapLookupTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 9), )
if mibBuilder.loadTexts: alaVfcQSIQsapLookupTable.setStatus('current')
alaVfcQSIQsapLookupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 9, 1), ).setIndexNames((0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSIQsapLookupQsetId"), (0, "ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSIQsapLookupValue"))
if mibBuilder.loadTexts: alaVfcQSIQsapLookupEntry.setStatus('current')
alaVfcQSIQsapLookupQsetId = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 9, 1, 1), Unsigned32())
if mibBuilder.loadTexts: alaVfcQSIQsapLookupQsetId.setStatus('current')
alaVfcQSIQsapLookupValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 9, 1, 2), Unsigned32())
if mibBuilder.loadTexts: alaVfcQSIQsapLookupValue.setStatus('current')
alaVfcQSIQsapLookupList = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 9, 1, 3), VfcQsapList()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcQSIQsapLookupList.setStatus('current')
alaVfcStatisticsCollectionInterval = MibScalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 10), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcStatisticsCollectionInterval.setStatus('deprecated')
alaVfcStatisticsCollectionDuration = MibScalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 11), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaVfcStatisticsCollectionDuration.setStatus('deprecated')
alcatelIND1VfcMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 2, 1)).setObjects(("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWREDProfileGroup"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetProfileGroup"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetInstanceGroup"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQProfileGroup"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceGroup"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapGroup"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcProfileIndexLookupGroup"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcProfileQsapLookupGroup"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSIQsapLookupGroup"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcStatsGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1VfcMIBCompliance = alcatelIND1VfcMIBCompliance.setStatus('current')
alaVfcWREDProfileGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 1)).setObjects(("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPAdminState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPName"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPGreenMinThreshold"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPGreenMaxThreshold"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPGreenMaxDropProbability"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPGreenGain"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPYellowMinThreshold"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPYellowMaxThreshold"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPYellowMaxDropProbability"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPYellowGain"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPRedMinThreshold"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPRedMaxThreshold"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPRedMaxDropProbability"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPRedGain"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPStatsAdmin"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPAttachmentCount"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPMTU"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPLastChange"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcWRPRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alaVfcWREDProfileGroup = alaVfcWREDProfileGroup.setStatus('current')
alaVfcQsetProfileGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 2)).setObjects(("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPAdminState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPName"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPTemplateId"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPTemplateName"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPBandwidthLimitType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPBandwidthLimitValue"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPQueueCount"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPWRPId"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPWRPName"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPWRPAdminState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPSchedulingMethod"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPStatsAdmin"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPAttachmentCount"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPLastChange"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSPRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alaVfcQsetProfileGroup = alaVfcQsetProfileGroup.setStatus('current')
alaVfcQsetInstanceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 3)).setObjects(("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetQsapId"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetAdminState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetOperState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetQSPId"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetQSPName"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetBandwidthLimitType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetBandwidthLimitValue"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetOperBandwidthLimitType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetOperBandwidthLimitValue"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetQueueCount"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetWRPId"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetWRPName"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetWRPAdminState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetWRPOperState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetSchedulingMethod"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetStatsAdmin"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetStatsOper"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetLastChange"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetStatsClear"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetStatsInterval"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetMisconfigured"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsetMode"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alaVfcQsetInstanceGroup = alaVfcQsetInstanceGroup.setStatus('current')
alaVfcQProfileGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 4)).setObjects(("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPAdminState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPWRPId"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPWRPName"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPWRPAdminState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPQSPName"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPTrafficClass"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPQType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPCIRBandwidthLimitType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPCIRBandwidthLimitValue"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPPIRBandwidthLimitType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPPIRBandwidthLimitValue"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPStatsAdmin"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPCbs"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPMbs"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPLastChange"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPWfqWeight"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQPWfqMode"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alaVfcQProfileGroup = alaVfcQProfileGroup.setStatus('current')
alaVfcQInstanceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 5)).setObjects(("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceQsapId"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceQSPId"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceQSPName"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceAdminState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceOperState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceWRPAdminState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceWRPOperState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceWRPId"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceWRPName"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceCIRBandwidthLimitType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceCIRBandwidthLimitValue"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstancePIRBandwidthLimitType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstancePIRBandwidthLimitValue"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceCIROperationalBandwidthLimitType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceCIROperationalBandwidthLimitValue"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstancePIROperationalBandwidthLimitType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstancePIROperationalBandwidthLimitValue"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceStatsAdmin"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceStatsOper"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstancePacketsEnqueued"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceBytesEnqueued"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstancePacketsDequeued"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceBytesDequeued"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstancePacketsDropped"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceBytesDropped"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceGreenPacketsAccepted"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceGreenBytesAccepted"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceGreenPacketsDropped"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceGreenBytesDropped"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceYellowPacketsAccepted"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceYellowBytesAccepted"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceYellowPacketsDropped"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceYellowBytesDropped"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceRedPacketsAccepted"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceRedBytesAccepted"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceRedPacketsDropped"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceRedBytesDropped"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceLastChange"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQInstanceStatsClear"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alaVfcQInstanceGroup = alaVfcQInstanceGroup.setStatus('current')
alaVfcQsapGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 6)).setObjects(("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapAdminState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapValue"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapQSPId"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapQSPName"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapWRPAdminState"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapStatsAdmin"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapBandwidthLimitType"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapBandwidthLimitValue"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapClearStats"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapQpId"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapAction"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapLastChange"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQsapParent"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alaVfcQsapGroup = alaVfcQsapGroup.setStatus('current')
alaVfcProfileIndexLookupGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 7)).setObjects(("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcProfileId"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alaVfcProfileIndexLookupGroup = alaVfcProfileIndexLookupGroup.setStatus('current')
alaVfcProfileQsapLookupGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 8)).setObjects(("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcProfileQsapLookupList"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alaVfcProfileQsapLookupGroup = alaVfcProfileQsapLookupGroup.setStatus('current')
alaVfcQSIQsapLookupGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 9)).setObjects(("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcQSIQsapLookupList"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alaVfcQSIQsapLookupGroup = alaVfcQSIQsapLookupGroup.setStatus('current')
alaVfcStatsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 10)).setObjects(("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcStatisticsCollectionInterval"), ("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", "alaVfcStatisticsCollectionDuration"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alaVfcStatsGroup = alaVfcStatsGroup.setStatus('deprecated')
mibBuilder.exportSymbols("ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB", alaVfcQPWfqMode=alaVfcQPWfqMode, alcatelIND1VfcMIBCompliances=alcatelIND1VfcMIBCompliances, alaVfcConfig=alaVfcConfig, alaVfcQInstanceYellowPacketsDropped=alaVfcQInstanceYellowPacketsDropped, alaVfcQSPTemplateId=alaVfcQSPTemplateId, alaVfcQPTrafficClass=alaVfcQPTrafficClass, alaVfcQInstanceQId=alaVfcQInstanceQId, alaVfcQInstanceGreenPacketsDropped=alaVfcQInstanceGreenPacketsDropped, alaVfcWRPMTU=alaVfcWRPMTU, alaVfcQInstanceYellowPacketsAccepted=alaVfcQInstanceYellowPacketsAccepted, VfcEnableState=VfcEnableState, alaVfcQsetProfileEntry=alaVfcQsetProfileEntry, alaVfcWRPRedMinThreshold=alaVfcWRPRedMinThreshold, alaVfcQInstanceGreenBytesAccepted=alaVfcQInstanceGreenBytesAccepted, alaVfcQInstanceStatsClear=alaVfcQInstanceStatsClear, alaVfcQsapId=alaVfcQsapId, alaVfcQSPLastChange=alaVfcQSPLastChange, VfcQsetAction=VfcQsetAction, alaVfcQsapGroup=alaVfcQsapGroup, alaVfcQPWfqWeight=alaVfcQPWfqWeight, alaVfcQsetStatsInterval=alaVfcQsetStatsInterval, alaVfcProfileType=alaVfcProfileType, alaVfcQsapStatsAdmin=alaVfcQsapStatsAdmin, alaVfcWRPYellowMaxDropProbability=alaVfcWRPYellowMaxDropProbability, alaVfcQPStatsAdmin=alaVfcQPStatsAdmin, alaVfcQsetProfileGroup=alaVfcQsetProfileGroup, alaVfcQsetBandwidthLimitType=alaVfcQsetBandwidthLimitType, alaVfcProfileIndexLookupEntry=alaVfcProfileIndexLookupEntry, alaVfcQPAdminState=alaVfcQPAdminState, alaVfcWRPGreenGain=alaVfcWRPGreenGain, alaVfcQInstanceWRPOperState=alaVfcQInstanceWRPOperState, alaVfcQInstanceCIROperationalBandwidthLimitValue=alaVfcQInstanceCIROperationalBandwidthLimitValue, alaVfcQInstanceBytesDropped=alaVfcQInstanceBytesDropped, alaVfcQPPIRBandwidthLimitType=alaVfcQPPIRBandwidthLimitType, alaVfcQsapBandwidthLimitType=alaVfcQsapBandwidthLimitType, alaVfcQSPId=alaVfcQSPId, alaVfcProfileQsapLookupType=alaVfcProfileQsapLookupType, alaVfcQInstanceLastChange=alaVfcQInstanceLastChange, alaVfcQInstanceCIRBandwidthLimitValue=alaVfcQInstanceCIRBandwidthLimitValue, alaVfcQInstanceOperState=alaVfcQInstanceOperState, alaVfcQSIQsapLookupEntry=alaVfcQSIQsapLookupEntry, alaVfcQInstancePIROperationalBandwidthLimitType=alaVfcQInstancePIROperationalBandwidthLimitType, alaVfcQSPName=alaVfcQSPName, alaVfcQInstanceWRPId=alaVfcQInstanceWRPId, alcatelIND1VfcMIBConformance=alcatelIND1VfcMIBConformance, alaVfcWREDProfileGroup=alaVfcWREDProfileGroup, alaVfcQPPIRBandwidthLimitValue=alaVfcQPPIRBandwidthLimitValue, alaVfcQPQSPName=alaVfcQPQSPName, alaVfcQInstancePIROperationalBandwidthLimitValue=alaVfcQInstancePIROperationalBandwidthLimitValue, alaVfcProfileId=alaVfcProfileId, alaVfcWRPAttachmentCount=alaVfcWRPAttachmentCount, alaVfcQsetMisconfigured=alaVfcQsetMisconfigured, alaVfcQInstanceGreenBytesDropped=alaVfcQInstanceGreenBytesDropped, alaVfcWRPGreenMaxDropProbability=alaVfcWRPGreenMaxDropProbability, alaVfcQsapEntry=alaVfcQsapEntry, alaVfcQSIQsapLookupList=alaVfcQSIQsapLookupList, alaVfcQProfileEntry=alaVfcQProfileEntry, alaVfcQInstanceEntry=alaVfcQInstanceEntry, alaVfcWRPGreenMinThreshold=alaVfcWRPGreenMinThreshold, alaVfcQSPWRPName=alaVfcQSPWRPName, alaVfcQsetQSPName=alaVfcQsetQSPName, VfcProfileMode=VfcProfileMode, alaVfcWRPRedMaxThreshold=alaVfcWRPRedMaxThreshold, alaVfcQInstancePacketsDropped=alaVfcQInstancePacketsDropped, alaVfcWRPLastChange=alaVfcWRPLastChange, alaVfcQsapType=alaVfcQsapType, alaVfcQSPWRPId=alaVfcQSPWRPId, alaVfcQsetWRPAdminState=alaVfcQsetWRPAdminState, alaVfcProfileQsapLookupEntry=alaVfcProfileQsapLookupEntry, alaVfcStatsGroup=alaVfcStatsGroup, alaVfcWREDProfileTable=alaVfcWREDProfileTable, alaVfcQsetQsapId=alaVfcQsetQsapId, alaVfcQInstanceGreenPacketsAccepted=alaVfcQInstanceGreenPacketsAccepted, alaVfcQsetBandwidthLimitValue=alaVfcQsetBandwidthLimitValue, alaVfcQsetInstanceGroup=alaVfcQsetInstanceGroup, alaVfcQSPRowStatus=alaVfcQSPRowStatus, alaVfcQsetQSPId=alaVfcQsetQSPId, alaVfcQSPWRPAdminState=alaVfcQSPWRPAdminState, alaVfcQInstanceYellowBytesAccepted=alaVfcQInstanceYellowBytesAccepted, alcatelIND1VfcMIBGroups=alcatelIND1VfcMIBGroups, alaVfcProfileQsapLookupId=alaVfcProfileQsapLookupId, alaVfcQsetQueueCount=alaVfcQsetQueueCount, alaVfcQPWRPAdminState=alaVfcQPWRPAdminState, alaVfcQInstanceRedBytesAccepted=alaVfcQInstanceRedBytesAccepted, alaVfcQInstanceAdminState=alaVfcQInstanceAdminState, alaVfcQsapWRPAdminState=alaVfcQsapWRPAdminState, alaVfcQsetOperState=alaVfcQsetOperState, alaVfcQSPQueueCount=alaVfcQSPQueueCount, alaVfcQsetOperBandwidthLimitValue=alaVfcQsetOperBandwidthLimitValue, alaVfcQInstancePIRBandwidthLimitType=alaVfcQInstancePIRBandwidthLimitType, alaVfcQSIQsapLookupTable=alaVfcQSIQsapLookupTable, alaVfcProfileQsapLookupList=alaVfcProfileQsapLookupList, alaVfcQSPAdminState=alaVfcQSPAdminState, alaVfcQsetStatsOper=alaVfcQsetStatsOper, alaVfcQsetInstanceEntry=alaVfcQsetInstanceEntry, alaVfcQsetStatsAdmin=alaVfcQsetStatsAdmin, VfcProfileType=VfcProfileType, alaVfcQSPBandwidthLimitType=alaVfcQSPBandwidthLimitType, alaVfcQPCbs=alaVfcQPCbs, alaVfcQsapQSPName=alaVfcQsapQSPName, alaVfcWRPAdminState=alaVfcWRPAdminState, alaVfcQsapLastChange=alaVfcQsapLastChange, VfcQueueType=VfcQueueType, alaVfcWREDProfileEntry=alaVfcWREDProfileEntry, alaVfcQSPBandwidthLimitValue=alaVfcQSPBandwidthLimitValue, alaVfcQPWRPId=alaVfcQPWRPId, alaVfcQsapValue=alaVfcQsapValue, alaVfcQInstanceGroup=alaVfcQInstanceGroup, alaVfcQInstanceQSPName=alaVfcQInstanceQSPName, alaVfcQInstanceStatsAdmin=alaVfcQInstanceStatsAdmin, alaVfcQInstancePacketsEnqueued=alaVfcQInstancePacketsEnqueued, VfcSchedulingMethod=VfcSchedulingMethod, alaVfcQSIQsapLookupQsetId=alaVfcQSIQsapLookupQsetId, alaVfcQSPAttachmentCount=alaVfcQSPAttachmentCount, alaVfcQSIQsapLookupGroup=alaVfcQSIQsapLookupGroup, alaVfcQInstanceStatsOper=alaVfcQInstanceStatsOper, alaVfcWRPRedMaxDropProbability=alaVfcWRPRedMaxDropProbability, alaVfcQInstanceBytesEnqueued=alaVfcQInstanceBytesEnqueued, alaVfcQsapParent=alaVfcQsapParent, alaVfcWRPRedGain=alaVfcWRPRedGain, alaVfcQPLastChange=alaVfcQPLastChange, alaVfcQsetId=alaVfcQsetId, alaVfcQSPTemplateName=alaVfcQSPTemplateName, VfcQsapType=VfcQsapType, alaVfcStatisticsCollectionDuration=alaVfcStatisticsCollectionDuration, alaVfcQInstanceRedBytesDropped=alaVfcQInstanceRedBytesDropped, alaVfcProfileQsapLookupGroup=alaVfcProfileQsapLookupGroup, alaVfcQPQId=alaVfcQPQId, alaVfcQPCIRBandwidthLimitType=alaVfcQPCIRBandwidthLimitType, alaVfcQsetProfileTable=alaVfcQsetProfileTable, alaVfcQsetStatsClear=alaVfcQsetStatsClear, alaVfcQsetAdminState=alaVfcQsetAdminState, alaVfcQsetWRPOperState=alaVfcQsetWRPOperState, alaVfcProfileQsapLookupTable=alaVfcProfileQsapLookupTable, alaVfcQInstanceYellowBytesDropped=alaVfcQInstanceYellowBytesDropped, alcatelIND1VfcMIB=alcatelIND1VfcMIB, alaVfcQsapQSPId=alaVfcQsapQSPId, alaVfcQPMbs=alaVfcQPMbs, alaVfcQsetSchedulingMethod=alaVfcQsetSchedulingMethod, alaVfcProfileIndexLookupGroup=alaVfcProfileIndexLookupGroup, alcatelIND1VfcMIBObjects=alcatelIND1VfcMIBObjects, alaVfcWRPYellowGain=alaVfcWRPYellowGain, alaVfcWRPGreenMaxThreshold=alaVfcWRPGreenMaxThreshold, alaVfcWRPYellowMaxThreshold=alaVfcWRPYellowMaxThreshold, alaVfcQsetWRPName=alaVfcQsetWRPName, alaVfcQPQType=alaVfcQPQType, alaVfcQPWRPName=alaVfcQPWRPName, alaVfcQInstanceWRPName=alaVfcQInstanceWRPName, alaVfcQInstanceCIRBandwidthLimitType=alaVfcQInstanceCIRBandwidthLimitType, alaVfcQInstanceCIROperationalBandwidthLimitType=alaVfcQInstanceCIROperationalBandwidthLimitType, alaVfcWRPName=alaVfcWRPName, alaVfcQPCIRBandwidthLimitValue=alaVfcQPCIRBandwidthLimitValue, alaVfcQsetOperBandwidthLimitType=alaVfcQsetOperBandwidthLimitType, alaVfcQSIQsapLookupValue=alaVfcQSIQsapLookupValue, alaVfcQInstanceRedPacketsAccepted=alaVfcQInstanceRedPacketsAccepted, alcatelIND1VfcMIBCompliance=alcatelIND1VfcMIBCompliance, alaVfcQInstanceTable=alaVfcQInstanceTable, alaVfcWRPId=alaVfcWRPId, alaVfcQSPSchedulingMethod=alaVfcQSPSchedulingMethod, alaVfcQSPStatsAdmin=alaVfcQSPStatsAdmin, alaVfcStatisticsCollectionInterval=alaVfcStatisticsCollectionInterval, alaVfcQInstancePIRBandwidthLimitValue=alaVfcQInstancePIRBandwidthLimitValue, VfcQsapList=VfcQsapList, alaVfcProfileQsapLookupValue=alaVfcProfileQsapLookupValue, alaVfcQsapQpId=alaVfcQsapQpId, alaVfcQsapTable=alaVfcQsapTable, VfcWfqMode=VfcWfqMode, alaVfcQsetMode=alaVfcQsetMode, alaVfcWRPStatsAdmin=alaVfcWRPStatsAdmin, alaVfcQsetWRPId=alaVfcQsetWRPId, alaVfcQPQSPId=alaVfcQPQSPId, alaVfcQInstanceQSPId=alaVfcQInstanceQSPId, alaVfcQsapClearStats=alaVfcQsapClearStats, alaVfcQSPType=alaVfcQSPType, alaVfcWRPYellowMinThreshold=alaVfcWRPYellowMinThreshold, alaVfcProfileIndexLookupTable=alaVfcProfileIndexLookupTable, alaVfcQInstanceQsapId=alaVfcQInstanceQsapId, alaVfcQsetInstanceTable=alaVfcQsetInstanceTable, alaVfcQsapAction=alaVfcQsapAction, alaVfcConformance=alaVfcConformance, alaVfcQsapAdminState=alaVfcQsapAdminState, alaVfcQInstanceQsiId=alaVfcQInstanceQsiId, alaVfcProfileName=alaVfcProfileName, alaVfcQInstanceWRPAdminState=alaVfcQInstanceWRPAdminState, alaVfcQInstanceBytesDequeued=alaVfcQInstanceBytesDequeued, alaVfcQProfileTable=alaVfcQProfileTable, alaVfcQInstancePacketsDequeued=alaVfcQInstancePacketsDequeued, VfcBwLimitType=VfcBwLimitType, alaVfcQsapBandwidthLimitValue=alaVfcQsapBandwidthLimitValue, alaVfcWRPRowStatus=alaVfcWRPRowStatus, PYSNMP_MODULE_ID=alcatelIND1VfcMIB, alaVfcQProfileGroup=alaVfcQProfileGroup, alaVfcQInstanceRedPacketsDropped=alaVfcQInstanceRedPacketsDropped, alaVfcQsetLastChange=alaVfcQsetLastChange)
| (softent_ind1_vfc,) = mibBuilder.importSymbols('ALCATEL-IND1-BASE', 'softentIND1Vfc')
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, value_range_constraint, value_size_constraint, constraints_intersection, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint')
(interface_index,) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndex')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup')
(integer32, ip_address, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier, bits, module_identity, time_ticks, counter64, unsigned32, counter32, notification_type, object_identity, gauge32, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'Integer32', 'IpAddress', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier', 'Bits', 'ModuleIdentity', 'TimeTicks', 'Counter64', 'Unsigned32', 'Counter32', 'NotificationType', 'ObjectIdentity', 'Gauge32', 'iso')
(textual_convention, row_status, display_string, date_and_time) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'RowStatus', 'DisplayString', 'DateAndTime')
alcatel_ind1_vfc_mib = module_identity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1))
alcatelIND1VfcMIB.setRevisions(('2010-03-15 00:00',))
if mibBuilder.loadTexts:
alcatelIND1VfcMIB.setLastUpdated('201003150000Z')
if mibBuilder.loadTexts:
alcatelIND1VfcMIB.setOrganization('Alcatel-Lucent')
alcatel_ind1_vfc_mib_objects = object_identity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1))
if mibBuilder.loadTexts:
alcatelIND1VfcMIBObjects.setStatus('current')
alcatel_ind1_vfc_mib_conformance = object_identity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2))
if mibBuilder.loadTexts:
alcatelIND1VfcMIBConformance.setStatus('current')
alcatel_ind1_vfc_mib_groups = object_identity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1))
if mibBuilder.loadTexts:
alcatelIND1VfcMIBGroups.setStatus('current')
alcatel_ind1_vfc_mib_compliances = object_identity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 2))
if mibBuilder.loadTexts:
alcatelIND1VfcMIBCompliances.setStatus('current')
ala_vfc_config = mib_identifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1))
ala_vfc_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 2))
class Vfcenablestate(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1))
named_values = named_values(('disabled', 0), ('enabled', 1))
class Vfcbwlimittype(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('mbits', 1), ('percentage', 2))
class Vfcprofiletype(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('wredProfile', 1), ('qsetProfile', 2), ('qProfile', 3))
class Vfcqueuetype(TextualConvention, Integer32):
status = 'current'
class Vfcqsetaction(TextualConvention, Integer32):
status = 'deprecated'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3))
named_values = named_values(('default', 0), ('override', 1), ('detach', 2), ('revert', 3))
class Vfcqsaplist(TextualConvention, OctetString):
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 128)
class Vfcqsaptype(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))
named_values = named_values(('all', 1), ('slot', 2), ('slotport', 3), ('lag', 4), ('ipif', 5), ('lsp', 6), ('sbind', 7), ('sap', 8))
class Vfcschedulingmethod(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('strictPriority', 1), ('queueSpecified', 2))
class Vfcwfqmode(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('werr', 1), ('wrr', 2))
class Vfcprofilemode(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('nonDcb', 1), ('dcb', 2))
ala_vfc_wred_profile_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1))
if mibBuilder.loadTexts:
alaVfcWREDProfileTable.setStatus('current')
ala_vfc_wred_profile_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1)).setIndexNames((0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPId'))
if mibBuilder.loadTexts:
alaVfcWREDProfileEntry.setStatus('current')
ala_vfc_wrp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 16)))
if mibBuilder.loadTexts:
alaVfcWRPId.setStatus('current')
ala_vfc_wrp_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 2), vfc_enable_state().clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaVfcWRPAdminState.setStatus('deprecated')
ala_vfc_wrp_name = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 3), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPName.setStatus('current')
ala_vfc_wrp_green_min_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(90)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPGreenMinThreshold.setStatus('current')
ala_vfc_wrp_green_max_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(90)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPGreenMaxThreshold.setStatus('current')
ala_vfc_wrp_green_max_drop_probability = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(10)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPGreenMaxDropProbability.setStatus('current')
ala_vfc_wrp_green_gain = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 15)).clone(7)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPGreenGain.setStatus('current')
ala_vfc_wrp_yellow_min_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(90)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPYellowMinThreshold.setStatus('current')
ala_vfc_wrp_yellow_max_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 9), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(90)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPYellowMaxThreshold.setStatus('current')
ala_vfc_wrp_yellow_max_drop_probability = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(10)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPYellowMaxDropProbability.setStatus('current')
ala_vfc_wrp_yellow_gain = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 11), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 15)).clone(7)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPYellowGain.setStatus('current')
ala_vfc_wrp_red_min_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 12), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(90)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPRedMinThreshold.setStatus('current')
ala_vfc_wrp_red_max_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 13), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(90)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPRedMaxThreshold.setStatus('current')
ala_vfc_wrp_red_max_drop_probability = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 14), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(10)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPRedMaxDropProbability.setStatus('current')
ala_vfc_wrp_red_gain = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 15), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 15)).clone(7)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPRedGain.setStatus('current')
ala_vfc_wrp_stats_admin = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 16), vfc_enable_state().clone('disabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPStatsAdmin.setStatus('deprecated')
ala_vfc_wrp_attachment_count = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 17), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 16384))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPAttachmentCount.setStatus('current')
ala_vfc_wrpmtu = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 18), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 16384))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPMTU.setStatus('current')
ala_vfc_wrp_last_change = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 19), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPLastChange.setStatus('current')
ala_vfc_wrp_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 1, 1, 20), row_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcWRPRowStatus.setStatus('current')
ala_vfc_qset_profile_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2))
if mibBuilder.loadTexts:
alaVfcQsetProfileTable.setStatus('current')
ala_vfc_qset_profile_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1)).setIndexNames((0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPId'))
if mibBuilder.loadTexts:
alaVfcQsetProfileEntry.setStatus('current')
ala_vfc_qsp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 8)))
if mibBuilder.loadTexts:
alaVfcQSPId.setStatus('current')
ala_vfc_qsp_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 2), vfc_enable_state().clone('enabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPAdminState.setStatus('deprecated')
ala_vfc_qsp_name = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 3), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPName.setStatus('current')
ala_vfc_qsp_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('static', 1), ('dynamic', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPType.setStatus('current')
ala_vfc_qsp_template_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPTemplateId.setStatus('current')
ala_vfc_qsp_template_name = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 6), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPTemplateName.setStatus('current')
ala_vfc_qsp_bandwidth_limit_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 7), vfc_bw_limit_type().clone('percentage')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPBandwidthLimitType.setStatus('current')
ala_vfc_qsp_bandwidth_limit_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 8), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPBandwidthLimitValue.setStatus('current')
ala_vfc_qsp_queue_count = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 9), unsigned32().clone(8)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPQueueCount.setStatus('current')
ala_vfc_qspwrp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPWRPId.setStatus('current')
ala_vfc_qspwrp_name = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 11), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPWRPName.setStatus('current')
ala_vfc_qspwrp_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 12), vfc_enable_state().clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaVfcQSPWRPAdminState.setStatus('deprecated')
ala_vfc_qsp_scheduling_method = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 13), vfc_scheduling_method().clone('strictPriority')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPSchedulingMethod.setStatus('current')
ala_vfc_qsp_stats_admin = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 14), vfc_enable_state().clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
alaVfcQSPStatsAdmin.setStatus('deprecated')
ala_vfc_qsp_attachment_count = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 15), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPAttachmentCount.setStatus('current')
ala_vfc_qsp_last_change = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 16), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPLastChange.setStatus('current')
ala_vfc_qsp_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 2, 1, 17), row_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSPRowStatus.setStatus('current')
ala_vfc_qset_instance_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3))
if mibBuilder.loadTexts:
alaVfcQsetInstanceTable.setStatus('current')
ala_vfc_qset_instance_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1)).setIndexNames((0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetId'))
if mibBuilder.loadTexts:
alaVfcQsetInstanceEntry.setStatus('current')
ala_vfc_qset_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 1), unsigned32())
if mibBuilder.loadTexts:
alaVfcQsetId.setStatus('current')
ala_vfc_qset_qsap_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetQsapId.setStatus('current')
ala_vfc_qset_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 3), vfc_enable_state().clone('enabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsetAdminState.setStatus('deprecated')
ala_vfc_qset_oper_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 4), vfc_enable_state().clone('enabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetOperState.setStatus('deprecated')
ala_vfc_qset_qsp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsetQSPId.setStatus('current')
ala_vfc_qset_qsp_name = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 6), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsetQSPName.setStatus('current')
ala_vfc_qset_oper_bandwidth_limit_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 7), vfc_bw_limit_type().clone('percentage')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetOperBandwidthLimitType.setStatus('current')
ala_vfc_qset_oper_bandwidth_limit_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 8), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetOperBandwidthLimitValue.setStatus('current')
ala_vfc_qset_bandwidth_limit_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 9), vfc_bw_limit_type().clone('percentage')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetBandwidthLimitType.setStatus('deprecated')
ala_vfc_qset_bandwidth_limit_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 10), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetBandwidthLimitValue.setStatus('deprecated')
ala_vfc_qset_queue_count = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 11), unsigned32().clone(8)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetQueueCount.setStatus('deprecated')
ala_vfc_qset_wrp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 12), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetWRPId.setStatus('deprecated')
ala_vfc_qset_wrp_name = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 13), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetWRPName.setStatus('deprecated')
ala_vfc_qset_wrp_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 14), vfc_enable_state().clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsetWRPAdminState.setStatus('current')
ala_vfc_qset_wrp_oper_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 15), vfc_enable_state().clone('disabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetWRPOperState.setStatus('current')
ala_vfc_qset_scheduling_method = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 16), vfc_scheduling_method().clone('strictPriority')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetSchedulingMethod.setStatus('deprecated')
ala_vfc_qset_stats_admin = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 17), vfc_enable_state().clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsetStatsAdmin.setStatus('current')
ala_vfc_qset_stats_oper = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 18), vfc_enable_state().clone('disabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetStatsOper.setStatus('current')
ala_vfc_qset_last_change = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 19), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetLastChange.setStatus('current')
ala_vfc_qset_stats_clear = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 20), vfc_enable_state().clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsetStatsClear.setStatus('current')
ala_vfc_qset_stats_interval = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 21), unsigned32().subtype(subtypeSpec=value_range_constraint(10, 300))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsetStatsInterval.setStatus('current')
ala_vfc_qset_misconfigured = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 22), vfc_enable_state().clone('disabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetMisconfigured.setStatus('current')
ala_vfc_qset_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 3, 1, 23), vfc_profile_mode()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsetMode.setStatus('current')
ala_vfc_q_profile_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4))
if mibBuilder.loadTexts:
alaVfcQProfileTable.setStatus('current')
ala_vfc_q_profile_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1)).setIndexNames((0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPQSPId'), (0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPQId'))
if mibBuilder.loadTexts:
alaVfcQProfileEntry.setStatus('current')
ala_vfc_qpqsp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 8)))
if mibBuilder.loadTexts:
alaVfcQPQSPId.setStatus('current')
ala_vfc_qpq_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 8)))
if mibBuilder.loadTexts:
alaVfcQPQId.setStatus('current')
ala_vfc_qp_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 3), vfc_enable_state().clone('disabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPAdminState.setStatus('deprecated')
ala_vfc_qpwrp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPWRPId.setStatus('current')
ala_vfc_qpwrp_name = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 5), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPWRPName.setStatus('current')
ala_vfc_qpwrp_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 6), vfc_enable_state().clone('disabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPWRPAdminState.setStatus('deprecated')
ala_vfc_qpqsp_name = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 7), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPQSPName.setStatus('current')
ala_vfc_qp_traffic_class = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPTrafficClass.setStatus('current')
ala_vfc_qpq_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 9), vfc_queue_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPQType.setStatus('current')
ala_vfc_qpcir_bandwidth_limit_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 10), vfc_bw_limit_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPCIRBandwidthLimitType.setStatus('current')
ala_vfc_qpcir_bandwidth_limit_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 11), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPCIRBandwidthLimitValue.setStatus('current')
ala_vfc_qppir_bandwidth_limit_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 12), vfc_bw_limit_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPPIRBandwidthLimitType.setStatus('current')
ala_vfc_qppir_bandwidth_limit_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 13), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPPIRBandwidthLimitValue.setStatus('current')
ala_vfc_qp_stats_admin = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 14), vfc_enable_state().clone('disabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPStatsAdmin.setStatus('deprecated')
ala_vfc_qp_cbs = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 15), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPCbs.setStatus('current')
ala_vfc_qp_mbs = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 16), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPMbs.setStatus('current')
ala_vfc_qp_last_change = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 17), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPLastChange.setStatus('current')
ala_vfc_qp_wfq_weight = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 18), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPWfqWeight.setStatus('current')
ala_vfc_qp_wfq_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 4, 1, 19), vfc_wfq_mode()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQPWfqMode.setStatus('current')
ala_vfc_q_instance_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5))
if mibBuilder.loadTexts:
alaVfcQInstanceTable.setStatus('current')
ala_vfc_q_instance_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1)).setIndexNames((0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceQsiId'), (0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceQId'))
if mibBuilder.loadTexts:
alaVfcQInstanceEntry.setStatus('current')
ala_vfc_q_instance_qsi_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 1), unsigned32())
if mibBuilder.loadTexts:
alaVfcQInstanceQsiId.setStatus('current')
ala_vfc_q_instance_q_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 8)))
if mibBuilder.loadTexts:
alaVfcQInstanceQId.setStatus('current')
ala_vfc_q_instance_qsap_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 3), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceQsapId.setStatus('deprecated')
ala_vfc_q_instance_qsp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceQSPId.setStatus('deprecated')
ala_vfc_q_instance_qsp_name = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 5), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceQSPName.setStatus('deprecated')
ala_vfc_q_instance_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 6), vfc_enable_state().clone('enabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQInstanceAdminState.setStatus('deprecated')
ala_vfc_q_instance_oper_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 7), vfc_enable_state().clone('enabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceOperState.setStatus('deprecated')
ala_vfc_q_instance_wrp_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 8), vfc_enable_state().clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQInstanceWRPAdminState.setStatus('current')
ala_vfc_q_instance_wrp_oper_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 9), vfc_enable_state().clone('disabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceWRPOperState.setStatus('current')
ala_vfc_q_instance_wrp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceWRPId.setStatus('deprecated')
ala_vfc_q_instance_wrp_name = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 11), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceWRPName.setStatus('deprecated')
ala_vfc_q_instance_cir_bandwidth_limit_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 12), vfc_bw_limit_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceCIRBandwidthLimitType.setStatus('deprecated')
ala_vfc_q_instance_cir_bandwidth_limit_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 13), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceCIRBandwidthLimitValue.setStatus('deprecated')
ala_vfc_q_instance_pir_bandwidth_limit_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 14), vfc_bw_limit_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstancePIRBandwidthLimitType.setStatus('deprecated')
ala_vfc_q_instance_pir_bandwidth_limit_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 15), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstancePIRBandwidthLimitValue.setStatus('deprecated')
ala_vfc_q_instance_cir_operational_bandwidth_limit_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 16), vfc_bw_limit_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceCIROperationalBandwidthLimitType.setStatus('current')
ala_vfc_q_instance_cir_operational_bandwidth_limit_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 17), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceCIROperationalBandwidthLimitValue.setStatus('current')
ala_vfc_q_instance_pir_operational_bandwidth_limit_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 18), vfc_bw_limit_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstancePIROperationalBandwidthLimitType.setStatus('current')
ala_vfc_q_instance_pir_operational_bandwidth_limit_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 19), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstancePIROperationalBandwidthLimitValue.setStatus('current')
ala_vfc_q_instance_stats_admin = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 20), vfc_enable_state().clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQInstanceStatsAdmin.setStatus('deprecated')
ala_vfc_q_instance_stats_oper = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 21), vfc_enable_state().clone('disabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceStatsOper.setStatus('deprecated')
ala_vfc_q_instance_packets_enqueued = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 22), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstancePacketsEnqueued.setStatus('current')
ala_vfc_q_instance_bytes_enqueued = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 23), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceBytesEnqueued.setStatus('current')
ala_vfc_q_instance_packets_dequeued = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 24), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstancePacketsDequeued.setStatus('deprecated')
ala_vfc_q_instance_bytes_dequeued = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 25), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceBytesDequeued.setStatus('deprecated')
ala_vfc_q_instance_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 26), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstancePacketsDropped.setStatus('current')
ala_vfc_q_instance_bytes_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 27), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceBytesDropped.setStatus('current')
ala_vfc_q_instance_green_packets_accepted = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 28), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceGreenPacketsAccepted.setStatus('current')
ala_vfc_q_instance_green_bytes_accepted = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 29), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceGreenBytesAccepted.setStatus('current')
ala_vfc_q_instance_green_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 30), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceGreenPacketsDropped.setStatus('current')
ala_vfc_q_instance_green_bytes_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 31), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceGreenBytesDropped.setStatus('current')
ala_vfc_q_instance_yellow_packets_accepted = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 32), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceYellowPacketsAccepted.setStatus('current')
ala_vfc_q_instance_yellow_bytes_accepted = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 33), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceYellowBytesAccepted.setStatus('current')
ala_vfc_q_instance_yellow_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 34), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceYellowPacketsDropped.setStatus('current')
ala_vfc_q_instance_yellow_bytes_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 35), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceYellowBytesDropped.setStatus('current')
ala_vfc_q_instance_red_packets_accepted = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 36), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceRedPacketsAccepted.setStatus('current')
ala_vfc_q_instance_red_bytes_accepted = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 37), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceRedBytesAccepted.setStatus('current')
ala_vfc_q_instance_red_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 38), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceRedPacketsDropped.setStatus('current')
ala_vfc_q_instance_red_bytes_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 39), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceRedBytesDropped.setStatus('current')
ala_vfc_q_instance_last_change = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 40), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQInstanceLastChange.setStatus('current')
ala_vfc_q_instance_stats_clear = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 5, 1, 41), vfc_enable_state().clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQInstanceStatsClear.setStatus('deprecated')
ala_vfc_qsap_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6))
if mibBuilder.loadTexts:
alaVfcQsapTable.setStatus('current')
ala_vfc_qsap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1)).setIndexNames((0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapId'))
if mibBuilder.loadTexts:
alaVfcQsapEntry.setStatus('current')
ala_vfc_qsap_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 1), unsigned32())
if mibBuilder.loadTexts:
alaVfcQsapId.setStatus('current')
ala_vfc_qsap_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 2), vfc_enable_state().clone('enabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsapAdminState.setStatus('deprecated')
ala_vfc_qsap_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 3), vfc_qsap_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsapType.setStatus('current')
ala_vfc_qsap_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsapValue.setStatus('current')
ala_vfc_qsap_qsp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsapQSPId.setStatus('deprecated')
ala_vfc_qsap_qsp_name = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 6), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsapQSPName.setStatus('deprecated')
ala_vfc_qsap_wrp_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 7), vfc_enable_state().clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsapWRPAdminState.setStatus('deprecated')
ala_vfc_qsap_stats_admin = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 8), vfc_enable_state().clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsapStatsAdmin.setStatus('deprecated')
ala_vfc_qsap_bandwidth_limit_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 9), vfc_bw_limit_type().clone('percentage')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsapBandwidthLimitType.setStatus('current')
ala_vfc_qsap_bandwidth_limit_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 10), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsapBandwidthLimitValue.setStatus('current')
ala_vfc_qsap_clear_stats = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('default', 0), ('reset', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsapClearStats.setStatus('deprecated')
ala_vfc_qsap_qp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 12), unsigned32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsapQpId.setStatus('deprecated')
ala_vfc_qsap_action = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 13), vfc_qset_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaVfcQsapAction.setStatus('deprecated')
ala_vfc_qsap_last_change = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 14), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsapLastChange.setStatus('current')
ala_vfc_qsap_parent = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 6, 1, 15), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQsapParent.setStatus('current')
ala_vfc_profile_index_lookup_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 7))
if mibBuilder.loadTexts:
alaVfcProfileIndexLookupTable.setStatus('current')
ala_vfc_profile_index_lookup_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 7, 1)).setIndexNames((0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcProfileType'), (1, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcProfileName'))
if mibBuilder.loadTexts:
alaVfcProfileIndexLookupEntry.setStatus('current')
ala_vfc_profile_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 7, 1, 1), vfc_profile_type())
if mibBuilder.loadTexts:
alaVfcProfileType.setStatus('current')
ala_vfc_profile_name = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 7, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 32)))
if mibBuilder.loadTexts:
alaVfcProfileName.setStatus('current')
ala_vfc_profile_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 7, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcProfileId.setStatus('current')
ala_vfc_profile_qsap_lookup_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 8))
if mibBuilder.loadTexts:
alaVfcProfileQsapLookupTable.setStatus('current')
ala_vfc_profile_qsap_lookup_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 8, 1)).setIndexNames((0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcProfileQsapLookupType'), (0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcProfileQsapLookupId'), (0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcProfileQsapLookupValue'))
if mibBuilder.loadTexts:
alaVfcProfileQsapLookupEntry.setStatus('current')
ala_vfc_profile_qsap_lookup_type = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 8, 1, 1), vfc_profile_type())
if mibBuilder.loadTexts:
alaVfcProfileQsapLookupType.setStatus('current')
ala_vfc_profile_qsap_lookup_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 8, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 64)))
if mibBuilder.loadTexts:
alaVfcProfileQsapLookupId.setStatus('current')
ala_vfc_profile_qsap_lookup_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 8, 1, 3), unsigned32())
if mibBuilder.loadTexts:
alaVfcProfileQsapLookupValue.setStatus('current')
ala_vfc_profile_qsap_lookup_list = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 8, 1, 4), vfc_qsap_list()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcProfileQsapLookupList.setStatus('current')
ala_vfc_qsi_qsap_lookup_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 9))
if mibBuilder.loadTexts:
alaVfcQSIQsapLookupTable.setStatus('current')
ala_vfc_qsi_qsap_lookup_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 9, 1)).setIndexNames((0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSIQsapLookupQsetId'), (0, 'ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSIQsapLookupValue'))
if mibBuilder.loadTexts:
alaVfcQSIQsapLookupEntry.setStatus('current')
ala_vfc_qsi_qsap_lookup_qset_id = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 9, 1, 1), unsigned32())
if mibBuilder.loadTexts:
alaVfcQSIQsapLookupQsetId.setStatus('current')
ala_vfc_qsi_qsap_lookup_value = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 9, 1, 2), unsigned32())
if mibBuilder.loadTexts:
alaVfcQSIQsapLookupValue.setStatus('current')
ala_vfc_qsi_qsap_lookup_list = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 9, 1, 3), vfc_qsap_list()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcQSIQsapLookupList.setStatus('current')
ala_vfc_statistics_collection_interval = mib_scalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 10), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcStatisticsCollectionInterval.setStatus('deprecated')
ala_vfc_statistics_collection_duration = mib_scalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 1, 1, 11), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaVfcStatisticsCollectionDuration.setStatus('deprecated')
alcatel_ind1_vfc_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 2, 1)).setObjects(('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWREDProfileGroup'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetProfileGroup'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetInstanceGroup'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQProfileGroup'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceGroup'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapGroup'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcProfileIndexLookupGroup'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcProfileQsapLookupGroup'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSIQsapLookupGroup'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcStatsGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_vfc_mib_compliance = alcatelIND1VfcMIBCompliance.setStatus('current')
ala_vfc_wred_profile_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 1)).setObjects(('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPAdminState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPName'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPGreenMinThreshold'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPGreenMaxThreshold'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPGreenMaxDropProbability'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPGreenGain'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPYellowMinThreshold'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPYellowMaxThreshold'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPYellowMaxDropProbability'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPYellowGain'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPRedMinThreshold'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPRedMaxThreshold'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPRedMaxDropProbability'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPRedGain'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPStatsAdmin'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPAttachmentCount'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPMTU'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPLastChange'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcWRPRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ala_vfc_wred_profile_group = alaVfcWREDProfileGroup.setStatus('current')
ala_vfc_qset_profile_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 2)).setObjects(('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPAdminState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPName'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPTemplateId'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPTemplateName'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPBandwidthLimitType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPBandwidthLimitValue'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPQueueCount'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPWRPId'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPWRPName'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPWRPAdminState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPSchedulingMethod'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPStatsAdmin'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPAttachmentCount'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPLastChange'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSPRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ala_vfc_qset_profile_group = alaVfcQsetProfileGroup.setStatus('current')
ala_vfc_qset_instance_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 3)).setObjects(('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetQsapId'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetAdminState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetOperState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetQSPId'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetQSPName'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetBandwidthLimitType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetBandwidthLimitValue'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetOperBandwidthLimitType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetOperBandwidthLimitValue'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetQueueCount'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetWRPId'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetWRPName'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetWRPAdminState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetWRPOperState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetSchedulingMethod'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetStatsAdmin'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetStatsOper'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetLastChange'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetStatsClear'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetStatsInterval'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetMisconfigured'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsetMode'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ala_vfc_qset_instance_group = alaVfcQsetInstanceGroup.setStatus('current')
ala_vfc_q_profile_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 4)).setObjects(('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPAdminState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPWRPId'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPWRPName'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPWRPAdminState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPQSPName'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPTrafficClass'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPQType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPCIRBandwidthLimitType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPCIRBandwidthLimitValue'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPPIRBandwidthLimitType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPPIRBandwidthLimitValue'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPStatsAdmin'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPCbs'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPMbs'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPLastChange'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPWfqWeight'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQPWfqMode'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ala_vfc_q_profile_group = alaVfcQProfileGroup.setStatus('current')
ala_vfc_q_instance_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 5)).setObjects(('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceQsapId'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceQSPId'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceQSPName'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceAdminState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceOperState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceWRPAdminState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceWRPOperState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceWRPId'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceWRPName'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceCIRBandwidthLimitType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceCIRBandwidthLimitValue'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstancePIRBandwidthLimitType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstancePIRBandwidthLimitValue'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceCIROperationalBandwidthLimitType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceCIROperationalBandwidthLimitValue'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstancePIROperationalBandwidthLimitType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstancePIROperationalBandwidthLimitValue'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceStatsAdmin'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceStatsOper'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstancePacketsEnqueued'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceBytesEnqueued'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstancePacketsDequeued'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceBytesDequeued'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstancePacketsDropped'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceBytesDropped'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceGreenPacketsAccepted'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceGreenBytesAccepted'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceGreenPacketsDropped'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceGreenBytesDropped'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceYellowPacketsAccepted'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceYellowBytesAccepted'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceYellowPacketsDropped'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceYellowBytesDropped'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceRedPacketsAccepted'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceRedBytesAccepted'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceRedPacketsDropped'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceRedBytesDropped'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceLastChange'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQInstanceStatsClear'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ala_vfc_q_instance_group = alaVfcQInstanceGroup.setStatus('current')
ala_vfc_qsap_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 6)).setObjects(('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapAdminState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapValue'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapQSPId'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapQSPName'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapWRPAdminState'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapStatsAdmin'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapBandwidthLimitType'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapBandwidthLimitValue'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapClearStats'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapQpId'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapAction'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapLastChange'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQsapParent'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ala_vfc_qsap_group = alaVfcQsapGroup.setStatus('current')
ala_vfc_profile_index_lookup_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 7)).setObjects(('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcProfileId'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ala_vfc_profile_index_lookup_group = alaVfcProfileIndexLookupGroup.setStatus('current')
ala_vfc_profile_qsap_lookup_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 8)).setObjects(('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcProfileQsapLookupList'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ala_vfc_profile_qsap_lookup_group = alaVfcProfileQsapLookupGroup.setStatus('current')
ala_vfc_qsi_qsap_lookup_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 9)).setObjects(('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcQSIQsapLookupList'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ala_vfc_qsi_qsap_lookup_group = alaVfcQSIQsapLookupGroup.setStatus('current')
ala_vfc_stats_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 61, 1, 2, 1, 10)).setObjects(('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcStatisticsCollectionInterval'), ('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', 'alaVfcStatisticsCollectionDuration'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ala_vfc_stats_group = alaVfcStatsGroup.setStatus('deprecated')
mibBuilder.exportSymbols('ALCATEL-IND1-VIRTUAL-FLOW-CONTROL-MIB', alaVfcQPWfqMode=alaVfcQPWfqMode, alcatelIND1VfcMIBCompliances=alcatelIND1VfcMIBCompliances, alaVfcConfig=alaVfcConfig, alaVfcQInstanceYellowPacketsDropped=alaVfcQInstanceYellowPacketsDropped, alaVfcQSPTemplateId=alaVfcQSPTemplateId, alaVfcQPTrafficClass=alaVfcQPTrafficClass, alaVfcQInstanceQId=alaVfcQInstanceQId, alaVfcQInstanceGreenPacketsDropped=alaVfcQInstanceGreenPacketsDropped, alaVfcWRPMTU=alaVfcWRPMTU, alaVfcQInstanceYellowPacketsAccepted=alaVfcQInstanceYellowPacketsAccepted, VfcEnableState=VfcEnableState, alaVfcQsetProfileEntry=alaVfcQsetProfileEntry, alaVfcWRPRedMinThreshold=alaVfcWRPRedMinThreshold, alaVfcQInstanceGreenBytesAccepted=alaVfcQInstanceGreenBytesAccepted, alaVfcQInstanceStatsClear=alaVfcQInstanceStatsClear, alaVfcQsapId=alaVfcQsapId, alaVfcQSPLastChange=alaVfcQSPLastChange, VfcQsetAction=VfcQsetAction, alaVfcQsapGroup=alaVfcQsapGroup, alaVfcQPWfqWeight=alaVfcQPWfqWeight, alaVfcQsetStatsInterval=alaVfcQsetStatsInterval, alaVfcProfileType=alaVfcProfileType, alaVfcQsapStatsAdmin=alaVfcQsapStatsAdmin, alaVfcWRPYellowMaxDropProbability=alaVfcWRPYellowMaxDropProbability, alaVfcQPStatsAdmin=alaVfcQPStatsAdmin, alaVfcQsetProfileGroup=alaVfcQsetProfileGroup, alaVfcQsetBandwidthLimitType=alaVfcQsetBandwidthLimitType, alaVfcProfileIndexLookupEntry=alaVfcProfileIndexLookupEntry, alaVfcQPAdminState=alaVfcQPAdminState, alaVfcWRPGreenGain=alaVfcWRPGreenGain, alaVfcQInstanceWRPOperState=alaVfcQInstanceWRPOperState, alaVfcQInstanceCIROperationalBandwidthLimitValue=alaVfcQInstanceCIROperationalBandwidthLimitValue, alaVfcQInstanceBytesDropped=alaVfcQInstanceBytesDropped, alaVfcQPPIRBandwidthLimitType=alaVfcQPPIRBandwidthLimitType, alaVfcQsapBandwidthLimitType=alaVfcQsapBandwidthLimitType, alaVfcQSPId=alaVfcQSPId, alaVfcProfileQsapLookupType=alaVfcProfileQsapLookupType, alaVfcQInstanceLastChange=alaVfcQInstanceLastChange, alaVfcQInstanceCIRBandwidthLimitValue=alaVfcQInstanceCIRBandwidthLimitValue, alaVfcQInstanceOperState=alaVfcQInstanceOperState, alaVfcQSIQsapLookupEntry=alaVfcQSIQsapLookupEntry, alaVfcQInstancePIROperationalBandwidthLimitType=alaVfcQInstancePIROperationalBandwidthLimitType, alaVfcQSPName=alaVfcQSPName, alaVfcQInstanceWRPId=alaVfcQInstanceWRPId, alcatelIND1VfcMIBConformance=alcatelIND1VfcMIBConformance, alaVfcWREDProfileGroup=alaVfcWREDProfileGroup, alaVfcQPPIRBandwidthLimitValue=alaVfcQPPIRBandwidthLimitValue, alaVfcQPQSPName=alaVfcQPQSPName, alaVfcQInstancePIROperationalBandwidthLimitValue=alaVfcQInstancePIROperationalBandwidthLimitValue, alaVfcProfileId=alaVfcProfileId, alaVfcWRPAttachmentCount=alaVfcWRPAttachmentCount, alaVfcQsetMisconfigured=alaVfcQsetMisconfigured, alaVfcQInstanceGreenBytesDropped=alaVfcQInstanceGreenBytesDropped, alaVfcWRPGreenMaxDropProbability=alaVfcWRPGreenMaxDropProbability, alaVfcQsapEntry=alaVfcQsapEntry, alaVfcQSIQsapLookupList=alaVfcQSIQsapLookupList, alaVfcQProfileEntry=alaVfcQProfileEntry, alaVfcQInstanceEntry=alaVfcQInstanceEntry, alaVfcWRPGreenMinThreshold=alaVfcWRPGreenMinThreshold, alaVfcQSPWRPName=alaVfcQSPWRPName, alaVfcQsetQSPName=alaVfcQsetQSPName, VfcProfileMode=VfcProfileMode, alaVfcWRPRedMaxThreshold=alaVfcWRPRedMaxThreshold, alaVfcQInstancePacketsDropped=alaVfcQInstancePacketsDropped, alaVfcWRPLastChange=alaVfcWRPLastChange, alaVfcQsapType=alaVfcQsapType, alaVfcQSPWRPId=alaVfcQSPWRPId, alaVfcQsetWRPAdminState=alaVfcQsetWRPAdminState, alaVfcProfileQsapLookupEntry=alaVfcProfileQsapLookupEntry, alaVfcStatsGroup=alaVfcStatsGroup, alaVfcWREDProfileTable=alaVfcWREDProfileTable, alaVfcQsetQsapId=alaVfcQsetQsapId, alaVfcQInstanceGreenPacketsAccepted=alaVfcQInstanceGreenPacketsAccepted, alaVfcQsetBandwidthLimitValue=alaVfcQsetBandwidthLimitValue, alaVfcQsetInstanceGroup=alaVfcQsetInstanceGroup, alaVfcQSPRowStatus=alaVfcQSPRowStatus, alaVfcQsetQSPId=alaVfcQsetQSPId, alaVfcQSPWRPAdminState=alaVfcQSPWRPAdminState, alaVfcQInstanceYellowBytesAccepted=alaVfcQInstanceYellowBytesAccepted, alcatelIND1VfcMIBGroups=alcatelIND1VfcMIBGroups, alaVfcProfileQsapLookupId=alaVfcProfileQsapLookupId, alaVfcQsetQueueCount=alaVfcQsetQueueCount, alaVfcQPWRPAdminState=alaVfcQPWRPAdminState, alaVfcQInstanceRedBytesAccepted=alaVfcQInstanceRedBytesAccepted, alaVfcQInstanceAdminState=alaVfcQInstanceAdminState, alaVfcQsapWRPAdminState=alaVfcQsapWRPAdminState, alaVfcQsetOperState=alaVfcQsetOperState, alaVfcQSPQueueCount=alaVfcQSPQueueCount, alaVfcQsetOperBandwidthLimitValue=alaVfcQsetOperBandwidthLimitValue, alaVfcQInstancePIRBandwidthLimitType=alaVfcQInstancePIRBandwidthLimitType, alaVfcQSIQsapLookupTable=alaVfcQSIQsapLookupTable, alaVfcProfileQsapLookupList=alaVfcProfileQsapLookupList, alaVfcQSPAdminState=alaVfcQSPAdminState, alaVfcQsetStatsOper=alaVfcQsetStatsOper, alaVfcQsetInstanceEntry=alaVfcQsetInstanceEntry, alaVfcQsetStatsAdmin=alaVfcQsetStatsAdmin, VfcProfileType=VfcProfileType, alaVfcQSPBandwidthLimitType=alaVfcQSPBandwidthLimitType, alaVfcQPCbs=alaVfcQPCbs, alaVfcQsapQSPName=alaVfcQsapQSPName, alaVfcWRPAdminState=alaVfcWRPAdminState, alaVfcQsapLastChange=alaVfcQsapLastChange, VfcQueueType=VfcQueueType, alaVfcWREDProfileEntry=alaVfcWREDProfileEntry, alaVfcQSPBandwidthLimitValue=alaVfcQSPBandwidthLimitValue, alaVfcQPWRPId=alaVfcQPWRPId, alaVfcQsapValue=alaVfcQsapValue, alaVfcQInstanceGroup=alaVfcQInstanceGroup, alaVfcQInstanceQSPName=alaVfcQInstanceQSPName, alaVfcQInstanceStatsAdmin=alaVfcQInstanceStatsAdmin, alaVfcQInstancePacketsEnqueued=alaVfcQInstancePacketsEnqueued, VfcSchedulingMethod=VfcSchedulingMethod, alaVfcQSIQsapLookupQsetId=alaVfcQSIQsapLookupQsetId, alaVfcQSPAttachmentCount=alaVfcQSPAttachmentCount, alaVfcQSIQsapLookupGroup=alaVfcQSIQsapLookupGroup, alaVfcQInstanceStatsOper=alaVfcQInstanceStatsOper, alaVfcWRPRedMaxDropProbability=alaVfcWRPRedMaxDropProbability, alaVfcQInstanceBytesEnqueued=alaVfcQInstanceBytesEnqueued, alaVfcQsapParent=alaVfcQsapParent, alaVfcWRPRedGain=alaVfcWRPRedGain, alaVfcQPLastChange=alaVfcQPLastChange, alaVfcQsetId=alaVfcQsetId, alaVfcQSPTemplateName=alaVfcQSPTemplateName, VfcQsapType=VfcQsapType, alaVfcStatisticsCollectionDuration=alaVfcStatisticsCollectionDuration, alaVfcQInstanceRedBytesDropped=alaVfcQInstanceRedBytesDropped, alaVfcProfileQsapLookupGroup=alaVfcProfileQsapLookupGroup, alaVfcQPQId=alaVfcQPQId, alaVfcQPCIRBandwidthLimitType=alaVfcQPCIRBandwidthLimitType, alaVfcQsetProfileTable=alaVfcQsetProfileTable, alaVfcQsetStatsClear=alaVfcQsetStatsClear, alaVfcQsetAdminState=alaVfcQsetAdminState, alaVfcQsetWRPOperState=alaVfcQsetWRPOperState, alaVfcProfileQsapLookupTable=alaVfcProfileQsapLookupTable, alaVfcQInstanceYellowBytesDropped=alaVfcQInstanceYellowBytesDropped, alcatelIND1VfcMIB=alcatelIND1VfcMIB, alaVfcQsapQSPId=alaVfcQsapQSPId, alaVfcQPMbs=alaVfcQPMbs, alaVfcQsetSchedulingMethod=alaVfcQsetSchedulingMethod, alaVfcProfileIndexLookupGroup=alaVfcProfileIndexLookupGroup, alcatelIND1VfcMIBObjects=alcatelIND1VfcMIBObjects, alaVfcWRPYellowGain=alaVfcWRPYellowGain, alaVfcWRPGreenMaxThreshold=alaVfcWRPGreenMaxThreshold, alaVfcWRPYellowMaxThreshold=alaVfcWRPYellowMaxThreshold, alaVfcQsetWRPName=alaVfcQsetWRPName, alaVfcQPQType=alaVfcQPQType, alaVfcQPWRPName=alaVfcQPWRPName, alaVfcQInstanceWRPName=alaVfcQInstanceWRPName, alaVfcQInstanceCIRBandwidthLimitType=alaVfcQInstanceCIRBandwidthLimitType, alaVfcQInstanceCIROperationalBandwidthLimitType=alaVfcQInstanceCIROperationalBandwidthLimitType, alaVfcWRPName=alaVfcWRPName, alaVfcQPCIRBandwidthLimitValue=alaVfcQPCIRBandwidthLimitValue, alaVfcQsetOperBandwidthLimitType=alaVfcQsetOperBandwidthLimitType, alaVfcQSIQsapLookupValue=alaVfcQSIQsapLookupValue, alaVfcQInstanceRedPacketsAccepted=alaVfcQInstanceRedPacketsAccepted, alcatelIND1VfcMIBCompliance=alcatelIND1VfcMIBCompliance, alaVfcQInstanceTable=alaVfcQInstanceTable, alaVfcWRPId=alaVfcWRPId, alaVfcQSPSchedulingMethod=alaVfcQSPSchedulingMethod, alaVfcQSPStatsAdmin=alaVfcQSPStatsAdmin, alaVfcStatisticsCollectionInterval=alaVfcStatisticsCollectionInterval, alaVfcQInstancePIRBandwidthLimitValue=alaVfcQInstancePIRBandwidthLimitValue, VfcQsapList=VfcQsapList, alaVfcProfileQsapLookupValue=alaVfcProfileQsapLookupValue, alaVfcQsapQpId=alaVfcQsapQpId, alaVfcQsapTable=alaVfcQsapTable, VfcWfqMode=VfcWfqMode, alaVfcQsetMode=alaVfcQsetMode, alaVfcWRPStatsAdmin=alaVfcWRPStatsAdmin, alaVfcQsetWRPId=alaVfcQsetWRPId, alaVfcQPQSPId=alaVfcQPQSPId, alaVfcQInstanceQSPId=alaVfcQInstanceQSPId, alaVfcQsapClearStats=alaVfcQsapClearStats, alaVfcQSPType=alaVfcQSPType, alaVfcWRPYellowMinThreshold=alaVfcWRPYellowMinThreshold, alaVfcProfileIndexLookupTable=alaVfcProfileIndexLookupTable, alaVfcQInstanceQsapId=alaVfcQInstanceQsapId, alaVfcQsetInstanceTable=alaVfcQsetInstanceTable, alaVfcQsapAction=alaVfcQsapAction, alaVfcConformance=alaVfcConformance, alaVfcQsapAdminState=alaVfcQsapAdminState, alaVfcQInstanceQsiId=alaVfcQInstanceQsiId, alaVfcProfileName=alaVfcProfileName, alaVfcQInstanceWRPAdminState=alaVfcQInstanceWRPAdminState, alaVfcQInstanceBytesDequeued=alaVfcQInstanceBytesDequeued, alaVfcQProfileTable=alaVfcQProfileTable, alaVfcQInstancePacketsDequeued=alaVfcQInstancePacketsDequeued, VfcBwLimitType=VfcBwLimitType, alaVfcQsapBandwidthLimitValue=alaVfcQsapBandwidthLimitValue, alaVfcWRPRowStatus=alaVfcWRPRowStatus, PYSNMP_MODULE_ID=alcatelIND1VfcMIB, alaVfcQProfileGroup=alaVfcQProfileGroup, alaVfcQInstanceRedPacketsDropped=alaVfcQInstanceRedPacketsDropped, alaVfcQsetLastChange=alaVfcQsetLastChange) |
## While loop
# like if but it indicates the sequence of statements might be executed many times as long as the condition remains true
theSum = 0
data = input("Enter a number: ")
while (data!= ""):
number = float(data)
theSum += number
data = input("Enter a number or enter to quit: ")
print(f"the sum is: {theSum:,.2f}")
## Summation using for loop
theSum = 0
for number in range(1,10001):
theSum += number
print(theSum)
## Summation using while loop
theSum = 0
number = 1 # must explicitly initialize before the loop
while (number < 10001):
theSum += number
number += 1
print(theSum)
## Count down with for loop
for count in range(10):
print(count, end = " ")
## Count down with while loop
count = 10
while (count > 0):
print(count, end = " ")
count -= 1
| the_sum = 0
data = input('Enter a number: ')
while data != '':
number = float(data)
the_sum += number
data = input('Enter a number or enter to quit: ')
print(f'the sum is: {theSum:,.2f}')
the_sum = 0
for number in range(1, 10001):
the_sum += number
print(theSum)
the_sum = 0
number = 1
while number < 10001:
the_sum += number
number += 1
print(theSum)
for count in range(10):
print(count, end=' ')
count = 10
while count > 0:
print(count, end=' ')
count -= 1 |
# -*- coding: utf-8 -*-
API_BASE_URL = 'https://b-api.cardioqvark.ru:1443/'
API_PORT = 1443
CLIENT_CERT_PATH = '/tmp/'
QVARK_CA_CERT_NAME = 'qvark_ca.pem'
| api_base_url = 'https://b-api.cardioqvark.ru:1443/'
api_port = 1443
client_cert_path = '/tmp/'
qvark_ca_cert_name = 'qvark_ca.pem' |
def dynamically_import():
mod = __import__('my_package.my_module', fromlist=['my_class'])
klass = getattr(mod, 'my_class')
if '__main__' == __name__:
dynamically_import()
| def dynamically_import():
mod = __import__('my_package.my_module', fromlist=['my_class'])
klass = getattr(mod, 'my_class')
if '__main__' == __name__:
dynamically_import() |
class Mandatory:
def __init__(self, mandatory1, mandatory2):
self.mandatory1 = mandatory1
self.mandatory2 = mandatory2
def get_args(self):
return self.mandatory1, self.mandatory2
class Defaults:
def __init__(self, mandatory, default1='value', default2=None):
self.mandatory = mandatory
self.default1 = default1
self.default2 = default2
def get_args(self):
return self.mandatory, self.default1, self.default2
class Varargs(Mandatory):
def __init__(self, mandatory, *varargs):
Mandatory.__init__(self, mandatory, ' '.join(str(a) for a in varargs))
class Mixed(Defaults):
def __init__(self, mandatory, default=42, *extra):
Defaults.__init__(self, mandatory, default,
' '.join(str(a) for a in extra))
| class Mandatory:
def __init__(self, mandatory1, mandatory2):
self.mandatory1 = mandatory1
self.mandatory2 = mandatory2
def get_args(self):
return (self.mandatory1, self.mandatory2)
class Defaults:
def __init__(self, mandatory, default1='value', default2=None):
self.mandatory = mandatory
self.default1 = default1
self.default2 = default2
def get_args(self):
return (self.mandatory, self.default1, self.default2)
class Varargs(Mandatory):
def __init__(self, mandatory, *varargs):
Mandatory.__init__(self, mandatory, ' '.join((str(a) for a in varargs)))
class Mixed(Defaults):
def __init__(self, mandatory, default=42, *extra):
Defaults.__init__(self, mandatory, default, ' '.join((str(a) for a in extra))) |
#!/usr/bin/env python3
def apples_and_oranges(pair):
first, second = pair
if first == "apples":
return True
elif second == "oranges":
return True
else:
return False
| def apples_and_oranges(pair):
(first, second) = pair
if first == 'apples':
return True
elif second == 'oranges':
return True
else:
return False |
# 1)
a = [1, 4, 5, 7, 8, -2, 0, -1]
# 2)
print('At index 3:', a[3])
print('At index 5:', a[5])
# 3)
a_sorted = sorted(a, reverse = True)
print('Sorted a:', a_sorted)
# 4)
print('1...3:', a_sorted[1:4])
print('2...6:', a_sorted[2:7])
# 5)
del a_sorted[2:4]
# 6)
print('Sorted a:', a_sorted)
# 7)
b = ['grapes', 'Potatoes', 'tomatoes', 'Orange', 'Lemon', 'Broccoli', 'Carrot', 'Sausages']
# 8)
b_sorted = sorted(b)
print('Sorted b:', b_sorted)
# 9)
c = a[1:4] + b[4:7]
# 10
print('c:', c)
| a = [1, 4, 5, 7, 8, -2, 0, -1]
print('At index 3:', a[3])
print('At index 5:', a[5])
a_sorted = sorted(a, reverse=True)
print('Sorted a:', a_sorted)
print('1...3:', a_sorted[1:4])
print('2...6:', a_sorted[2:7])
del a_sorted[2:4]
print('Sorted a:', a_sorted)
b = ['grapes', 'Potatoes', 'tomatoes', 'Orange', 'Lemon', 'Broccoli', 'Carrot', 'Sausages']
b_sorted = sorted(b)
print('Sorted b:', b_sorted)
c = a[1:4] + b[4:7]
print('c:', c) |
#encoding:utf-8
subreddit = 'PolHumor'
t_channel = '@r_PolHumor'
def send_post(submission, r2t):
return r2t.send_simple(submission)
| subreddit = 'PolHumor'
t_channel = '@r_PolHumor'
def send_post(submission, r2t):
return r2t.send_simple(submission) |
print("this is a test for branching")
print("this is on loopbranch")
#this will be added on the new file with out modifing the code before
l = list()
for i in range(6):
l.append(i)
print(l) | print('this is a test for branching')
print('this is on loopbranch')
l = list()
for i in range(6):
l.append(i)
print(l) |
def show_dict(D):
for i,j in D.items():
print(f"{i}: {j}")
def sort_by_values(D):
L = sorted(D.items(), key=lambda kv: kv[1])
return L | def show_dict(D):
for (i, j) in D.items():
print(f'{i}: {j}')
def sort_by_values(D):
l = sorted(D.items(), key=lambda kv: kv[1])
return L |
# coding = utf-8
# Create date: 2018-10-29
# Author :Bowen Lee
def test_dhcp_hostname(ros_kvm_init, cloud_config_url):
command = 'hostname'
feed_back = 'rancher'
kwargs = dict(cloud_config='{url}test_dncp_hostname.yml'.format(url=cloud_config_url),
is_install_to_hard_drive=True)
tuple_return = ros_kvm_init(**kwargs)
client = tuple_return[0]
stdin, stdout, stderr = client.exec_command(command, timeout=60)
output = stdout.read().decode('utf-8')
assert (feed_back in output)
command_etc = 'cat /etc/hosts'
stdin, stdout, stderr = client.exec_command(command_etc, timeout=60)
output_etc = stdout.read().decode('utf-8')
client.close()
assert (output_etc in output_etc)
| def test_dhcp_hostname(ros_kvm_init, cloud_config_url):
command = 'hostname'
feed_back = 'rancher'
kwargs = dict(cloud_config='{url}test_dncp_hostname.yml'.format(url=cloud_config_url), is_install_to_hard_drive=True)
tuple_return = ros_kvm_init(**kwargs)
client = tuple_return[0]
(stdin, stdout, stderr) = client.exec_command(command, timeout=60)
output = stdout.read().decode('utf-8')
assert feed_back in output
command_etc = 'cat /etc/hosts'
(stdin, stdout, stderr) = client.exec_command(command_etc, timeout=60)
output_etc = stdout.read().decode('utf-8')
client.close()
assert output_etc in output_etc |
condition = 1
while condition < 10:
print(condition)
condition += 1
while True:
print('santhosh')
| condition = 1
while condition < 10:
print(condition)
condition += 1
while True:
print('santhosh') |
class ParsingError(Exception):
pass
class CastError(Exception):
original_exception = None
def __init__(self, exception):
if isinstance(exception, Exception):
message = str(exception)
self.original_exception = exception
else:
message = str(exception)
self.original_exception = None
super().__init__(message)
| class Parsingerror(Exception):
pass
class Casterror(Exception):
original_exception = None
def __init__(self, exception):
if isinstance(exception, Exception):
message = str(exception)
self.original_exception = exception
else:
message = str(exception)
self.original_exception = None
super().__init__(message) |
# dataset settings
dataset_type = 'S3DISSegDataset'
data_root = './data/s3dis/'
class_names = ('ceiling', 'floor', 'wall', 'beam', 'column', 'window', 'door',
'table', 'chair', 'sofa', 'bookcase', 'board', 'clutter')
num_points = 4096
train_area = [1, 2, 3, 4, 6]
test_area = 5
train_pipeline = [
dict(
type='LoadPointsFromFile',
coord_type='DEPTH',
shift_height=False,
use_color=True,
load_dim=6,
use_dim=[0, 1, 2, 3, 4, 5]),
dict(
type='LoadAnnotations3D',
with_bbox_3d=False,
with_label_3d=False,
with_mask_3d=False,
with_seg_3d=True),
dict(
type='PointSegClassMapping',
valid_cat_ids=tuple(range(len(class_names))),
max_cat_id=13),
dict(
type='IndoorPatchPointSample',
num_points=num_points,
block_size=1.0,
sample_rate=1.0,
ignore_index=len(class_names),
use_normalized_coord=True),
dict(type='NormalizePointsColor', color_mean=None),
dict(type='DefaultFormatBundle3D', class_names=class_names),
dict(type='Collect3D', keys=['points', 'pts_semantic_mask'])
]
test_pipeline = [
dict(
type='LoadPointsFromFile',
coord_type='DEPTH',
shift_height=False,
use_color=True,
load_dim=6,
use_dim=[0, 1, 2, 3, 4, 5]),
dict(type='NormalizePointsColor', color_mean=None),
dict(
# a wrapper in order to successfully call test function
# actually we don't perform test-time-aug
type='MultiScaleFlipAug3D',
img_scale=(1333, 800),
pts_scale_ratio=1,
flip=False,
transforms=[
dict(
type='GlobalRotScaleTrans',
rot_range=[0, 0],
scale_ratio_range=[1., 1.],
translation_std=[0, 0, 0]),
dict(
type='RandomFlip3D',
sync_2d=False,
flip_ratio_bev_horizontal=0.0,
flip_ratio_bev_vertical=0.0),
dict(
type='DefaultFormatBundle3D',
class_names=class_names,
with_label=False),
dict(type='Collect3D', keys=['points'])
])
]
# construct a pipeline for data and gt loading in show function
# please keep its loading function consistent with test_pipeline (e.g. client)
# we need to load gt seg_mask!
eval_pipeline = [
dict(
type='LoadPointsFromFile',
coord_type='DEPTH',
shift_height=False,
use_color=True,
load_dim=6,
use_dim=[0, 1, 2, 3, 4, 5]),
dict(
type='LoadAnnotations3D',
with_bbox_3d=False,
with_label_3d=False,
with_mask_3d=False,
with_seg_3d=True),
dict(
type='PointSegClassMapping',
valid_cat_ids=tuple(range(len(class_names))),
max_cat_id=13),
dict(
type='DefaultFormatBundle3D',
with_label=False,
class_names=class_names),
dict(type='Collect3D', keys=['points', 'pts_semantic_mask'])
]
data = dict(
samples_per_gpu=8,
workers_per_gpu=4,
# train on area 1, 2, 3, 4, 6
# test on area 5
train=dict(
type=dataset_type,
data_root=data_root,
ann_files=[
data_root + f's3dis_infos_Area_{i}.pkl' for i in train_area
],
pipeline=train_pipeline,
classes=class_names,
test_mode=False,
ignore_index=len(class_names),
scene_idxs=[
data_root + f'seg_info/Area_{i}_resampled_scene_idxs.npy'
for i in train_area
],
label_weights=[
data_root + f'seg_info/Area_{i}_label_weight.npy'
for i in train_area
]),
val=dict(
type=dataset_type,
data_root=data_root,
ann_files=data_root + f's3dis_infos_Area_{test_area}.pkl',
pipeline=test_pipeline,
classes=class_names,
test_mode=True,
ignore_index=len(class_names),
scene_idxs=data_root +
f'seg_info/Area_{test_area}_resampled_scene_idxs.npy'),
test=dict(
type=dataset_type,
data_root=data_root,
ann_files=data_root + f's3dis_infos_Area_{test_area}.pkl',
pipeline=test_pipeline,
classes=class_names,
test_mode=True,
ignore_index=len(class_names)))
evaluation = dict(pipeline=eval_pipeline)
| dataset_type = 'S3DISSegDataset'
data_root = './data/s3dis/'
class_names = ('ceiling', 'floor', 'wall', 'beam', 'column', 'window', 'door', 'table', 'chair', 'sofa', 'bookcase', 'board', 'clutter')
num_points = 4096
train_area = [1, 2, 3, 4, 6]
test_area = 5
train_pipeline = [dict(type='LoadPointsFromFile', coord_type='DEPTH', shift_height=False, use_color=True, load_dim=6, use_dim=[0, 1, 2, 3, 4, 5]), dict(type='LoadAnnotations3D', with_bbox_3d=False, with_label_3d=False, with_mask_3d=False, with_seg_3d=True), dict(type='PointSegClassMapping', valid_cat_ids=tuple(range(len(class_names))), max_cat_id=13), dict(type='IndoorPatchPointSample', num_points=num_points, block_size=1.0, sample_rate=1.0, ignore_index=len(class_names), use_normalized_coord=True), dict(type='NormalizePointsColor', color_mean=None), dict(type='DefaultFormatBundle3D', class_names=class_names), dict(type='Collect3D', keys=['points', 'pts_semantic_mask'])]
test_pipeline = [dict(type='LoadPointsFromFile', coord_type='DEPTH', shift_height=False, use_color=True, load_dim=6, use_dim=[0, 1, 2, 3, 4, 5]), dict(type='NormalizePointsColor', color_mean=None), dict(type='MultiScaleFlipAug3D', img_scale=(1333, 800), pts_scale_ratio=1, flip=False, transforms=[dict(type='GlobalRotScaleTrans', rot_range=[0, 0], scale_ratio_range=[1.0, 1.0], translation_std=[0, 0, 0]), dict(type='RandomFlip3D', sync_2d=False, flip_ratio_bev_horizontal=0.0, flip_ratio_bev_vertical=0.0), dict(type='DefaultFormatBundle3D', class_names=class_names, with_label=False), dict(type='Collect3D', keys=['points'])])]
eval_pipeline = [dict(type='LoadPointsFromFile', coord_type='DEPTH', shift_height=False, use_color=True, load_dim=6, use_dim=[0, 1, 2, 3, 4, 5]), dict(type='LoadAnnotations3D', with_bbox_3d=False, with_label_3d=False, with_mask_3d=False, with_seg_3d=True), dict(type='PointSegClassMapping', valid_cat_ids=tuple(range(len(class_names))), max_cat_id=13), dict(type='DefaultFormatBundle3D', with_label=False, class_names=class_names), dict(type='Collect3D', keys=['points', 'pts_semantic_mask'])]
data = dict(samples_per_gpu=8, workers_per_gpu=4, train=dict(type=dataset_type, data_root=data_root, ann_files=[data_root + f's3dis_infos_Area_{i}.pkl' for i in train_area], pipeline=train_pipeline, classes=class_names, test_mode=False, ignore_index=len(class_names), scene_idxs=[data_root + f'seg_info/Area_{i}_resampled_scene_idxs.npy' for i in train_area], label_weights=[data_root + f'seg_info/Area_{i}_label_weight.npy' for i in train_area]), val=dict(type=dataset_type, data_root=data_root, ann_files=data_root + f's3dis_infos_Area_{test_area}.pkl', pipeline=test_pipeline, classes=class_names, test_mode=True, ignore_index=len(class_names), scene_idxs=data_root + f'seg_info/Area_{test_area}_resampled_scene_idxs.npy'), test=dict(type=dataset_type, data_root=data_root, ann_files=data_root + f's3dis_infos_Area_{test_area}.pkl', pipeline=test_pipeline, classes=class_names, test_mode=True, ignore_index=len(class_names)))
evaluation = dict(pipeline=eval_pipeline) |
p = int(input("Enter a number: "))
def expand_x_1(p):
if p == 1:
print('Neither composite nor prime')
exit()
elif p < 1 or (p - int(p)) != 0:
print('Invalid Input')
exit()
coefficient = [1]
for i in range(p):
coefficient.append(coefficient[-1] * -(p - i) / (i + 1))
coefficients = coefficient[1: p]
#print(coefficients)
sum = 0 # Finding the sum of all the numbers in the coefficients
for number in coefficients:
int_value = int(number)
abs_number = abs(int_value)
#print(abs_number)
sum += abs_number
#print("Sum:",sum)
if sum % p == 0: # checking whether the number is prime or not
print("{} is a prime".format(p))
else:
print("{} is not a prime".format(p))
expand_x_1(p) | p = int(input('Enter a number: '))
def expand_x_1(p):
if p == 1:
print('Neither composite nor prime')
exit()
elif p < 1 or p - int(p) != 0:
print('Invalid Input')
exit()
coefficient = [1]
for i in range(p):
coefficient.append(coefficient[-1] * -(p - i) / (i + 1))
coefficients = coefficient[1:p]
sum = 0
for number in coefficients:
int_value = int(number)
abs_number = abs(int_value)
sum += abs_number
if sum % p == 0:
print('{} is a prime'.format(p))
else:
print('{} is not a prime'.format(p))
expand_x_1(p) |
class CFG:
random_state = 42
shuffle = True
test_size = 0.3
no_of_fold = 5
use_gpu = False | class Cfg:
random_state = 42
shuffle = True
test_size = 0.3
no_of_fold = 5
use_gpu = False |
def extractJapmtlWordpressCom(item):
'''
Parser for 'japmtl.wordpress.com'
'''
vol, chp, frag, postfix = extractVolChapterFragmentPostfix(item['title'])
if not (chp or vol) or "preview" in item['title'].lower():
return None
tagmap = [
('one day, the engagement was suddenly cancelled. ......my little sister\'s.', 'one day, the engagement was suddenly cancelled. ......my little sister\'s.', 'translated'),
('villainess (?) and my engagement cancellation', 'villainess (?) and my engagement cancellation', 'translated'),
('beloved villain flips the skies', 'beloved villain flips the skies', 'translated'),
('slow life villainess doesn\'t notice the prince\'s fondness', 'slow life villainess doesn\'t notice the prince\'s fondness', 'translated'),
('is the villain not allowed to fall in love?', 'is the villain not allowed to fall in love?', 'translated'),
('PRC', 'PRC', 'translated'),
('Loiterous', 'Loiterous', 'oel'),
]
for tagname, name, tl_type in tagmap:
if tagname in item['tags']:
return buildReleaseMessageWithType(item, name, vol, chp, frag=frag, postfix=postfix, tl_type=tl_type)
return False | def extract_japmtl_wordpress_com(item):
"""
Parser for 'japmtl.wordpress.com'
"""
(vol, chp, frag, postfix) = extract_vol_chapter_fragment_postfix(item['title'])
if not (chp or vol) or 'preview' in item['title'].lower():
return None
tagmap = [("one day, the engagement was suddenly cancelled. ......my little sister's.", "one day, the engagement was suddenly cancelled. ......my little sister's.", 'translated'), ('villainess (?) and my engagement cancellation', 'villainess (?) and my engagement cancellation', 'translated'), ('beloved villain flips the skies', 'beloved villain flips the skies', 'translated'), ("slow life villainess doesn't notice the prince's fondness", "slow life villainess doesn't notice the prince's fondness", 'translated'), ('is the villain not allowed to fall in love?', 'is the villain not allowed to fall in love?', 'translated'), ('PRC', 'PRC', 'translated'), ('Loiterous', 'Loiterous', 'oel')]
for (tagname, name, tl_type) in tagmap:
if tagname in item['tags']:
return build_release_message_with_type(item, name, vol, chp, frag=frag, postfix=postfix, tl_type=tl_type)
return False |
#
# PySNMP MIB module HPN-ICF-DHCPR-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HPN-ICF-DHCPR-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 19:25:26 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, ConstraintsIntersection, SingleValueConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "SingleValueConstraint", "ConstraintsUnion")
hpnicfRhw, = mibBuilder.importSymbols("HPN-ICF-OID-MIB", "hpnicfRhw")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
ModuleCompliance, ObjectGroup, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "ObjectGroup", "NotificationGroup")
ObjectIdentity, Integer32, NotificationType, Unsigned32, Bits, ModuleIdentity, Gauge32, IpAddress, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter64, TimeTicks, MibIdentifier, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "Integer32", "NotificationType", "Unsigned32", "Bits", "ModuleIdentity", "Gauge32", "IpAddress", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter64", "TimeTicks", "MibIdentifier", "Counter32")
TextualConvention, DisplayString, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "RowStatus")
hpnicfDHCPRelayMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1))
hpnicfDHCPRelayMib.setRevisions(('2003-02-12 00:00',))
if mibBuilder.loadTexts: hpnicfDHCPRelayMib.setLastUpdated('200303010000Z')
if mibBuilder.loadTexts: hpnicfDHCPRelayMib.setOrganization('')
hpnicfDHCPRelayMibObject = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1))
hpnicfDHCPRIPTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 1), )
if mibBuilder.loadTexts: hpnicfDHCPRIPTable.setStatus('current')
hpnicfDHCPRIPEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "HPN-ICF-DHCPR-MIB", "hpnicfDHCPRIPAddr"))
if mibBuilder.loadTexts: hpnicfDHCPRIPEntry.setStatus('current')
hpnicfDHCPRIPAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRIPAddr.setStatus('current')
hpnicfDHCPRIPRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 1, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpnicfDHCPRIPRowStatus.setStatus('current')
hpnicfDHCPRSeletAllocateModeTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 2), )
if mibBuilder.loadTexts: hpnicfDHCPRSeletAllocateModeTable.setStatus('current')
hpnicfDHCPRSeletAllocateModeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: hpnicfDHCPRSeletAllocateModeEntry.setStatus('current')
hpnicfDHCPRSelectAllocateMode = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("global", 0), ("interface", 1), ("relay", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfDHCPRSelectAllocateMode.setStatus('current')
hpnicfDHCPRelayCycleStatus = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("on", 0), ("off", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfDHCPRelayCycleStatus.setStatus('current')
hpnicfDHCPRRxBadPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRRxBadPktNum.setStatus('current')
hpnicfDHCPRRxServerPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRRxServerPktNum.setStatus('current')
hpnicfDHCPRTxServerPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRTxServerPktNum.setStatus('current')
hpnicfDHCPRRxClientPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRRxClientPktNum.setStatus('current')
hpnicfDHCPRTxClientPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRTxClientPktNum.setStatus('current')
hpnicfDHCPRTxClientUniPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRTxClientUniPktNum.setStatus('current')
hpnicfDHCPRTxClientBroPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRTxClientBroPktNum.setStatus('current')
hpnicfDHCPRelayDiscoverPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRelayDiscoverPktNum.setStatus('current')
hpnicfDHCPRelayRequestPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRelayRequestPktNum.setStatus('current')
hpnicfDHCPRelayDeclinePktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRelayDeclinePktNum.setStatus('current')
hpnicfDHCPRelayReleasePktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRelayReleasePktNum.setStatus('current')
hpnicfDHCPRelayInformPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRelayInformPktNum.setStatus('current')
hpnicfDHCPRelayOfferPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRelayOfferPktNum.setStatus('current')
hpnicfDHCPRelayAckPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRelayAckPktNum.setStatus('current')
hpnicfDHCPRelayNakPktNum = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 18), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfDHCPRelayNakPktNum.setStatus('current')
hpnicfDHCPRelayStatisticsReset = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("invalid", 0), ("reset", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfDHCPRelayStatisticsReset.setStatus('current')
hpnicfDHCPRelayMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 2))
hpnicfDHCPRelayMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 2, 1))
hpnicfDHCPRelayMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 2, 2))
hpnicfDHCPRelayMIBGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 2, 2, 1)).setObjects(("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRIPAddr"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRIPRowStatus"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRSelectAllocateMode"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRelayCycleStatus"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRRxBadPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRRxServerPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRTxServerPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRRxClientPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRTxClientPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRTxClientUniPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRTxClientBroPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRelayDiscoverPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRelayRequestPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRelayDeclinePktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRelayReleasePktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRelayInformPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRelayOfferPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRelayAckPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRelayNakPktNum"), ("HPN-ICF-DHCPR-MIB", "hpnicfDHCPRelayStatisticsReset"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpnicfDHCPRelayMIBGroup = hpnicfDHCPRelayMIBGroup.setStatus('current')
mibBuilder.exportSymbols("HPN-ICF-DHCPR-MIB", hpnicfDHCPRIPEntry=hpnicfDHCPRIPEntry, hpnicfDHCPRelayMibObject=hpnicfDHCPRelayMibObject, hpnicfDHCPRelayMIBGroup=hpnicfDHCPRelayMIBGroup, hpnicfDHCPRelayMIBConformance=hpnicfDHCPRelayMIBConformance, hpnicfDHCPRRxServerPktNum=hpnicfDHCPRRxServerPktNum, hpnicfDHCPRelayMIBCompliances=hpnicfDHCPRelayMIBCompliances, hpnicfDHCPRelayDiscoverPktNum=hpnicfDHCPRelayDiscoverPktNum, hpnicfDHCPRIPAddr=hpnicfDHCPRIPAddr, PYSNMP_MODULE_ID=hpnicfDHCPRelayMib, hpnicfDHCPRelayAckPktNum=hpnicfDHCPRelayAckPktNum, hpnicfDHCPRRxClientPktNum=hpnicfDHCPRRxClientPktNum, hpnicfDHCPRSeletAllocateModeEntry=hpnicfDHCPRSeletAllocateModeEntry, hpnicfDHCPRelayRequestPktNum=hpnicfDHCPRelayRequestPktNum, hpnicfDHCPRelayMIBGroups=hpnicfDHCPRelayMIBGroups, hpnicfDHCPRelayReleasePktNum=hpnicfDHCPRelayReleasePktNum, hpnicfDHCPRSelectAllocateMode=hpnicfDHCPRSelectAllocateMode, hpnicfDHCPRIPRowStatus=hpnicfDHCPRIPRowStatus, hpnicfDHCPRelayOfferPktNum=hpnicfDHCPRelayOfferPktNum, hpnicfDHCPRTxServerPktNum=hpnicfDHCPRTxServerPktNum, hpnicfDHCPRelayDeclinePktNum=hpnicfDHCPRelayDeclinePktNum, hpnicfDHCPRIPTable=hpnicfDHCPRIPTable, hpnicfDHCPRTxClientBroPktNum=hpnicfDHCPRTxClientBroPktNum, hpnicfDHCPRelayCycleStatus=hpnicfDHCPRelayCycleStatus, hpnicfDHCPRRxBadPktNum=hpnicfDHCPRRxBadPktNum, hpnicfDHCPRelayInformPktNum=hpnicfDHCPRelayInformPktNum, hpnicfDHCPRelayNakPktNum=hpnicfDHCPRelayNakPktNum, hpnicfDHCPRelayMib=hpnicfDHCPRelayMib, hpnicfDHCPRelayStatisticsReset=hpnicfDHCPRelayStatisticsReset, hpnicfDHCPRSeletAllocateModeTable=hpnicfDHCPRSeletAllocateModeTable, hpnicfDHCPRTxClientUniPktNum=hpnicfDHCPRTxClientUniPktNum, hpnicfDHCPRTxClientPktNum=hpnicfDHCPRTxClientPktNum)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, value_size_constraint, constraints_intersection, single_value_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint', 'ConstraintsUnion')
(hpnicf_rhw,) = mibBuilder.importSymbols('HPN-ICF-OID-MIB', 'hpnicfRhw')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(module_compliance, object_group, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'ObjectGroup', 'NotificationGroup')
(object_identity, integer32, notification_type, unsigned32, bits, module_identity, gauge32, ip_address, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, counter64, time_ticks, mib_identifier, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'Integer32', 'NotificationType', 'Unsigned32', 'Bits', 'ModuleIdentity', 'Gauge32', 'IpAddress', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter64', 'TimeTicks', 'MibIdentifier', 'Counter32')
(textual_convention, display_string, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString', 'RowStatus')
hpnicf_dhcp_relay_mib = module_identity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1))
hpnicfDHCPRelayMib.setRevisions(('2003-02-12 00:00',))
if mibBuilder.loadTexts:
hpnicfDHCPRelayMib.setLastUpdated('200303010000Z')
if mibBuilder.loadTexts:
hpnicfDHCPRelayMib.setOrganization('')
hpnicf_dhcp_relay_mib_object = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1))
hpnicf_dhcprip_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 1))
if mibBuilder.loadTexts:
hpnicfDHCPRIPTable.setStatus('current')
hpnicf_dhcprip_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRIPAddr'))
if mibBuilder.loadTexts:
hpnicfDHCPRIPEntry.setStatus('current')
hpnicf_dhcprip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRIPAddr.setStatus('current')
hpnicf_dhcprip_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 1, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpnicfDHCPRIPRowStatus.setStatus('current')
hpnicf_dhcpr_selet_allocate_mode_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 2))
if mibBuilder.loadTexts:
hpnicfDHCPRSeletAllocateModeTable.setStatus('current')
hpnicf_dhcpr_selet_allocate_mode_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
hpnicfDHCPRSeletAllocateModeEntry.setStatus('current')
hpnicf_dhcpr_select_allocate_mode = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('global', 0), ('interface', 1), ('relay', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfDHCPRSelectAllocateMode.setStatus('current')
hpnicf_dhcp_relay_cycle_status = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('on', 0), ('off', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfDHCPRelayCycleStatus.setStatus('current')
hpnicf_dhcpr_rx_bad_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRRxBadPktNum.setStatus('current')
hpnicf_dhcpr_rx_server_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRRxServerPktNum.setStatus('current')
hpnicf_dhcpr_tx_server_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRTxServerPktNum.setStatus('current')
hpnicf_dhcpr_rx_client_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRRxClientPktNum.setStatus('current')
hpnicf_dhcpr_tx_client_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRTxClientPktNum.setStatus('current')
hpnicf_dhcpr_tx_client_uni_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRTxClientUniPktNum.setStatus('current')
hpnicf_dhcpr_tx_client_bro_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRTxClientBroPktNum.setStatus('current')
hpnicf_dhcp_relay_discover_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRelayDiscoverPktNum.setStatus('current')
hpnicf_dhcp_relay_request_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRelayRequestPktNum.setStatus('current')
hpnicf_dhcp_relay_decline_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRelayDeclinePktNum.setStatus('current')
hpnicf_dhcp_relay_release_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRelayReleasePktNum.setStatus('current')
hpnicf_dhcp_relay_inform_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRelayInformPktNum.setStatus('current')
hpnicf_dhcp_relay_offer_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRelayOfferPktNum.setStatus('current')
hpnicf_dhcp_relay_ack_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRelayAckPktNum.setStatus('current')
hpnicf_dhcp_relay_nak_pkt_num = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 18), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfDHCPRelayNakPktNum.setStatus('current')
hpnicf_dhcp_relay_statistics_reset = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('invalid', 0), ('reset', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfDHCPRelayStatisticsReset.setStatus('current')
hpnicf_dhcp_relay_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 2))
hpnicf_dhcp_relay_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 2, 1))
hpnicf_dhcp_relay_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 2, 2))
hpnicf_dhcp_relay_mib_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 1, 2, 2, 1)).setObjects(('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRIPAddr'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRIPRowStatus'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRSelectAllocateMode'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRelayCycleStatus'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRRxBadPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRRxServerPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRTxServerPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRRxClientPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRTxClientPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRTxClientUniPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRTxClientBroPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRelayDiscoverPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRelayRequestPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRelayDeclinePktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRelayReleasePktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRelayInformPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRelayOfferPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRelayAckPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRelayNakPktNum'), ('HPN-ICF-DHCPR-MIB', 'hpnicfDHCPRelayStatisticsReset'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpnicf_dhcp_relay_mib_group = hpnicfDHCPRelayMIBGroup.setStatus('current')
mibBuilder.exportSymbols('HPN-ICF-DHCPR-MIB', hpnicfDHCPRIPEntry=hpnicfDHCPRIPEntry, hpnicfDHCPRelayMibObject=hpnicfDHCPRelayMibObject, hpnicfDHCPRelayMIBGroup=hpnicfDHCPRelayMIBGroup, hpnicfDHCPRelayMIBConformance=hpnicfDHCPRelayMIBConformance, hpnicfDHCPRRxServerPktNum=hpnicfDHCPRRxServerPktNum, hpnicfDHCPRelayMIBCompliances=hpnicfDHCPRelayMIBCompliances, hpnicfDHCPRelayDiscoverPktNum=hpnicfDHCPRelayDiscoverPktNum, hpnicfDHCPRIPAddr=hpnicfDHCPRIPAddr, PYSNMP_MODULE_ID=hpnicfDHCPRelayMib, hpnicfDHCPRelayAckPktNum=hpnicfDHCPRelayAckPktNum, hpnicfDHCPRRxClientPktNum=hpnicfDHCPRRxClientPktNum, hpnicfDHCPRSeletAllocateModeEntry=hpnicfDHCPRSeletAllocateModeEntry, hpnicfDHCPRelayRequestPktNum=hpnicfDHCPRelayRequestPktNum, hpnicfDHCPRelayMIBGroups=hpnicfDHCPRelayMIBGroups, hpnicfDHCPRelayReleasePktNum=hpnicfDHCPRelayReleasePktNum, hpnicfDHCPRSelectAllocateMode=hpnicfDHCPRSelectAllocateMode, hpnicfDHCPRIPRowStatus=hpnicfDHCPRIPRowStatus, hpnicfDHCPRelayOfferPktNum=hpnicfDHCPRelayOfferPktNum, hpnicfDHCPRTxServerPktNum=hpnicfDHCPRTxServerPktNum, hpnicfDHCPRelayDeclinePktNum=hpnicfDHCPRelayDeclinePktNum, hpnicfDHCPRIPTable=hpnicfDHCPRIPTable, hpnicfDHCPRTxClientBroPktNum=hpnicfDHCPRTxClientBroPktNum, hpnicfDHCPRelayCycleStatus=hpnicfDHCPRelayCycleStatus, hpnicfDHCPRRxBadPktNum=hpnicfDHCPRRxBadPktNum, hpnicfDHCPRelayInformPktNum=hpnicfDHCPRelayInformPktNum, hpnicfDHCPRelayNakPktNum=hpnicfDHCPRelayNakPktNum, hpnicfDHCPRelayMib=hpnicfDHCPRelayMib, hpnicfDHCPRelayStatisticsReset=hpnicfDHCPRelayStatisticsReset, hpnicfDHCPRSeletAllocateModeTable=hpnicfDHCPRSeletAllocateModeTable, hpnicfDHCPRTxClientUniPktNum=hpnicfDHCPRTxClientUniPktNum, hpnicfDHCPRTxClientPktNum=hpnicfDHCPRTxClientPktNum) |
def sort_contacts(contacts):
newcontacts=[]
keys = contacts.keys()
for key in sorted(keys):
data = (key, contacts[key][0], contacts[key][1])
newcontacts.append(data)
return newcontacts
contacts = input("Please input the contacts.")
print(sort_contacts(contacts))
| def sort_contacts(contacts):
newcontacts = []
keys = contacts.keys()
for key in sorted(keys):
data = (key, contacts[key][0], contacts[key][1])
newcontacts.append(data)
return newcontacts
contacts = input('Please input the contacts.')
print(sort_contacts(contacts)) |
color = input("Enter a color: ")
plural_noun = input("Enter a plural noun: ")
celebrity = input("Enter the name of a Celebrity: ")
print("Roses are " + color)
print(plural_noun + " are blue")
print("I love " + celebrity)
## Mad Lib 1
date = input("Enter a date: ")
full_name = input("Enter a full name: ")
a_place = input("Enter the name of a place: ")
class_noun = input("Enter a class subject: ")
signature = input("Enter a signature: ")
print("Date: " + date)
print(full_name + " is authorized"),
print("to be at " + a_place)
print("instead of " + class_noun),
print("class.")
print("SIGNED: " + signature)
## Mad Lib 2
noun = input("Enter a noun: ")
object = input("Enter an object: ")
food = input("Enter your least favorite food: ")
bad_things = input("Enter the funniest thing that comes to mind: ")
verb = input("Enter a verb: ")
print(" We Are The Champions")
print("I've taken my " + noun + " out.")
print("And my " + object + " calls")
print("You brought me " + food + " and " + bad_things + " and everything that comes with it")
print("I " + verb + " you all.")
## Mad Lib 3
adjective = input("Enter an adjective: ")
object = input("Enter an object: ")
imaginary_friend = input("Enter the name of an imaginary friend: ")
adjective = input("Enter another adjective: ")
verb = input("Enter a verb: ")
print(" Under The Bridge")
print("Sometimes I feel like " + adjective )
print("I don't have a " + object )
print("Sometimes I feel like my only friend is " + imaginary_friend )
print("The " + adjective + " city ")
print("Lonely as I am, together we " + verb )
## Mad Lib 4
adjective = input("Enter an adjective: ")
adjective = input("Enter another adjective: ")
noun = input("Enter a noun: ")
noun = input("Enter another noun: ")
plural_noun = input("Enter a plural noun: ")
game = input("Enter a game: ")
plural_noun = input("Enter another plural noun: ")
verb = input("Enter a verb ending in 'ing': ")
verb = input("Enter another verb ending in 'ing': ")
plural_noun = input("Enter another plural noun: ")
verb = input("Enter another verb ending in 'ing': ")
noun = input("Enter another noun: ")
plant = input("Enter a plant; ")
body_part = input("Enter a part of the body: ")
place = input("Enter a place: ")
verb = input("Enter another verb ending in 'ing': ")
adjective = input("Enter another adjective: ")
number = input("Enter a number <100: ")
plural_noun = input("Enter another plural noun: ")
print("A vacation is when you take a trip to some " + adjective + " place"),
print(" with you " + adjective + " family.")
print("Usually you go to some place thatis near a/an " + noun ),
print(" or up on a/an " + noun + ".")
print("A good vacation place is one where you can ride " + plural_noun ),
print(" or play " + game + " or go hunting for " + plural_noun + ".")
print("I like to spend my time " + verb + " or " + verb + ".")
print("When parents go on a vacation, they spend their time eating three " + plural_noun + " a day,")
print(" and fathers play golf, and mothers sit around " + verb + ".")
print("Last summer, my little brother fell in a/an " + noun + " and got poison " + plant ),
print(" all over his " + body_part + ".")
print("My family is going to go to (the) " + place + ", and I will practice " + verb + ".")
print("Parents need vacations more than kids because parents are always very " + adjective + " and because they have to work " + number + " hours every day all year making enough " + plural_noun + " to pay for the vacation.")
## Mad Lib 5
name = input("Enter your name: ")
date = input("Enter a date: ")
adjective = input("Enter an adjective: ")
noun = input("Enter a noun: ")
verb = input("Enter a verb in past tense: ")
adverb = input("Enter an adverb: ")
adjective = input("Enter another adjective: ")
noun = input("Enter another noun: ")
noun = input("Enter another noun: ")
adjective = input("Enter another adjective: ")
verb = input("Enter a verb: ")
adverb = input("Enter another adverb: ")
verb = input("Enter another verb in past tense: ")
adjective = input("Enter another adjective: ")
print("Name: " + name + " Date: " + date )
print("Today I went to the zoo. I saw a " + adjective + " " + noun + " jumping up and down in its tree.")
print("He " + verb + " " + adverb + " through the large tunnel that led to its " + adjective + " " + noun + ".")
print("I got some peanuts and passed them through the cage to a gigantic gray " + noun + " towering above my head.")
print("Feeding the animals made me hungry. I went to get a " + adjective + " scoop of ice cream. It filled my stomach.")
print("Afterwards I had to " + verb + " " + adverb + " to catch our bus.")
print("When I got home I " + verb + " my mom for a " + adjective + " day at the zoo.")
## Mad Lib 6
adjective = input("Enter an adjective: ")
adjective = input("Enter another adjective: ")
noun = input("Enter a noun: ")
verb = input("Enter a verb in singular present form: ")
fruit = input("Enter a fruit: ")
noun = input("Enter another noun: ")
fruit = input("Enter another fruit: ")
object = input("Enter an object: ")
animal = input("Enter an animal: ")
adjective = input("Enter another adjective: ")
plural_noun = input("Enter a plural noun: ")
print(" The Rose Family")
print("The rose is a " + adjective + ",")
print("And was always a " + adjective + ".")
print("But the " + noun + " now " + verb )
print("That the " + fruit + " is a " + noun + ",")
print("And the " + fruit + " is, and so is ")
print("The " + object + ", I suppose.")
print("The " + animal + " only knows")
print("What will next prove a rose " + adjective + ".")
print(plural_noun + " , of course, are a rose -")
print("But were always a rose.")
## Mad Lib 7
name = input("Enter a name: ")
date = input("Enter a date: ")
plural_noun = input("Enter a plural noun: ")
plural_noun = input("Enter another plural noun: ")
verb = input("Enter a verb: ")
celebrity = ("Enter the name of a celebrity: ")
noun = input("Enter a noun: ")
ing = input("Enter a verb ending in 'ing': ")
plural_noun = input("Enter another plural noun: ")
noun = input("Enter another noun: ")
plural_noun = input("Enter another plural noun: ")
print("Name: " + name)
print("Date: " + date)
print(" At The Arcade!")
print("When I go to the arcade with my " + plural_noun + " there are lots of games to play.")
print("I spend lots of time there with my friends. In 'Xmen' you can be different " + plural_noun + ".")
print("The point of the game is to " + verb + " every robot.")
print("You also need to save people, and then you can go to the next level. In 'Star Wars' you are " + celebrity + " and you try to destroy every " + noun + ".")
print("In a car racing / motorcycle racing game you need to beat every computerized vehicle that you are " + ing + " against.")
print("There are a whole lot of other cool games. When you play some games you win " + plural_noun + " for certain scores.")
print("Once you're done you can cash in your tickets to get a big " + noun + ".")
print("You can save your " + plural_noun + " for another time.")
print("When I went to this arcade I didn't believe how much fun it would be. You might annoy your parents by asking them over and over if you can go back to there. So far I have had a lot of fun every time I've been to this great arcade!")
## Mad Lib 8
name = input("Enter your name: ")
date = input("Enter a date: ")
last_name = input("Enter a last name: ")
noun = input("Enter a noun: ")
letter = input("Enter a letter: ")
noun = input("Enter a 3 letter noun: ")
letter = input("Enter another letter: ")
noun = input("Enter another 3 letter noun: ")
noun = input("Enter a noun: ")
plural_noun = input("Enter a plural noun: ")
letter = input("Enter another letter: ")
noun = input("Enter another 3 letter noun: ")
letter = input("Enter another letter: ")
noun = input("Enter another 3 letter noun: ")
sound = input("Enter a sound: ")
sound = input("Enter a sound: ")
sound = input("Enter a sound: ")
sound = input("Enter a sound: ")
sound = input("Enter a sound: ")
sound = input("Enter a sound: ")
letter = input("Enter another letter: ")
noun = input("Enter another 3 letter noun: ")
letter = input("Enter another letter: ")
noun = input("Enter another 3 letter noun: ")
print("Name: " + name )
print("Date: " + date )
print( "Big Mac Who?")
print("Big Mc " + last_name + " had a " + noun + ",")
print(letter + "- " + noun + ", " + letter + "- " + noun + " O.")
print("On this " + noun + " he had some " + plural_noun + ", " + letter + " -3 " + noun + ", " + letter + "- " + noun + " O.")
print("With a " + sound + ", " + sound + " here, and a " + sound + " " + sound + " there, everywhere a " + sound + "- " + sound + " " + letter + "- " + noun + ", " + letter + "- " + noun + " O.")
## Mad Lib 9
object = input("Enter an object: ")
adjective = input("Enter an adjective: ")
adjective = input("Enter another adjective: ")
place = input("Enter a place: ")
hobby = input("Enter a hobby: ")
president = input("Enter the name of a president: ")
food = input("Enter your fav food: ")
print("Send up a signal throw me a/an " + object )
print("It might not be " + adjective + " but it sure ain't " + adjective )
print("I'm one step from " + place + " and two steps behind")
print("I picked up " + hobby + " I called " + president + " who said " + food + " was the new national meal")
## Mad Lib 10
print(" Life In Technicolor")
adjective = input("Enter an adjective: ")
verb = input("Enter a verb in ing form: ")
thing = input("Enter an interesting happening: ")
celebrity = input("Enter a celebrity: ")
adjective = input("Enter an adjective: ")
print("There's a " + adjective + " wind blowing")
print("Every night there, the headlights are " + verb )
print("There's a " + thing + " coming")
print("On the radio I heard " + celebrity + " talking about their pet's addiction to snickers")
print("Baby, it's a " + adjective + " world")
| color = input('Enter a color: ')
plural_noun = input('Enter a plural noun: ')
celebrity = input('Enter the name of a Celebrity: ')
print('Roses are ' + color)
print(plural_noun + ' are blue')
print('I love ' + celebrity)
date = input('Enter a date: ')
full_name = input('Enter a full name: ')
a_place = input('Enter the name of a place: ')
class_noun = input('Enter a class subject: ')
signature = input('Enter a signature: ')
print('Date: ' + date)
(print(full_name + ' is authorized'),)
print('to be at ' + a_place)
(print('instead of ' + class_noun),)
print('class.')
print('SIGNED: ' + signature)
noun = input('Enter a noun: ')
object = input('Enter an object: ')
food = input('Enter your least favorite food: ')
bad_things = input('Enter the funniest thing that comes to mind: ')
verb = input('Enter a verb: ')
print(' We Are The Champions')
print("I've taken my " + noun + ' out.')
print('And my ' + object + ' calls')
print('You brought me ' + food + ' and ' + bad_things + ' and everything that comes with it')
print('I ' + verb + ' you all.')
adjective = input('Enter an adjective: ')
object = input('Enter an object: ')
imaginary_friend = input('Enter the name of an imaginary friend: ')
adjective = input('Enter another adjective: ')
verb = input('Enter a verb: ')
print(' Under The Bridge')
print('Sometimes I feel like ' + adjective)
print("I don't have a " + object)
print('Sometimes I feel like my only friend is ' + imaginary_friend)
print('The ' + adjective + ' city ')
print('Lonely as I am, together we ' + verb)
adjective = input('Enter an adjective: ')
adjective = input('Enter another adjective: ')
noun = input('Enter a noun: ')
noun = input('Enter another noun: ')
plural_noun = input('Enter a plural noun: ')
game = input('Enter a game: ')
plural_noun = input('Enter another plural noun: ')
verb = input("Enter a verb ending in 'ing': ")
verb = input("Enter another verb ending in 'ing': ")
plural_noun = input('Enter another plural noun: ')
verb = input("Enter another verb ending in 'ing': ")
noun = input('Enter another noun: ')
plant = input('Enter a plant; ')
body_part = input('Enter a part of the body: ')
place = input('Enter a place: ')
verb = input("Enter another verb ending in 'ing': ")
adjective = input('Enter another adjective: ')
number = input('Enter a number <100: ')
plural_noun = input('Enter another plural noun: ')
(print('A vacation is when you take a trip to some ' + adjective + ' place'),)
print(' with you ' + adjective + ' family.')
(print('Usually you go to some place thatis near a/an ' + noun),)
print(' or up on a/an ' + noun + '.')
(print('A good vacation place is one where you can ride ' + plural_noun),)
print(' or play ' + game + ' or go hunting for ' + plural_noun + '.')
print('I like to spend my time ' + verb + ' or ' + verb + '.')
print('When parents go on a vacation, they spend their time eating three ' + plural_noun + ' a day,')
print(' and fathers play golf, and mothers sit around ' + verb + '.')
(print('Last summer, my little brother fell in a/an ' + noun + ' and got poison ' + plant),)
print(' all over his ' + body_part + '.')
print('My family is going to go to (the) ' + place + ', and I will practice ' + verb + '.')
print('Parents need vacations more than kids because parents are always very ' + adjective + ' and because they have to work ' + number + ' hours every day all year making enough ' + plural_noun + ' to pay for the vacation.')
name = input('Enter your name: ')
date = input('Enter a date: ')
adjective = input('Enter an adjective: ')
noun = input('Enter a noun: ')
verb = input('Enter a verb in past tense: ')
adverb = input('Enter an adverb: ')
adjective = input('Enter another adjective: ')
noun = input('Enter another noun: ')
noun = input('Enter another noun: ')
adjective = input('Enter another adjective: ')
verb = input('Enter a verb: ')
adverb = input('Enter another adverb: ')
verb = input('Enter another verb in past tense: ')
adjective = input('Enter another adjective: ')
print('Name: ' + name + ' Date: ' + date)
print('Today I went to the zoo. I saw a ' + adjective + ' ' + noun + ' jumping up and down in its tree.')
print('He ' + verb + ' ' + adverb + ' through the large tunnel that led to its ' + adjective + ' ' + noun + '.')
print('I got some peanuts and passed them through the cage to a gigantic gray ' + noun + ' towering above my head.')
print('Feeding the animals made me hungry. I went to get a ' + adjective + ' scoop of ice cream. It filled my stomach.')
print('Afterwards I had to ' + verb + ' ' + adverb + ' to catch our bus.')
print('When I got home I ' + verb + ' my mom for a ' + adjective + ' day at the zoo.')
adjective = input('Enter an adjective: ')
adjective = input('Enter another adjective: ')
noun = input('Enter a noun: ')
verb = input('Enter a verb in singular present form: ')
fruit = input('Enter a fruit: ')
noun = input('Enter another noun: ')
fruit = input('Enter another fruit: ')
object = input('Enter an object: ')
animal = input('Enter an animal: ')
adjective = input('Enter another adjective: ')
plural_noun = input('Enter a plural noun: ')
print(' The Rose Family')
print('The rose is a ' + adjective + ',')
print('And was always a ' + adjective + '.')
print('But the ' + noun + ' now ' + verb)
print('That the ' + fruit + ' is a ' + noun + ',')
print('And the ' + fruit + ' is, and so is ')
print('The ' + object + ', I suppose.')
print('The ' + animal + ' only knows')
print('What will next prove a rose ' + adjective + '.')
print(plural_noun + ' , of course, are a rose -')
print('But were always a rose.')
name = input('Enter a name: ')
date = input('Enter a date: ')
plural_noun = input('Enter a plural noun: ')
plural_noun = input('Enter another plural noun: ')
verb = input('Enter a verb: ')
celebrity = 'Enter the name of a celebrity: '
noun = input('Enter a noun: ')
ing = input("Enter a verb ending in 'ing': ")
plural_noun = input('Enter another plural noun: ')
noun = input('Enter another noun: ')
plural_noun = input('Enter another plural noun: ')
print('Name: ' + name)
print('Date: ' + date)
print(' At The Arcade!')
print('When I go to the arcade with my ' + plural_noun + ' there are lots of games to play.')
print("I spend lots of time there with my friends. In 'Xmen' you can be different " + plural_noun + '.')
print('The point of the game is to ' + verb + ' every robot.')
print("You also need to save people, and then you can go to the next level. In 'Star Wars' you are " + celebrity + ' and you try to destroy every ' + noun + '.')
print('In a car racing / motorcycle racing game you need to beat every computerized vehicle that you are ' + ing + ' against.')
print('There are a whole lot of other cool games. When you play some games you win ' + plural_noun + ' for certain scores.')
print("Once you're done you can cash in your tickets to get a big " + noun + '.')
print('You can save your ' + plural_noun + ' for another time.')
print("When I went to this arcade I didn't believe how much fun it would be. You might annoy your parents by asking them over and over if you can go back to there. So far I have had a lot of fun every time I've been to this great arcade!")
name = input('Enter your name: ')
date = input('Enter a date: ')
last_name = input('Enter a last name: ')
noun = input('Enter a noun: ')
letter = input('Enter a letter: ')
noun = input('Enter a 3 letter noun: ')
letter = input('Enter another letter: ')
noun = input('Enter another 3 letter noun: ')
noun = input('Enter a noun: ')
plural_noun = input('Enter a plural noun: ')
letter = input('Enter another letter: ')
noun = input('Enter another 3 letter noun: ')
letter = input('Enter another letter: ')
noun = input('Enter another 3 letter noun: ')
sound = input('Enter a sound: ')
sound = input('Enter a sound: ')
sound = input('Enter a sound: ')
sound = input('Enter a sound: ')
sound = input('Enter a sound: ')
sound = input('Enter a sound: ')
letter = input('Enter another letter: ')
noun = input('Enter another 3 letter noun: ')
letter = input('Enter another letter: ')
noun = input('Enter another 3 letter noun: ')
print('Name: ' + name)
print('Date: ' + date)
print('Big Mac Who?')
print('Big Mc ' + last_name + ' had a ' + noun + ',')
print(letter + '- ' + noun + ', ' + letter + '- ' + noun + ' O.')
print('On this ' + noun + ' he had some ' + plural_noun + ', ' + letter + ' -3 ' + noun + ', ' + letter + '- ' + noun + ' O.')
print('With a ' + sound + ', ' + sound + ' here, and a ' + sound + ' ' + sound + ' there, everywhere a ' + sound + '- ' + sound + ' ' + letter + '- ' + noun + ', ' + letter + '- ' + noun + ' O.')
object = input('Enter an object: ')
adjective = input('Enter an adjective: ')
adjective = input('Enter another adjective: ')
place = input('Enter a place: ')
hobby = input('Enter a hobby: ')
president = input('Enter the name of a president: ')
food = input('Enter your fav food: ')
print('Send up a signal throw me a/an ' + object)
print('It might not be ' + adjective + " but it sure ain't " + adjective)
print("I'm one step from " + place + ' and two steps behind')
print('I picked up ' + hobby + ' I called ' + president + ' who said ' + food + ' was the new national meal')
print(' Life In Technicolor')
adjective = input('Enter an adjective: ')
verb = input('Enter a verb in ing form: ')
thing = input('Enter an interesting happening: ')
celebrity = input('Enter a celebrity: ')
adjective = input('Enter an adjective: ')
print("There's a " + adjective + ' wind blowing')
print('Every night there, the headlights are ' + verb)
print("There's a " + thing + ' coming')
print('On the radio I heard ' + celebrity + " talking about their pet's addiction to snickers")
print("Baby, it's a " + adjective + ' world') |
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
'flapper_version_h_file%': 'flapper_version.h',
'flapper_binary_files%': [],
'conditions': [
[ 'branding == "Chrome"', {
'conditions': [
[ 'OS == "linux" and target_arch == "ia32"', {
'flapper_version_h_file%': 'symbols/ppapi/linux/flapper_version.h',
'flapper_binary_files%': [
'binaries/ppapi/linux/libpepflashplayer.so',
'binaries/ppapi/linux/manifest.json',
],
}],
[ 'OS == "linux" and target_arch == "x64"', {
'flapper_version_h_file%': 'symbols/ppapi/linux_x64/flapper_version.h',
'flapper_binary_files%': [
'binaries/ppapi/linux_x64/libpepflashplayer.so',
'binaries/ppapi/linux_x64/manifest.json',
],
}],
[ 'OS == "mac" and target_arch == "ia32"', {
'flapper_version_h_file%': 'symbols/ppapi/mac/flapper_version.h',
'flapper_binary_files%': [
'binaries/ppapi/mac/PepperFlashPlayer.plugin',
'binaries/ppapi/mac/manifest.json',
],
}],
[ 'OS == "mac" and target_arch == "x64"', {
'flapper_version_h_file%': 'symbols/ppapi/mac_64/flapper_version.h',
'flapper_binary_files%': [
'binaries/ppapi/mac_64/PepperFlashPlayer.plugin',
'binaries/ppapi/mac_64/manifest.json',
],
}],
[ 'OS == "win" and target_arch == "ia32"', {
'flapper_version_h_file%': 'symbols/ppapi/win/flapper_version.h',
'flapper_binary_files%': [
'binaries/ppapi/win/pepflashplayer.dll',
'binaries/ppapi/win/manifest.json',
],
}],
[ 'OS == "win" and target_arch == "x64"', {
'flapper_version_h_file%': 'symbols/ppapi/win_x64/flapper_version.h',
'flapper_binary_files%': [
'binaries/ppapi/win_x64/pepflashplayer.dll',
'binaries/ppapi/win_x64/manifest.json',
],
}],
],
}],
],
},
# Always provide a target, so we can put the logic about whether there's
# anything to be done in this file (instead of a higher-level .gyp file).
'targets': [
{
# GN version: //third_party/adobe/flash:flapper_version_h
'target_name': 'flapper_version_h',
'type': 'none',
'copies': [{
'destination': '<(SHARED_INTERMEDIATE_DIR)',
'files': [ '<(flapper_version_h_file)' ],
}],
},
{
# GN version: //third_party/adobe/flash:flapper_binaries
'target_name': 'flapper_binaries',
'type': 'none',
'copies': [{
'destination': '<(PRODUCT_DIR)/PepperFlash',
'files': [ '<@(flapper_binary_files)' ],
}],
},
],
}
| {'variables': {'flapper_version_h_file%': 'flapper_version.h', 'flapper_binary_files%': [], 'conditions': [['branding == "Chrome"', {'conditions': [['OS == "linux" and target_arch == "ia32"', {'flapper_version_h_file%': 'symbols/ppapi/linux/flapper_version.h', 'flapper_binary_files%': ['binaries/ppapi/linux/libpepflashplayer.so', 'binaries/ppapi/linux/manifest.json']}], ['OS == "linux" and target_arch == "x64"', {'flapper_version_h_file%': 'symbols/ppapi/linux_x64/flapper_version.h', 'flapper_binary_files%': ['binaries/ppapi/linux_x64/libpepflashplayer.so', 'binaries/ppapi/linux_x64/manifest.json']}], ['OS == "mac" and target_arch == "ia32"', {'flapper_version_h_file%': 'symbols/ppapi/mac/flapper_version.h', 'flapper_binary_files%': ['binaries/ppapi/mac/PepperFlashPlayer.plugin', 'binaries/ppapi/mac/manifest.json']}], ['OS == "mac" and target_arch == "x64"', {'flapper_version_h_file%': 'symbols/ppapi/mac_64/flapper_version.h', 'flapper_binary_files%': ['binaries/ppapi/mac_64/PepperFlashPlayer.plugin', 'binaries/ppapi/mac_64/manifest.json']}], ['OS == "win" and target_arch == "ia32"', {'flapper_version_h_file%': 'symbols/ppapi/win/flapper_version.h', 'flapper_binary_files%': ['binaries/ppapi/win/pepflashplayer.dll', 'binaries/ppapi/win/manifest.json']}], ['OS == "win" and target_arch == "x64"', {'flapper_version_h_file%': 'symbols/ppapi/win_x64/flapper_version.h', 'flapper_binary_files%': ['binaries/ppapi/win_x64/pepflashplayer.dll', 'binaries/ppapi/win_x64/manifest.json']}]]}]]}, 'targets': [{'target_name': 'flapper_version_h', 'type': 'none', 'copies': [{'destination': '<(SHARED_INTERMEDIATE_DIR)', 'files': ['<(flapper_version_h_file)']}]}, {'target_name': 'flapper_binaries', 'type': 'none', 'copies': [{'destination': '<(PRODUCT_DIR)/PepperFlash', 'files': ['<@(flapper_binary_files)']}]}]} |
# 204. Count Primes
# Runtime: 4512 ms, faster than 43.85% of Python3 online submissions for Count Primes.
# Memory Usage: 52.8 MB, less than 90.72% of Python3 online submissions for Count Primes.
class Solution:
# Sieve of Eratosthenes
def countPrimes(self, n: int) -> int:
if n <= 2:
return 0
is_prime = [True] * n
count = 0
for i in range(2, n):
if is_prime[i]:
count += 1
for j in range(i * i, n, i):
is_prime[j] = False
return count | class Solution:
def count_primes(self, n: int) -> int:
if n <= 2:
return 0
is_prime = [True] * n
count = 0
for i in range(2, n):
if is_prime[i]:
count += 1
for j in range(i * i, n, i):
is_prime[j] = False
return count |
def ErrorHandler(function):
def wrapper(*args, **kwargs):
try:
return function(*args, **kwargs)
except Exception as e: # pragma: no cover
pass
return wrapper
| def error_handler(function):
def wrapper(*args, **kwargs):
try:
return function(*args, **kwargs)
except Exception as e:
pass
return wrapper |
#
#
# Copyright 2016 Kirk A Jackson DBA bristoSOFT all rights reserved. All methods,
# techniques, algorithms are confidential trade secrets under Ohio and U.S.
# Federal law owned by bristoSOFT.
#
# Kirk A Jackson dba bristoSOFT
# 4100 Executive Park Drive
# Suite 11
# Cincinnati, OH 45241
# Phone (513) 401-9114
# email jacksonkirka@bristosoft.com
#
# The trade name bristoSOFT is a registered trade name with the State of Ohio
# document No. 201607803210.
#
'''
This control package includes all the modules needed for bristoSOFT Contacts.
'''
| """
This control package includes all the modules needed for bristoSOFT Contacts.
""" |
class CommandNotFound(Exception):
def __init__(self, command_name):
self.name = command_name
def __str__(self):
return f"Command with name {self.name} not found"
| class Commandnotfound(Exception):
def __init__(self, command_name):
self.name = command_name
def __str__(self):
return f'Command with name {self.name} not found' |
def _merge(left, right, cmp):
res = []
leftI , rightI = 0, 0
while leftI<len(left) and rightI<len(right):
if cmp(left[leftI], right[rightI])<=0:
res.append(left[leftI])
leftI += 1
else:
res.append(right[rightI])
rightI += 1
while leftI<len(left):
res.append(left[leftI])
leftI += 1
while rightI<len(right):
res.append(right[rightI])
rightI += 1
return res
def _merge2(left, right, cmp):
result = []
while len(left)>0 or len(right)>0:
if cmp(left[0],right[0])<=0:
result.append(left.pop(0))
else:
result.append(right.pop(0))
while len(left)>0:
result.append(left.pop(0))
while len(right)>0:
result.append(right.pop(0))
return result
def mergeSort(items, cmp = None):
cmp = cmp if cmp != None else (lambda a,b: a-b)
n = len(items)
if n<=1: return items
left = mergeSort(items[:int(n/2)],cmp)
right = mergeSort(items[int(n/2):],cmp)
res = _merge(left, right, cmp)
return res
if __name__ == "__main__":
pass
| def _merge(left, right, cmp):
res = []
(left_i, right_i) = (0, 0)
while leftI < len(left) and rightI < len(right):
if cmp(left[leftI], right[rightI]) <= 0:
res.append(left[leftI])
left_i += 1
else:
res.append(right[rightI])
right_i += 1
while leftI < len(left):
res.append(left[leftI])
left_i += 1
while rightI < len(right):
res.append(right[rightI])
right_i += 1
return res
def _merge2(left, right, cmp):
result = []
while len(left) > 0 or len(right) > 0:
if cmp(left[0], right[0]) <= 0:
result.append(left.pop(0))
else:
result.append(right.pop(0))
while len(left) > 0:
result.append(left.pop(0))
while len(right) > 0:
result.append(right.pop(0))
return result
def merge_sort(items, cmp=None):
cmp = cmp if cmp != None else lambda a, b: a - b
n = len(items)
if n <= 1:
return items
left = merge_sort(items[:int(n / 2)], cmp)
right = merge_sort(items[int(n / 2):], cmp)
res = _merge(left, right, cmp)
return res
if __name__ == '__main__':
pass |
tokentype = {
'INT': 'INT',
'FLOAT': 'FLOAT',
'STRING': 'STRING',
'CHAR': 'CHAR',
'+': 'PLUS',
'-': 'MINUS',
'*': 'MUL',
'/': 'DIV',
'=': 'ASSIGN',
'%': 'MODULO',
':': 'COLON',
';': 'SEMICOLON',
'<': 'LT',
'>': 'GT',
'[': 'O_BRACKET',
']': 'C_BRACKET',
'(': 'O_PAREN',
')': 'C_PAREN',
'{': 'O_BRACE',
'}': 'C_BRACE',
'&': 'AND',
'|': 'OR',
'!': 'NOT',
'^': 'EXPO',
'ID': 'ID',
'EOF': 'EOF'
}
class Token:
def __init__(self, type, value):
self.type = type
self.value = value
def __str__(self):
return f'<{self.type}: {self.value}>'
__repr__ = __str__
| tokentype = {'INT': 'INT', 'FLOAT': 'FLOAT', 'STRING': 'STRING', 'CHAR': 'CHAR', '+': 'PLUS', '-': 'MINUS', '*': 'MUL', '/': 'DIV', '=': 'ASSIGN', '%': 'MODULO', ':': 'COLON', ';': 'SEMICOLON', '<': 'LT', '>': 'GT', '[': 'O_BRACKET', ']': 'C_BRACKET', '(': 'O_PAREN', ')': 'C_PAREN', '{': 'O_BRACE', '}': 'C_BRACE', '&': 'AND', '|': 'OR', '!': 'NOT', '^': 'EXPO', 'ID': 'ID', 'EOF': 'EOF'}
class Token:
def __init__(self, type, value):
self.type = type
self.value = value
def __str__(self):
return f'<{self.type}: {self.value}>'
__repr__ = __str__ |
# Takes the following input :- number of items, a weights array, a value array, and the capacity of knap_sack
def knap_sack(n, w, v, c):
if n == 0 or w == 0:
return 0
if w[n - 1] > c:
return knap_sack(n - 1, w, v, c)
else:
return max(v[n - 1] + knap_sack(n - 1, w, v, c - w[n - 1]), knap_sack(n - 1, w, v, c))
val = [60, 100, 120]
wt = [10, 20, 30]
W = 50
n = len(val)
print(knap_sack(n, wt, val, W))
| def knap_sack(n, w, v, c):
if n == 0 or w == 0:
return 0
if w[n - 1] > c:
return knap_sack(n - 1, w, v, c)
else:
return max(v[n - 1] + knap_sack(n - 1, w, v, c - w[n - 1]), knap_sack(n - 1, w, v, c))
val = [60, 100, 120]
wt = [10, 20, 30]
w = 50
n = len(val)
print(knap_sack(n, wt, val, W)) |
def maxXorSum(n, k):
if k == 1:
return n
res = 1
l = [1]
while res <= n:
res <<= 1
l.append(res)
print(l)
# return res - 1
n, k = map(int, input().split())
maxXorSum(n, k)
| def max_xor_sum(n, k):
if k == 1:
return n
res = 1
l = [1]
while res <= n:
res <<= 1
l.append(res)
print(l)
(n, k) = map(int, input().split())
max_xor_sum(n, k) |
#Gasolina
t=float(input())
v=float(input())
l=(t*v) /12
print("{:.3f}".format(l) )
| t = float(input())
v = float(input())
l = t * v / 12
print('{:.3f}'.format(l)) |
# Copyright 2021 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
register_npcx_project(
project_name="volteer",
zephyr_board="volteer",
dts_overlays=[
"bb_retimer.dts",
"cbi_eeprom.dts",
"fan.dts",
"gpio.dts",
"keyboard.dts",
"motionsense.dts",
"pwm.dts",
"pwm_leds.dts",
"usbc.dts",
],
)
| register_npcx_project(project_name='volteer', zephyr_board='volteer', dts_overlays=['bb_retimer.dts', 'cbi_eeprom.dts', 'fan.dts', 'gpio.dts', 'keyboard.dts', 'motionsense.dts', 'pwm.dts', 'pwm_leds.dts', 'usbc.dts']) |
# We could use f'' string but it is lunched after version 3.5
# So before f'' string developers are used format specifier.
name = 'Amresh'
channel = 'TechieDuo'
# a = f'Good morning, {name}'
# a = 'Good morning, {}\nWelcome to {}, Chief'.format(name, channel)
# customize the position
a = 'Good morning, {1}\nWelcome to {0}, Chief'.format(name, channel)
print (a) | name = 'Amresh'
channel = 'TechieDuo'
a = 'Good morning, {1}\nWelcome to {0}, Chief'.format(name, channel)
print(a) |
class Solution:
def romanToInt(self, s: str) -> int:
roman_dict = {'I': 1, 'V': 5, 'X': 10, 'L': 50, 'C': 100, 'D': 500, 'M': 1000}
temp = roman_dict[s[-1]]
summation = temp
for i in s[:-1][::-1]:
value = roman_dict[i]
if value >= temp:
summation += value
temp = value
else:
summation -= value
return summation
sol = Solution()
print(sol.romanToInt("LVIII"))
print(sol.romanToInt("MCMXCIV")) # 1000 = M + 900 = CM + 90 = XC + IV = 4
print(sol.romanToInt("III"))
| class Solution:
def roman_to_int(self, s: str) -> int:
roman_dict = {'I': 1, 'V': 5, 'X': 10, 'L': 50, 'C': 100, 'D': 500, 'M': 1000}
temp = roman_dict[s[-1]]
summation = temp
for i in s[:-1][::-1]:
value = roman_dict[i]
if value >= temp:
summation += value
temp = value
else:
summation -= value
return summation
sol = solution()
print(sol.romanToInt('LVIII'))
print(sol.romanToInt('MCMXCIV'))
print(sol.romanToInt('III')) |
np.random.seed(2020) # set random seed
# sweep through values for lambda
lambdas = np.arange(0.05, 0.95, 0.01)
empirical_variances = np.zeros_like(lambdas)
analytical_variances = np.zeros_like(lambdas)
sig = 0.87
# compute empirical equilibrium variance
for i, lam in enumerate(lambdas):
empirical_variances[i] = ddm_eq_var(5000, x0, xinfty, lambdas[i], sig)
# Hint: you can also do this in one line outside the loop!
analytical_variances = sig**2 / (1 - lambdas**2)
with plt.xkcd():
var_comparison_plot(empirical_variances, analytical_variances) | np.random.seed(2020)
lambdas = np.arange(0.05, 0.95, 0.01)
empirical_variances = np.zeros_like(lambdas)
analytical_variances = np.zeros_like(lambdas)
sig = 0.87
for (i, lam) in enumerate(lambdas):
empirical_variances[i] = ddm_eq_var(5000, x0, xinfty, lambdas[i], sig)
analytical_variances = sig ** 2 / (1 - lambdas ** 2)
with plt.xkcd():
var_comparison_plot(empirical_variances, analytical_variances) |
# No Copyright @u@
TaskType={
"classification":0,
"SANclassification":1
}
TaskID = {
"csqa":0,
"mcscript2":1,
"cosmosqa":2
}
TaskName = ["csqa","mcscript2","cosmosqa"] | task_type = {'classification': 0, 'SANclassification': 1}
task_id = {'csqa': 0, 'mcscript2': 1, 'cosmosqa': 2}
task_name = ['csqa', 'mcscript2', 'cosmosqa'] |
def open_file():
while True:
file_name = input("Enter input file name>>> ")
try:
fhand = open(file_name, "r")
break
except FileNotFoundError:
print("Couldn't open file, Invalid name or file doesn't exist!")
continue
return fhand
def process_file(fhand):
while True:
year = input("Enter year>>> ")
if len(year) == 4: # the entered year must have 4 characters.
break
else: # When the user enters a wrong year, he is re-prompted until a valid year is entered
print("Year must be four digits,please enter a valid year!!")
continue
while True: # Prompt the user for income level
print("Income levels;\n Input 1 for WB_LI\n Input 2 for WB_LMI\n Input 3 for WB_UMI\n Input 4 for WB_HI")
income = input("Enter income level>> ")
if income == "1":
income = "WB_LI"
break
elif income == "2":
income = "WB_LMI"
break
elif income == "3":
income = "WB_UMI"
break
elif income == "4":
income = "WB_HI"
break
else:
print("Invalid income level!!") # if an income level other than (1,2,3,4) is input
continue
count = 0
percentages = []
countries = []
for line in fhand:
if (line[88:92] == year) and (line[51:56] == income or line[51:57] == income):
count += 1
percentages.append(int(line[59:61])) # For each line met,add percentages to the percentages list.
country = ((str(line[0:51])).strip())
countries.append(country) # adds percentages to the list of countries
continue
# A dictionary with country as the key and percentages as the value.
country_percentage = dict(zip(countries, percentages))
if count > 0:
percent_sum = sum(percentages)
average = percent_sum / count
maximum = max(percentages)
minimum = min(percentages)
# this gets countries for maximum percentages to this list
country_max = [country for country, percentage in country_percentage.items() if percentage == maximum]
# this gets countries for minimum percentages to this list
country_min = [country for country, percentage in country_percentage.items() if percentage == minimum]
print(f"Number of countries in the record: {count}")
print(f"Average percentage for {year} with {income} is {average:.1f}%")
print(f"The following countries have the maximum percentage in {year} with {income} of {maximum}%")
for i in country_max:
print(" -", i) # This prints the countries with maximum percentage.
print(f"The following countries have the minimum percentage in {year} with {income} of {minimum}%")
for i in country_min:
print(" -", i) # This prints the countries with minimum percentage.
else:
print(f"There are no records for the year {year} in the file") # in case there are no items in the list
def main():
fhand = open_file()
process_file(fhand)
fhand.close()
main()
| def open_file():
while True:
file_name = input('Enter input file name>>> ')
try:
fhand = open(file_name, 'r')
break
except FileNotFoundError:
print("Couldn't open file, Invalid name or file doesn't exist!")
continue
return fhand
def process_file(fhand):
while True:
year = input('Enter year>>> ')
if len(year) == 4:
break
else:
print('Year must be four digits,please enter a valid year!!')
continue
while True:
print('Income levels;\n Input 1 for WB_LI\n Input 2 for WB_LMI\n Input 3 for WB_UMI\n Input 4 for WB_HI')
income = input('Enter income level>> ')
if income == '1':
income = 'WB_LI'
break
elif income == '2':
income = 'WB_LMI'
break
elif income == '3':
income = 'WB_UMI'
break
elif income == '4':
income = 'WB_HI'
break
else:
print('Invalid income level!!')
continue
count = 0
percentages = []
countries = []
for line in fhand:
if line[88:92] == year and (line[51:56] == income or line[51:57] == income):
count += 1
percentages.append(int(line[59:61]))
country = str(line[0:51]).strip()
countries.append(country)
continue
country_percentage = dict(zip(countries, percentages))
if count > 0:
percent_sum = sum(percentages)
average = percent_sum / count
maximum = max(percentages)
minimum = min(percentages)
country_max = [country for (country, percentage) in country_percentage.items() if percentage == maximum]
country_min = [country for (country, percentage) in country_percentage.items() if percentage == minimum]
print(f'Number of countries in the record: {count}')
print(f'Average percentage for {year} with {income} is {average:.1f}%')
print(f'The following countries have the maximum percentage in {year} with {income} of {maximum}%')
for i in country_max:
print(' -', i)
print(f'The following countries have the minimum percentage in {year} with {income} of {minimum}%')
for i in country_min:
print(' -', i)
else:
print(f'There are no records for the year {year} in the file')
def main():
fhand = open_file()
process_file(fhand)
fhand.close()
main() |
data = [[0,1.5],[2,1.7],[3,2.1],[5,2.2],[6,2.8],[7,2.9],[9,3.2],[11,3.7]]
def dEa(a, b):
sum = 0
for i in data:
sum += i[0] * (i[0]*a + b - i[1])
return sum
def dEb(a, b):
sum = 0
for i in data:
sum += i[0]*a + b - i[1]
return sum
eta = 0.006 # study rate
a, b = 2,1 # start
for i in range(0,200):
a += -eta *dEa(a,b)
b += -eta *dEb(a,b)
print([a,b])
| data = [[0, 1.5], [2, 1.7], [3, 2.1], [5, 2.2], [6, 2.8], [7, 2.9], [9, 3.2], [11, 3.7]]
def d_ea(a, b):
sum = 0
for i in data:
sum += i[0] * (i[0] * a + b - i[1])
return sum
def d_eb(a, b):
sum = 0
for i in data:
sum += i[0] * a + b - i[1]
return sum
eta = 0.006
(a, b) = (2, 1)
for i in range(0, 200):
a += -eta * d_ea(a, b)
b += -eta * d_eb(a, b)
print([a, b]) |
print('hi all')
print ('hello world')
print('hi')
print('hii')
print('hello2') | print('hi all')
print('hello world')
print('hi')
print('hii')
print('hello2') |
grocery = ["rice", "water", "tomato", "onion", "ginger"]
for i in range(2, len(grocery), 2):
print(grocery[i])
| grocery = ['rice', 'water', 'tomato', 'onion', 'ginger']
for i in range(2, len(grocery), 2):
print(grocery[i]) |
class Database():
def __init__(self, connector, id):
self.connector = connector
self.id = id
self.base_url = 'https://api.devicemagic.com/api/forms' \
'/{0}/device_magic_database.json'.format(self.id)
def json(self, *args):
return self._filtered_query(args) if args else self._basic_query()
def _basic_query(self):
path = self.base_url
request = self.connector.execute_request(path, 'GET')
return request
def _join_params(self, parameters):
params = [param.strip() for param in parameters]
params_for_url = '?' + '&'.join(params)
return params_for_url
def _filtered_query(self, parameters):
params = self._join_params(parameters)
path = self.base_url + params
request = self.connector.execute_request(path, 'GET')
return request
| class Database:
def __init__(self, connector, id):
self.connector = connector
self.id = id
self.base_url = 'https://api.devicemagic.com/api/forms/{0}/device_magic_database.json'.format(self.id)
def json(self, *args):
return self._filtered_query(args) if args else self._basic_query()
def _basic_query(self):
path = self.base_url
request = self.connector.execute_request(path, 'GET')
return request
def _join_params(self, parameters):
params = [param.strip() for param in parameters]
params_for_url = '?' + '&'.join(params)
return params_for_url
def _filtered_query(self, parameters):
params = self._join_params(parameters)
path = self.base_url + params
request = self.connector.execute_request(path, 'GET')
return request |
expected_output = {
"program": {
"rcp_fs": {
"instance": {
"default": {
"active": "0/0/CPU0",
"active_state": "RUNNING",
"group": "central-services",
"jid": "1168",
"standby": "NONE",
"standby_state": "NOT_SPAWNED",
}
}
},
"ospf": {
"instance": {
"1": {
"active": "0/0/CPU0",
"active_state": "RUNNING",
"group": "v4-routing",
"jid": "1018",
"standby": "NONE",
"standby_state": "NOT_SPAWNED",
}
}
},
"bgp": {
"instance": {
"default": {
"active": "0/0/CPU0",
"active_state": "RUNNING",
"group": "v4-routing",
"jid": "1018",
"standby": "NONE",
"standby_state": "NOT_SPAWNED",
}
}
},
"statsd_manager_g": {
"instance": {
"default": {
"active": "0/0/CPU0",
"active_state": "RUNNING",
"group": "netmgmt",
"jid": "1141",
"standby": "NONE",
"standby_state": "NOT_SPAWNED",
}
}
},
"pim": {
"instance": {
"default": {
"active": "0/0/CPU0",
"active_state": "RUNNING",
"group": "mcast-routing",
"jid": "1158",
"standby": "NONE",
"standby_state": "NOT_SPAWNED",
}
}
},
"ipv6_local": {
"instance": {
"default": {
"active": "0/0/CPU0",
"active_state": "RUNNING",
"group": "v6-routing",
"jid": "1156",
"standby": "NONE",
"standby_state": "NOT_SPAWNED",
}
}
},
}
}
| expected_output = {'program': {'rcp_fs': {'instance': {'default': {'active': '0/0/CPU0', 'active_state': 'RUNNING', 'group': 'central-services', 'jid': '1168', 'standby': 'NONE', 'standby_state': 'NOT_SPAWNED'}}}, 'ospf': {'instance': {'1': {'active': '0/0/CPU0', 'active_state': 'RUNNING', 'group': 'v4-routing', 'jid': '1018', 'standby': 'NONE', 'standby_state': 'NOT_SPAWNED'}}}, 'bgp': {'instance': {'default': {'active': '0/0/CPU0', 'active_state': 'RUNNING', 'group': 'v4-routing', 'jid': '1018', 'standby': 'NONE', 'standby_state': 'NOT_SPAWNED'}}}, 'statsd_manager_g': {'instance': {'default': {'active': '0/0/CPU0', 'active_state': 'RUNNING', 'group': 'netmgmt', 'jid': '1141', 'standby': 'NONE', 'standby_state': 'NOT_SPAWNED'}}}, 'pim': {'instance': {'default': {'active': '0/0/CPU0', 'active_state': 'RUNNING', 'group': 'mcast-routing', 'jid': '1158', 'standby': 'NONE', 'standby_state': 'NOT_SPAWNED'}}}, 'ipv6_local': {'instance': {'default': {'active': '0/0/CPU0', 'active_state': 'RUNNING', 'group': 'v6-routing', 'jid': '1156', 'standby': 'NONE', 'standby_state': 'NOT_SPAWNED'}}}}} |
number = 5
def summation(first, second):
total = first + second + number
return total
outer_total = summation(10, 20)
print("The first number we initialised was " + str(number))
print("The total after summation s " + str(outer_total))
| number = 5
def summation(first, second):
total = first + second + number
return total
outer_total = summation(10, 20)
print('The first number we initialised was ' + str(number))
print('The total after summation s ' + str(outer_total)) |
def checkio(number):
result = []
if number % 3 == 0:
result.append('Fizz')
if number % 5 == 0:
result.append('Buzz')
if result:
return ' '.join(result)
return str(number)
# These "asserts" using only for self-checking and not necessary for
# auto-testing
if __name__ == '__main__': # pragma: no cover
assert checkio(15) == "Fizz Buzz", "15 is divisible by 3 and 5"
assert checkio(6) == "Fizz", "6 is divisible by 3"
assert checkio(5) == "Buzz", "5 is divisible by 5"
assert checkio(7) == "7", "7 is not divisible by 3 or 5"
| def checkio(number):
result = []
if number % 3 == 0:
result.append('Fizz')
if number % 5 == 0:
result.append('Buzz')
if result:
return ' '.join(result)
return str(number)
if __name__ == '__main__':
assert checkio(15) == 'Fizz Buzz', '15 is divisible by 3 and 5'
assert checkio(6) == 'Fizz', '6 is divisible by 3'
assert checkio(5) == 'Buzz', '5 is divisible by 5'
assert checkio(7) == '7', '7 is not divisible by 3 or 5' |
# By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13,
# we can see that the 6th prime is 13.
# What is the 10 001st prime number?
def is_prime(n: int) -> bool:
if n <= 3: return n > 1
elif not(n%2 and n%3): return False
i = 5
while i**2 <= n:
if not(n%i and n%(i+2)): return False
i += 6
return True
def solution(number: int) -> int:
i, count = 1, 0
while count != number:
if is_prime(i):
count += 1
prime = i
i += 2
return prime
if __name__ == '__main__':
print(solution(10001))
| def is_prime(n: int) -> bool:
if n <= 3:
return n > 1
elif not (n % 2 and n % 3):
return False
i = 5
while i ** 2 <= n:
if not (n % i and n % (i + 2)):
return False
i += 6
return True
def solution(number: int) -> int:
(i, count) = (1, 0)
while count != number:
if is_prime(i):
count += 1
prime = i
i += 2
return prime
if __name__ == '__main__':
print(solution(10001)) |
data1 = "10" # String
data2 = 5 # Int
data3 = 5.23 # Float
data4 = False # Bool
print(data1)
print(data2)
print(data3)
print(data4) | data1 = '10'
data2 = 5
data3 = 5.23
data4 = False
print(data1)
print(data2)
print(data3)
print(data4) |
def setup_module(module):
pass
def teardown_module(module):
print("TD MO")
def test_passing():
assert True
def test_failing():
assert False
class TestClassPassing(object):
def setup_method(self, method):
pass
def teardown_method(self, method):
pass
def test_passing(self):
assert True
class TestClassFailing(object):
def setup_method(self, method):
pass
def teardown_method(self, method):
print("TD M")
def test_failing(self):
assert False
| def setup_module(module):
pass
def teardown_module(module):
print('TD MO')
def test_passing():
assert True
def test_failing():
assert False
class Testclasspassing(object):
def setup_method(self, method):
pass
def teardown_method(self, method):
pass
def test_passing(self):
assert True
class Testclassfailing(object):
def setup_method(self, method):
pass
def teardown_method(self, method):
print('TD M')
def test_failing(self):
assert False |
#!/usr/bin/python35
s1 = '12345'
s2 = 'abcde'
print('s1 = %s, id(s1) = %d' %(s1, id(s1)))
print('s2 = %s, id(s2) = %d' %(s2, id(s2)))
s2 = '12345'
print('')
print('s1 = %s, id(s1) = %d' %(s1, id(s1)))
print('s2 = %s, id(s2) = %d' %(s2, id(s2)))
| s1 = '12345'
s2 = 'abcde'
print('s1 = %s, id(s1) = %d' % (s1, id(s1)))
print('s2 = %s, id(s2) = %d' % (s2, id(s2)))
s2 = '12345'
print('')
print('s1 = %s, id(s1) = %d' % (s1, id(s1)))
print('s2 = %s, id(s2) = %d' % (s2, id(s2))) |
if __name__ == "__main__":
with open('input.txt') as data:
numbers = [int(number) for number in data.readlines()]
current_freq = 0
idx = 0
past_frequencies = set()
while True:
if idx == len(numbers):
idx = 0
if current_freq in past_frequencies:
break
past_frequencies.add(current_freq)
current_freq += numbers[idx]
idx += 1
print(f"The first repeated frequency is {current_freq}")
| if __name__ == '__main__':
with open('input.txt') as data:
numbers = [int(number) for number in data.readlines()]
current_freq = 0
idx = 0
past_frequencies = set()
while True:
if idx == len(numbers):
idx = 0
if current_freq in past_frequencies:
break
past_frequencies.add(current_freq)
current_freq += numbers[idx]
idx += 1
print(f'The first repeated frequency is {current_freq}') |
test = { 'name': 'q42',
'points': 3,
'suites': [ { 'cases': [ { 'code': '>>> '
'print(np.round(model.coef_, '
'3))\n'
'[ 0.024 0.023 -0.073 0.001 '
'-0.263 -0.016 0.289 0.011 '
'-0.438 0.066\n'
' -0.274 -0.026 0.126 -0.019 '
'-0.276 -0.418 0.223 -0.022 '
'-0.215 -0.997\n'
' 0.946 0.21 -0.021 -0.366 '
'-0.121 -0.399 0.823 -0.282 '
'-0.229 -0.392\n'
' -0.227 -0.147 -0.497 -0.701 '
'-0.514 0.637 -0.514]\n',
'hidden': False,
'locked': False}],
'scored': True,
'setup': '',
'teardown': '',
'type': 'doctest'}]}
| test = {'name': 'q42', 'points': 3, 'suites': [{'cases': [{'code': '>>> print(np.round(model.coef_, 3))\n[ 0.024 0.023 -0.073 0.001 -0.263 -0.016 0.289 0.011 -0.438 0.066\n -0.274 -0.026 0.126 -0.019 -0.276 -0.418 0.223 -0.022 -0.215 -0.997\n 0.946 0.21 -0.021 -0.366 -0.121 -0.399 0.823 -0.282 -0.229 -0.392\n -0.227 -0.147 -0.497 -0.701 -0.514 0.637 -0.514]\n', 'hidden': False, 'locked': False}], 'scored': True, 'setup': '', 'teardown': '', 'type': 'doctest'}]} |
def main(j, args, params, tags, tasklet):
doc = params.doc
e = params.requestContext.env
addr = j.core.portal.runningPortal.ipaddr
querystr = e["QUERY_STRING"]
querystr = querystr.replace("&format=text", "")
querystr = querystr.replace("&key=,", "")
querystr = querystr.replace("&key=", "")
querystr = querystr.replace("key=,", "")
querystr = querystr.replace("key=", "")
querystr += "key=%s" % j.apps.system.usermanager.extensions.usermanager.getUserFromCTX(params.requestContext).secret
if "machine" in params:
url = "http://" + addr +\
e["PATH_INFO"].strip("/") + "?" + querystr
params.page.addLink(url, url)
else:
url = "http://" + addr + "/restmachine/" +\
e["PATH_INFO"].replace("/rest/", "").strip("/") + "?" + querystr
params.page.addLink(url, url)
params.page.addMessage("Be careful generated key above has been generated for you as administrator.")
return params
def match(j, args, params, tags, tasklet):
return True
| def main(j, args, params, tags, tasklet):
doc = params.doc
e = params.requestContext.env
addr = j.core.portal.runningPortal.ipaddr
querystr = e['QUERY_STRING']
querystr = querystr.replace('&format=text', '')
querystr = querystr.replace('&key=,', '')
querystr = querystr.replace('&key=', '')
querystr = querystr.replace('key=,', '')
querystr = querystr.replace('key=', '')
querystr += 'key=%s' % j.apps.system.usermanager.extensions.usermanager.getUserFromCTX(params.requestContext).secret
if 'machine' in params:
url = 'http://' + addr + e['PATH_INFO'].strip('/') + '?' + querystr
params.page.addLink(url, url)
else:
url = 'http://' + addr + '/restmachine/' + e['PATH_INFO'].replace('/rest/', '').strip('/') + '?' + querystr
params.page.addLink(url, url)
params.page.addMessage('Be careful generated key above has been generated for you as administrator.')
return params
def match(j, args, params, tags, tasklet):
return True |
# Title : Number of tuple equal to a user specified value
# Author : Kiran raj R.
# Date : 31:10:2020
def find_tuple(list_in, sum_in):
length = len(list_in)
count_tup = 0
list_tuples = []
if(sum(list_in) < sum_in) | length < 1:
print(f"Cannot find any combination of sum {sum_in}")
for i in range(length-2):
tuple_with_sum = set()
current_sum = sum_in - list_in[i]
for j in range(i+1, length):
if(current_sum - list_in[j]) in tuple_with_sum:
count_tup += 1
tuple_with_sum.add(list_in[j])
for k in range(j+1, length):
sub = [list_in[i], list_in[j], list_in[k]]
if sum(sub) == sum_in:
list_tuples.append(sub)
print(f"The number of tuples with sum {sum_in} is: {count_tup}")
print(f"The tuples are: {list_tuples}")
find_tuple([1, 2, 3, 4, 7, 6], 7)
find_tuple([1, 2, 3, 4, 5, 6, 7, 8, 9], 9)
find_tuple([1, 3, 4, 5, 2], 9)
find_tuple([1, 2, 3, 4, 5, 6, 7, 8, 9], 8)
| def find_tuple(list_in, sum_in):
length = len(list_in)
count_tup = 0
list_tuples = []
if (sum(list_in) < sum_in) | length < 1:
print(f'Cannot find any combination of sum {sum_in}')
for i in range(length - 2):
tuple_with_sum = set()
current_sum = sum_in - list_in[i]
for j in range(i + 1, length):
if current_sum - list_in[j] in tuple_with_sum:
count_tup += 1
tuple_with_sum.add(list_in[j])
for k in range(j + 1, length):
sub = [list_in[i], list_in[j], list_in[k]]
if sum(sub) == sum_in:
list_tuples.append(sub)
print(f'The number of tuples with sum {sum_in} is: {count_tup}')
print(f'The tuples are: {list_tuples}')
find_tuple([1, 2, 3, 4, 7, 6], 7)
find_tuple([1, 2, 3, 4, 5, 6, 7, 8, 9], 9)
find_tuple([1, 3, 4, 5, 2], 9)
find_tuple([1, 2, 3, 4, 5, 6, 7, 8, 9], 8) |
def tram(m, n):
alfabet = "ABCDEFGHIJKLMNOPQRSTUVW"[:m]
przystanki = (alfabet + alfabet[1:-1][::-1]) * 2 * n
rozklad = ""
while przystanki:
curr = przystanki[n - 1]
#print(przystanki[:m * 2], " -- >", curr)
rozklad += curr
przystanki = popall(przystanki[n:], curr)
return rozklad
def popall(slowo, x):
ret = " "
for lit in slowo:
if lit != x and lit != ret[-1]:
ret += lit
ret = ret[1:]
if len(ret) == 1:
ret = ret * len(slowo)
return ret
| def tram(m, n):
alfabet = 'ABCDEFGHIJKLMNOPQRSTUVW'[:m]
przystanki = (alfabet + alfabet[1:-1][::-1]) * 2 * n
rozklad = ''
while przystanki:
curr = przystanki[n - 1]
rozklad += curr
przystanki = popall(przystanki[n:], curr)
return rozklad
def popall(slowo, x):
ret = ' '
for lit in slowo:
if lit != x and lit != ret[-1]:
ret += lit
ret = ret[1:]
if len(ret) == 1:
ret = ret * len(slowo)
return ret |
# Path for log. Make sure the files (if present, otherwise the containing directory) are writable by the user that will be running the daemon.
logPath = '/var/log/carillon/carillon.log'
logDebug = False
# Note, you can monitor the log in real time with tail -f [logPath]
# MIDI info
midiPort = 20 #Find with aplaymidi -l
midiHWPort = 'hw:1' #Find with amidi -l
midiPath = "/path/to/midifiles"
# See README.md for details on how to provide MIDI files to be added to the chime program.
# Silent hours: do not send any MIDI between these hours (exclusive). For no silent hours, use False.
silentHours = (22,7)
# The first minute (:00) of the first silent hour is allowed to sound, so any pre-hour chimes aren't left w/o strikes.
# The range can cross a midnight (e.g. 22,7) or not (e.g. 0,7 or 1,7).
# For more fine-grained control over silent times, duplicate midi files and set them to trigger at specific times.
strikingDelay = 3 #Seconds between hourly strokes | log_path = '/var/log/carillon/carillon.log'
log_debug = False
midi_port = 20
midi_hw_port = 'hw:1'
midi_path = '/path/to/midifiles'
silent_hours = (22, 7)
striking_delay = 3 |
DATA = ''
MODEL_INIT = '$(pwd)/model_init'
MODEL_TRUE = '$(pwd)/model_true'
PRECOND = ''
SPECFEM_DATA = '$(pwd)/specfem2d/DATA'
SPECFEM_BIN = '$(pwd)/../../../specfem2d/bin'
| data = ''
model_init = '$(pwd)/model_init'
model_true = '$(pwd)/model_true'
precond = ''
specfem_data = '$(pwd)/specfem2d/DATA'
specfem_bin = '$(pwd)/../../../specfem2d/bin' |
def example():
return [1721, 979, 366, 299, 675, 1456]
def input_data():
with open( "input.txt" ) as fl:
nums = [ int(i) for i in fl.readlines() ]
return nums
def find_it(nums):
for idx in range(len(nums)):
for idy in range(len(nums))[idx+1:]:
if (nums[idx] + nums[idy] == 2020):
print("found it!")
print(nums[idx],",", nums[idy])
print(nums[idx] * nums[idy])
return nums[idx] * nums[idy]
def test_example():
assert find_it(example()) == 514579
find_it(input_data())
print ("script done")
| def example():
return [1721, 979, 366, 299, 675, 1456]
def input_data():
with open('input.txt') as fl:
nums = [int(i) for i in fl.readlines()]
return nums
def find_it(nums):
for idx in range(len(nums)):
for idy in range(len(nums))[idx + 1:]:
if nums[idx] + nums[idy] == 2020:
print('found it!')
print(nums[idx], ',', nums[idy])
print(nums[idx] * nums[idy])
return nums[idx] * nums[idy]
def test_example():
assert find_it(example()) == 514579
find_it(input_data())
print('script done') |
# This is for the perso that i yearn
# i shall do a petty iterator
# it shall has a for cicle
# Dictionary
name = {
"Mayra":"love",
"Alejandra":"faith and hope",
"Arauz":" all my life",
"Mejia":"the best in civil engeenering"
}
# for Cicle
for maam in name:
print(f"She is {maam} and for me is {name[maam]}")
| name = {'Mayra': 'love', 'Alejandra': 'faith and hope', 'Arauz': ' all my life', 'Mejia': 'the best in civil engeenering'}
for maam in name:
print(f'She is {maam} and for me is {name[maam]}') |
#!/usr/bin/env python
'''The Goal of this script is to place the data in a
python dictionary of unique results.'''
# To accomplish this parsing we need a XML file that can be
# parsed so do scan your localhost using this command
# nmap -oX test 127.0.0.1
| """The Goal of this script is to place the data in a
python dictionary of unique results.""" |
def main():
sequence = input().split(',')
programs = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p']
program_string = ''.join(programs)
seen = [program_string]
for index in range(1000000000):
for command in sequence:
programs = run_command(programs, command)
program_string = ''.join(programs)
if program_string not in seen:
seen.append(program_string)
else:
index_of_seen = seen.index(program_string)
seen = seen[index_of_seen:]
program_string = seen[(1000000000-index-1)%len(seen)]
break
print(program_string)
def run_command(programs, command):
if(command[0] == 's'):
num_to_switch = -1*int(command[1:])
programs = programs[num_to_switch:]+programs[0:num_to_switch]
elif(command[0] == 'x'):
command = [int(x) for x in command[1:].split('/')]
programs[command[0]], programs[command[1]] = programs[command[1]], programs[command[0]]
elif(command[0] == 'p'):
command = command[1:].split('/')
index_1, index_2 = [programs.index(x) for x in command]
programs[index_1], programs[index_2] = programs[index_2], programs[index_1]
return programs
if __name__ == '__main__':
main() | def main():
sequence = input().split(',')
programs = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p']
program_string = ''.join(programs)
seen = [program_string]
for index in range(1000000000):
for command in sequence:
programs = run_command(programs, command)
program_string = ''.join(programs)
if program_string not in seen:
seen.append(program_string)
else:
index_of_seen = seen.index(program_string)
seen = seen[index_of_seen:]
program_string = seen[(1000000000 - index - 1) % len(seen)]
break
print(program_string)
def run_command(programs, command):
if command[0] == 's':
num_to_switch = -1 * int(command[1:])
programs = programs[num_to_switch:] + programs[0:num_to_switch]
elif command[0] == 'x':
command = [int(x) for x in command[1:].split('/')]
(programs[command[0]], programs[command[1]]) = (programs[command[1]], programs[command[0]])
elif command[0] == 'p':
command = command[1:].split('/')
(index_1, index_2) = [programs.index(x) for x in command]
(programs[index_1], programs[index_2]) = (programs[index_2], programs[index_1])
return programs
if __name__ == '__main__':
main() |
def rec_bin_search(arr, element):
if len(arr) == 0:
return False
else:
mid = len(arr) // 2
if arr[mid] == element:
return True
else:
if element < arr[mid]:
return rec_bin_search(arr[:mid], element)
else:
return rec_bin_search(arr[mid+1:], element)
lst = [1,2,3,4,5,6,7]
print(rec_bin_search(lst, 2))
print(rec_bin_search(lst, 10)) | def rec_bin_search(arr, element):
if len(arr) == 0:
return False
else:
mid = len(arr) // 2
if arr[mid] == element:
return True
elif element < arr[mid]:
return rec_bin_search(arr[:mid], element)
else:
return rec_bin_search(arr[mid + 1:], element)
lst = [1, 2, 3, 4, 5, 6, 7]
print(rec_bin_search(lst, 2))
print(rec_bin_search(lst, 10)) |
class Dog:
def bark(self):
print("Bark")
d = Dog()
d.bark()
| class Dog:
def bark(self):
print('Bark')
d = dog()
d.bark() |
[
alg.createtemp (
"revenue",
alg.aggregation (
"l_suppkey",
[ ( Reduction.SUM, "revenue", "sum_revenue" ) ],
alg.map (
"revenue",
scal.MulExpr (
scal.AttrExpr ( "l_extendedprice" ),
scal.SubExpr (
scal.ConstExpr ( "1.0", Type.FLOAT ),
scal.AttrExpr ( "l_discount" )
)
),
alg.selection (
scal.AndExpr (
scal.LargerEqualExpr (
scal.AttrExpr ( "l_shipdate" ),
scal.ConstExpr ( "19960101", Type.DATE )
),
scal.SmallerExpr (
scal.AttrExpr ( "l_shipdate" ),
scal.ConstExpr ( "19960401", Type.DATE )
)
),
alg.scan ( "lineitem" )
)
)
)
),
alg.projection (
[ "s_suppkey", "s_name", "s_address", "s_phone", "total_revenue" ],
alg.join (
( "l_suppkey", "s_suppkey" ),
alg.join (
( "total_revenue", "sum_revenue" ),
alg.aggregation (
[],
[( Reduction.MAX, "sum_revenue", "total_revenue" )],
alg.scan ( "revenue", "r1" )
),
alg.scan ( "revenue", "r2" )
),
alg.scan ( "supplier" )
)
)
]
| [alg.createtemp('revenue', alg.aggregation('l_suppkey', [(Reduction.SUM, 'revenue', 'sum_revenue')], alg.map('revenue', scal.MulExpr(scal.AttrExpr('l_extendedprice'), scal.SubExpr(scal.ConstExpr('1.0', Type.FLOAT), scal.AttrExpr('l_discount'))), alg.selection(scal.AndExpr(scal.LargerEqualExpr(scal.AttrExpr('l_shipdate'), scal.ConstExpr('19960101', Type.DATE)), scal.SmallerExpr(scal.AttrExpr('l_shipdate'), scal.ConstExpr('19960401', Type.DATE))), alg.scan('lineitem'))))), alg.projection(['s_suppkey', 's_name', 's_address', 's_phone', 'total_revenue'], alg.join(('l_suppkey', 's_suppkey'), alg.join(('total_revenue', 'sum_revenue'), alg.aggregation([], [(Reduction.MAX, 'sum_revenue', 'total_revenue')], alg.scan('revenue', 'r1')), alg.scan('revenue', 'r2')), alg.scan('supplier')))] |
#!/usr/bin/env python
__all__ = [
"osutils",
]
| __all__ = ['osutils'] |
def searchInsert(self, nums, target):
start = 0
end = len(nums) - 1
while start <= end:
middle = (start + end) // 2
if nums[middle] == target:
return middle
elif target > nums[middle]:
start = middle + 1
elif target < nums[middle]:
end = middle - 1
return start
| def search_insert(self, nums, target):
start = 0
end = len(nums) - 1
while start <= end:
middle = (start + end) // 2
if nums[middle] == target:
return middle
elif target > nums[middle]:
start = middle + 1
elif target < nums[middle]:
end = middle - 1
return start |
f = open("input1.txt").readlines()
count = 0
for i in range(1,len(f)):
if int(f[i-1])<int(f[i]):
count+=1
print(count)
count = 0
for i in range(3,len(f)):
if int(f[i-3])<int(f[i]):
count+=1
print(count)
| f = open('input1.txt').readlines()
count = 0
for i in range(1, len(f)):
if int(f[i - 1]) < int(f[i]):
count += 1
print(count)
count = 0
for i in range(3, len(f)):
if int(f[i - 3]) < int(f[i]):
count += 1
print(count) |
_base_ = "soft_teacher_faster_rcnn_r50_caffe_fpn_coco_full_720k.py"
lr_config = dict(step=[120000 * 8, 160000 * 8])
runner = dict(_delete_=True, type="IterBasedRunner", max_iters=180000 * 8)
| _base_ = 'soft_teacher_faster_rcnn_r50_caffe_fpn_coco_full_720k.py'
lr_config = dict(step=[120000 * 8, 160000 * 8])
runner = dict(_delete_=True, type='IterBasedRunner', max_iters=180000 * 8) |
# melhora a performace do codigo
l1 = [1, 2, 3, 4, 5, 6, 7, 8, 9]
ex1 = [variavel for variavel in l1]
ex2 = [v * 2 for v in l1] # multiplica cado elemento da lista 1 por 2
ex3 = [(v, v2) for v in l1 for v2 in range(3)]
print(ex3)
l2 = ['pedro', 'mauro', 'maria']
ex4 = [v.replace('a', '@').upper() for v in l2] # muda a letra a de uma variavel
print(ex4)
tupla = (
('chave1', 'valor1'),
('chave2', 'valor2'),
)
ex5 = [(y, x) for x, y in tupla]
ex5 = dict(ex5) # inverter num dicionario
print(ex5['valor1'])
l3 = list(range(100)) # lista de 0 a 100
ex6 = [va for va in l3 if va % 3 == 0 if va % 8 == 0] # numeros divisiveis por 3 e por 8
print(ex6)
ex7 = [v if v % 3 == 0 and v % 8 == 0 else 0 for v in l3]
print(ex7) | l1 = [1, 2, 3, 4, 5, 6, 7, 8, 9]
ex1 = [variavel for variavel in l1]
ex2 = [v * 2 for v in l1]
ex3 = [(v, v2) for v in l1 for v2 in range(3)]
print(ex3)
l2 = ['pedro', 'mauro', 'maria']
ex4 = [v.replace('a', '@').upper() for v in l2]
print(ex4)
tupla = (('chave1', 'valor1'), ('chave2', 'valor2'))
ex5 = [(y, x) for (x, y) in tupla]
ex5 = dict(ex5)
print(ex5['valor1'])
l3 = list(range(100))
ex6 = [va for va in l3 if va % 3 == 0 if va % 8 == 0]
print(ex6)
ex7 = [v if v % 3 == 0 and v % 8 == 0 else 0 for v in l3]
print(ex7) |
# defines a function that takes two arguments
def cheese_and_crackers(cheese_count, boxes_of_crackers):
# prints a string with the first argument passed into the function inserted into the output
print(f"You have {cheese_count} cheeses!")
# prints a string with the second argument passed into the function inserted into the output
print(f"You have {boxes_of_crackers} boxes of crackers!")
# prints a string
print("Man that's enough for a party!")
# prints a string
print("Get a blanket.\n")
# prints a string
print("We can just give the function numbers directly:")
# calls the cheese_and_crackers function with 20 and 30 as the arguments being passed in
cheese_and_crackers(20,30)
# prints a string
print("OR, we can use variables from our script:")
# stores a value of 10 in the variable amount_of_cheese
amount_of_cheese = 10
# stores a value of 50 in the variable amount_of_crackers
amount_of_crackers = 50
# calls the cheese_and_crackers function, passing in the values stored in the variables amount_of_cheese and amount_of_crackers
cheese_and_crackers(amount_of_cheese, amount_of_crackers)
# prints a string
print("We can even do math inside too:")
# calls the cheese_and_crackers function with the results of 1 + 20 and 5 + 6 passed in as the arguments.
cheese_and_crackers(10 + 20, 5 + 6)
# prints a string
print("And we can combine the two, variables and math:")
# calls the cheese_and_crackers function with the results of adding 100 to the value stored in amount_of_cheese and 1000 to the value stored in amount_of_crackers as the arguments
cheese_and_crackers(amount_of_cheese + 100, amount_of_crackers + 1000) | def cheese_and_crackers(cheese_count, boxes_of_crackers):
print(f'You have {cheese_count} cheeses!')
print(f'You have {boxes_of_crackers} boxes of crackers!')
print("Man that's enough for a party!")
print('Get a blanket.\n')
print('We can just give the function numbers directly:')
cheese_and_crackers(20, 30)
print('OR, we can use variables from our script:')
amount_of_cheese = 10
amount_of_crackers = 50
cheese_and_crackers(amount_of_cheese, amount_of_crackers)
print('We can even do math inside too:')
cheese_and_crackers(10 + 20, 5 + 6)
print('And we can combine the two, variables and math:')
cheese_and_crackers(amount_of_cheese + 100, amount_of_crackers + 1000) |
def selection_sort(arr):
for i in range(len(arr)):
min = i # index of min elem
for j in range(i+1,len(arr)):
# arr[j] is smaller than the min elem
if arr[j] < arr[min]:
min = j
arr[i],arr[min] = arr[min],arr[i] # swap
# print(arr)
return arr
| def selection_sort(arr):
for i in range(len(arr)):
min = i
for j in range(i + 1, len(arr)):
if arr[j] < arr[min]:
min = j
(arr[i], arr[min]) = (arr[min], arr[i])
return arr |
class System_Status():
def __init__(self, plant_state=None):
if plant_state is None:
plant_state = [1, 1, 1]
self.plant_state = plant_state
def __str__(self):
return f"El estado de la planta es {self.plant_state}" | class System_Status:
def __init__(self, plant_state=None):
if plant_state is None:
plant_state = [1, 1, 1]
self.plant_state = plant_state
def __str__(self):
return f'El estado de la planta es {self.plant_state}' |
NODE_LIST = [
{
'name': 'syslog_source',
'type': 'syslog_file_monitor',
'outputs': [
'filter',
],
'params': {
'filename': 'testlog1.log',
}
},
{
'name': 'filter',
'type': 'rx_grouper',
'params': {
'groups': {
'imap_auth': {
'rx_list': [
".*hint.*",
("host", "publicapi1"),
],
'outputs': ['writer',],
},
},
},
},
{
'name': 'writer',
'type': 'console_output',
'params': {
},
'outputs': [],
},
]
| node_list = [{'name': 'syslog_source', 'type': 'syslog_file_monitor', 'outputs': ['filter'], 'params': {'filename': 'testlog1.log'}}, {'name': 'filter', 'type': 'rx_grouper', 'params': {'groups': {'imap_auth': {'rx_list': ['.*hint.*', ('host', 'publicapi1')], 'outputs': ['writer']}}}}, {'name': 'writer', 'type': 'console_output', 'params': {}, 'outputs': []}] |
def Convert(number,mode):
if mode.startswith("mili") and mode.endswith("meter") == True:
Milimeter = number
Centimeter = number / 10
Meter = Centimeter / 100
Kilometer = Meter / 1000
Result1 = f"Milimeters : {Milimeter}"
Result2 =f"Centimeters : {Centimeter}"
Result3 =f"Meters : {Meter}"
Result4=f"Kilometers : {Kilometer}"
return Result1,Result2,Result3,Result4
if mode.startswith("centi") and mode.endswith("meter") == True:
Centimeter = number
Milimeter = number * 10
Meter = number /100
Kilometer = Meter / 1000
Result1 = f"Milimeters : {Milimeter}"
Result2 =f"Centimeters : {Centimeter}"
Result3 =f"Meters : {Meter}"
Result4=f"Kilometers : {Kilometer}"
return Result1,Result2,Result3,Result4
if mode.startswith("me") and mode.endswith("ter") == True:
Meter = number
Centimeter = number * 100
Milimeter = Centimeter * 10
Kilometer = number / 1000
Result1 = f"Milimeters : {Milimeter}"
Result2 =f"Centimeters : {Centimeter}"
Result3 =f"Meters : {Meter}"
Result4=f"Kilometers : {Kilometer}"
return Result1,Result2,Result3,Result4
if mode.startswith("kilo") and mode.endswith("meter") == True:
Kilometer = number
Meter = number * 1000
Centimeter = Meter * 100
Milimeter = Centimeter * 10
Result1 = f"Milimeters : {Milimeter}"
Result2 =f"Centimeters : {Centimeter}"
Result3 =f"Meters : {Meter}"
Result4=f"Kilometers : {Kilometer}"
return Result1,Result2,Result3,Result4
| def convert(number, mode):
if mode.startswith('mili') and mode.endswith('meter') == True:
milimeter = number
centimeter = number / 10
meter = Centimeter / 100
kilometer = Meter / 1000
result1 = f'Milimeters : {Milimeter}'
result2 = f'Centimeters : {Centimeter}'
result3 = f'Meters : {Meter}'
result4 = f'Kilometers : {Kilometer}'
return (Result1, Result2, Result3, Result4)
if mode.startswith('centi') and mode.endswith('meter') == True:
centimeter = number
milimeter = number * 10
meter = number / 100
kilometer = Meter / 1000
result1 = f'Milimeters : {Milimeter}'
result2 = f'Centimeters : {Centimeter}'
result3 = f'Meters : {Meter}'
result4 = f'Kilometers : {Kilometer}'
return (Result1, Result2, Result3, Result4)
if mode.startswith('me') and mode.endswith('ter') == True:
meter = number
centimeter = number * 100
milimeter = Centimeter * 10
kilometer = number / 1000
result1 = f'Milimeters : {Milimeter}'
result2 = f'Centimeters : {Centimeter}'
result3 = f'Meters : {Meter}'
result4 = f'Kilometers : {Kilometer}'
return (Result1, Result2, Result3, Result4)
if mode.startswith('kilo') and mode.endswith('meter') == True:
kilometer = number
meter = number * 1000
centimeter = Meter * 100
milimeter = Centimeter * 10
result1 = f'Milimeters : {Milimeter}'
result2 = f'Centimeters : {Centimeter}'
result3 = f'Meters : {Meter}'
result4 = f'Kilometers : {Kilometer}'
return (Result1, Result2, Result3, Result4) |
pt = int(input('digite o primeiro termo da PA '))
r = int(input('digite a razao '))
termos = 1
total=0
total2=0
contador = 10
print('{} -> '.format(pt),end='')
while contador > 1 :
if contador == 10:
total=pt+r
print('{} -> '.format(total),end='')
contador=contador-1
else:
total= total+r
print('{} -> '.format(total),end='')
contador=contador-1
print('Fim')
| pt = int(input('digite o primeiro termo da PA '))
r = int(input('digite a razao '))
termos = 1
total = 0
total2 = 0
contador = 10
print('{} -> '.format(pt), end='')
while contador > 1:
if contador == 10:
total = pt + r
print('{} -> '.format(total), end='')
contador = contador - 1
else:
total = total + r
print('{} -> '.format(total), end='')
contador = contador - 1
print('Fim') |
def analysis(sliceno, job):
job.save('this_is_the_data_analysis ' + str(sliceno), 'myfile1', sliceno=sliceno)
def synthesis(job):
job.save('this_is_the_data_2', 'myfile2')
| def analysis(sliceno, job):
job.save('this_is_the_data_analysis ' + str(sliceno), 'myfile1', sliceno=sliceno)
def synthesis(job):
job.save('this_is_the_data_2', 'myfile2') |
class IIIF_Photo(object):
def __init__(self, iiif, country):
self.iiif = iiif
self.country = country
def get_photo_link(self):
return self.iiif["images"][0]["resource"]["@id"]
| class Iiif_Photo(object):
def __init__(self, iiif, country):
self.iiif = iiif
self.country = country
def get_photo_link(self):
return self.iiif['images'][0]['resource']['@id'] |
birth_year = input('Birth year: ')
print(type(birth_year))
age = 2019 - int(birth_year)
print(type(age))
print(age)
#exercise
weight_in_lbs = input('What is your weight (in pounds)? ')
weight_in_kg = float(weight_in_lbs) * 0.454
print('Your weight is (in kg): ' + str(weight_in_kg))
| birth_year = input('Birth year: ')
print(type(birth_year))
age = 2019 - int(birth_year)
print(type(age))
print(age)
weight_in_lbs = input('What is your weight (in pounds)? ')
weight_in_kg = float(weight_in_lbs) * 0.454
print('Your weight is (in kg): ' + str(weight_in_kg)) |
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright: (c) 2017, Michael Eaton <meaton@iforium.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
# this is a windows documentation stub. actual code lives in the .ps1
# file of the same name
ANSIBLE_METADATA = {'metadata_version': '1.1',
'status': ['preview'],
'supported_by': 'community'}
DOCUMENTATION = r'''
---
module: win_firewall
version_added: '2.4'
short_description: Enable or disable the Windows Firewall
description:
- Enable or Disable Windows Firewall profiles.
requirements:
- This module requires Windows Management Framework 5 or later.
options:
profiles:
description:
- Specify one or more profiles to change.
type: list
choices: [ Domain, Private, Public ]
default: [ Domain, Private, Public ]
state:
description:
- Set state of firewall for given profile.
type: str
choices: [ disabled, enabled ]
seealso:
- module: win_firewall_rule
author:
- Michael Eaton (@michaeldeaton)
'''
EXAMPLES = r'''
- name: Enable firewall for Domain, Public and Private profiles
win_firewall:
state: enabled
profiles:
- Domain
- Private
- Public
tags: enable_firewall
- name: Disable Domain firewall
win_firewall:
state: disabled
profiles:
- Domain
tags: disable_firewall
'''
RETURN = r'''
enabled:
description: Current firewall status for chosen profile (after any potential change).
returned: always
type: bool
sample: true
profiles:
description: Chosen profile.
returned: always
type: str
sample: Domain
state:
description: Desired state of the given firewall profile(s).
returned: always
type: list
sample: enabled
'''
| ansible_metadata = {'metadata_version': '1.1', 'status': ['preview'], 'supported_by': 'community'}
documentation = "\n---\nmodule: win_firewall\nversion_added: '2.4'\nshort_description: Enable or disable the Windows Firewall\ndescription:\n- Enable or Disable Windows Firewall profiles.\nrequirements:\n - This module requires Windows Management Framework 5 or later.\noptions:\n profiles:\n description:\n - Specify one or more profiles to change.\n type: list\n choices: [ Domain, Private, Public ]\n default: [ Domain, Private, Public ]\n state:\n description:\n - Set state of firewall for given profile.\n type: str\n choices: [ disabled, enabled ]\nseealso:\n- module: win_firewall_rule\nauthor:\n- Michael Eaton (@michaeldeaton)\n"
examples = '\n- name: Enable firewall for Domain, Public and Private profiles\n win_firewall:\n state: enabled\n profiles:\n - Domain\n - Private\n - Public\n tags: enable_firewall\n\n- name: Disable Domain firewall\n win_firewall:\n state: disabled\n profiles:\n - Domain\n tags: disable_firewall\n'
return = '\nenabled:\n description: Current firewall status for chosen profile (after any potential change).\n returned: always\n type: bool\n sample: true\nprofiles:\n description: Chosen profile.\n returned: always\n type: str\n sample: Domain\nstate:\n description: Desired state of the given firewall profile(s).\n returned: always\n type: list\n sample: enabled\n' |
{
'targets': [
{
'target_name': 'pointer',
'sources': ['pointer.cc'],
'include_dirs': ['<!(node -e \'require("nan")\')'],
'link_settings': {
'libraries': [
'-lX11',
]
},
'cflags': [
],
}
]
}
| {'targets': [{'target_name': 'pointer', 'sources': ['pointer.cc'], 'include_dirs': ['<!(node -e \'require("nan")\')'], 'link_settings': {'libraries': ['-lX11']}, 'cflags': []}]} |
#
# PySNMP MIB module CLEARTRAC7-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CLEARTRAC7-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 18:09:07 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "ValueSizeConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
TimeTicks, NotificationType, MibIdentifier, Counter64, IpAddress, ModuleIdentity, Gauge32, Unsigned32, enterprises, NotificationType, Counter32, Bits, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, Integer32 = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "NotificationType", "MibIdentifier", "Counter64", "IpAddress", "ModuleIdentity", "Gauge32", "Unsigned32", "enterprises", "NotificationType", "Counter32", "Bits", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "Integer32")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
lucent = MibIdentifier((1, 3, 6, 1, 4, 1, 727))
cleartrac7 = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7))
mgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2))
system = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 1))
ifwan = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 2))
iflan = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 3))
ifvce = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 18))
pu = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 4))
schedule = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 5))
bridge = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 6))
phone = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 7))
filter = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 8))
pysmi_class = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 9)).setLabel("class")
pvc = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 10))
ipx = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 11))
ipstatic = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 13))
ip = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 14))
ospf = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15))
ipxfilter = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 16))
stat = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20))
intf = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 30))
slot = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 31))
ipaddr = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 32))
bootp = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 33))
proxy = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 34))
timep = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 35))
sysDesc = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysDesc.setStatus('mandatory')
sysContact = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysContact.setStatus('mandatory')
sysName = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysName.setStatus('mandatory')
sysUnitRoutingVersion = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysUnitRoutingVersion.setStatus('mandatory')
sysLocation = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysLocation.setStatus('mandatory')
sysDate = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 5), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDate.setStatus('mandatory')
sysClock = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysClock.setStatus('mandatory')
sysDay = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 254, 255))).clone(namedValues=NamedValues(("sunday", 1), ("monday", 2), ("tuesday", 3), ("wednesday", 4), ("thursday", 5), ("friday", 6), ("saturday", 7), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDay.setStatus('mandatory')
sysAcceptLoop = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysAcceptLoop.setStatus('mandatory')
sysLinkTimeout_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setLabel("sysLinkTimeout-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysLinkTimeout_s.setStatus('mandatory')
sysTransitDelay_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 20))).setLabel("sysTransitDelay-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysTransitDelay_s.setStatus('mandatory')
sysDefaultIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 11), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDefaultIpAddr.setStatus('mandatory')
sysDefaultIpMask = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 12), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDefaultIpMask.setStatus('mandatory')
sysDefaultGateway = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 13), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDefaultGateway.setStatus('mandatory')
sysRackId = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("cs-product-only", 0), ("rack-1", 1), ("rack-2", 2), ("rack-3", 3), ("rack-4", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysRackId.setStatus('mandatory')
sysPsAndFansMonitoring = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("cs-product-only", 0), ("none", 1), ("ps", 2), ("fans", 3), ("both", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysPsAndFansMonitoring.setStatus('mandatory')
sysPsMonitoring = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysPsMonitoring.setStatus('mandatory')
sysSnmpTrapIpAddr1 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 17), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysSnmpTrapIpAddr1.setStatus('mandatory')
sysSnmpTrapIpAddr2 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 18), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysSnmpTrapIpAddr2.setStatus('mandatory')
sysSnmpTrapIpAddr3 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 19), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysSnmpTrapIpAddr3.setStatus('mandatory')
sysSnmpTrapIpAddr4 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 20), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysSnmpTrapIpAddr4.setStatus('mandatory')
sysThisPosId = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 254, 255))).clone(namedValues=NamedValues(("cs-product-only", 0), ("pos-1", 1), ("pos-2", 2), ("pos-3", 3), ("pos-4", 4), ("pos-5", 5), ("pos-6", 6), ("pos-7", 7), ("pos-8", 8), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysThisPosId.setStatus('mandatory')
sysPosNr = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 31), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysPosNr.setStatus('mandatory')
sysRacksNr = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 33), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysRacksNr.setStatus('mandatory')
sysPosTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32), )
if mibBuilder.loadTexts: sysPosTable.setStatus('mandatory')
sysPosEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "sysPosRackId"), (0, "CLEARTRAC7-MIB", "sysPosId"))
if mibBuilder.loadTexts: sysPosEntry.setStatus('mandatory')
sysPosId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 254, 255))).clone(namedValues=NamedValues(("cs-product-only", 0), ("pos-1", 1), ("pos-2", 2), ("pos-3", 3), ("pos-4", 4), ("pos-5", 5), ("pos-6", 6), ("pos-7", 7), ("pos-8", 8), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysPosId.setStatus('mandatory')
sysPosProduct = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 3), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysPosProduct.setStatus('mandatory')
sysPosRackId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("single-rack", 0), ("rack-1", 1), ("rack-2", 2), ("rack-3", 3), ("rack-4", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysPosRackId.setStatus('mandatory')
sysPosIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysPosIpAddr.setStatus('mandatory')
ipaddrNr = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipaddrNr.setStatus('mandatory')
ipaddrTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2), )
if mibBuilder.loadTexts: ipaddrTable.setStatus('mandatory')
ipaddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ipaddrIndex"))
if mibBuilder.loadTexts: ipaddrEntry.setStatus('mandatory')
ipaddrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipaddrIndex.setStatus('mandatory')
ipaddrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipaddrAddr.setStatus('mandatory')
ipaddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("undef", 0), ("global", 1), ("wan", 2), ("lan", 3), ("proxy", 4), ("pvc", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipaddrType.setStatus('mandatory')
ipaddrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipaddrIfIndex.setStatus('mandatory')
sysDLCI = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 34), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDLCI.setStatus('mandatory')
sysExtensionNumLength = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysExtensionNumLength.setStatus('mandatory')
sysExtendedDigitsLength = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysExtendedDigitsLength.setStatus('mandatory')
sysDialTimer = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDialTimer.setStatus('mandatory')
sysCountry = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 38), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9999))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysCountry.setStatus('mandatory')
sysJitterBuf = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysJitterBuf.setStatus('mandatory')
sysRingFreq = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("voice-data-only", 0), ("hz-17", 1), ("hz-20", 2), ("hz-25", 3), ("hz-50", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysRingFreq.setStatus('mandatory')
sysRingVolt = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 41), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 254, 255))).clone(namedValues=NamedValues(("voice-data-only", 0), ("rms-Volts-60", 1), ("rms-Volts-80", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysRingVolt.setStatus('mandatory')
sysVoiceEncoding = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 254, 255))).clone(namedValues=NamedValues(("fp-product-only", 0), ("aCode", 1), ("bCode", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysVoiceEncoding.setStatus('mandatory')
sysVoiceClocking = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 43), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 254, 255))).clone(namedValues=NamedValues(("fp-product-only", 0), ("aClock", 1), ("bClock", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysVoiceClocking.setStatus('mandatory')
sysVoiceLog = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 44), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysVoiceLog.setStatus('mandatory')
sysSpeedDialNumLength = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 45), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysSpeedDialNumLength.setStatus('mandatory')
sysAutoSaveDelay = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 46), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysAutoSaveDelay.setStatus('mandatory')
sysVoiceHighestPriority = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 48), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysVoiceHighestPriority.setStatus('mandatory')
sysVoiceClass = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 49), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysVoiceClass.setStatus('mandatory')
sysHuntForwardingAUnit = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 50), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysHuntForwardingAUnit.setStatus('mandatory')
sysHuntForwardingBUnit = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 51), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysHuntForwardingBUnit.setStatus('mandatory')
sysHuntForwardingADLCI = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 52), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysHuntForwardingADLCI.setStatus('mandatory')
sysHuntForwardingBDLCI = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 53), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysHuntForwardingBDLCI.setStatus('mandatory')
sysHuntForwardingASvcAddress = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 54), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysHuntForwardingASvcAddress.setStatus('mandatory')
sysHuntForwardingBSvcAddress = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 55), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysHuntForwardingBSvcAddress.setStatus('mandatory')
sysBackplaneRipVersion = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 56), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("v1", 2), ("v2-broadcast", 3), ("v2-multicast", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysBackplaneRipVersion.setStatus('mandatory')
sysTrapRackandPos = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 57), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysTrapRackandPos.setStatus('mandatory')
proxyNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: proxyNumber.setStatus('mandatory')
proxyTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2), )
if mibBuilder.loadTexts: proxyTable.setStatus('mandatory')
proxyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "proxyIndex"))
if mibBuilder.loadTexts: proxyEntry.setStatus('mandatory')
proxyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: proxyIndex.setStatus('mandatory')
proxyComm = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: proxyComm.setStatus('mandatory')
proxyIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: proxyIpAddr.setStatus('mandatory')
proxyIpMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: proxyIpMask.setStatus('mandatory')
proxyTrapIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: proxyTrapIpAddr.setStatus('mandatory')
proxyDefaultGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: proxyDefaultGateway.setStatus('mandatory')
intfNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfNumber.setStatus('mandatory')
intfTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2), )
if mibBuilder.loadTexts: intfTable.setStatus('mandatory')
intfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "intfIndex"))
if mibBuilder.loadTexts: intfEntry.setStatus('mandatory')
intfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfIndex.setStatus('mandatory')
intfDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfDesc.setStatus('mandatory')
intfType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 99, 254, 255))).clone(namedValues=NamedValues(("wan-on-baseCard", 1), ("voice-on-baseCard", 2), ("wan-on-slot", 3), ("voice-on-slot", 4), ("lan-on-baseCard", 5), ("lan-on-slot", 6), ("proxy-on-slot", 7), ("voice-control-on-slot", 8), ("clock-extract-module", 9), ("other", 99), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfType.setStatus('mandatory')
intfNumInType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfNumInType.setStatus('mandatory')
intfSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 254, 255))).clone(namedValues=NamedValues(("baseCard", 0), ("slot-1", 1), ("slot-2", 2), ("slot-3", 3), ("slot-4", 4), ("slot-5", 5), ("slot-6", 6), ("slot-7", 7), ("slot-8", 8), ("slot-A", 9), ("slot-B", 10), ("slot-C", 11), ("slot-D", 12), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfSlot.setStatus('mandatory')
intfSlotType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 9, 16, 17, 18, 19, 21, 22, 23, 51, 36, 9999, 254, 255))).clone(namedValues=NamedValues(("baseCard", 0), ("ethernet", 1), ("vcf03", 2), ("g703-E1", 3), ("g703-T1", 4), ("g703-E1-ii", 5), ("g703-T1-ii", 6), ("tokenring", 7), ("voice", 9), ("tic", 16), ("tic-75", 17), ("dvc", 18), ("isdn-bri-voice", 19), ("eic", 21), ("eic-120", 22), ("cem", 23), ("vfc03r", 51), ("proxy", 36), ("unkown", 9999), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfSlotType.setStatus('mandatory')
intfNumInSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfNumInSlot.setStatus('mandatory')
intfModuleType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 17, 18, 19, 20, 21, 22, 23, 255, 254, 253, 252))).clone(namedValues=NamedValues(("module-rs232-dce", 0), ("module-rs232-dte", 1), ("module-v35-dce", 2), ("module-v35-dte", 3), ("module-x21-dce", 4), ("module-x21-dte", 5), ("module-rs530-dce", 6), ("module-rs530-dte", 7), ("module-rs366A-dce", 8), ("module-rs366A-dte", 9), ("module-rs449-dce", 10), ("module-rs449-dte", 11), ("module-univ-dce", 17), ("module-univ-dte", 18), ("module-i430s-dte", 19), ("module-i430u-dte", 20), ("module-i431-T1-dte", 21), ("module-i431-E1-dte", 22), ("module-dsucsu", 23), ("module-undef-dce", 255), ("module-undef-dte", 254), ("module-undef", 253), ("not-applicable", 252)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfModuleType.setStatus('mandatory')
intfSlotNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfSlotNumber.setStatus('mandatory')
slotPortInSlotTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2), )
if mibBuilder.loadTexts: slotPortInSlotTable.setStatus('mandatory')
slotPortInSlotEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "slotSlot"), (0, "CLEARTRAC7-MIB", "slotPortInSlot"))
if mibBuilder.loadTexts: slotPortInSlotEntry.setStatus('mandatory')
slotSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 254, 255))).clone(namedValues=NamedValues(("baseCard", 0), ("slot-1", 1), ("slot-2", 2), ("slot-3", 3), ("slot-4", 4), ("slot-5", 5), ("slot-6", 6), ("slot-7", 7), ("slot-8", 8), ("slot-A", 9), ("slot-B", 10), ("slot-C", 11), ("slot-D", 12), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slotSlot.setStatus('mandatory')
slotPortInSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slotPortInSlot.setStatus('mandatory')
slotIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slotIfIndex.setStatus('mandatory')
ifwanNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifwanNumber.setStatus('mandatory')
ifwanTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2), )
if mibBuilder.loadTexts: ifwanTable.setStatus('mandatory')
ifwanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ifwanIndex"))
if mibBuilder.loadTexts: ifwanEntry.setStatus('mandatory')
ifwanIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifwanIndex.setStatus('mandatory')
ifwanDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifwanDesc.setStatus('mandatory')
ifwanProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 18, 19, 28, 29, 31, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("p-sdlc", 2), ("s-sdlc", 3), ("hdlc", 4), ("ddcmp", 5), ("t-async", 6), ("r-async", 7), ("bsc", 8), ("cop", 9), ("pvcr", 10), ("passthru", 11), ("console", 12), ("fr-net", 17), ("fr-user", 18), ("ppp", 19), ("g703", 28), ("x25", 29), ("sf", 31), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanProtocol.setStatus('mandatory')
ifwanSpeed_bps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(110, 2000000))).setLabel("ifwanSpeed-bps").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSpeed_bps.setStatus('mandatory')
ifwanFallBackSpeed_bps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2000000))).setLabel("ifwanFallBackSpeed-bps").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanFallBackSpeed_bps.setStatus('mandatory')
ifwanFallBackSpeedEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 91), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanFallBackSpeedEnable.setStatus('mandatory')
ifwanInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 21, 22, 23, 255, 254, 253))).clone(namedValues=NamedValues(("dce-rs232", 0), ("dte-rs232", 1), ("dce-v35", 2), ("dte-v35", 3), ("dce-x21", 4), ("dte-x21", 5), ("dce-rs530", 6), ("dte-rs530", 7), ("dce-rs366a", 8), ("dte-rs366a", 9), ("dce-rs449", 10), ("dte-rs449", 11), ("dte-aui", 12), ("dte-tpe", 13), ("autom", 16), ("dce-univ", 17), ("dte-univ", 18), ("i430s", 19), ("i430u", 20), ("i431-t1", 21), ("i431-e1", 22), ("dsu-csu", 23), ("dce-undef", 255), ("dte-undef", 254), ("type-undef", 253)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanInterface.setStatus('mandatory')
ifwanClocking = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 254, 255))).clone(namedValues=NamedValues(("internal", 1), ("external", 2), ("ipl", 3), ("itb", 4), ("async", 5), ("iso-int", 6), ("iso-ext", 7), ("t1-e1-B-Rcvd", 11), ("t1-e1-A-Rcvd", 12), ("t1-e1-Local", 13), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanClocking.setStatus('mandatory')
ifwanCoding = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("nrz", 1), ("nrzi", 2), ("nrz-crc0", 3), ("nrzi-crc0", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanCoding.setStatus('mandatory')
ifwanModem = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("static", 1), ("dynamic", 2), ("statpass", 3), ("dynapass", 4), ("statfix", 5), ("dynafix", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanModem.setStatus('mandatory')
ifwanTxStart = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 254, 255))).clone(namedValues=NamedValues(("auto", 0), ("max", 1), ("byte-48", 2), ("byte-96", 3), ("byte-144", 4), ("byte-192", 5), ("byte-256", 6), ("byte-512", 7), ("byte-1024", 8), ("byte-2048", 9), ("byte-8", 10), ("byte-16", 11), ("byte-24", 12), ("byte-32", 13), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTxStart.setStatus('mandatory')
ifwanTxStartCop = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 89), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 254, 255))).clone(namedValues=NamedValues(("auto", 0), ("max", 1), ("byte-8", 2), ("byte-16", 3), ("byte-24", 4), ("byte-32", 5), ("byte-40", 6), ("byte-48", 7), ("byte-96", 8), ("byte-144", 9), ("byte-192", 10), ("byte-256", 11), ("byte-512", 12), ("byte-1024", 13), ("byte-2048", 14), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTxStartCop.setStatus('mandatory')
ifwanTxStartPass = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 90), Integer32().subtype(subtypeSpec=ValueRangeConstraint(3, 12))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTxStartPass.setStatus('mandatory')
ifwanIdle = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("space", 1), ("mark", 2), ("flag", 3), ("markd", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIdle.setStatus('mandatory')
ifwanDuplex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("half", 1), ("full", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDuplex.setStatus('mandatory')
ifwanGroupPoll = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanGroupPoll.setStatus('mandatory')
ifwanGroupAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 14), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanGroupAddress.setStatus('mandatory')
ifwanPollDelay_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setLabel("ifwanPollDelay-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPollDelay_ms.setStatus('mandatory')
ifwanFrameDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 254, 255))).clone(namedValues=NamedValues(("delay-0p0-ms", 1), ("delay-0p5-ms", 2), ("delay-1p0-ms", 3), ("delay-1p5-ms", 4), ("delay-2p0-ms", 5), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanFrameDelay.setStatus('mandatory')
ifwanFormat = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 254, 255))).clone(namedValues=NamedValues(("fmt-8-none", 1), ("fmt-7-none", 2), ("fmt-7-odd", 3), ("fmt-7-even", 4), ("fmt-7-space", 5), ("fmt-7-mark", 6), ("fmt-7-ignore", 7), ("fmt-8-even", 8), ("fmt-8-odd", 9), ("fmt-8n-2stop", 10), ("fmt-8-bits", 11), ("fmt-6-bits", 12), ("sync", 13), ("async", 14), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanFormat.setStatus('mandatory')
ifwanSync = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSync.setStatus('mandatory')
ifwanDropSyncCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDropSyncCounter.setStatus('mandatory')
ifwanDropSyncCharacter = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 20), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDropSyncCharacter.setStatus('mandatory')
ifwanMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMode.setStatus('mandatory')
ifwanBodCall_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setLabel("ifwanBodCall-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanBodCall_s.setStatus('mandatory')
ifwanBodHang_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setLabel("ifwanBodHang-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanBodHang_s.setStatus('mandatory')
ifwanBodLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 95))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanBodLevel.setStatus('mandatory')
ifwanBackupCall_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setLabel("ifwanBackupCall-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanBackupCall_s.setStatus('mandatory')
ifwanDialTimeout_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 92), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 1000))).setLabel("ifwanDialTimeout-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDialTimeout_s.setStatus('mandatory')
ifwanBackupHang_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setLabel("ifwanBackupHang-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanBackupHang_s.setStatus('mandatory')
ifwanPortToBack = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 254, 255))).clone(namedValues=NamedValues(("any", 15), ("all", 16), ("port-1", 1), ("port-2", 2), ("port-3", 3), ("port-4", 4), ("port-5", 5), ("port-6", 6), ("port-7", 7), ("port-8", 8), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPortToBack.setStatus('mandatory')
ifwanDialer = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 254, 255))).clone(namedValues=NamedValues(("dTR", 1), ("x21-L1", 2), ("x21-L2", 3), ("v25-H", 4), ("v25-B", 5), ("aT-9600", 6), ("aT-19200", 7), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDialer.setStatus('mandatory')
ifwanRemoteUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 29), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanRemoteUnit.setStatus('mandatory')
ifwanClassNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 30), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanClassNumber.setStatus('mandatory')
ifwanRingNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 31), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanRingNumber.setStatus('mandatory')
ifwanIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 32), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpAddress.setStatus('mandatory')
ifwanSubnetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 33), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSubnetMask.setStatus('mandatory')
ifwanMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(128, 8192))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMaxFrame.setStatus('mandatory')
ifwanCompression = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanCompression.setStatus('mandatory')
ifwanPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifwanPriority.setStatus('mandatory')
ifwanTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1000, 30000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTimeout.setStatus('mandatory')
ifwanRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 40), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanRetry.setStatus('mandatory')
ifwanRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanRemotePort.setStatus('mandatory')
ifwanFlowControl = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("on", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanFlowControl.setStatus('mandatory')
ifwanMgmtInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 43), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("lmi", 1), ("annex-d", 2), ("q-933", 3), ("none", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMgmtInterface.setStatus('mandatory')
ifwanEnquiryTimer_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 44), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setLabel("ifwanEnquiryTimer-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanEnquiryTimer_s.setStatus('mandatory')
ifwanReportCycle = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 45), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanReportCycle.setStatus('mandatory')
ifwanIpRip = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 46), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("v1", 2), ("v2-broadcast", 3), ("v2-multicast", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpRip.setStatus('mandatory')
ifwanCllm = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("on", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanCllm.setStatus('mandatory')
ifwanIpxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 48), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpxRip.setStatus('mandatory')
ifwanIpxSap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 49), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpxSap.setStatus('mandatory')
ifwanIpxNetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 50), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpxNetNum.setStatus('mandatory')
ifwanRxFlow = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 52), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(5, 1, 2, 254, 255))).clone(namedValues=NamedValues(("none", 5), ("xon-Xoff", 1), ("hardware", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanRxFlow.setStatus('mandatory')
ifwanTxFlow = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 53), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(5, 1, 2, 254, 255))).clone(namedValues=NamedValues(("none", 5), ("xon-Xoff", 1), ("hardware", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTxFlow.setStatus('mandatory')
ifwanTxHold_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 54), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setLabel("ifwanTxHold-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTxHold_s.setStatus('mandatory')
ifwanDsOSpeed_bps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 55), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("bps-64000", 1), ("bps-56000", 2), ("not-applicable", 254), ("not-available", 255)))).setLabel("ifwanDsOSpeed-bps").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDsOSpeed_bps.setStatus('mandatory')
ifwanFraming = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 58), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("esf", 2), ("d4", 3), ("other", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanFraming.setStatus('mandatory')
ifwanTerminating = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 59), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("tE", 1), ("nT", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTerminating.setStatus('mandatory')
ifwanCrc4 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 60), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanCrc4.setStatus('mandatory')
ifwanLineCoding = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 61), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 5, 4, 7, 254, 255))).clone(namedValues=NamedValues(("ami-e1", 0), ("hdb3-e1", 1), ("b8zs-t1", 2), ("ami-t1", 5), ("other", 4), ("b7sz-t1", 7), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanLineCoding.setStatus('mandatory')
ifwanBChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 62), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("b1", 2), ("b2", 3), ("b1-plus-b2", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanBChannels.setStatus('mandatory')
ifwanMultiframing = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 63), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMultiframing.setStatus('mandatory')
ifwanOspfEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 64), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfEnable.setStatus('mandatory')
ifwanOspfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 65), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfAreaId.setStatus('mandatory')
ifwanOspfTransitDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 66), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfTransitDelay.setStatus('mandatory')
ifwanOspfRetransmitInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 67), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfRetransmitInt.setStatus('mandatory')
ifwanOspfHelloInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 68), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfHelloInt.setStatus('mandatory')
ifwanOspfDeadInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 69), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfDeadInt.setStatus('mandatory')
ifwanOspfPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 70), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfPassword.setStatus('mandatory')
ifwanOspfMetricCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 71), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfMetricCost.setStatus('mandatory')
ifwanChUse = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 72), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanChUse.setStatus('mandatory')
ifwanGainLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 77), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("db-30", 1), ("db-36", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanGainLimit.setStatus('mandatory')
ifwanSignaling = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 78), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("t1-rob-bit", 2), ("e1-cas", 3), ("e1-ccs", 4), ("trsp-orig", 5), ("trsp-answ", 6), ("qsig", 7), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSignaling.setStatus('mandatory')
ifwanIdleCode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 79), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIdleCode.setStatus('mandatory')
ifwanLineBuild = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 80), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 254, 255))).clone(namedValues=NamedValues(("ft0-to-133", 0), ("ft133-to-266", 1), ("ft266-to-399", 2), ("ft399-to-533", 3), ("ft533-to-655", 4), ("dbMinus7point5", 5), ("dbMinus15", 6), ("dbMinus22point5", 7), ("ohm-75", 8), ("ohm-120", 9), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanLineBuild.setStatus('mandatory')
ifwanT1E1Status = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 84), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanT1E1Status.setStatus('mandatory')
ifwanT1E1LoopBack = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 85), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("lev1-local", 3), ("lev2-local", 4), ("echo", 5), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanT1E1LoopBack.setStatus('mandatory')
ifwanChExp = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 86), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanChExp.setStatus('mandatory')
ifwanT1E1InterBit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 87), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanT1E1InterBit.setStatus('mandatory')
ifwanEncodingLaw = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 88), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 254, 255))).clone(namedValues=NamedValues(("aLaw", 0), ("muLaw", 1), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanEncodingLaw.setStatus('mandatory')
ifwanCellPacketization = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 93), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanCellPacketization.setStatus('mandatory')
ifwanMaxChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 94), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMaxChannels.setStatus('mandatory')
ifwanCondLMIPort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 95), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 254, 255))).clone(namedValues=NamedValues(("none", 0), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanCondLMIPort.setStatus('mandatory')
ifwanExtNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 96), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanExtNumber.setStatus('mandatory')
ifwanDestExtNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 97), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDestExtNumber.setStatus('mandatory')
ifwanConnTimeout_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 98), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 30))).setLabel("ifwanConnTimeout-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanConnTimeout_s.setStatus('mandatory')
ifwanSvcAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 99), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("e-164", 2), ("x-121", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcAddressType.setStatus('mandatory')
ifwanSvcNetworkAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 100), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcNetworkAddress.setStatus('mandatory')
ifwanSvcMaxTxTimeoutT200 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 101), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcMaxTxTimeoutT200.setStatus('mandatory')
ifwanSvcInactiveTimeoutT203 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 102), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 60))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcInactiveTimeoutT203.setStatus('mandatory')
ifwanSvcIframeRetransmissionsN200 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 103), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcIframeRetransmissionsN200.setStatus('mandatory')
ifwanSvcSetupTimeoutT303 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 104), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcSetupTimeoutT303.setStatus('mandatory')
ifwanSvcDisconnectTimeoutT305 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 105), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcDisconnectTimeoutT305.setStatus('mandatory')
ifwanSvcReleaseTimeoutT308 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 106), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcReleaseTimeoutT308.setStatus('mandatory')
ifwanSvcCallProceedingTimeoutT310 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 107), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcCallProceedingTimeoutT310.setStatus('mandatory')
ifwanSvcStatusTimeoutT322 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 108), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcStatusTimeoutT322.setStatus('mandatory')
ifwanTeiMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 109), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("dynamic", 1), ("fixed", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTeiMode.setStatus('mandatory')
ifwanDigitNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 110), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDigitNumber.setStatus('mandatory')
ifwanMsn1 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 111), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMsn1.setStatus('mandatory')
ifwanMsn2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 112), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMsn2.setStatus('mandatory')
ifwanMsn3 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 113), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMsn3.setStatus('mandatory')
ifwanX25Encapsulation = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 114), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("annex-f", 1), ("annex-g", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanX25Encapsulation.setStatus('mandatory')
ifwanPvcNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 115), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPvcNumber.setStatus('mandatory')
ifwanQsigPbxAb = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 116), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("a", 1), ("b", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanQsigPbxAb.setStatus('mandatory')
ifwanQsigPbxXy = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 117), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("x", 1), ("y", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanQsigPbxXy.setStatus('mandatory')
ifwanIpRipTxRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 118), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("duplex", 1), ("tx-only", 2), ("rx-only", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpRipTxRx.setStatus('mandatory')
ifwanIpRipAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 119), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("simple", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpRipAuthType.setStatus('mandatory')
ifwanIpRipPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 120), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpRipPassword.setStatus('mandatory')
ifwanPppSilent = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 121), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("send-request", 1), ("wait-for-request", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppSilent.setStatus('mandatory')
ifwanPppConfigRestartTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 122), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppConfigRestartTimer.setStatus('mandatory')
ifwanPppConfigRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 123), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppConfigRetries.setStatus('mandatory')
ifwanPppNegociateLocalMru = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 124), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppNegociateLocalMru.setStatus('mandatory')
ifwanPppLocalMru = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 125), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppLocalMru.setStatus('mandatory')
ifwanPppNegociatePeerMru = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 126), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppNegociatePeerMru.setStatus('mandatory')
ifwanPppPeerMruUpTo = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 127), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppPeerMruUpTo.setStatus('mandatory')
ifwanPppNegociateAccm = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 128), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppNegociateAccm.setStatus('mandatory')
ifwanPppRequestedAccmChar = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 129), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppRequestedAccmChar.setStatus('mandatory')
ifwanPppAcceptAccmPeer = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 130), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppAcceptAccmPeer.setStatus('mandatory')
ifwanPppAcceptableAccmChar = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 131), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppAcceptableAccmChar.setStatus('mandatory')
ifwanPppRequestMagicNum = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 132), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppRequestMagicNum.setStatus('mandatory')
ifwanPppAcceptMagicNum = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 133), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppAcceptMagicNum.setStatus('mandatory')
ifwanPppAcceptOldIpAddNeg = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 134), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppAcceptOldIpAddNeg.setStatus('mandatory')
ifwanPppNegociateIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 135), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppNegociateIpAddress.setStatus('mandatory')
ifwanPppAcceptIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 136), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppAcceptIpAddress.setStatus('mandatory')
ifwanPppRemoteIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 137), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppRemoteIpAddress.setStatus('mandatory')
ifwanPppRemoteSubnetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 138), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppRemoteSubnetMask.setStatus('mandatory')
ifwanHighPriorityTransparentClass = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 139), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanHighPriorityTransparentClass.setStatus('mandatory')
ifwanTransparentClassNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 140), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTransparentClassNumber.setStatus('mandatory')
ifwanChannelCompressed = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 141), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanChannelCompressed.setStatus('mandatory')
ifwanSfType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 142), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("demodulator", 1), ("modulator", 2), ("expansion", 3), ("agregate", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSfType.setStatus('mandatory')
ifwanSfMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 143), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("active", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSfMode.setStatus('mandatory')
ifwanSfCarrierId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 144), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSfCarrierId.setStatus('mandatory')
ifvceNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifvceNumber.setStatus('mandatory')
ifvceTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2), )
if mibBuilder.loadTexts: ifvceTable.setStatus('mandatory')
ifvceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ifvceIndex"))
if mibBuilder.loadTexts: ifvceEntry.setStatus('mandatory')
ifvceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifvceIndex.setStatus('mandatory')
ifvceDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifvceDesc.setStatus('mandatory')
ifvceProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 21, 22, 23, 24, 26, 30, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("acelp-8-kbs", 21), ("acelp-4-8-kbs", 22), ("pcm64k", 23), ("adpcm32k", 24), ("atc16k", 26), ("acelp-cn", 30), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceProtocol.setStatus('mandatory')
ifvceInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("fxs", 1), ("fx0", 2), ("e-and-m", 3), ("ac15", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceInterface.setStatus('mandatory')
ifvceRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 899))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRemotePort.setStatus('mandatory')
ifvceActivationType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("predefined", 1), ("switched", 2), ("autodial", 3), ("broadcast", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceActivationType.setStatus('mandatory')
ifvceRemoteUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 7), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRemoteUnit.setStatus('mandatory')
ifvceHuntGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("a", 2), ("b", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceHuntGroup.setStatus('mandatory')
ifvceToneDetectRegen_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setLabel("ifvceToneDetectRegen-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceToneDetectRegen_s.setStatus('mandatory')
ifvcePulseMakeBreak_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(20, 80))).setLabel("ifvcePulseMakeBreak-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvcePulseMakeBreak_ms.setStatus('mandatory')
ifvceToneOn_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 1000))).setLabel("ifvceToneOn-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceToneOn_ms.setStatus('mandatory')
ifvceToneOff_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 1000))).setLabel("ifvceToneOff-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceToneOff_ms.setStatus('mandatory')
ifvceSilenceSuppress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(4, 20))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceSilenceSuppress.setStatus('mandatory')
ifvceDVCSilenceSuppress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 33), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceDVCSilenceSuppress.setStatus('mandatory')
ifvceSignaling = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 6, 10, 11, 12, 13, 14, 15, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 32, 30, 254, 255))).clone(namedValues=NamedValues(("e-and-m-4w-imm-start", 1), ("e-and-m-2W-imm-start", 2), ("loop-start", 3), ("ac15-a", 4), ("ac15-c", 6), ("e-and-m-4w-timed-e", 10), ("e-and-m-2W-timed-e", 11), ("e-and-m-4W-wink-start", 12), ("e-and-m-2W-wink-start", 13), ("e-and-m-4W-delay-dial", 14), ("e-and-m-2W-delay-dial", 15), ("e-and-m-4W-colisee", 17), ("e-and-m-2W-colisee", 18), ("imm-start", 21), ("r2", 22), ("fxo", 23), ("fxs", 24), ("gnd-fxo", 25), ("gnd-fxs", 26), ("plar", 27), ("poi", 28), ("wink-start", 32), ("ab00", 30), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceSignaling.setStatus('mandatory')
ifvceLocalInbound = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 254, 255))).clone(namedValues=NamedValues(("db-22", 1), ("db-21", 2), ("db-20", 3), ("db-19", 4), ("db-18", 5), ("db-17", 6), ("db-16", 7), ("db-15", 8), ("db-14", 9), ("db-13", 10), ("db-12", 11), ("db-11", 12), ("db-10", 13), ("db-9", 14), ("db-8", 15), ("db-7", 16), ("db-6", 17), ("db-5", 18), ("db-4", 19), ("db-3", 20), ("db-2", 21), ("db-1", 22), ("db0", 23), ("db1", 24), ("db2", 25), ("db3", 26), ("db4", 27), ("db5", 28), ("db6", 29), ("db7", 30), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceLocalInbound.setStatus('mandatory')
ifvceLocalOutbound = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 254, 255))).clone(namedValues=NamedValues(("db-22", 1), ("db-21", 2), ("db-20", 3), ("db-19", 4), ("db-18", 5), ("db-17", 6), ("db-16", 7), ("db-15", 8), ("db-14", 9), ("db-13", 10), ("db-12", 11), ("db-11", 12), ("db-10", 13), ("db-9", 14), ("db-8", 15), ("db-7", 16), ("db-6", 17), ("db-5", 18), ("db-4", 19), ("db-3", 20), ("db-2", 21), ("db-1", 22), ("db0", 23), ("db1", 24), ("db2", 25), ("db3", 26), ("db4", 27), ("db5", 28), ("db6", 29), ("db7", 30), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceLocalOutbound.setStatus('mandatory')
ifvceDVCLocalInbound = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 254, 255))).clone(namedValues=NamedValues(("db-12", 9), ("db-11", 10), ("db-10", 11), ("db-9", 12), ("db-8", 13), ("db-7", 14), ("db-6", 15), ("db-5", 16), ("db-4", 17), ("db-3", 18), ("db-2", 19), ("db-1", 20), ("db0", 21), ("db1", 22), ("db2", 23), ("db3", 24), ("db4", 25), ("db5", 26), ("db6", 27), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceDVCLocalInbound.setStatus('mandatory')
ifvceDVCLocalOutbound = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 254, 255))).clone(namedValues=NamedValues(("db-12", 9), ("db-11", 10), ("db-10", 11), ("db-9", 12), ("db-8", 13), ("db-7", 14), ("db-6", 15), ("db-5", 16), ("db-4", 17), ("db-3", 18), ("db-2", 19), ("db-1", 20), ("db0", 21), ("db1", 22), ("db2", 23), ("db3", 24), ("db4", 25), ("db5", 26), ("db6", 27), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceDVCLocalOutbound.setStatus('mandatory')
ifvceFaxModemRelay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("fax", 2), ("both", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceFaxModemRelay.setStatus('mandatory')
ifvceMaxFaxModemRate = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 44), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 254, 255))).clone(namedValues=NamedValues(("rate-14400", 1), ("rate-12000", 2), ("rate-9600", 3), ("rate-7200", 4), ("rate-4800", 5), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceMaxFaxModemRate.setStatus('mandatory')
ifvceFxoTimeout_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 99))).setLabel("ifvceFxoTimeout-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceFxoTimeout_s.setStatus('mandatory')
ifvceTeTimer_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setLabel("ifvceTeTimer-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceTeTimer_s.setStatus('mandatory')
ifvceFwdDigits = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("all", 2), ("ext", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceFwdDigits.setStatus('mandatory')
ifvceFwdType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("tone", 1), ("pulse", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceFwdType.setStatus('mandatory')
ifvceFwdDelay_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10000))).setLabel("ifvceFwdDelay-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceFwdDelay_ms.setStatus('mandatory')
ifvceDelDigits = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceDelDigits.setStatus('mandatory')
ifvceExtNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 25), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceExtNumber.setStatus('mandatory')
ifvceLinkDwnBusy = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("broadcast", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceLinkDwnBusy.setStatus('mandatory')
ifvceToneType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 254, 255))).clone(namedValues=NamedValues(("dtmf", 0), ("mf", 1), ("r2", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceToneType.setStatus('mandatory')
ifvceRate8kx1 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate8kx1.setStatus('mandatory')
ifvceRate8kx2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate8kx2.setStatus('mandatory')
ifvceRate5k8x1 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate5k8x1.setStatus('mandatory')
ifvceRate5k8x2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate5k8x2.setStatus('mandatory')
ifvceBroadcastDir = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("tX", 1), ("rX", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceBroadcastDir.setStatus('mandatory')
ifvceBroadcastPvc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 300))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceBroadcastPvc.setStatus('mandatory')
ifvceAnalogLinkDwnBusy = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("broadcast", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceAnalogLinkDwnBusy.setStatus('mandatory')
ifvceSpeedDialNum = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 39), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceSpeedDialNum.setStatus('mandatory')
ifvceR2ExtendedDigitSrc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("map", 1), ("user", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceR2ExtendedDigitSrc.setStatus('mandatory')
ifvceR2Group2Digit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceR2Group2Digit.setStatus('mandatory')
ifvceR2CompleteDigit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceR2CompleteDigit.setStatus('mandatory')
ifvceR2BusyDigit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 43), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceR2BusyDigit.setStatus('mandatory')
ifvceRate8kx3 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate8kx3.setStatus('mandatory')
ifvceRate6kx1 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 46), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate6kx1.setStatus('mandatory')
ifvceRate6kx2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate6kx2.setStatus('mandatory')
ifvceRate6kx3 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 48), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate6kx3.setStatus('mandatory')
ifvceRate4k8x1 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 49), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate4k8x1.setStatus('mandatory')
ifvceRate4k8x2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 50), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate4k8x2.setStatus('mandatory')
ifvceDTalkThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 51), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 2, 3, 4, 5, 6, 7, 26, 254, 255))).clone(namedValues=NamedValues(("db-12", 8), ("db-11", 9), ("db-10", 10), ("db-9", 11), ("db-8", 12), ("db-7", 13), ("db-6", 14), ("db-5", 15), ("db-4", 16), ("db-3", 17), ("db-2", 18), ("db-1", 19), ("db0", 20), ("db1", 21), ("db2", 22), ("db3", 23), ("db4", 24), ("db5", 25), ("db6", 1), ("db7", 2), ("db8", 3), ("db9", 4), ("db10", 5), ("db11", 6), ("db12", 7), ("disabled", 26), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceDTalkThreshold.setStatus('mandatory')
ifvceToneEnergyDetec = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 52), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("yes", 1), ("no", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceToneEnergyDetec.setStatus('mandatory')
ifvceExtendedDigitSrc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 53), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("map", 1), ("user", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceExtendedDigitSrc.setStatus('mandatory')
ifvceDtmfOnTime = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 54), Integer32().subtype(subtypeSpec=ValueRangeConstraint(20, 50))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceDtmfOnTime.setStatus('mandatory')
ifvceEnableDtmfOnTime = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 55), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceEnableDtmfOnTime.setStatus('mandatory')
iflanNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iflanNumber.setStatus('mandatory')
iflanTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2), )
if mibBuilder.loadTexts: iflanTable.setStatus('mandatory')
iflanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "iflanIndex"))
if mibBuilder.loadTexts: iflanEntry.setStatus('mandatory')
iflanIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iflanIndex.setStatus('mandatory')
iflanDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iflanDesc.setStatus('mandatory')
iflanProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 13, 14, 15, 16, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("token-ring", 13), ("ethernet-auto", 14), ("ethernet-802p3", 15), ("ethernet-v2", 16), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanProtocol.setStatus('mandatory')
iflanSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("tr-4-Mbps", 1), ("tr-16-Mbps", 2), ("eth-10-Mbps", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanSpeed.setStatus('mandatory')
iflanPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: iflanPriority.setStatus('mandatory')
iflanCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: iflanCost.setStatus('mandatory')
iflanPhysAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanPhysAddr.setStatus('mandatory')
iflanIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 8), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpAddress.setStatus('mandatory')
iflanSubnetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 9), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanSubnetMask.setStatus('mandatory')
iflanMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(128, 8192))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanMaxFrame.setStatus('mandatory')
iflanEth_LinkIntegrity = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setLabel("iflanEth-LinkIntegrity").setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanEth_LinkIntegrity.setStatus('mandatory')
iflanTr_Monitor = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setLabel("iflanTr-Monitor").setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanTr_Monitor.setStatus('mandatory')
iflanTr_Etr = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setLabel("iflanTr-Etr").setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanTr_Etr.setStatus('mandatory')
iflanTr_RingNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 15), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setLabel("iflanTr-RingNumber").setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanTr_RingNumber.setStatus('mandatory')
iflanIpRip = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("v1", 2), ("v2-broadcast", 3), ("v2-multicast", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpRip.setStatus('mandatory')
iflanIpxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpxRip.setStatus('mandatory')
iflanIpxSap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpxSap.setStatus('mandatory')
iflanIpxNetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 19), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpxNetNum.setStatus('mandatory')
iflanIpxLanType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("ethernet-802p2", 1), ("ethernet-snap", 2), ("ethernet-802p3", 3), ("ethernet-ii", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpxLanType.setStatus('mandatory')
iflanOspfEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfEnable.setStatus('mandatory')
iflanOspfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 22), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfAreaId.setStatus('mandatory')
iflanOspfPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfPriority.setStatus('mandatory')
iflanOspfTransitDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfTransitDelay.setStatus('mandatory')
iflanOspfRetransmitInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfRetransmitInt.setStatus('mandatory')
iflanOspfHelloInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfHelloInt.setStatus('mandatory')
iflanOspfDeadInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 27), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfDeadInt.setStatus('mandatory')
iflanOspfPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 28), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfPassword.setStatus('mandatory')
iflanOspfMetricCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfMetricCost.setStatus('mandatory')
iflanIpRipTxRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("duplex", 1), ("tx-only", 2), ("rx-only", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpRipTxRx.setStatus('mandatory')
iflanIpRipAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("simple", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpRipAuthType.setStatus('mandatory')
iflanIpRipPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 32), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpRipPassword.setStatus('mandatory')
puNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: puNumber.setStatus('mandatory')
puTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2), )
if mibBuilder.loadTexts: puTable.setStatus('mandatory')
puEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "puIndex"))
if mibBuilder.loadTexts: puEntry.setStatus('mandatory')
puIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: puIndex.setStatus('mandatory')
puMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("sdlc-llc", 2), ("sdlc-sdlc", 3), ("sdlc-dlsw", 4), ("sdlc-links", 5), ("llc-dlsw", 6), ("llc-links", 7), ("dlsw-links", 8), ("sdlc-ban", 9), ("sdlc-bnn", 10), ("llc-ban", 11), ("llc-bnn", 12), ("dlsw-ban", 13), ("dlsw-bnn", 14), ("ban-link", 15), ("bnn-link", 16), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puMode.setStatus('mandatory')
puActive = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puActive.setStatus('mandatory')
puDelayBeforeConn_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setLabel("puDelayBeforeConn-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDelayBeforeConn_s.setStatus('mandatory')
puRole = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("secondary", 1), ("primary", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puRole.setStatus('mandatory')
puSdlcPort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcPort.setStatus('mandatory')
puSdlcAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcAddress.setStatus('mandatory')
puSdlcPort2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcPort2.setStatus('mandatory')
puSdlcAddress2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcAddress2.setStatus('mandatory')
puSdlcTimeout_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 30000))).setLabel("puSdlcTimeout-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcTimeout_ms.setStatus('mandatory')
puSdlcRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcRetry.setStatus('mandatory')
puSdlcWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 7))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcWindow.setStatus('mandatory')
puSdlcMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 13), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcMaxFrame.setStatus('mandatory')
puLlcDa = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 14), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcDa.setStatus('mandatory')
puLlcTr_Routing = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("trsp", 1), ("src", 2), ("not-applicable", 254), ("not-available", 255)))).setLabel("puLlcTr-Routing").setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcTr_Routing.setStatus('mandatory')
puLlcSsap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcSsap.setStatus('mandatory')
puLlcDsap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 17), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcDsap.setStatus('mandatory')
puLlcTimeout_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 30000))).setLabel("puLlcTimeout-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcTimeout_ms.setStatus('mandatory')
puLlcRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcRetry.setStatus('mandatory')
puLlcWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcWindow.setStatus('mandatory')
puLlcDynamicWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcDynamicWindow.setStatus('mandatory')
puLlcMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 23), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcMaxFrame.setStatus('mandatory')
puDlsDa = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDlsDa.setStatus('mandatory')
puDlsSsap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 25), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDlsSsap.setStatus('mandatory')
puDlsDsap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 26), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDlsDsap.setStatus('mandatory')
puDlsIpSrc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 27), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDlsIpSrc.setStatus('mandatory')
puDlsIpDst = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 28), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDlsIpDst.setStatus('mandatory')
puDlsMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 29), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDlsMaxFrame.setStatus('mandatory')
puLinkRemoteUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 30), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLinkRemoteUnit.setStatus('mandatory')
puLinkClassNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 31), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLinkClassNumber.setStatus('mandatory')
puLinkRemPu = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 32), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLinkRemPu.setStatus('mandatory')
puXid = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("manual", 3), ("auto", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puXid.setStatus('mandatory')
puXidId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 34), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puXidId.setStatus('mandatory')
puXidFormat = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 35), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puXidFormat.setStatus('mandatory')
puXidPuType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 36), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puXidPuType.setStatus('mandatory')
puBnnPvc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 37), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBnnPvc.setStatus('mandatory')
puBnnFid = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("fID2", 1), ("fID4", 2), ("aPPN", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBnnFid.setStatus('mandatory')
puBanDa = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 39), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanDa.setStatus('mandatory')
puBanBnnSsap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 40), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnSsap.setStatus('mandatory')
puBanBnnDsap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 41), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnDsap.setStatus('mandatory')
puBanBnnTimeout_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 30000))).setLabel("puBanBnnTimeout-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnTimeout_ms.setStatus('mandatory')
puBanBnnRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 43), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnRetry.setStatus('mandatory')
puBanBnnWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 44), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnWindow.setStatus('mandatory')
puBanBnnNw = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 45), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnNw.setStatus('mandatory')
puBanBnnMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 46), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnMaxFrame.setStatus('mandatory')
puBanRouting = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("transparent", 1), ("source", 2), ("source-a", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanRouting.setStatus('mandatory')
scheduleNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scheduleNumber.setStatus('mandatory')
scheduleTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2), )
if mibBuilder.loadTexts: scheduleTable.setStatus('mandatory')
scheduleEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "schedulePeriod"))
if mibBuilder.loadTexts: scheduleEntry.setStatus('mandatory')
schedulePeriod = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: schedulePeriod.setStatus('mandatory')
scheduleEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: scheduleEnable.setStatus('mandatory')
scheduleDay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 254, 255))).clone(namedValues=NamedValues(("all", 1), ("sunday", 2), ("monday", 3), ("tuesday", 4), ("wednesday", 5), ("thursday", 6), ("friday", 7), ("saturday", 8), ("workday", 9), ("weekend", 10), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: scheduleDay.setStatus('mandatory')
scheduleBeginTime = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: scheduleBeginTime.setStatus('mandatory')
scheduleEndTime = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 5), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: scheduleEndTime.setStatus('mandatory')
schedulePort1 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort1.setStatus('mandatory')
schedulePort2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort2.setStatus('mandatory')
schedulePort3 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort3.setStatus('mandatory')
schedulePort4 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort4.setStatus('mandatory')
schedulePort5 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort5.setStatus('mandatory')
schedulePort6 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort6.setStatus('mandatory')
schedulePort7 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort7.setStatus('mandatory')
schedulePort8 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort8.setStatus('mandatory')
bridgeEnable = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeEnable.setStatus('mandatory')
bridgeStpEnable = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeStpEnable.setStatus('mandatory')
bridgeLanType = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("ethernet-auto", 1), ("ethernet-802p3", 2), ("ethernet-v2", 3), ("token-ring", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeLanType.setStatus('mandatory')
bridgeAgingTime_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 1000000))).setLabel("bridgeAgingTime-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeAgingTime_s.setStatus('mandatory')
bridgeHelloTime_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10))).setLabel("bridgeHelloTime-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeHelloTime_s.setStatus('mandatory')
bridgeMaxAge_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(6, 40))).setLabel("bridgeMaxAge-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeMaxAge_s.setStatus('mandatory')
bridgeForwardDelay_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(4, 30))).setLabel("bridgeForwardDelay-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeForwardDelay_s.setStatus('mandatory')
bridgePriority = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgePriority.setStatus('mandatory')
bridgeTr_Number = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setLabel("bridgeTr-Number").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeTr_Number.setStatus('mandatory')
bridgeTr_SteSpan = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("auto", 1), ("disable", 2), ("forced", 3), ("not-applicable", 254), ("not-available", 255)))).setLabel("bridgeTr-SteSpan").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeTr_SteSpan.setStatus('mandatory')
bridgeTr_MaxHop = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setLabel("bridgeTr-MaxHop").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeTr_MaxHop.setStatus('mandatory')
phoneNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: phoneNumber.setStatus('mandatory')
phoneTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2), )
if mibBuilder.loadTexts: phoneTable.setStatus('mandatory')
phoneEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "phoneIndex"))
if mibBuilder.loadTexts: phoneEntry.setStatus('mandatory')
phoneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: phoneIndex.setStatus('mandatory')
phoneRemoteUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 2), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: phoneRemoteUnit.setStatus('mandatory')
phonePhoneNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: phonePhoneNumber.setStatus('mandatory')
phoneNextHop = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: phoneNextHop.setStatus('mandatory')
phoneCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: phoneCost.setStatus('mandatory')
filterNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: filterNumber.setStatus('mandatory')
filterTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2), )
if mibBuilder.loadTexts: filterTable.setStatus('mandatory')
filterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "filterIndex"))
if mibBuilder.loadTexts: filterEntry.setStatus('mandatory')
filterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: filterIndex.setStatus('mandatory')
filterActive = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: filterActive.setStatus('mandatory')
filterDefinition = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: filterDefinition.setStatus('mandatory')
classNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: classNumber.setStatus('mandatory')
classDefaultClass = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: classDefaultClass.setStatus('mandatory')
classTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3), )
if mibBuilder.loadTexts: classTable.setStatus('mandatory')
classEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "classIndex"))
if mibBuilder.loadTexts: classEntry.setStatus('mandatory')
classIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: classIndex.setStatus('mandatory')
classWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: classWeight.setStatus('mandatory')
classPrefRoute = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: classPrefRoute.setStatus('mandatory')
pvcNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pvcNumber.setStatus('mandatory')
pvcTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2), )
if mibBuilder.loadTexts: pvcTable.setStatus('mandatory')
pvcEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "pvcIndex"))
if mibBuilder.loadTexts: pvcEntry.setStatus('mandatory')
pvcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pvcIndex.setStatus('mandatory')
pvcMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 7, 8, 9, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("pvcr", 2), ("multiplex", 3), ("transp", 4), ("rfc-1490", 5), ("fp", 7), ("broadcast", 8), ("fp-multiplex", 9), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcMode.setStatus('mandatory')
pvcDlciAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1022))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcDlciAddress.setStatus('mandatory')
pvcPort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcPort.setStatus('mandatory')
pvcUserPort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcUserPort.setStatus('mandatory')
pvcInfoRate = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1200, 2000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcInfoRate.setStatus('mandatory')
pvcPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pvcPriority.setStatus('mandatory')
pvcCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pvcCost.setStatus('mandatory')
pvcRemoteUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 11), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcRemoteUnit.setStatus('mandatory')
pvcTimeout_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1000, 30000))).setLabel("pvcTimeout-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcTimeout_ms.setStatus('mandatory')
pvcRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcRetry.setStatus('mandatory')
pvcCompression = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcCompression.setStatus('mandatory')
pvcIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 15), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpAddress.setStatus('mandatory')
pvcSubnetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 16), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcSubnetMask.setStatus('mandatory')
pvcMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(128, 8192))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcMaxFrame.setStatus('mandatory')
pvcBroadcastGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcBroadcastGroup.setStatus('mandatory')
pvcBrgConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcBrgConnection.setStatus('mandatory')
pvcIpConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpConnection.setStatus('mandatory')
pvcRemotePvc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 300))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcRemotePvc.setStatus('mandatory')
pvcPvcClass = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcPvcClass.setStatus('mandatory')
pvcNetworkPort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 23), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcNetworkPort.setStatus('mandatory')
pvcRingNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcRingNumber.setStatus('mandatory')
pvcIpRip = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("v1", 2), ("v2-broadcast", 3), ("v2-multicast", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpRip.setStatus('mandatory')
pvcBurstInfoRate = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1200, 2000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcBurstInfoRate.setStatus('mandatory')
pvcUserDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 27), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1022))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcUserDlci.setStatus('mandatory')
pvcNetworkDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 28), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1022))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcNetworkDlci.setStatus('mandatory')
pvcIpxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpxRip.setStatus('mandatory')
pvcIpxSap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpxSap.setStatus('mandatory')
pvcIpxNetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 31), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpxNetNum.setStatus('mandatory')
pvcIpxConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpxConnection.setStatus('mandatory')
pvcType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("dedicated", 2), ("answer", 3), ("call-backup", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcType.setStatus('mandatory')
pvcBackupCall_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setLabel("pvcBackupCall-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcBackupCall_s.setStatus('mandatory')
pvcBackupHang_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setLabel("pvcBackupHang-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcBackupHang_s.setStatus('mandatory')
pvcBackup = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(15, 16, 254, 255))).clone(namedValues=NamedValues(("any", 15), ("all", 16), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcBackup.setStatus('mandatory')
pvcOspfEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfEnable.setStatus('mandatory')
pvcOspfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 38), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfAreaId.setStatus('mandatory')
pvcOspfTransitDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfTransitDelay.setStatus('mandatory')
pvcOspfRetransmitInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 40), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfRetransmitInt.setStatus('mandatory')
pvcOspfHelloInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfHelloInt.setStatus('mandatory')
pvcOspfDeadInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfDeadInt.setStatus('mandatory')
pvcOspfPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 43), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfPassword.setStatus('mandatory')
pvcOspfMetricCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 44), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfMetricCost.setStatus('mandatory')
pvcProxyAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 45), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcProxyAddr.setStatus('mandatory')
pvcLlcConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 46), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcLlcConnection.setStatus('mandatory')
pvcDialTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 47), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcDialTimeout.setStatus('mandatory')
pvcMaxChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 48), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcMaxChannels.setStatus('mandatory')
pvcHuntForwardingAUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 49), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcHuntForwardingAUnit.setStatus('mandatory')
pvcHuntForwardingBUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 50), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcHuntForwardingBUnit.setStatus('mandatory')
pvcRemoteFpUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 51), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcRemoteFpUnit.setStatus('mandatory')
pvcIpRipTxRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 52), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("duplex", 1), ("tx-only", 2), ("rx-only", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpRipTxRx.setStatus('mandatory')
pvcIpRipAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 53), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("simple", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpRipAuthType.setStatus('mandatory')
pvcIpRipPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 54), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpRipPassword.setStatus('mandatory')
ipxRouterEnable = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 11, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxRouterEnable.setStatus('mandatory')
ipxInternalNetNum = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 11, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxInternalNetNum.setStatus('mandatory')
ipRouterEnable = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 14, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipRouterEnable.setStatus('mandatory')
bootpEnable = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bootpEnable.setStatus('mandatory')
bootpMaxHops = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bootpMaxHops.setStatus('mandatory')
bootpIpDestAddr1 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bootpIpDestAddr1.setStatus('mandatory')
bootpIpDestAddr2 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bootpIpDestAddr2.setStatus('mandatory')
bootpIpDestAddr3 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bootpIpDestAddr3.setStatus('mandatory')
bootpIpDestAddr4 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bootpIpDestAddr4.setStatus('mandatory')
timepTimeZoneSign = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepTimeZoneSign.setStatus('mandatory')
timepTimeZone = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 720))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepTimeZone.setStatus('mandatory')
timepDaylightSaving = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepDaylightSaving.setStatus('mandatory')
timepServerProtocol = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("udp", 2), ("tcp", 3), ("both", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepServerProtocol.setStatus('mandatory')
timepClientProtocol = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("udp", 2), ("tcp", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepClientProtocol.setStatus('mandatory')
timepServerIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepServerIpAddress.setStatus('mandatory')
timepClientUpdateInterval = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepClientUpdateInterval.setStatus('mandatory')
timepClientUdpTimeout = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepClientUdpTimeout.setStatus('mandatory')
timepClientUdpRetransmissions = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepClientUdpRetransmissions.setStatus('mandatory')
timepGetServerTimeNow = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepGetServerTimeNow.setStatus('mandatory')
ipstaticNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipstaticNumber.setStatus('mandatory')
ipstaticTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2), )
if mibBuilder.loadTexts: ipstaticTable.setStatus('mandatory')
ipstaticEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ipstaticIndex"))
if mibBuilder.loadTexts: ipstaticEntry.setStatus('mandatory')
ipstaticIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipstaticIndex.setStatus('mandatory')
ipstaticValid = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipstaticValid.setStatus('mandatory')
ipstaticIpDest = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipstaticIpDest.setStatus('mandatory')
ipstaticMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipstaticMask.setStatus('mandatory')
ipstaticNextHop = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipstaticNextHop.setStatus('mandatory')
ospfGlobal = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1))
ospfArea = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2))
ospfRange = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3))
ospfVLink = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4))
ospfGlobalRouterId = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfGlobalRouterId.setStatus('mandatory')
ospfGlobalAutoVLink = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfGlobalAutoVLink.setStatus('mandatory')
ospfGlobalRackAreaId = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfGlobalRackAreaId.setStatus('mandatory')
ospfGlobalGlobalAreaId = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfGlobalGlobalAreaId.setStatus('mandatory')
ospfAreaNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNumber.setStatus('mandatory')
ospfAreaTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2), )
if mibBuilder.loadTexts: ospfAreaTable.setStatus('mandatory')
ospfAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ospfAreaIndex"))
if mibBuilder.loadTexts: ospfAreaEntry.setStatus('mandatory')
ospfAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIndex.setStatus('mandatory')
ospfAreaAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfAreaAreaId.setStatus('mandatory')
ospfAreaEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfAreaEnable.setStatus('mandatory')
ospfAreaAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("simple", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfAreaAuthType.setStatus('mandatory')
ospfAreaImportASExt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfAreaImportASExt.setStatus('mandatory')
ospfAreaStubMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfAreaStubMetric.setStatus('mandatory')
ospfRangeNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfRangeNumber.setStatus('mandatory')
ospfRangeTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2), )
if mibBuilder.loadTexts: ospfRangeTable.setStatus('mandatory')
ospfRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ospfRangeIndex"))
if mibBuilder.loadTexts: ospfRangeEntry.setStatus('mandatory')
ospfRangeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfRangeIndex.setStatus('mandatory')
ospfRangeNet = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfRangeNet.setStatus('mandatory')
ospfRangeMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfRangeMask.setStatus('mandatory')
ospfRangeEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfRangeEnable.setStatus('mandatory')
ospfRangeStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("don-t-adv", 1), ("advertise", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfRangeStatus.setStatus('mandatory')
ospfRangeAddToArea = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfRangeAddToArea.setStatus('mandatory')
ospfVLinkNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfVLinkNumber.setStatus('mandatory')
ospfVLinkTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2), )
if mibBuilder.loadTexts: ospfVLinkTable.setStatus('mandatory')
ospfVLinkEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ospfVLinkIndex"))
if mibBuilder.loadTexts: ospfVLinkEntry.setStatus('mandatory')
ospfVLinkIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfVLinkIndex.setStatus('mandatory')
ospfVLinkTransitAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkTransitAreaId.setStatus('mandatory')
ospfVLinkNeighborRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkNeighborRtrId.setStatus('mandatory')
ospfVLinkEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkEnable.setStatus('mandatory')
ospfVLinkTransitDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkTransitDelay.setStatus('mandatory')
ospfVLinkRetransmitInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkRetransmitInt.setStatus('mandatory')
ospfVLinkHelloInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkHelloInt.setStatus('mandatory')
ospfVLinkDeadInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkDeadInt.setStatus('mandatory')
ospfVLinkPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 9), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkPassword.setStatus('mandatory')
ipxfilterNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxfilterNumber.setStatus('mandatory')
ipxfilterTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2), )
if mibBuilder.loadTexts: ipxfilterTable.setStatus('mandatory')
ipxfilterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ipxfilterIndex"))
if mibBuilder.loadTexts: ipxfilterEntry.setStatus('mandatory')
ipxfilterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxfilterIndex.setStatus('mandatory')
ipxfilterEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxfilterEnable.setStatus('mandatory')
ipxfilterSap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxfilterSap.setStatus('mandatory')
ipxfilterType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("standard", 1), ("reverse", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxfilterType.setStatus('mandatory')
statAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1), )
if mibBuilder.loadTexts: statAlarmTable.setStatus('mandatory')
statAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statAlarmIndex"))
if mibBuilder.loadTexts: statAlarmEntry.setStatus('mandatory')
statAlarmIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmIndex.setStatus('mandatory')
statAlarmDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmDesc.setStatus('mandatory')
statAlarmDate = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmDate.setStatus('mandatory')
statAlarmTime = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmTime.setStatus('mandatory')
statAlarmModule = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmModule.setStatus('mandatory')
statAlarmAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmAlarm.setStatus('mandatory')
statAlarmArg = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmArg.setStatus('mandatory')
statIfwanTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2), )
if mibBuilder.loadTexts: statIfwanTable.setStatus('mandatory')
statIfwanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statIfwanIndex"))
if mibBuilder.loadTexts: statIfwanEntry.setStatus('mandatory')
statIfwanIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanIndex.setStatus('mandatory')
statIfwanDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanDesc.setStatus('mandatory')
statIfwanProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 18, 19, 24, 27, 28, 29, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("p-sdlc", 2), ("s-sdlc", 3), ("hdlc", 4), ("ddcmp", 5), ("t-async", 6), ("r-async", 7), ("bsc", 8), ("cop", 9), ("pvcr", 10), ("passthru", 11), ("console", 12), ("fr-net", 17), ("fr-user", 18), ("ppp", 19), ("e1-trsp", 24), ("isdn-bri", 27), ("g703", 28), ("x25", 29), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanProtocol.setStatus('mandatory')
statIfwanInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanInterface.setStatus('mandatory')
statIfwanModemSignal = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanModemSignal.setStatus('mandatory')
statIfwanSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanSpeed.setStatus('mandatory')
statIfwanState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanState.setStatus('mandatory')
statIfwanMeanTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanMeanTx.setStatus('mandatory')
statIfwanMeanRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 9), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanMeanRx.setStatus('mandatory')
statIfwanPeakTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 10), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanPeakTx.setStatus('mandatory')
statIfwanPeakRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 11), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanPeakRx.setStatus('mandatory')
statIfwanBadFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanBadFrames.setStatus('mandatory')
statIfwanBadFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 13), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanBadFlags.setStatus('mandatory')
statIfwanUnderruns = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanUnderruns.setStatus('mandatory')
statIfwanRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanRetries.setStatus('mandatory')
statIfwanRestart = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanRestart.setStatus('mandatory')
statIfwanFramesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanFramesTx.setStatus('mandatory')
statIfwanFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanFramesRx.setStatus('mandatory')
statIfwanOctetsTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanOctetsTx.setStatus('mandatory')
statIfwanOctetsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanOctetsRx.setStatus('mandatory')
statIfwanOvrFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanOvrFrames.setStatus('mandatory')
statIfwanBadOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanBadOctets.setStatus('mandatory')
statIfwanOvrOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanOvrOctets.setStatus('mandatory')
statIfwanT1E1ESS = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1ESS.setStatus('mandatory')
statIfwanT1E1SES = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1SES.setStatus('mandatory')
statIfwanT1E1SEF = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1SEF.setStatus('mandatory')
statIfwanT1E1UAS = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1UAS.setStatus('mandatory')
statIfwanT1E1CSS = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1CSS.setStatus('mandatory')
statIfwanT1E1PCV = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1PCV.setStatus('mandatory')
statIfwanT1E1LES = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1LES.setStatus('mandatory')
statIfwanT1E1BES = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1BES.setStatus('mandatory')
statIfwanT1E1DM = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1DM.setStatus('mandatory')
statIfwanT1E1LCV = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 33), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1LCV.setStatus('mandatory')
statIfwanCompErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 34), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanCompErrs.setStatus('mandatory')
statIfwanChOverflows = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 35), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanChOverflows.setStatus('mandatory')
statIfwanChAborts = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 36), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanChAborts.setStatus('mandatory')
statIfwanChSeqErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 37), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanChSeqErrs.setStatus('mandatory')
statIfwanDropInsert = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 38), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanDropInsert.setStatus('mandatory')
statIfwanTrspState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 39), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanTrspState.setStatus('mandatory')
statIfwanTrspLastError = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 40), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanTrspLastError.setStatus('mandatory')
statIfwanQ922State = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 41), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanQ922State.setStatus('mandatory')
statIflanTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3), )
if mibBuilder.loadTexts: statIflanTable.setStatus('mandatory')
statIflanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statIflanIndex"))
if mibBuilder.loadTexts: statIflanEntry.setStatus('mandatory')
statIflanIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanIndex.setStatus('mandatory')
statIflanProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 13, 14, 15, 16))).clone(namedValues=NamedValues(("off", 1), ("token-ring", 13), ("ethernet-auto", 14), ("ethernet-802p3", 15), ("ethernet-v2", 16)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanProtocol.setStatus('mandatory')
statIflanSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("tr-4-Mbps", 1), ("tr-16-Mbps", 2), ("eth-10-Mbps", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanSpeed.setStatus('mandatory')
statIflanConnectionStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanConnectionStatus.setStatus('mandatory')
statIflanOperatingMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanOperatingMode.setStatus('mandatory')
statIflanEth_Interface = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 6), DisplayString()).setLabel("statIflanEth-Interface").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_Interface.setStatus('mandatory')
statIflanMeanTx_kbps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 7), Gauge32()).setLabel("statIflanMeanTx-kbps").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanMeanTx_kbps.setStatus('mandatory')
statIflanMeanRx_kbps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 8), Gauge32()).setLabel("statIflanMeanRx-kbps").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanMeanRx_kbps.setStatus('mandatory')
statIflanPeakTx_kbps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 9), Gauge32()).setLabel("statIflanPeakTx-kbps").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanPeakTx_kbps.setStatus('mandatory')
statIflanPeakRx_kbps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 10), Gauge32()).setLabel("statIflanPeakRx-kbps").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanPeakRx_kbps.setStatus('mandatory')
statIflanRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanRetries.setStatus('mandatory')
statIflanBadFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanBadFrames.setStatus('mandatory')
statIflanBadFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 13), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanBadFlags.setStatus('mandatory')
statIflanTr_ReceiveCongestion = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 14), Counter32()).setLabel("statIflanTr-ReceiveCongestion").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanTr_ReceiveCongestion.setStatus('mandatory')
statIflanEth_OneCollision = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 15), Counter32()).setLabel("statIflanEth-OneCollision").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_OneCollision.setStatus('mandatory')
statIflanEth_TwoCollisions = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 16), Counter32()).setLabel("statIflanEth-TwoCollisions").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_TwoCollisions.setStatus('mandatory')
statIflanEth_ThreeAndMoreCol = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 17), Counter32()).setLabel("statIflanEth-ThreeAndMoreCol").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_ThreeAndMoreCol.setStatus('mandatory')
statIflanEth_DeferredTrans = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 18), Counter32()).setLabel("statIflanEth-DeferredTrans").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_DeferredTrans.setStatus('mandatory')
statIflanEth_ExcessiveCollision = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 19), Counter32()).setLabel("statIflanEth-ExcessiveCollision").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_ExcessiveCollision.setStatus('mandatory')
statIflanEth_LateCollision = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 20), Counter32()).setLabel("statIflanEth-LateCollision").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_LateCollision.setStatus('mandatory')
statIflanEth_FrameCheckSeq = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 21), Counter32()).setLabel("statIflanEth-FrameCheckSeq").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_FrameCheckSeq.setStatus('mandatory')
statIflanEth_Align = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 22), Counter32()).setLabel("statIflanEth-Align").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_Align.setStatus('mandatory')
statIflanEth_CarrierSense = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 23), Counter32()).setLabel("statIflanEth-CarrierSense").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_CarrierSense.setStatus('mandatory')
statIfvceTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10), )
if mibBuilder.loadTexts: statIfvceTable.setStatus('mandatory')
statIfvceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statIfvceIndex"))
if mibBuilder.loadTexts: statIfvceEntry.setStatus('mandatory')
statIfvceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceIndex.setStatus('mandatory')
statIfvceDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceDesc.setStatus('mandatory')
statIfvceState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("inactive", 0), ("idle", 1), ("pause", 2), ("local", 3), ("online", 4), ("disconnect", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceState.setStatus('mandatory')
statIfvceProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 21, 22, 23, 24, 26, 30))).clone(namedValues=NamedValues(("off", 1), ("acelp-8-kbs", 21), ("acelp-4-8-kbs", 22), ("pcm64k", 23), ("adpcm32k", 24), ("atc16k", 26), ("acelp-cn", 30)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceProtocol.setStatus('mandatory')
statIfvceLastError = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("none", 0), ("incompatibility", 1), ("new-parameters", 2), ("rerouting", 3), ("state-fault", 4), ("unreachable", 5), ("disconnect", 6), ("port-closure", 7), ("no-destination", 8), ("pvc-closure", 9), ("too-many-calls", 10), ("class-mismatch", 11), ("algo-mismatch", 12)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceLastError.setStatus('mandatory')
statIfvceFaxRate = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 0), ("fx-2-4Kbps", 1), ("fx-4-8Kbps", 2), ("fx-7-2Kbps", 3), ("fx-9-6Kbps", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceFaxRate.setStatus('mandatory')
statIfvceFaxMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(255, 0, 1))).clone(namedValues=NamedValues(("none", 255), ("out-of-fax", 0), ("in-fax", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceFaxMode.setStatus('mandatory')
statIfvceOverruns = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceOverruns.setStatus('mandatory')
statIfvceUnderruns = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceUnderruns.setStatus('mandatory')
statIfvceDvcPortInUse = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 10), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceDvcPortInUse.setStatus('mandatory')
statPuTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4), )
if mibBuilder.loadTexts: statPuTable.setStatus('mandatory')
statPuEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statPuIndex"))
if mibBuilder.loadTexts: statPuEntry.setStatus('mandatory')
statPuIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuIndex.setStatus('mandatory')
statPuMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=NamedValues(("off", 1), ("sdlc-llc", 2), ("sdlc-sdlc", 3), ("sdlc-dlsw", 4), ("sdlc-links", 5), ("llc-dlsw", 6), ("llc-links", 7), ("dlsw-links", 8), ("sdlc-ban", 9), ("sdlc-bnn", 10), ("llc-ban", 11), ("llc-bnn", 12), ("dlsw-ban", 13), ("dlsw-bnn", 14), ("ban-link", 15), ("bnn-link", 16)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuMode.setStatus('mandatory')
statPuConnectionStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuConnectionStatus.setStatus('mandatory')
statPuCompErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuCompErrs.setStatus('mandatory')
statPuChOverflows = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuChOverflows.setStatus('mandatory')
statPuChAborts = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuChAborts.setStatus('mandatory')
statPuChSeqErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuChSeqErrs.setStatus('mandatory')
statBridge = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5))
statBridgeBridge = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1))
statBridgePort = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2))
statBridgeBridgeAddressDiscard = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeAddressDiscard.setStatus('mandatory')
statBridgeBridgeFrameDiscard = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeFrameDiscard.setStatus('mandatory')
statBridgeBridgeDesignatedRoot = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeDesignatedRoot.setStatus('mandatory')
statBridgeBridgeRootCost = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeRootCost.setStatus('mandatory')
statBridgeBridgeRootPort = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeRootPort.setStatus('mandatory')
statBridgeBridgeFrameFiltered = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeFrameFiltered.setStatus('mandatory')
statBridgeBridgeFrameTimeout = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeFrameTimeout.setStatus('mandatory')
statBridgePortTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1), )
if mibBuilder.loadTexts: statBridgePortTable.setStatus('mandatory')
statBridgePortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statBridgePortIndex"))
if mibBuilder.loadTexts: statBridgePortEntry.setStatus('mandatory')
statBridgePortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortIndex.setStatus('mandatory')
statBridgePortDestination = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortDestination.setStatus('mandatory')
statBridgePortState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortState.setStatus('mandatory')
statBridgePortDesignatedRoot = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortDesignatedRoot.setStatus('mandatory')
statBridgePortDesignatedCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortDesignatedCost.setStatus('mandatory')
statBridgePortDesignatedBridge = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortDesignatedBridge.setStatus('mandatory')
statBridgePortDesignatedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortDesignatedPort.setStatus('mandatory')
statBridgePortTrspFrameIn = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTrspFrameIn.setStatus('mandatory')
statBridgePortTrspFrameOut = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTrspFrameOut.setStatus('mandatory')
statBridgePortTr_SpecRteFrameIn = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 10), DisplayString()).setLabel("statBridgePortTr-SpecRteFrameIn").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_SpecRteFrameIn.setStatus('mandatory')
statBridgePortTr_SpecRteFrameOut = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 11), DisplayString()).setLabel("statBridgePortTr-SpecRteFrameOut").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_SpecRteFrameOut.setStatus('mandatory')
statBridgePortTr_AllRteFrameIn = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 12), DisplayString()).setLabel("statBridgePortTr-AllRteFrameIn").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_AllRteFrameIn.setStatus('mandatory')
statBridgePortTr_AllRteFrameOut = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 13), DisplayString()).setLabel("statBridgePortTr-AllRteFrameOut").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_AllRteFrameOut.setStatus('mandatory')
statBridgePortTr_SingleRteFrameIn = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 14), DisplayString()).setLabel("statBridgePortTr-SingleRteFrameIn").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_SingleRteFrameIn.setStatus('mandatory')
statBridgePortTr_SingleRteFrameOut = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 15), DisplayString()).setLabel("statBridgePortTr-SingleRteFrameOut").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_SingleRteFrameOut.setStatus('mandatory')
statBridgePortTr_SegmentMismatch = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 16), DisplayString()).setLabel("statBridgePortTr-SegmentMismatch").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_SegmentMismatch.setStatus('mandatory')
statBridgePortTr_SegmentDuplicate = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 17), DisplayString()).setLabel("statBridgePortTr-SegmentDuplicate").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_SegmentDuplicate.setStatus('mandatory')
statBridgePortTr_HopCntExceeded = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 18), DisplayString()).setLabel("statBridgePortTr-HopCntExceeded").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_HopCntExceeded.setStatus('mandatory')
statBridgePortTr_FrmLngExceeded = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 19), DisplayString()).setLabel("statBridgePortTr-FrmLngExceeded").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_FrmLngExceeded.setStatus('mandatory')
statPvcTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6), )
if mibBuilder.loadTexts: statPvcTable.setStatus('mandatory')
statPvcEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statPvcIndex"))
if mibBuilder.loadTexts: statPvcEntry.setStatus('mandatory')
statPvcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcIndex.setStatus('mandatory')
statPvcProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcProtocol.setStatus('mandatory')
statPvcMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcMode.setStatus('mandatory')
statPvcInfoSignal = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcInfoSignal.setStatus('mandatory')
statPvcSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcSpeed.setStatus('mandatory')
statPvcState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcState.setStatus('mandatory')
statPvcMeanTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcMeanTx.setStatus('mandatory')
statPvcMeanRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcMeanRx.setStatus('mandatory')
statPvcPeakTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 9), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcPeakTx.setStatus('mandatory')
statPvcPeakRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 10), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcPeakRx.setStatus('mandatory')
statPvcError = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcError.setStatus('mandatory')
statPvcRestart = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcRestart.setStatus('mandatory')
statPvcFramesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcFramesTx.setStatus('mandatory')
statPvcFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcFramesRx.setStatus('mandatory')
statPvcOctetsTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcOctetsTx.setStatus('mandatory')
statPvcOctetsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcOctetsRx.setStatus('mandatory')
statPvcBadFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcBadFrames.setStatus('mandatory')
statPvcOvrFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcOvrFrames.setStatus('mandatory')
statPvcBadOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcBadOctets.setStatus('mandatory')
statPvcOvrOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcOvrOctets.setStatus('mandatory')
statPvcDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 21), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcDlci.setStatus('mandatory')
statPvcCompErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcCompErrs.setStatus('mandatory')
statPvcChOverflows = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcChOverflows.setStatus('mandatory')
statPvcChAborts = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcChAborts.setStatus('mandatory')
statPvcChSeqErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcChSeqErrs.setStatus('mandatory')
statPvcrRouteTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7), )
if mibBuilder.loadTexts: statPvcrRouteTable.setStatus('mandatory')
statPvcrRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statPvcrRouteName"), (0, "CLEARTRAC7-MIB", "statPvcrRouteNextHop"))
if mibBuilder.loadTexts: statPvcrRouteEntry.setStatus('mandatory')
statPvcrRouteName = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcrRouteName.setStatus('mandatory')
statPvcrRouteValid = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcrRouteValid.setStatus('mandatory')
statPvcrRouteMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcrRouteMetric.setStatus('mandatory')
statPvcrRouteIntrf = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcrRouteIntrf.setStatus('mandatory')
statPvcrRouteNextHop = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcrRouteNextHop.setStatus('mandatory')
statPvcrRouteAge = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcrRouteAge.setStatus('mandatory')
statSystem = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20))
statSystemAlarmNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemAlarmNumber.setStatus('mandatory')
statSystemMeanCompRate = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemMeanCompRate.setStatus('mandatory')
statSystemMeanDecompRate = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemMeanDecompRate.setStatus('mandatory')
statSystemPeakCompRate = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemPeakCompRate.setStatus('mandatory')
statSystemPeakDecompRate = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemPeakDecompRate.setStatus('mandatory')
statSystemSa = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemSa.setStatus('mandatory')
statSystemSp = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemSp.setStatus('mandatory')
statSystemNa = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemNa.setStatus('mandatory')
statSystemBia = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemBia.setStatus('mandatory')
statSystemTr_Nan = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setLabel("statSystemTr-Nan").setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemTr_Nan.setStatus('mandatory')
statSystemResetCounters = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: statSystemResetCounters.setStatus('mandatory')
statSystemClearAlarms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: statSystemClearAlarms.setStatus('mandatory')
statSystemClearErrorLed = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: statSystemClearErrorLed.setStatus('mandatory')
statBootp = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21))
statBootpNbRequestReceived = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpNbRequestReceived.setStatus('mandatory')
statBootpNbRequestSend = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpNbRequestSend.setStatus('mandatory')
statBootpNbReplyReceived = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpNbReplyReceived.setStatus('mandatory')
statBootpNbReplySend = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpNbReplySend.setStatus('mandatory')
statBootpReplyWithInvalidGiaddr = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpReplyWithInvalidGiaddr.setStatus('mandatory')
statBootpHopsLimitExceed = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpHopsLimitExceed.setStatus('mandatory')
statBootpRequestReceivedOnPortBootpc = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpRequestReceivedOnPortBootpc.setStatus('mandatory')
statBootpReplyReceivedOnPortBootpc = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpReplyReceivedOnPortBootpc.setStatus('mandatory')
statBootpInvalidOpCodeField = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpInvalidOpCodeField.setStatus('mandatory')
statBootpCannotRouteFrame = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpCannotRouteFrame.setStatus('mandatory')
statBootpFrameTooSmallToBeABootpFrame = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpFrameTooSmallToBeABootpFrame.setStatus('mandatory')
statBootpCannotReceiveAndForwardOnTheSamePort = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpCannotReceiveAndForwardOnTheSamePort.setStatus('mandatory')
statGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22))
statGrpNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statGrpNumber.setStatus('mandatory')
statGrpTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2), )
if mibBuilder.loadTexts: statGrpTable.setStatus('mandatory')
statGrpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statGrpIndex"))
if mibBuilder.loadTexts: statGrpEntry.setStatus('mandatory')
statGrpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statGrpIndex.setStatus('mandatory')
statGrpDestName = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statGrpDestName.setStatus('mandatory')
statGrpOutOfSeqErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statGrpOutOfSeqErrs.setStatus('mandatory')
statGrpSorterTimeouts = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statGrpSorterTimeouts.setStatus('mandatory')
statGrpSorterOverruns = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statGrpSorterOverruns.setStatus('mandatory')
statTimep = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23))
statTimeNbFrameReceived = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeNbFrameReceived.setStatus('mandatory')
statTimeNbFrameSent = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeNbFrameSent.setStatus('mandatory')
statTimeNbRequestReceived = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeNbRequestReceived.setStatus('mandatory')
statTimeNbReplySent = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeNbReplySent.setStatus('mandatory')
statTimeNbRequestSent = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeNbRequestSent.setStatus('mandatory')
statTimeNbReplyReceived = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeNbReplyReceived.setStatus('mandatory')
statTimeClientRetransmissions = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeClientRetransmissions.setStatus('mandatory')
statTimeClientSyncFailures = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeClientSyncFailures.setStatus('mandatory')
statTimeInvalidLocalIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeInvalidLocalIpAddress.setStatus('mandatory')
statTimeInvalidPortNumbers = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeInvalidPortNumbers.setStatus('mandatory')
statQ922counters = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24))
statTxRetransmissions = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxRetransmissions.setStatus('mandatory')
statReleaseIndications = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statReleaseIndications.setStatus('mandatory')
statEstablishIndications = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statEstablishIndications.setStatus('mandatory')
statLinkEstablished = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statLinkEstablished.setStatus('mandatory')
statTxIframeQdiscards = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxIframeQdiscards.setStatus('mandatory')
statRxframes = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxframes.setStatus('mandatory')
statTxframes = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxframes.setStatus('mandatory')
statRxBytes = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxBytes.setStatus('mandatory')
statTxBytes = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxBytes.setStatus('mandatory')
statQ922errors = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25))
statInvalidRxSizes = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statInvalidRxSizes.setStatus('mandatory')
statMissingControlBlocks = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statMissingControlBlocks.setStatus('mandatory')
statRxAcknowledgeExpiry = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxAcknowledgeExpiry.setStatus('mandatory')
statTxAcknowledgeExpiry = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxAcknowledgeExpiry.setStatus('mandatory')
statQ933counters = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26))
statTxSetupMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxSetupMessages.setStatus('mandatory')
statRxSetupMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxSetupMessages.setStatus('mandatory')
statTxCallProceedingMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxCallProceedingMessages.setStatus('mandatory')
statRxCallProceedingMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxCallProceedingMessages.setStatus('mandatory')
statTxConnectMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxConnectMessages.setStatus('mandatory')
statRxConnectMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxConnectMessages.setStatus('mandatory')
statTxReleaseMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxReleaseMessages.setStatus('mandatory')
statRxReleaseMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxReleaseMessages.setStatus('mandatory')
statTxReleaseCompleteMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxReleaseCompleteMessages.setStatus('mandatory')
statRxReleaseCompleteMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxReleaseCompleteMessages.setStatus('mandatory')
statTxDisconnectMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxDisconnectMessages.setStatus('mandatory')
statRxDisconnectMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxDisconnectMessages.setStatus('mandatory')
statTxStatusMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxStatusMessages.setStatus('mandatory')
statRxStatusMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxStatusMessages.setStatus('mandatory')
statTxStatusEnquiryMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxStatusEnquiryMessages.setStatus('mandatory')
statRxStatusEnquiryMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxStatusEnquiryMessages.setStatus('mandatory')
statProtocolTimeouts = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statProtocolTimeouts.setStatus('mandatory')
statSvcTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27), )
if mibBuilder.loadTexts: statSvcTable.setStatus('mandatory')
statSvcEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statSvcIndex"))
if mibBuilder.loadTexts: statSvcEntry.setStatus('mandatory')
statSvcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcIndex.setStatus('mandatory')
statSvcProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcProtocol.setStatus('mandatory')
statSvcMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcMode.setStatus('mandatory')
statSvcInfoSignal = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcInfoSignal.setStatus('mandatory')
statSvcSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcSpeed.setStatus('mandatory')
statSvcState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcState.setStatus('mandatory')
statSvcMeanTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcMeanTx.setStatus('mandatory')
statSvcMeanRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcMeanRx.setStatus('mandatory')
statSvcPeakTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 9), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcPeakTx.setStatus('mandatory')
statSvcPeakRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 10), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcPeakRx.setStatus('mandatory')
statSvcError = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcError.setStatus('mandatory')
statSvcRestart = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcRestart.setStatus('mandatory')
statSvcFramesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcFramesTx.setStatus('mandatory')
statSvcFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcFramesRx.setStatus('mandatory')
statSvcOctetsTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcOctetsTx.setStatus('mandatory')
statSvcOctetsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcOctetsRx.setStatus('mandatory')
statSvcBadFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcBadFrames.setStatus('mandatory')
statSvcOvrFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcOvrFrames.setStatus('mandatory')
statSvcBadOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcBadOctets.setStatus('mandatory')
statSvcOvrOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcOvrOctets.setStatus('mandatory')
statSvcDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 21), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcDlci.setStatus('mandatory')
statIfcemTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28), )
if mibBuilder.loadTexts: statIfcemTable.setStatus('mandatory')
statIfcemEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statIfcemIndex"))
if mibBuilder.loadTexts: statIfcemEntry.setStatus('mandatory')
statIfcemIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfcemIndex.setStatus('mandatory')
statIfcemDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfcemDesc.setStatus('mandatory')
statIfcemClockState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfcemClockState.setStatus('mandatory')
connectionDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,600)).setObjects(("CLEARTRAC7-MIB", "puIndex"))
linkDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,601)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
pvcDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,602)).setObjects(("CLEARTRAC7-MIB", "pvcIndex"))
cardDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,603)).setObjects(("CLEARTRAC7-MIB", "sysTrapRackandPos"))
connectionUp = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,604)).setObjects(("CLEARTRAC7-MIB", "puIndex"))
linkUp = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,605)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
pvcUp = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,606)).setObjects(("CLEARTRAC7-MIB", "pvcIndex"))
cardup = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,607)).setObjects(("CLEARTRAC7-MIB", "sysTrapRackandPos"))
periodStarted = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,608)).setObjects(("CLEARTRAC7-MIB", "schedulePeriod"))
periodEnded = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,609)).setObjects(("CLEARTRAC7-MIB", "schedulePeriod"))
badDestPort = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,610)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
badDestPvc = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,611)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
backupCall = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,612))
backupHang = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,613))
manualCall = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,614))
manualHang = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,615))
bondTrig = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,616))
bondDeTrig = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,617))
firmwareStored = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,618))
cfgStored = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,619))
noTrap = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,620))
fatalTrap = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,621))
notMemory = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,622))
setupReset = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,623))
badChecksum = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,624))
fatalMsg = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,625))
noMsg = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,626))
bothPsUp = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,627))
onePsDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,628))
bothFansUp = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,629))
oneOrMoreFanDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,630))
accountingFileFull = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,631))
frLinkUp = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,665)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
frLinkDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,666)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
q922Up = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,667)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
q922Down = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,668)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
accountingFileOverflow = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,669))
mibBuilder.exportSymbols("CLEARTRAC7-MIB", timepClientUpdateInterval=timepClientUpdateInterval, statIflanSpeed=statIflanSpeed, ifvceHuntGroup=ifvceHuntGroup, statBridgePortDesignatedCost=statBridgePortDesignatedCost, statSvcPeakRx=statSvcPeakRx, statSvcDlci=statSvcDlci, backupHang=backupHang, phoneNumber=phoneNumber, statSystem=statSystem, ifvceNumber=ifvceNumber, ifwanTxStart=ifwanTxStart, puDlsDsap=puDlsDsap, ifvceRate5k8x2=ifvceRate5k8x2, ospfVLinkTable=ospfVLinkTable, ifwanPppAcceptableAccmChar=ifwanPppAcceptableAccmChar, statBridgePortTr_HopCntExceeded=statBridgePortTr_HopCntExceeded, sysPosTable=sysPosTable, ifwanMode=ifwanMode, statIfwanProtocol=statIfwanProtocol, ospfRangeMask=ospfRangeMask, statIfwanBadFrames=statIfwanBadFrames, statIfvceLastError=statIfvceLastError, filterNumber=filterNumber, statTxIframeQdiscards=statTxIframeQdiscards, ipstaticTable=ipstaticTable, ifvceRate6kx3=ifvceRate6kx3, statPvcBadFrames=statPvcBadFrames, ifwanFormat=ifwanFormat, ifwanProtocol=ifwanProtocol, statAlarmTable=statAlarmTable, slotPortInSlotEntry=slotPortInSlotEntry, frLinkUp=frLinkUp, proxyIndex=proxyIndex, ifvceProtocol=ifvceProtocol, slotPortInSlot=slotPortInSlot, ipxInternalNetNum=ipxInternalNetNum, iflanSpeed=iflanSpeed, timepClientProtocol=timepClientProtocol, ifwanSvcDisconnectTimeoutT305=ifwanSvcDisconnectTimeoutT305, iflanOspfMetricCost=iflanOspfMetricCost, statIfvceState=statIfvceState, ifwanTeiMode=ifwanTeiMode, pvcNetworkPort=pvcNetworkPort, ipaddr=ipaddr, intfType=intfType, ifvceLocalInbound=ifvceLocalInbound, ifwanPortToBack=ifwanPortToBack, iflanDesc=iflanDesc, phoneRemoteUnit=phoneRemoteUnit, ifwanSfCarrierId=ifwanSfCarrierId, ifwanT1E1Status=ifwanT1E1Status, statIfvceProtocol=statIfvceProtocol, sysSpeedDialNumLength=sysSpeedDialNumLength, statPuEntry=statPuEntry, pvcIpxNetNum=pvcIpxNetNum, puBanBnnNw=puBanBnnNw, ifwanDesc=ifwanDesc, statIfwanIndex=statIfwanIndex, sysSnmpTrapIpAddr3=sysSnmpTrapIpAddr3, statTimeNbFrameReceived=statTimeNbFrameReceived, ipRouterEnable=ipRouterEnable, sysClock=sysClock, ifvceToneOff_ms=ifvceToneOff_ms, bridgeTr_MaxHop=bridgeTr_MaxHop, ipstaticIpDest=ipstaticIpDest, iflanSubnetMask=iflanSubnetMask, iflanIpRip=iflanIpRip, statIfwanChOverflows=statIfwanChOverflows, statIfcemEntry=statIfcemEntry, ospfVLinkTransitAreaId=ospfVLinkTransitAreaId, ifwanRetry=ifwanRetry, bridgeMaxAge_s=bridgeMaxAge_s, filterDefinition=filterDefinition, intfNumInSlot=intfNumInSlot, iflanNumber=iflanNumber, sysPosIpAddr=sysPosIpAddr, statIfwanT1E1BES=statIfwanT1E1BES, timepGetServerTimeNow=timepGetServerTimeNow, statSystemSp=statSystemSp, statIfwanChSeqErrs=statIfwanChSeqErrs, linkDown=linkDown, badDestPvc=badDestPvc, pvcDown=pvcDown, pvcInfoRate=pvcInfoRate, statBootpCannotReceiveAndForwardOnTheSamePort=statBootpCannotReceiveAndForwardOnTheSamePort, puRole=puRole, statIflanEth_ThreeAndMoreCol=statIflanEth_ThreeAndMoreCol, ifwanDropSyncCounter=ifwanDropSyncCounter, ifwanOspfAreaId=ifwanOspfAreaId, statQ922counters=statQ922counters, firmwareStored=firmwareStored, statSvcOctetsTx=statSvcOctetsTx, statGrpTable=statGrpTable, scheduleEndTime=scheduleEndTime, statRxCallProceedingMessages=statRxCallProceedingMessages, statBridgePortTr_SpecRteFrameOut=statBridgePortTr_SpecRteFrameOut, ifwanTable=ifwanTable, puSdlcAddress2=puSdlcAddress2, statTimeNbReplyReceived=statTimeNbReplyReceived, ifwanFrameDelay=ifwanFrameDelay, iflanMaxFrame=iflanMaxFrame, statIfwanEntry=statIfwanEntry, statGrpOutOfSeqErrs=statGrpOutOfSeqErrs, statQ922errors=statQ922errors, statBridgeBridgeFrameTimeout=statBridgeBridgeFrameTimeout, intfModuleType=intfModuleType, statIfcemDesc=statIfcemDesc, proxyDefaultGateway=proxyDefaultGateway, puMode=puMode, ifvceRate6kx2=ifvceRate6kx2, backupCall=backupCall, statIfwanRetries=statIfwanRetries, ifvceActivationType=ifvceActivationType, iflanOspfPassword=iflanOspfPassword, ifwanPriority=ifwanPriority, ospfAreaAreaId=ospfAreaAreaId, ifvceDelDigits=ifvceDelDigits, puSdlcPort2=puSdlcPort2, ifwanDestExtNumber=ifwanDestExtNumber, ifvceRate6kx1=ifvceRate6kx1, statGrpSorterTimeouts=statGrpSorterTimeouts, ifwanLineBuild=ifwanLineBuild, puLlcDsap=puLlcDsap, q922Up=q922Up, ifwanNumber=ifwanNumber, manualHang=manualHang, ospfRangeNet=ospfRangeNet, ipxfilterEntry=ipxfilterEntry, statSystemNa=statSystemNa, statBridgePortEntry=statBridgePortEntry, ospfRangeNumber=ospfRangeNumber, ospfVLinkEntry=ospfVLinkEntry, puBnnFid=puBnnFid, ifwanOspfEnable=ifwanOspfEnable, statPuChAborts=statPuChAborts, intfNumInType=intfNumInType, ifvceRemotePort=ifvceRemotePort, linkUp=linkUp, statIflanTr_ReceiveCongestion=statIflanTr_ReceiveCongestion, statIfwanDesc=statIfwanDesc, sysDefaultGateway=sysDefaultGateway, pvcIpRipAuthType=pvcIpRipAuthType, ipxfilterNumber=ipxfilterNumber, statPuTable=statPuTable, ifvceR2Group2Digit=ifvceR2Group2Digit, sysHuntForwardingADLCI=sysHuntForwardingADLCI, statReleaseIndications=statReleaseIndications, sysDefaultIpMask=sysDefaultIpMask, ifwanEncodingLaw=ifwanEncodingLaw, sysDay=sysDay, iflanIpxNetNum=iflanIpxNetNum, ifvceFwdDigits=ifvceFwdDigits, statIfwanT1E1PCV=statIfwanT1E1PCV, statPvcrRouteValid=statPvcrRouteValid, pvcUserDlci=pvcUserDlci, ipxfilter=ipxfilter, statIflanEth_FrameCheckSeq=statIflanEth_FrameCheckSeq, statBridgePortTr_AllRteFrameOut=statBridgePortTr_AllRteFrameOut, puBanBnnSsap=puBanBnnSsap, timepServerProtocol=timepServerProtocol, ospfArea=ospfArea, statBridgePortTrspFrameOut=statBridgePortTrspFrameOut, statGrpNumber=statGrpNumber, bondTrig=bondTrig, sysName=sysName, statIfwanT1E1UAS=statIfwanT1E1UAS, statIfwanT1E1ESS=statIfwanT1E1ESS, pvcCost=pvcCost, ospfVLink=ospfVLink, statBridgeBridgeAddressDiscard=statBridgeBridgeAddressDiscard, statBridgePortState=statBridgePortState, statSystemPeakDecompRate=statSystemPeakDecompRate, ifvceDVCSilenceSuppress=ifvceDVCSilenceSuppress, statBootpNbRequestSend=statBootpNbRequestSend, intfSlotType=intfSlotType, sysPosProduct=sysPosProduct, statPvcRestart=statPvcRestart, pu=pu, puLlcDynamicWindow=puLlcDynamicWindow, statGrpEntry=statGrpEntry, ospfAreaStubMetric=ospfAreaStubMetric, ifwanX25Encapsulation=ifwanX25Encapsulation, statTxAcknowledgeExpiry=statTxAcknowledgeExpiry, statSvcOvrFrames=statSvcOvrFrames, sysLocation=sysLocation, statSvcMeanRx=statSvcMeanRx, ifwanOspfTransitDelay=ifwanOspfTransitDelay, sysRingFreq=sysRingFreq, iflanEth_LinkIntegrity=iflanEth_LinkIntegrity, pvcProxyAddr=pvcProxyAddr, classPrefRoute=classPrefRoute, ifwanGroupAddress=ifwanGroupAddress, scheduleEnable=scheduleEnable, phoneCost=phoneCost, statPvcPeakRx=statPvcPeakRx, sysLinkTimeout_s=sysLinkTimeout_s, timep=timep, iflanOspfAreaId=iflanOspfAreaId, pvcIpRipPassword=pvcIpRipPassword, statIflanPeakRx_kbps=statIflanPeakRx_kbps, statIfwanOvrFrames=statIfwanOvrFrames, ifvceSpeedDialNum=ifvceSpeedDialNum, ifwanPppAcceptMagicNum=ifwanPppAcceptMagicNum, pvcRingNumber=pvcRingNumber, pvcRemoteUnit=pvcRemoteUnit, statSystemTr_Nan=statSystemTr_Nan, statIflanEth_DeferredTrans=statIflanEth_DeferredTrans, ospfVLinkRetransmitInt=ospfVLinkRetransmitInt, puBnnPvc=puBnnPvc, statPvcOctetsTx=statPvcOctetsTx, statPvcError=statPvcError, statAlarmAlarm=statAlarmAlarm, statSvcEntry=statSvcEntry, notMemory=notMemory, stat=stat, pvcOspfMetricCost=pvcOspfMetricCost, sysPosId=sysPosId, pvcOspfPassword=pvcOspfPassword, iflanIpRipTxRx=iflanIpRipTxRx, statIfwanRestart=statIfwanRestart, bootpIpDestAddr2=bootpIpDestAddr2, statBridgePortTable=statBridgePortTable, ifvceInterface=ifvceInterface, connectionUp=connectionUp, ifvceRate8kx1=ifvceRate8kx1, ifvceRate8kx2=ifvceRate8kx2, statIfwanTable=statIfwanTable, ifwanTimeout=ifwanTimeout, bridgeLanType=bridgeLanType, puSdlcAddress=puSdlcAddress, intfSlot=intfSlot, statIflanOperatingMode=statIflanOperatingMode, statTxRetransmissions=statTxRetransmissions, ifwanDropSyncCharacter=ifwanDropSyncCharacter, ifwanSvcSetupTimeoutT303=ifwanSvcSetupTimeoutT303, ifvceSignaling=ifvceSignaling, ifvceBroadcastDir=ifvceBroadcastDir, statIfwanInterface=statIfwanInterface, ifvceDtmfOnTime=ifvceDtmfOnTime, statPvcrRouteEntry=statPvcrRouteEntry, statSystemBia=statSystemBia, ospfRange=ospfRange, mgmt=mgmt, statSystemClearErrorLed=statSystemClearErrorLed, ifwanSvcMaxTxTimeoutT200=ifwanSvcMaxTxTimeoutT200, iflanOspfDeadInt=iflanOspfDeadInt, ifwanPppSilent=ifwanPppSilent, statAlarmModule=statAlarmModule, puSdlcRetry=puSdlcRetry, statIfwanDropInsert=statIfwanDropInsert, intfTable=intfTable, ifwanIdleCode=ifwanIdleCode, ifwanPppNegociateAccm=ifwanPppNegociateAccm, ifwanIpRipPassword=ifwanIpRipPassword)
mibBuilder.exportSymbols("CLEARTRAC7-MIB", puDlsDa=puDlsDa, pvcMode=pvcMode, ifwanSvcAddressType=ifwanSvcAddressType, statPvcrRouteAge=statPvcrRouteAge, ifwanPppRequestedAccmChar=ifwanPppRequestedAccmChar, pvcOspfAreaId=pvcOspfAreaId, slotSlot=slotSlot, ifvceLinkDwnBusy=ifvceLinkDwnBusy, bridgeTr_SteSpan=bridgeTr_SteSpan, ifwanPppAcceptOldIpAddNeg=ifwanPppAcceptOldIpAddNeg, ipxRouterEnable=ipxRouterEnable, intf=intf, classNumber=classNumber, ifwanOspfDeadInt=ifwanOspfDeadInt, ipaddrNr=ipaddrNr, statPvcInfoSignal=statPvcInfoSignal, statIfwanBadOctets=statIfwanBadOctets, statBridgePortTr_AllRteFrameIn=statBridgePortTr_AllRteFrameIn, statSvcBadFrames=statSvcBadFrames, statIfvceFaxRate=statIfvceFaxRate, puLlcWindow=puLlcWindow, statBootpHopsLimitExceed=statBootpHopsLimitExceed, statBootpCannotRouteFrame=statBootpCannotRouteFrame, statTimeNbFrameSent=statTimeNbFrameSent, statAlarmIndex=statAlarmIndex, ifvceFxoTimeout_s=ifvceFxoTimeout_s, statIfcemTable=statIfcemTable, ifwanIpRip=ifwanIpRip, pvcIpxSap=pvcIpxSap, statIfwanCompErrs=statIfwanCompErrs, sysPosEntry=sysPosEntry, statIflanEntry=statIflanEntry, ifwanQsigPbxXy=ifwanQsigPbxXy, statRxReleaseCompleteMessages=statRxReleaseCompleteMessages, puSdlcTimeout_ms=puSdlcTimeout_ms, accountingFileFull=accountingFileFull, ospfAreaEnable=ospfAreaEnable, puBanBnnDsap=puBanBnnDsap, ifwanOspfMetricCost=ifwanOspfMetricCost, system=system, ifwanIpAddress=ifwanIpAddress, ospfAreaAuthType=ospfAreaAuthType, statPuConnectionStatus=statPuConnectionStatus, puDlsIpDst=puDlsIpDst, puBanBnnTimeout_ms=puBanBnnTimeout_ms, ipaddrAddr=ipaddrAddr, ifwanSync=ifwanSync, ifvceDTalkThreshold=ifvceDTalkThreshold, ifwanDsOSpeed_bps=ifwanDsOSpeed_bps, ifwanChannelCompressed=ifwanChannelCompressed, pvcIpRip=pvcIpRip, timepDaylightSaving=timepDaylightSaving, bootpEnable=bootpEnable, timepClientUdpRetransmissions=timepClientUdpRetransmissions, ifwanMultiframing=ifwanMultiframing, statIfvceUnderruns=statIfvceUnderruns, iflanOspfPriority=iflanOspfPriority, timepServerIpAddress=timepServerIpAddress, statIflanEth_Interface=statIflanEth_Interface, ifwanDigitNumber=ifwanDigitNumber, ifvceR2CompleteDigit=ifvceR2CompleteDigit, ifwanPppLocalMru=ifwanPppLocalMru, pvcIpRipTxRx=pvcIpRipTxRx, schedulePort7=schedulePort7, statBootpNbRequestReceived=statBootpNbRequestReceived, ifvceFaxModemRelay=ifvceFaxModemRelay, ospfVLinkEnable=ospfVLinkEnable, statIfwanMeanRx=statIfwanMeanRx, statPvcFramesRx=statPvcFramesRx, statSvcProtocol=statSvcProtocol, filterTable=filterTable, ospfRangeEntry=ospfRangeEntry, statBridgePortTr_SingleRteFrameIn=statBridgePortTr_SingleRteFrameIn, sysVoiceClass=sysVoiceClass, schedulePort1=schedulePort1, filterIndex=filterIndex, iflanIpxSap=iflanIpxSap, puDelayBeforeConn_s=puDelayBeforeConn_s, statIfvceTable=statIfvceTable, iflanIndex=iflanIndex, puLlcSsap=puLlcSsap, statRxBytes=statRxBytes, statSvcBadOctets=statSvcBadOctets, bondDeTrig=bondDeTrig, proxyEntry=proxyEntry, ifvceToneEnergyDetec=ifvceToneEnergyDetec, statPvcMode=statPvcMode, statTxStatusEnquiryMessages=statTxStatusEnquiryMessages, classTable=classTable, iflanIpRipAuthType=iflanIpRipAuthType, manualCall=manualCall, statSvcOvrOctets=statSvcOvrOctets, statGrpSorterOverruns=statGrpSorterOverruns, ifwanReportCycle=ifwanReportCycle, pvcRetry=pvcRetry, phoneTable=phoneTable, statIfwanPeakTx=statIfwanPeakTx, ifvceRate5k8x1=ifvceRate5k8x1, ospfAreaIndex=ospfAreaIndex, ifwanPppNegociateLocalMru=ifwanPppNegociateLocalMru, sysUnitRoutingVersion=sysUnitRoutingVersion, ifvceSilenceSuppress=ifvceSilenceSuppress, filterEntry=filterEntry, pvcUserPort=pvcUserPort, statPvcOctetsRx=statPvcOctetsRx, statBootpReplyReceivedOnPortBootpc=statBootpReplyReceivedOnPortBootpc, ipaddrTable=ipaddrTable, ifwanPppPeerMruUpTo=ifwanPppPeerMruUpTo, ifvceBroadcastPvc=ifvceBroadcastPvc, ifwanFallBackSpeed_bps=ifwanFallBackSpeed_bps, ipx=ipx, ifvceRate4k8x2=ifvceRate4k8x2, iflanTable=iflanTable, pvcEntry=pvcEntry, statTimeInvalidLocalIpAddress=statTimeInvalidLocalIpAddress, ifwanMsn2=ifwanMsn2, statIfwanChAborts=statIfwanChAborts, statRxStatusMessages=statRxStatusMessages, ifwanTxStartPass=ifwanTxStartPass, puBanBnnMaxFrame=puBanBnnMaxFrame, statQ933counters=statQ933counters, statRxReleaseMessages=statRxReleaseMessages, pvcRemoteFpUnit=pvcRemoteFpUnit, ifvceTable=ifvceTable, iflanIpxLanType=iflanIpxLanType, statAlarmDesc=statAlarmDesc, statBridgeBridgeDesignatedRoot=statBridgeBridgeDesignatedRoot, phoneNextHop=phoneNextHop, ifvceTeTimer_s=ifvceTeTimer_s, statPvcMeanRx=statPvcMeanRx, statPvcDlci=statPvcDlci, statTxframes=statTxframes, statPvcTable=statPvcTable, statTxCallProceedingMessages=statTxCallProceedingMessages, ifwanSvcReleaseTimeoutT308=ifwanSvcReleaseTimeoutT308, statPvcCompErrs=statPvcCompErrs, statBridgePortIndex=statBridgePortIndex, statSvcRestart=statSvcRestart, statRxDisconnectMessages=statRxDisconnectMessages, ifvceToneType=ifvceToneType, statPvcChAborts=statPvcChAborts, pvcNumber=pvcNumber, pvcBackupCall_s=pvcBackupCall_s, statInvalidRxSizes=statInvalidRxSizes, slotPortInSlotTable=slotPortInSlotTable, statSvcTable=statSvcTable, schedulePeriod=schedulePeriod, statPvcBadOctets=statPvcBadOctets, ifwanFraming=ifwanFraming, ospfRangeTable=ospfRangeTable, ipstaticEntry=ipstaticEntry, ifvceEnableDtmfOnTime=ifvceEnableDtmfOnTime, ospfAreaNumber=ospfAreaNumber, statTxReleaseCompleteMessages=statTxReleaseCompleteMessages, puBanRouting=puBanRouting, statBridgePortTr_SegmentMismatch=statBridgePortTr_SegmentMismatch, fatalTrap=fatalTrap, bridgeEnable=bridgeEnable, ifwanIpxSap=ifwanIpxSap, pvcOspfTransitDelay=pvcOspfTransitDelay, ospfVLinkDeadInt=ospfVLinkDeadInt, statBootpNbReplyReceived=statBootpNbReplyReceived, ifwanPppNegociatePeerMru=ifwanPppNegociatePeerMru, statPvcrRouteTable=statPvcrRouteTable, pvcPort=pvcPort, statSystemResetCounters=statSystemResetCounters, cfgStored=cfgStored, ifwanSvcStatusTimeoutT322=ifwanSvcStatusTimeoutT322, ifwanSubnetMask=ifwanSubnetMask, statPvcProtocol=statPvcProtocol, statSystemMeanCompRate=statSystemMeanCompRate, ifvceExtNumber=ifvceExtNumber, pvcMaxChannels=pvcMaxChannels, sysDesc=sysDesc, statPvcState=statPvcState, puNumber=puNumber, scheduleEntry=scheduleEntry, puXid=puXid, pvcOspfHelloInt=pvcOspfHelloInt, ifwanMaxChannels=ifwanMaxChannels, ifwanTerminating=ifwanTerminating, ifvceFwdType=ifvceFwdType, bootp=bootp, classDefaultClass=classDefaultClass, statIfwanModemSignal=statIfwanModemSignal, statPuChOverflows=statPuChOverflows, bridgeTr_Number=bridgeTr_Number, ospfGlobalRouterId=ospfGlobalRouterId, ifwan=ifwan, pysmi_class=pysmi_class, connectionDown=connectionDown, ifwanPppRemoteIpAddress=ifwanPppRemoteIpAddress, statIfwanUnderruns=statIfwanUnderruns, sysVoiceEncoding=sysVoiceEncoding, proxyNumber=proxyNumber, ifwanIndex=ifwanIndex, iflanCost=iflanCost, sysExtendedDigitsLength=sysExtendedDigitsLength, ifvceR2BusyDigit=ifvceR2BusyDigit, lucent=lucent, ifwanRemotePort=ifwanRemotePort, statIfwanOctetsRx=statIfwanOctetsRx, ifwanEntry=ifwanEntry, statIfwanFramesTx=statIfwanFramesTx, proxyComm=proxyComm, ipstaticIndex=ipstaticIndex, statIfwanT1E1LES=statIfwanT1E1LES, puSdlcPort=puSdlcPort, ifwanDialTimeout_s=ifwanDialTimeout_s, sysCountry=sysCountry, sysTransitDelay_s=sysTransitDelay_s, sysHuntForwardingBDLCI=sysHuntForwardingBDLCI, statIfvceDesc=statIfvceDesc, pvcTimeout_ms=pvcTimeout_ms, proxy=proxy, statIfwanState=statIfwanState, ifvceEntry=ifvceEntry, pvcBroadcastGroup=pvcBroadcastGroup, bootpIpDestAddr3=bootpIpDestAddr3, statBridgePortTrspFrameIn=statBridgePortTrspFrameIn, puActive=puActive, statBridgePortTr_FrmLngExceeded=statBridgePortTr_FrmLngExceeded, ifvcePulseMakeBreak_ms=ifvcePulseMakeBreak_ms, statAlarmEntry=statAlarmEntry, statIfwanMeanTx=statIfwanMeanTx, statBootpReplyWithInvalidGiaddr=statBootpReplyWithInvalidGiaddr, pvcOspfRetransmitInt=pvcOspfRetransmitInt, ifvceRemoteUnit=ifvceRemoteUnit, statIfwanT1E1SEF=statIfwanT1E1SEF, ifwanConnTimeout_s=ifwanConnTimeout_s, ifwanCompression=ifwanCompression, periodEnded=periodEnded, ifwanIpRipAuthType=ifwanIpRipAuthType, puXidId=puXidId, ifwanGainLimit=ifwanGainLimit, statBridgePortDesignatedPort=statBridgePortDesignatedPort, sysHuntForwardingAUnit=sysHuntForwardingAUnit, ifwanPppConfigRetries=ifwanPppConfigRetries, ifwanBodCall_s=ifwanBodCall_s, statSvcMode=statSvcMode, statBridgeBridgeFrameDiscard=statBridgeBridgeFrameDiscard, statSvcMeanTx=statSvcMeanTx, ifwanPppConfigRestartTimer=ifwanPppConfigRestartTimer, statMissingControlBlocks=statMissingControlBlocks, ifwanGroupPoll=ifwanGroupPoll, puTable=puTable, noTrap=noTrap, ipaddrEntry=ipaddrEntry, puLinkRemPu=puLinkRemPu, ifvceDVCLocalInbound=ifvceDVCLocalInbound, puBanBnnWindow=puBanBnnWindow, classIndex=classIndex, statPvcChOverflows=statPvcChOverflows, statIflanConnectionStatus=statIflanConnectionStatus)
mibBuilder.exportSymbols("CLEARTRAC7-MIB", setupReset=setupReset, ifwanTxHold_s=ifwanTxHold_s, badChecksum=badChecksum, sysDLCI=sysDLCI, ifwanSpeed_bps=ifwanSpeed_bps, ifwanClocking=ifwanClocking, ifvceDesc=ifvceDesc, statTxReleaseMessages=statTxReleaseMessages, ifwanPvcNumber=ifwanPvcNumber, statTimeNbReplySent=statTimeNbReplySent, bothFansUp=bothFansUp, ifwanCrc4=ifwanCrc4, statTimeClientSyncFailures=statTimeClientSyncFailures, statTxDisconnectMessages=statTxDisconnectMessages, cardDown=cardDown, statBridgePortDestination=statBridgePortDestination, sysPosNr=sysPosNr, schedulePort4=schedulePort4, phone=phone, bridgeAgingTime_s=bridgeAgingTime_s, statIfwanTrspLastError=statIfwanTrspLastError, sysRacksNr=sysRacksNr, statPvcSpeed=statPvcSpeed, ifwanIpxNetNum=ifwanIpxNetNum, statBridgeBridge=statBridgeBridge, pvcDlciAddress=pvcDlciAddress, statAlarmTime=statAlarmTime, statIflanProtocol=statIflanProtocol, statPvcMeanTx=statPvcMeanTx, pvcOspfEnable=pvcOspfEnable, statGrpDestName=statGrpDestName, ipstaticValid=ipstaticValid, ifwanHighPriorityTransparentClass=ifwanHighPriorityTransparentClass, ipstaticMask=ipstaticMask, ifvce=ifvce, sysVoiceHighestPriority=sysVoiceHighestPriority, ifwanFallBackSpeedEnable=ifwanFallBackSpeedEnable, statIflanBadFlags=statIflanBadFlags, iflanIpAddress=iflanIpAddress, iflanOspfEnable=iflanOspfEnable, statPvcOvrFrames=statPvcOvrFrames, bootpIpDestAddr1=bootpIpDestAddr1, statPvcrRouteNextHop=statPvcrRouteNextHop, puLinkRemoteUnit=puLinkRemoteUnit, proxyTrapIpAddr=proxyTrapIpAddr, sysRackId=sysRackId, bridge=bridge, statIfvceEntry=statIfvceEntry, statSystemAlarmNumber=statSystemAlarmNumber, ipstatic=ipstatic, ipstaticNumber=ipstaticNumber, statBootpNbReplySend=statBootpNbReplySend, ospfAreaTable=ospfAreaTable, proxyIpAddr=proxyIpAddr, pvcType=pvcType, sysThisPosId=sysThisPosId, iflanTr_Etr=iflanTr_Etr, statIfvceIndex=statIfvceIndex, statEstablishIndications=statEstablishIndications, schedule=schedule, filter=filter, classEntry=classEntry, statPvcrRouteIntrf=statPvcrRouteIntrf, ipaddrIfIndex=ipaddrIfIndex, puSdlcWindow=puSdlcWindow, ospfRangeEnable=ospfRangeEnable, statBridge=statBridge, sysDefaultIpAddr=sysDefaultIpAddr, puLlcTimeout_ms=puLlcTimeout_ms, statIfvceFaxMode=statIfvceFaxMode, statPuChSeqErrs=statPuChSeqErrs, statRxStatusEnquiryMessages=statRxStatusEnquiryMessages, statIflanMeanTx_kbps=statIflanMeanTx_kbps, ifwanLineCoding=ifwanLineCoding, statSystemMeanDecompRate=statSystemMeanDecompRate, statIflanIndex=statIflanIndex, ifwanPppNegociateIpAddress=ifwanPppNegociateIpAddress, ifwanSfType=ifwanSfType, sysAcceptLoop=sysAcceptLoop, bridgePriority=bridgePriority, statBridgePortTr_SegmentDuplicate=statBridgePortTr_SegmentDuplicate, pvcIpConnection=pvcIpConnection, schedulePort3=schedulePort3, pvcIpxConnection=pvcIpxConnection, fatalMsg=fatalMsg, sysVoiceClocking=sysVoiceClocking, iflan=iflan, ifwanMaxFrame=ifwanMaxFrame, puLlcDa=puLlcDa, ipstaticNextHop=ipstaticNextHop, statRxConnectMessages=statRxConnectMessages, ospfGlobalAutoVLink=ospfGlobalAutoVLink, bootpIpDestAddr4=bootpIpDestAddr4, ifwanMgmtInterface=ifwanMgmtInterface, ifwanBackupHang_s=ifwanBackupHang_s, ifwanChUse=ifwanChUse, pvcHuntForwardingBUnit=pvcHuntForwardingBUnit, cardup=cardup, ifwanCoding=ifwanCoding, pvcSubnetMask=pvcSubnetMask, statIfwanT1E1LCV=statIfwanT1E1LCV, statTxBytes=statTxBytes, slotIfIndex=slotIfIndex, statTimeNbRequestSent=statTimeNbRequestSent, iflanPriority=iflanPriority, ifwanRingNumber=ifwanRingNumber, statSystemSa=statSystemSa, ifwanInterface=ifwanInterface, filterActive=filterActive, puDlsSsap=puDlsSsap, ospfVLinkIndex=ospfVLinkIndex, statPvcFramesTx=statPvcFramesTx, pvcPriority=pvcPriority, sysHuntForwardingASvcAddress=sysHuntForwardingASvcAddress, ifvceIndex=ifvceIndex, ifwanPppAcceptAccmPeer=ifwanPppAcceptAccmPeer, puXidFormat=puXidFormat, sysPsMonitoring=sysPsMonitoring, sysTrapRackandPos=sysTrapRackandPos, statIfwanPeakRx=statIfwanPeakRx, statIflanEth_OneCollision=statIflanEth_OneCollision, ospfGlobal=ospfGlobal, statIflanRetries=statIflanRetries, statIfwanOvrOctets=statIfwanOvrOctets, sysVoiceLog=sysVoiceLog, ifvceLocalOutbound=ifvceLocalOutbound, pvcNetworkDlci=pvcNetworkDlci, pvcOspfDeadInt=pvcOspfDeadInt, iflanOspfHelloInt=iflanOspfHelloInt, statSystemPeakCompRate=statSystemPeakCompRate, statIfcemIndex=statIfcemIndex, ipxfilterType=ipxfilterType, ospfVLinkHelloInt=ospfVLinkHelloInt, iflanOspfRetransmitInt=iflanOspfRetransmitInt, slot=slot, iflanProtocol=iflanProtocol, schedulePort2=schedulePort2, ospfAreaEntry=ospfAreaEntry, sysBackplaneRipVersion=sysBackplaneRipVersion, pvcIpAddress=pvcIpAddress, statIflanPeakTx_kbps=statIflanPeakTx_kbps, pvcLlcConnection=pvcLlcConnection, statIflanBadFrames=statIflanBadFrames, statBridgePortTr_SingleRteFrameOut=statBridgePortTr_SingleRteFrameOut, puLlcMaxFrame=puLlcMaxFrame, periodStarted=periodStarted, statTxSetupMessages=statTxSetupMessages, statSvcOctetsRx=statSvcOctetsRx, ifvceDVCLocalOutbound=ifvceDVCLocalOutbound, intfDesc=intfDesc, statProtocolTimeouts=statProtocolTimeouts, q922Down=q922Down, ifwanBChannels=ifwanBChannels, ip=ip, ifwanSvcIframeRetransmissionsN200=ifwanSvcIframeRetransmissionsN200, statRxAcknowledgeExpiry=statRxAcknowledgeExpiry, ifwanT1E1InterBit=ifwanT1E1InterBit, phonePhoneNumber=phonePhoneNumber, ifwanEnquiryTimer_s=ifwanEnquiryTimer_s, ifvceRate8kx3=ifvceRate8kx3, statIfwanT1E1CSS=statIfwanT1E1CSS, statIfwanT1E1DM=statIfwanT1E1DM, ifvceRate4k8x1=ifvceRate4k8x1, statIfwanFramesRx=statIfwanFramesRx, pvcIndex=pvcIndex, pvcCompression=pvcCompression, statIflanEth_ExcessiveCollision=statIflanEth_ExcessiveCollision, ospf=ospf, bridgeStpEnable=bridgeStpEnable, ifwanBodLevel=ifwanBodLevel, ospfGlobalGlobalAreaId=ospfGlobalGlobalAreaId, ospfRangeIndex=ospfRangeIndex, puDlsIpSrc=puDlsIpSrc, intfEntry=intfEntry, ifwanIpxRip=ifwanIpxRip, ifwanOspfPassword=ifwanOspfPassword, pvc=pvc, statGrp=statGrp, ifwanQsigPbxAb=ifwanQsigPbxAb, ifvceFwdDelay_ms=ifvceFwdDelay_ms, pvcBackup=pvcBackup, ifwanIpRipTxRx=ifwanIpRipTxRx, statRxframes=statRxframes, ifwanSvcInactiveTimeoutT203=ifwanSvcInactiveTimeoutT203, statIflanEth_Align=statIflanEth_Align, ipaddrType=ipaddrType, ospfVLinkPassword=ospfVLinkPassword, iflanTr_Monitor=iflanTr_Monitor, ifvceAnalogLinkDwnBusy=ifvceAnalogLinkDwnBusy, statSvcPeakTx=statSvcPeakTx, iflanIpRipPassword=iflanIpRipPassword, sysSnmpTrapIpAddr4=sysSnmpTrapIpAddr4, ifwanTransparentClassNumber=ifwanTransparentClassNumber, puEntry=puEntry, statRxSetupMessages=statRxSetupMessages, statIflanEth_LateCollision=statIflanEth_LateCollision, pvcBrgConnection=pvcBrgConnection, iflanIpxRip=iflanIpxRip, ospfGlobalRackAreaId=ospfGlobalRackAreaId, statPvcIndex=statPvcIndex, badDestPort=badDestPort, statTxConnectMessages=statTxConnectMessages, statSvcFramesTx=statSvcFramesTx, scheduleNumber=scheduleNumber, ifwanT1E1LoopBack=ifwanT1E1LoopBack, ipxfilterIndex=ipxfilterIndex, statIflanEth_TwoCollisions=statIflanEth_TwoCollisions, sysDialTimer=sysDialTimer, sysSnmpTrapIpAddr1=sysSnmpTrapIpAddr1, schedulePort5=schedulePort5, ifwanOspfRetransmitInt=ifwanOspfRetransmitInt, ipaddrIndex=ipaddrIndex, ifwanPppAcceptIpAddress=ifwanPppAcceptIpAddress, statBootpFrameTooSmallToBeABootpFrame=statBootpFrameTooSmallToBeABootpFrame, statLinkEstablished=statLinkEstablished, sysHuntForwardingBUnit=sysHuntForwardingBUnit, ifwanModem=ifwanModem, phoneEntry=phoneEntry, statSvcFramesRx=statSvcFramesRx, statPuIndex=statPuIndex, puIndex=puIndex, ospfVLinkTransitDelay=ospfVLinkTransitDelay, ifwanSvcCallProceedingTimeoutT310=ifwanSvcCallProceedingTimeoutT310, intfIndex=intfIndex, ifwanIdle=ifwanIdle, ifvceMaxFaxModemRate=ifvceMaxFaxModemRate, pvcRemotePvc=pvcRemotePvc, ospfAreaImportASExt=ospfAreaImportASExt, bridgeHelloTime_s=bridgeHelloTime_s, statSvcError=statSvcError, timepTimeZoneSign=timepTimeZoneSign, ifwanExtNumber=ifwanExtNumber, ipxfilterTable=ipxfilterTable, statPvcEntry=statPvcEntry, intfSlotNumber=intfSlotNumber, statPvcChSeqErrs=statPvcChSeqErrs, statBootpInvalidOpCodeField=statBootpInvalidOpCodeField, ifvceR2ExtendedDigitSrc=ifvceR2ExtendedDigitSrc, puXidPuType=puXidPuType, ospfRangeStatus=ospfRangeStatus, onePsDown=onePsDown, statIfwanT1E1SES=statIfwanT1E1SES, statPvcPeakTx=statPvcPeakTx, statTimeInvalidPortNumbers=statTimeInvalidPortNumbers, schedulePort8=schedulePort8, statPvcrRouteName=statPvcrRouteName, puDlsMaxFrame=puDlsMaxFrame, statTimep=statTimep, intfNumber=intfNumber, statSvcSpeed=statSvcSpeed, pvcPvcClass=pvcPvcClass, cleartrac7=cleartrac7, statSvcIndex=statSvcIndex, sysPosRackId=sysPosRackId)
mibBuilder.exportSymbols("CLEARTRAC7-MIB", ifwanPppRemoteSubnetMask=ifwanPppRemoteSubnetMask, ifwanDialer=ifwanDialer, pvcHuntForwardingAUnit=pvcHuntForwardingAUnit, statIfvceDvcPortInUse=statIfvceDvcPortInUse, ifwanSvcNetworkAddress=ifwanSvcNetworkAddress, statTxStatusMessages=statTxStatusMessages, statBootpRequestReceivedOnPortBootpc=statBootpRequestReceivedOnPortBootpc, ipxfilterSap=ipxfilterSap, statBridgePortDesignatedRoot=statBridgePortDesignatedRoot, ifwanChExp=ifwanChExp, scheduleTable=scheduleTable, statSystemClearAlarms=statSystemClearAlarms, statBridgeBridgeFrameFiltered=statBridgeBridgeFrameFiltered, accountingFileOverflow=accountingFileOverflow, scheduleBeginTime=scheduleBeginTime, sysJitterBuf=sysJitterBuf, ifwanPollDelay_ms=ifwanPollDelay_ms, puLlcRetry=puLlcRetry, statAlarmDate=statAlarmDate, puLinkClassNumber=puLinkClassNumber, ifwanClassNumber=ifwanClassNumber, ospfVLinkNeighborRtrId=ospfVLinkNeighborRtrId, statPvcOvrOctets=statPvcOvrOctets, ifwanRxFlow=ifwanRxFlow, statIfwanTrspState=statIfwanTrspState, ifwanCllm=ifwanCllm, statAlarmArg=statAlarmArg, bridgeForwardDelay_s=bridgeForwardDelay_s, sysSnmpTrapIpAddr2=sysSnmpTrapIpAddr2, ifwanOspfHelloInt=ifwanOspfHelloInt, sysPsAndFansMonitoring=sysPsAndFansMonitoring, frLinkDown=frLinkDown, statIfwanOctetsTx=statIfwanOctetsTx, ifwanBodHang_s=ifwanBodHang_s, puBanDa=puBanDa, statIfwanBadFlags=statIfwanBadFlags, statPuMode=statPuMode, ifwanCondLMIPort=ifwanCondLMIPort, statBridgePortDesignatedBridge=statBridgePortDesignatedBridge, sysRingVolt=sysRingVolt, phoneIndex=phoneIndex, statTimeClientRetransmissions=statTimeClientRetransmissions, proxyTable=proxyTable, ifwanTxStartCop=ifwanTxStartCop, statIfwanQ922State=statIfwanQ922State, proxyIpMask=proxyIpMask, iflanOspfTransitDelay=iflanOspfTransitDelay, statBootp=statBootp, timepClientUdpTimeout=timepClientUdpTimeout, iflanEntry=iflanEntry, ifvceToneDetectRegen_s=ifvceToneDetectRegen_s, statIflanTable=statIflanTable, ospfRangeAddToArea=ospfRangeAddToArea, ospfVLinkNumber=ospfVLinkNumber, ifwanTxFlow=ifwanTxFlow, sysDate=sysDate, statPvcrRouteMetric=statPvcrRouteMetric, bothPsUp=bothPsUp, pvcMaxFrame=pvcMaxFrame, puBanBnnRetry=puBanBnnRetry, ifwanCellPacketization=ifwanCellPacketization, iflanTr_RingNumber=iflanTr_RingNumber, statBridgePortTr_SpecRteFrameIn=statBridgePortTr_SpecRteFrameIn, timepTimeZone=timepTimeZone, ifwanSignaling=ifwanSignaling, ifwanMsn3=ifwanMsn3, noMsg=noMsg, ifvceExtendedDigitSrc=ifvceExtendedDigitSrc, iflanPhysAddr=iflanPhysAddr, statBridgeBridgeRootCost=statBridgeBridgeRootCost, ipxfilterEnable=ipxfilterEnable, ifwanRemoteUnit=ifwanRemoteUnit, statTimeNbRequestReceived=statTimeNbRequestReceived, ifvceToneOn_ms=ifvceToneOn_ms, sysContact=sysContact, statIfcemClockState=statIfcemClockState, pvcDialTimeout=pvcDialTimeout, schedulePort6=schedulePort6, sysHuntForwardingBSvcAddress=sysHuntForwardingBSvcAddress, sysAutoSaveDelay=sysAutoSaveDelay, pvcTable=pvcTable, statBridgeBridgeRootPort=statBridgeBridgeRootPort, ifwanSfMode=ifwanSfMode, puLlcTr_Routing=puLlcTr_Routing, statIflanEth_CarrierSense=statIflanEth_CarrierSense, ifwanBackupCall_s=ifwanBackupCall_s, statSvcInfoSignal=statSvcInfoSignal, classWeight=classWeight, pvcBurstInfoRate=pvcBurstInfoRate, puSdlcMaxFrame=puSdlcMaxFrame, pvcUp=pvcUp, statIfwanSpeed=statIfwanSpeed, statIflanMeanRx_kbps=statIflanMeanRx_kbps, statGrpIndex=statGrpIndex, oneOrMoreFanDown=oneOrMoreFanDown, pvcIpxRip=pvcIpxRip, statSvcState=statSvcState, ifwanDuplex=ifwanDuplex, bootpMaxHops=bootpMaxHops, ifwanFlowControl=ifwanFlowControl, sysExtensionNumLength=sysExtensionNumLength, statPuCompErrs=statPuCompErrs, ifwanPppRequestMagicNum=ifwanPppRequestMagicNum, scheduleDay=scheduleDay, statIfvceOverruns=statIfvceOverruns, pvcBackupHang_s=pvcBackupHang_s, statBridgePort=statBridgePort, ifwanMsn1=ifwanMsn1)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_union, constraints_intersection, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ValueSizeConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(time_ticks, notification_type, mib_identifier, counter64, ip_address, module_identity, gauge32, unsigned32, enterprises, notification_type, counter32, bits, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, iso, integer32) = mibBuilder.importSymbols('SNMPv2-SMI', 'TimeTicks', 'NotificationType', 'MibIdentifier', 'Counter64', 'IpAddress', 'ModuleIdentity', 'Gauge32', 'Unsigned32', 'enterprises', 'NotificationType', 'Counter32', 'Bits', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'Integer32')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
lucent = mib_identifier((1, 3, 6, 1, 4, 1, 727))
cleartrac7 = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7))
mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2))
system = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 1))
ifwan = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 2))
iflan = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 3))
ifvce = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 18))
pu = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 4))
schedule = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 5))
bridge = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 6))
phone = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 7))
filter = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 8))
pysmi_class = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 9)).setLabel('class')
pvc = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 10))
ipx = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 11))
ipstatic = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 13))
ip = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 14))
ospf = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15))
ipxfilter = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 16))
stat = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20))
intf = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 30))
slot = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 31))
ipaddr = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 32))
bootp = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 33))
proxy = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 34))
timep = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 35))
sys_desc = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysDesc.setStatus('mandatory')
sys_contact = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysContact.setStatus('mandatory')
sys_name = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysName.setStatus('mandatory')
sys_unit_routing_version = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysUnitRoutingVersion.setStatus('mandatory')
sys_location = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysLocation.setStatus('mandatory')
sys_date = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 5), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDate.setStatus('mandatory')
sys_clock = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 6), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysClock.setStatus('mandatory')
sys_day = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 254, 255))).clone(namedValues=named_values(('sunday', 1), ('monday', 2), ('tuesday', 3), ('wednesday', 4), ('thursday', 5), ('friday', 6), ('saturday', 7), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDay.setStatus('mandatory')
sys_accept_loop = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysAcceptLoop.setStatus('mandatory')
sys_link_timeout_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000))).setLabel('sysLinkTimeout-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysLinkTimeout_s.setStatus('mandatory')
sys_transit_delay_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 20))).setLabel('sysTransitDelay-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysTransitDelay_s.setStatus('mandatory')
sys_default_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 11), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDefaultIpAddr.setStatus('mandatory')
sys_default_ip_mask = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 12), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDefaultIpMask.setStatus('mandatory')
sys_default_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 13), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDefaultGateway.setStatus('mandatory')
sys_rack_id = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('cs-product-only', 0), ('rack-1', 1), ('rack-2', 2), ('rack-3', 3), ('rack-4', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysRackId.setStatus('mandatory')
sys_ps_and_fans_monitoring = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('cs-product-only', 0), ('none', 1), ('ps', 2), ('fans', 3), ('both', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysPsAndFansMonitoring.setStatus('mandatory')
sys_ps_monitoring = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysPsMonitoring.setStatus('mandatory')
sys_snmp_trap_ip_addr1 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 17), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysSnmpTrapIpAddr1.setStatus('mandatory')
sys_snmp_trap_ip_addr2 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 18), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysSnmpTrapIpAddr2.setStatus('mandatory')
sys_snmp_trap_ip_addr3 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 19), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysSnmpTrapIpAddr3.setStatus('mandatory')
sys_snmp_trap_ip_addr4 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 20), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysSnmpTrapIpAddr4.setStatus('mandatory')
sys_this_pos_id = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 254, 255))).clone(namedValues=named_values(('cs-product-only', 0), ('pos-1', 1), ('pos-2', 2), ('pos-3', 3), ('pos-4', 4), ('pos-5', 5), ('pos-6', 6), ('pos-7', 7), ('pos-8', 8), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysThisPosId.setStatus('mandatory')
sys_pos_nr = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 31), integer32().subtype(subtypeSpec=value_range_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysPosNr.setStatus('mandatory')
sys_racks_nr = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 33), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysRacksNr.setStatus('mandatory')
sys_pos_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32))
if mibBuilder.loadTexts:
sysPosTable.setStatus('mandatory')
sys_pos_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'sysPosRackId'), (0, 'CLEARTRAC7-MIB', 'sysPosId'))
if mibBuilder.loadTexts:
sysPosEntry.setStatus('mandatory')
sys_pos_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 254, 255))).clone(namedValues=named_values(('cs-product-only', 0), ('pos-1', 1), ('pos-2', 2), ('pos-3', 3), ('pos-4', 4), ('pos-5', 5), ('pos-6', 6), ('pos-7', 7), ('pos-8', 8), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysPosId.setStatus('mandatory')
sys_pos_product = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 3), object_identifier()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysPosProduct.setStatus('mandatory')
sys_pos_rack_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('single-rack', 0), ('rack-1', 1), ('rack-2', 2), ('rack-3', 3), ('rack-4', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysPosRackId.setStatus('mandatory')
sys_pos_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysPosIpAddr.setStatus('mandatory')
ipaddr_nr = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipaddrNr.setStatus('mandatory')
ipaddr_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2))
if mibBuilder.loadTexts:
ipaddrTable.setStatus('mandatory')
ipaddr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ipaddrIndex'))
if mibBuilder.loadTexts:
ipaddrEntry.setStatus('mandatory')
ipaddr_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipaddrIndex.setStatus('mandatory')
ipaddr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipaddrAddr.setStatus('mandatory')
ipaddr_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('undef', 0), ('global', 1), ('wan', 2), ('lan', 3), ('proxy', 4), ('pvc', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipaddrType.setStatus('mandatory')
ipaddr_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipaddrIfIndex.setStatus('mandatory')
sys_dlci = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 34), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDLCI.setStatus('mandatory')
sys_extension_num_length = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysExtensionNumLength.setStatus('mandatory')
sys_extended_digits_length = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysExtendedDigitsLength.setStatus('mandatory')
sys_dial_timer = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDialTimer.setStatus('mandatory')
sys_country = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 38), integer32().subtype(subtypeSpec=value_range_constraint(0, 9999))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysCountry.setStatus('mandatory')
sys_jitter_buf = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(10, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysJitterBuf.setStatus('mandatory')
sys_ring_freq = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('voice-data-only', 0), ('hz-17', 1), ('hz-20', 2), ('hz-25', 3), ('hz-50', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysRingFreq.setStatus('mandatory')
sys_ring_volt = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 41), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 254, 255))).clone(namedValues=named_values(('voice-data-only', 0), ('rms-Volts-60', 1), ('rms-Volts-80', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysRingVolt.setStatus('mandatory')
sys_voice_encoding = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 254, 255))).clone(namedValues=named_values(('fp-product-only', 0), ('aCode', 1), ('bCode', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysVoiceEncoding.setStatus('mandatory')
sys_voice_clocking = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 43), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 254, 255))).clone(namedValues=named_values(('fp-product-only', 0), ('aClock', 1), ('bClock', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysVoiceClocking.setStatus('mandatory')
sys_voice_log = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 44), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysVoiceLog.setStatus('mandatory')
sys_speed_dial_num_length = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 45), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysSpeedDialNumLength.setStatus('mandatory')
sys_auto_save_delay = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 46), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysAutoSaveDelay.setStatus('mandatory')
sys_voice_highest_priority = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 48), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysVoiceHighestPriority.setStatus('mandatory')
sys_voice_class = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 49), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysVoiceClass.setStatus('mandatory')
sys_hunt_forwarding_a_unit = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 50), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysHuntForwardingAUnit.setStatus('mandatory')
sys_hunt_forwarding_b_unit = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 51), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysHuntForwardingBUnit.setStatus('mandatory')
sys_hunt_forwarding_adlci = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 52), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysHuntForwardingADLCI.setStatus('mandatory')
sys_hunt_forwarding_bdlci = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 53), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysHuntForwardingBDLCI.setStatus('mandatory')
sys_hunt_forwarding_a_svc_address = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 54), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysHuntForwardingASvcAddress.setStatus('mandatory')
sys_hunt_forwarding_b_svc_address = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 55), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysHuntForwardingBSvcAddress.setStatus('mandatory')
sys_backplane_rip_version = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 56), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('disable', 1), ('v1', 2), ('v2-broadcast', 3), ('v2-multicast', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysBackplaneRipVersion.setStatus('mandatory')
sys_trap_rackand_pos = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 57), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysTrapRackandPos.setStatus('mandatory')
proxy_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
proxyNumber.setStatus('mandatory')
proxy_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2))
if mibBuilder.loadTexts:
proxyTable.setStatus('mandatory')
proxy_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'proxyIndex'))
if mibBuilder.loadTexts:
proxyEntry.setStatus('mandatory')
proxy_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
proxyIndex.setStatus('mandatory')
proxy_comm = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
proxyComm.setStatus('mandatory')
proxy_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
proxyIpAddr.setStatus('mandatory')
proxy_ip_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
proxyIpMask.setStatus('mandatory')
proxy_trap_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
proxyTrapIpAddr.setStatus('mandatory')
proxy_default_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
proxyDefaultGateway.setStatus('mandatory')
intf_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfNumber.setStatus('mandatory')
intf_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2))
if mibBuilder.loadTexts:
intfTable.setStatus('mandatory')
intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'intfIndex'))
if mibBuilder.loadTexts:
intfEntry.setStatus('mandatory')
intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfIndex.setStatus('mandatory')
intf_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfDesc.setStatus('mandatory')
intf_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 99, 254, 255))).clone(namedValues=named_values(('wan-on-baseCard', 1), ('voice-on-baseCard', 2), ('wan-on-slot', 3), ('voice-on-slot', 4), ('lan-on-baseCard', 5), ('lan-on-slot', 6), ('proxy-on-slot', 7), ('voice-control-on-slot', 8), ('clock-extract-module', 9), ('other', 99), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfType.setStatus('mandatory')
intf_num_in_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfNumInType.setStatus('mandatory')
intf_slot = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 254, 255))).clone(namedValues=named_values(('baseCard', 0), ('slot-1', 1), ('slot-2', 2), ('slot-3', 3), ('slot-4', 4), ('slot-5', 5), ('slot-6', 6), ('slot-7', 7), ('slot-8', 8), ('slot-A', 9), ('slot-B', 10), ('slot-C', 11), ('slot-D', 12), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfSlot.setStatus('mandatory')
intf_slot_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 9, 16, 17, 18, 19, 21, 22, 23, 51, 36, 9999, 254, 255))).clone(namedValues=named_values(('baseCard', 0), ('ethernet', 1), ('vcf03', 2), ('g703-E1', 3), ('g703-T1', 4), ('g703-E1-ii', 5), ('g703-T1-ii', 6), ('tokenring', 7), ('voice', 9), ('tic', 16), ('tic-75', 17), ('dvc', 18), ('isdn-bri-voice', 19), ('eic', 21), ('eic-120', 22), ('cem', 23), ('vfc03r', 51), ('proxy', 36), ('unkown', 9999), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfSlotType.setStatus('mandatory')
intf_num_in_slot = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfNumInSlot.setStatus('mandatory')
intf_module_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 17, 18, 19, 20, 21, 22, 23, 255, 254, 253, 252))).clone(namedValues=named_values(('module-rs232-dce', 0), ('module-rs232-dte', 1), ('module-v35-dce', 2), ('module-v35-dte', 3), ('module-x21-dce', 4), ('module-x21-dte', 5), ('module-rs530-dce', 6), ('module-rs530-dte', 7), ('module-rs366A-dce', 8), ('module-rs366A-dte', 9), ('module-rs449-dce', 10), ('module-rs449-dte', 11), ('module-univ-dce', 17), ('module-univ-dte', 18), ('module-i430s-dte', 19), ('module-i430u-dte', 20), ('module-i431-T1-dte', 21), ('module-i431-E1-dte', 22), ('module-dsucsu', 23), ('module-undef-dce', 255), ('module-undef-dte', 254), ('module-undef', 253), ('not-applicable', 252)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfModuleType.setStatus('mandatory')
intf_slot_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfSlotNumber.setStatus('mandatory')
slot_port_in_slot_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2))
if mibBuilder.loadTexts:
slotPortInSlotTable.setStatus('mandatory')
slot_port_in_slot_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'slotSlot'), (0, 'CLEARTRAC7-MIB', 'slotPortInSlot'))
if mibBuilder.loadTexts:
slotPortInSlotEntry.setStatus('mandatory')
slot_slot = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 254, 255))).clone(namedValues=named_values(('baseCard', 0), ('slot-1', 1), ('slot-2', 2), ('slot-3', 3), ('slot-4', 4), ('slot-5', 5), ('slot-6', 6), ('slot-7', 7), ('slot-8', 8), ('slot-A', 9), ('slot-B', 10), ('slot-C', 11), ('slot-D', 12), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slotSlot.setStatus('mandatory')
slot_port_in_slot = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slotPortInSlot.setStatus('mandatory')
slot_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slotIfIndex.setStatus('mandatory')
ifwan_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifwanNumber.setStatus('mandatory')
ifwan_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2))
if mibBuilder.loadTexts:
ifwanTable.setStatus('mandatory')
ifwan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ifwanIndex'))
if mibBuilder.loadTexts:
ifwanEntry.setStatus('mandatory')
ifwan_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifwanIndex.setStatus('mandatory')
ifwan_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifwanDesc.setStatus('mandatory')
ifwan_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 18, 19, 28, 29, 31, 254, 255))).clone(namedValues=named_values(('off', 1), ('p-sdlc', 2), ('s-sdlc', 3), ('hdlc', 4), ('ddcmp', 5), ('t-async', 6), ('r-async', 7), ('bsc', 8), ('cop', 9), ('pvcr', 10), ('passthru', 11), ('console', 12), ('fr-net', 17), ('fr-user', 18), ('ppp', 19), ('g703', 28), ('x25', 29), ('sf', 31), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanProtocol.setStatus('mandatory')
ifwan_speed_bps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(110, 2000000))).setLabel('ifwanSpeed-bps').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSpeed_bps.setStatus('mandatory')
ifwan_fall_back_speed_bps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 2000000))).setLabel('ifwanFallBackSpeed-bps').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanFallBackSpeed_bps.setStatus('mandatory')
ifwan_fall_back_speed_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 91), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanFallBackSpeedEnable.setStatus('mandatory')
ifwan_interface = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 21, 22, 23, 255, 254, 253))).clone(namedValues=named_values(('dce-rs232', 0), ('dte-rs232', 1), ('dce-v35', 2), ('dte-v35', 3), ('dce-x21', 4), ('dte-x21', 5), ('dce-rs530', 6), ('dte-rs530', 7), ('dce-rs366a', 8), ('dte-rs366a', 9), ('dce-rs449', 10), ('dte-rs449', 11), ('dte-aui', 12), ('dte-tpe', 13), ('autom', 16), ('dce-univ', 17), ('dte-univ', 18), ('i430s', 19), ('i430u', 20), ('i431-t1', 21), ('i431-e1', 22), ('dsu-csu', 23), ('dce-undef', 255), ('dte-undef', 254), ('type-undef', 253)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanInterface.setStatus('mandatory')
ifwan_clocking = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 254, 255))).clone(namedValues=named_values(('internal', 1), ('external', 2), ('ipl', 3), ('itb', 4), ('async', 5), ('iso-int', 6), ('iso-ext', 7), ('t1-e1-B-Rcvd', 11), ('t1-e1-A-Rcvd', 12), ('t1-e1-Local', 13), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanClocking.setStatus('mandatory')
ifwan_coding = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('nrz', 1), ('nrzi', 2), ('nrz-crc0', 3), ('nrzi-crc0', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanCoding.setStatus('mandatory')
ifwan_modem = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('static', 1), ('dynamic', 2), ('statpass', 3), ('dynapass', 4), ('statfix', 5), ('dynafix', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanModem.setStatus('mandatory')
ifwan_tx_start = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 254, 255))).clone(namedValues=named_values(('auto', 0), ('max', 1), ('byte-48', 2), ('byte-96', 3), ('byte-144', 4), ('byte-192', 5), ('byte-256', 6), ('byte-512', 7), ('byte-1024', 8), ('byte-2048', 9), ('byte-8', 10), ('byte-16', 11), ('byte-24', 12), ('byte-32', 13), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTxStart.setStatus('mandatory')
ifwan_tx_start_cop = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 89), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 254, 255))).clone(namedValues=named_values(('auto', 0), ('max', 1), ('byte-8', 2), ('byte-16', 3), ('byte-24', 4), ('byte-32', 5), ('byte-40', 6), ('byte-48', 7), ('byte-96', 8), ('byte-144', 9), ('byte-192', 10), ('byte-256', 11), ('byte-512', 12), ('byte-1024', 13), ('byte-2048', 14), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTxStartCop.setStatus('mandatory')
ifwan_tx_start_pass = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 90), integer32().subtype(subtypeSpec=value_range_constraint(3, 12))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTxStartPass.setStatus('mandatory')
ifwan_idle = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('space', 1), ('mark', 2), ('flag', 3), ('markd', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIdle.setStatus('mandatory')
ifwan_duplex = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('half', 1), ('full', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDuplex.setStatus('mandatory')
ifwan_group_poll = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanGroupPoll.setStatus('mandatory')
ifwan_group_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 14), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanGroupAddress.setStatus('mandatory')
ifwan_poll_delay_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000))).setLabel('ifwanPollDelay-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPollDelay_ms.setStatus('mandatory')
ifwan_frame_delay = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 254, 255))).clone(namedValues=named_values(('delay-0p0-ms', 1), ('delay-0p5-ms', 2), ('delay-1p0-ms', 3), ('delay-1p5-ms', 4), ('delay-2p0-ms', 5), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanFrameDelay.setStatus('mandatory')
ifwan_format = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 254, 255))).clone(namedValues=named_values(('fmt-8-none', 1), ('fmt-7-none', 2), ('fmt-7-odd', 3), ('fmt-7-even', 4), ('fmt-7-space', 5), ('fmt-7-mark', 6), ('fmt-7-ignore', 7), ('fmt-8-even', 8), ('fmt-8-odd', 9), ('fmt-8n-2stop', 10), ('fmt-8-bits', 11), ('fmt-6-bits', 12), ('sync', 13), ('async', 14), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanFormat.setStatus('mandatory')
ifwan_sync = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSync.setStatus('mandatory')
ifwan_drop_sync_counter = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDropSyncCounter.setStatus('mandatory')
ifwan_drop_sync_character = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 20), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDropSyncCharacter.setStatus('mandatory')
ifwan_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMode.setStatus('mandatory')
ifwan_bod_call_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setLabel('ifwanBodCall-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanBodCall_s.setStatus('mandatory')
ifwan_bod_hang_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setLabel('ifwanBodHang-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanBodHang_s.setStatus('mandatory')
ifwan_bod_level = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(5, 95))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanBodLevel.setStatus('mandatory')
ifwan_backup_call_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setLabel('ifwanBackupCall-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanBackupCall_s.setStatus('mandatory')
ifwan_dial_timeout_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 92), integer32().subtype(subtypeSpec=value_range_constraint(30, 1000))).setLabel('ifwanDialTimeout-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDialTimeout_s.setStatus('mandatory')
ifwan_backup_hang_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setLabel('ifwanBackupHang-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanBackupHang_s.setStatus('mandatory')
ifwan_port_to_back = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 254, 255))).clone(namedValues=named_values(('any', 15), ('all', 16), ('port-1', 1), ('port-2', 2), ('port-3', 3), ('port-4', 4), ('port-5', 5), ('port-6', 6), ('port-7', 7), ('port-8', 8), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPortToBack.setStatus('mandatory')
ifwan_dialer = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 254, 255))).clone(namedValues=named_values(('dTR', 1), ('x21-L1', 2), ('x21-L2', 3), ('v25-H', 4), ('v25-B', 5), ('aT-9600', 6), ('aT-19200', 7), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDialer.setStatus('mandatory')
ifwan_remote_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 29), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanRemoteUnit.setStatus('mandatory')
ifwan_class_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 30), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanClassNumber.setStatus('mandatory')
ifwan_ring_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 31), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanRingNumber.setStatus('mandatory')
ifwan_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 32), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpAddress.setStatus('mandatory')
ifwan_subnet_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 33), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSubnetMask.setStatus('mandatory')
ifwan_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(128, 8192))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMaxFrame.setStatus('mandatory')
ifwan_compression = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 36), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanCompression.setStatus('mandatory')
ifwan_priority = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifwanPriority.setStatus('mandatory')
ifwan_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(1000, 30000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTimeout.setStatus('mandatory')
ifwan_retry = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 40), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanRetry.setStatus('mandatory')
ifwan_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanRemotePort.setStatus('mandatory')
ifwan_flow_control = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('off', 1), ('on', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanFlowControl.setStatus('mandatory')
ifwan_mgmt_interface = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 43), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('lmi', 1), ('annex-d', 2), ('q-933', 3), ('none', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMgmtInterface.setStatus('mandatory')
ifwan_enquiry_timer_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 44), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setLabel('ifwanEnquiryTimer-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanEnquiryTimer_s.setStatus('mandatory')
ifwan_report_cycle = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 45), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanReportCycle.setStatus('mandatory')
ifwan_ip_rip = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 46), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('disable', 1), ('v1', 2), ('v2-broadcast', 3), ('v2-multicast', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpRip.setStatus('mandatory')
ifwan_cllm = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('off', 1), ('on', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanCllm.setStatus('mandatory')
ifwan_ipx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 48), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpxRip.setStatus('mandatory')
ifwan_ipx_sap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 49), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpxSap.setStatus('mandatory')
ifwan_ipx_net_num = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 50), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpxNetNum.setStatus('mandatory')
ifwan_rx_flow = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 52), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(5, 1, 2, 254, 255))).clone(namedValues=named_values(('none', 5), ('xon-Xoff', 1), ('hardware', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanRxFlow.setStatus('mandatory')
ifwan_tx_flow = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 53), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(5, 1, 2, 254, 255))).clone(namedValues=named_values(('none', 5), ('xon-Xoff', 1), ('hardware', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTxFlow.setStatus('mandatory')
ifwan_tx_hold_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 54), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000))).setLabel('ifwanTxHold-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTxHold_s.setStatus('mandatory')
ifwan_ds_o_speed_bps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 55), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('bps-64000', 1), ('bps-56000', 2), ('not-applicable', 254), ('not-available', 255)))).setLabel('ifwanDsOSpeed-bps').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDsOSpeed_bps.setStatus('mandatory')
ifwan_framing = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 58), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4, 254, 255))).clone(namedValues=named_values(('esf', 2), ('d4', 3), ('other', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanFraming.setStatus('mandatory')
ifwan_terminating = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 59), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('tE', 1), ('nT', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTerminating.setStatus('mandatory')
ifwan_crc4 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 60), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanCrc4.setStatus('mandatory')
ifwan_line_coding = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 61), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 5, 4, 7, 254, 255))).clone(namedValues=named_values(('ami-e1', 0), ('hdb3-e1', 1), ('b8zs-t1', 2), ('ami-t1', 5), ('other', 4), ('b7sz-t1', 7), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanLineCoding.setStatus('mandatory')
ifwan_b_channels = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 62), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('disable', 1), ('b1', 2), ('b2', 3), ('b1-plus-b2', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanBChannels.setStatus('mandatory')
ifwan_multiframing = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 63), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMultiframing.setStatus('mandatory')
ifwan_ospf_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 64), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfEnable.setStatus('mandatory')
ifwan_ospf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 65), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfAreaId.setStatus('mandatory')
ifwan_ospf_transit_delay = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 66), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfTransitDelay.setStatus('mandatory')
ifwan_ospf_retransmit_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 67), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfRetransmitInt.setStatus('mandatory')
ifwan_ospf_hello_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 68), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfHelloInt.setStatus('mandatory')
ifwan_ospf_dead_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 69), integer32().subtype(subtypeSpec=value_range_constraint(1, 2000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfDeadInt.setStatus('mandatory')
ifwan_ospf_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 70), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfPassword.setStatus('mandatory')
ifwan_ospf_metric_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 71), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfMetricCost.setStatus('mandatory')
ifwan_ch_use = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 72), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanChUse.setStatus('mandatory')
ifwan_gain_limit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 77), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('db-30', 1), ('db-36', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanGainLimit.setStatus('mandatory')
ifwan_signaling = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 78), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 254, 255))).clone(namedValues=named_values(('none', 1), ('t1-rob-bit', 2), ('e1-cas', 3), ('e1-ccs', 4), ('trsp-orig', 5), ('trsp-answ', 6), ('qsig', 7), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSignaling.setStatus('mandatory')
ifwan_idle_code = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 79), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIdleCode.setStatus('mandatory')
ifwan_line_build = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 80), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 254, 255))).clone(namedValues=named_values(('ft0-to-133', 0), ('ft133-to-266', 1), ('ft266-to-399', 2), ('ft399-to-533', 3), ('ft533-to-655', 4), ('dbMinus7point5', 5), ('dbMinus15', 6), ('dbMinus22point5', 7), ('ohm-75', 8), ('ohm-120', 9), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanLineBuild.setStatus('mandatory')
ifwan_t1_e1_status = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 84), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanT1E1Status.setStatus('mandatory')
ifwan_t1_e1_loop_back = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 85), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('lev1-local', 3), ('lev2-local', 4), ('echo', 5), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanT1E1LoopBack.setStatus('mandatory')
ifwan_ch_exp = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 86), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanChExp.setStatus('mandatory')
ifwan_t1_e1_inter_bit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 87), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanT1E1InterBit.setStatus('mandatory')
ifwan_encoding_law = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 88), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 254, 255))).clone(namedValues=named_values(('aLaw', 0), ('muLaw', 1), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanEncodingLaw.setStatus('mandatory')
ifwan_cell_packetization = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 93), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanCellPacketization.setStatus('mandatory')
ifwan_max_channels = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 94), integer32().subtype(subtypeSpec=value_range_constraint(0, 10000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMaxChannels.setStatus('mandatory')
ifwan_cond_lmi_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 95), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 254, 255))).clone(namedValues=named_values(('none', 0), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanCondLMIPort.setStatus('mandatory')
ifwan_ext_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 96), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanExtNumber.setStatus('mandatory')
ifwan_dest_ext_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 97), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDestExtNumber.setStatus('mandatory')
ifwan_conn_timeout_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 98), integer32().subtype(subtypeSpec=value_range_constraint(10, 30))).setLabel('ifwanConnTimeout-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanConnTimeout_s.setStatus('mandatory')
ifwan_svc_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 99), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('e-164', 2), ('x-121', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcAddressType.setStatus('mandatory')
ifwan_svc_network_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 100), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcNetworkAddress.setStatus('mandatory')
ifwan_svc_max_tx_timeout_t200 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 101), integer32().subtype(subtypeSpec=value_range_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcMaxTxTimeoutT200.setStatus('mandatory')
ifwan_svc_inactive_timeout_t203 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 102), integer32().subtype(subtypeSpec=value_range_constraint(1, 60))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcInactiveTimeoutT203.setStatus('mandatory')
ifwan_svc_iframe_retransmissions_n200 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 103), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcIframeRetransmissionsN200.setStatus('mandatory')
ifwan_svc_setup_timeout_t303 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 104), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcSetupTimeoutT303.setStatus('mandatory')
ifwan_svc_disconnect_timeout_t305 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 105), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcDisconnectTimeoutT305.setStatus('mandatory')
ifwan_svc_release_timeout_t308 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 106), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcReleaseTimeoutT308.setStatus('mandatory')
ifwan_svc_call_proceeding_timeout_t310 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 107), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcCallProceedingTimeoutT310.setStatus('mandatory')
ifwan_svc_status_timeout_t322 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 108), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcStatusTimeoutT322.setStatus('mandatory')
ifwan_tei_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 109), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('dynamic', 1), ('fixed', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTeiMode.setStatus('mandatory')
ifwan_digit_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 110), integer32().subtype(subtypeSpec=value_range_constraint(0, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDigitNumber.setStatus('mandatory')
ifwan_msn1 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 111), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMsn1.setStatus('mandatory')
ifwan_msn2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 112), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMsn2.setStatus('mandatory')
ifwan_msn3 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 113), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMsn3.setStatus('mandatory')
ifwan_x25_encapsulation = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 114), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('annex-f', 1), ('annex-g', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanX25Encapsulation.setStatus('mandatory')
ifwan_pvc_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 115), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPvcNumber.setStatus('mandatory')
ifwan_qsig_pbx_ab = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 116), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('a', 1), ('b', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanQsigPbxAb.setStatus('mandatory')
ifwan_qsig_pbx_xy = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 117), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('x', 1), ('y', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanQsigPbxXy.setStatus('mandatory')
ifwan_ip_rip_tx_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 118), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('duplex', 1), ('tx-only', 2), ('rx-only', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpRipTxRx.setStatus('mandatory')
ifwan_ip_rip_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 119), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('none', 1), ('simple', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpRipAuthType.setStatus('mandatory')
ifwan_ip_rip_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 120), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpRipPassword.setStatus('mandatory')
ifwan_ppp_silent = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 121), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('send-request', 1), ('wait-for-request', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppSilent.setStatus('mandatory')
ifwan_ppp_config_restart_timer = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 122), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppConfigRestartTimer.setStatus('mandatory')
ifwan_ppp_config_retries = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 123), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppConfigRetries.setStatus('mandatory')
ifwan_ppp_negociate_local_mru = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 124), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppNegociateLocalMru.setStatus('mandatory')
ifwan_ppp_local_mru = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 125), integer32().subtype(subtypeSpec=value_range_constraint(0, 3000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppLocalMru.setStatus('mandatory')
ifwan_ppp_negociate_peer_mru = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 126), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppNegociatePeerMru.setStatus('mandatory')
ifwan_ppp_peer_mru_up_to = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 127), integer32().subtype(subtypeSpec=value_range_constraint(0, 3000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppPeerMruUpTo.setStatus('mandatory')
ifwan_ppp_negociate_accm = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 128), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppNegociateAccm.setStatus('mandatory')
ifwan_ppp_requested_accm_char = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 129), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppRequestedAccmChar.setStatus('mandatory')
ifwan_ppp_accept_accm_peer = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 130), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppAcceptAccmPeer.setStatus('mandatory')
ifwan_ppp_acceptable_accm_char = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 131), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppAcceptableAccmChar.setStatus('mandatory')
ifwan_ppp_request_magic_num = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 132), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppRequestMagicNum.setStatus('mandatory')
ifwan_ppp_accept_magic_num = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 133), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppAcceptMagicNum.setStatus('mandatory')
ifwan_ppp_accept_old_ip_add_neg = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 134), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppAcceptOldIpAddNeg.setStatus('mandatory')
ifwan_ppp_negociate_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 135), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppNegociateIpAddress.setStatus('mandatory')
ifwan_ppp_accept_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 136), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppAcceptIpAddress.setStatus('mandatory')
ifwan_ppp_remote_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 137), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppRemoteIpAddress.setStatus('mandatory')
ifwan_ppp_remote_subnet_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 138), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppRemoteSubnetMask.setStatus('mandatory')
ifwan_high_priority_transparent_class = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 139), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanHighPriorityTransparentClass.setStatus('mandatory')
ifwan_transparent_class_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 140), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTransparentClassNumber.setStatus('mandatory')
ifwan_channel_compressed = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 141), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanChannelCompressed.setStatus('mandatory')
ifwan_sf_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 142), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('demodulator', 1), ('modulator', 2), ('expansion', 3), ('agregate', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSfType.setStatus('mandatory')
ifwan_sf_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 143), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('active', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSfMode.setStatus('mandatory')
ifwan_sf_carrier_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 144), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSfCarrierId.setStatus('mandatory')
ifvce_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifvceNumber.setStatus('mandatory')
ifvce_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2))
if mibBuilder.loadTexts:
ifvceTable.setStatus('mandatory')
ifvce_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ifvceIndex'))
if mibBuilder.loadTexts:
ifvceEntry.setStatus('mandatory')
ifvce_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifvceIndex.setStatus('mandatory')
ifvce_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifvceDesc.setStatus('mandatory')
ifvce_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 21, 22, 23, 24, 26, 30, 254, 255))).clone(namedValues=named_values(('off', 1), ('acelp-8-kbs', 21), ('acelp-4-8-kbs', 22), ('pcm64k', 23), ('adpcm32k', 24), ('atc16k', 26), ('acelp-cn', 30), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceProtocol.setStatus('mandatory')
ifvce_interface = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('fxs', 1), ('fx0', 2), ('e-and-m', 3), ('ac15', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceInterface.setStatus('mandatory')
ifvce_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 899))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRemotePort.setStatus('mandatory')
ifvce_activation_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('predefined', 1), ('switched', 2), ('autodial', 3), ('broadcast', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceActivationType.setStatus('mandatory')
ifvce_remote_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 7), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRemoteUnit.setStatus('mandatory')
ifvce_hunt_group = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('no', 1), ('a', 2), ('b', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceHuntGroup.setStatus('mandatory')
ifvce_tone_detect_regen_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setLabel('ifvceToneDetectRegen-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceToneDetectRegen_s.setStatus('mandatory')
ifvce_pulse_make_break_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(20, 80))).setLabel('ifvcePulseMakeBreak-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvcePulseMakeBreak_ms.setStatus('mandatory')
ifvce_tone_on_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(30, 1000))).setLabel('ifvceToneOn-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceToneOn_ms.setStatus('mandatory')
ifvce_tone_off_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(30, 1000))).setLabel('ifvceToneOff-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceToneOff_ms.setStatus('mandatory')
ifvce_silence_suppress = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(4, 20))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceSilenceSuppress.setStatus('mandatory')
ifvce_dvc_silence_suppress = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 33), integer32().subtype(subtypeSpec=value_range_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceDVCSilenceSuppress.setStatus('mandatory')
ifvce_signaling = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 6, 10, 11, 12, 13, 14, 15, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 32, 30, 254, 255))).clone(namedValues=named_values(('e-and-m-4w-imm-start', 1), ('e-and-m-2W-imm-start', 2), ('loop-start', 3), ('ac15-a', 4), ('ac15-c', 6), ('e-and-m-4w-timed-e', 10), ('e-and-m-2W-timed-e', 11), ('e-and-m-4W-wink-start', 12), ('e-and-m-2W-wink-start', 13), ('e-and-m-4W-delay-dial', 14), ('e-and-m-2W-delay-dial', 15), ('e-and-m-4W-colisee', 17), ('e-and-m-2W-colisee', 18), ('imm-start', 21), ('r2', 22), ('fxo', 23), ('fxs', 24), ('gnd-fxo', 25), ('gnd-fxs', 26), ('plar', 27), ('poi', 28), ('wink-start', 32), ('ab00', 30), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceSignaling.setStatus('mandatory')
ifvce_local_inbound = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 254, 255))).clone(namedValues=named_values(('db-22', 1), ('db-21', 2), ('db-20', 3), ('db-19', 4), ('db-18', 5), ('db-17', 6), ('db-16', 7), ('db-15', 8), ('db-14', 9), ('db-13', 10), ('db-12', 11), ('db-11', 12), ('db-10', 13), ('db-9', 14), ('db-8', 15), ('db-7', 16), ('db-6', 17), ('db-5', 18), ('db-4', 19), ('db-3', 20), ('db-2', 21), ('db-1', 22), ('db0', 23), ('db1', 24), ('db2', 25), ('db3', 26), ('db4', 27), ('db5', 28), ('db6', 29), ('db7', 30), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceLocalInbound.setStatus('mandatory')
ifvce_local_outbound = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 254, 255))).clone(namedValues=named_values(('db-22', 1), ('db-21', 2), ('db-20', 3), ('db-19', 4), ('db-18', 5), ('db-17', 6), ('db-16', 7), ('db-15', 8), ('db-14', 9), ('db-13', 10), ('db-12', 11), ('db-11', 12), ('db-10', 13), ('db-9', 14), ('db-8', 15), ('db-7', 16), ('db-6', 17), ('db-5', 18), ('db-4', 19), ('db-3', 20), ('db-2', 21), ('db-1', 22), ('db0', 23), ('db1', 24), ('db2', 25), ('db3', 26), ('db4', 27), ('db5', 28), ('db6', 29), ('db7', 30), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceLocalOutbound.setStatus('mandatory')
ifvce_dvc_local_inbound = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 34), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 254, 255))).clone(namedValues=named_values(('db-12', 9), ('db-11', 10), ('db-10', 11), ('db-9', 12), ('db-8', 13), ('db-7', 14), ('db-6', 15), ('db-5', 16), ('db-4', 17), ('db-3', 18), ('db-2', 19), ('db-1', 20), ('db0', 21), ('db1', 22), ('db2', 23), ('db3', 24), ('db4', 25), ('db5', 26), ('db6', 27), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceDVCLocalInbound.setStatus('mandatory')
ifvce_dvc_local_outbound = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 254, 255))).clone(namedValues=named_values(('db-12', 9), ('db-11', 10), ('db-10', 11), ('db-9', 12), ('db-8', 13), ('db-7', 14), ('db-6', 15), ('db-5', 16), ('db-4', 17), ('db-3', 18), ('db-2', 19), ('db-1', 20), ('db0', 21), ('db1', 22), ('db2', 23), ('db3', 24), ('db4', 25), ('db5', 26), ('db6', 27), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceDVCLocalOutbound.setStatus('mandatory')
ifvce_fax_modem_relay = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('none', 1), ('fax', 2), ('both', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceFaxModemRelay.setStatus('mandatory')
ifvce_max_fax_modem_rate = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 44), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 254, 255))).clone(namedValues=named_values(('rate-14400', 1), ('rate-12000', 2), ('rate-9600', 3), ('rate-7200', 4), ('rate-4800', 5), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceMaxFaxModemRate.setStatus('mandatory')
ifvce_fxo_timeout_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 99))).setLabel('ifvceFxoTimeout-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceFxoTimeout_s.setStatus('mandatory')
ifvce_te_timer_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setLabel('ifvceTeTimer-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceTeTimer_s.setStatus('mandatory')
ifvce_fwd_digits = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('none', 1), ('all', 2), ('ext', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceFwdDigits.setStatus('mandatory')
ifvce_fwd_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('tone', 1), ('pulse', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceFwdType.setStatus('mandatory')
ifvce_fwd_delay_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 10000))).setLabel('ifvceFwdDelay-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceFwdDelay_ms.setStatus('mandatory')
ifvce_del_digits = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceDelDigits.setStatus('mandatory')
ifvce_ext_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 25), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceExtNumber.setStatus('mandatory')
ifvce_link_dwn_busy = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('broadcast', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceLinkDwnBusy.setStatus('mandatory')
ifvce_tone_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 254, 255))).clone(namedValues=named_values(('dtmf', 0), ('mf', 1), ('r2', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceToneType.setStatus('mandatory')
ifvce_rate8kx1 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate8kx1.setStatus('mandatory')
ifvce_rate8kx2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate8kx2.setStatus('mandatory')
ifvce_rate5k8x1 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate5k8x1.setStatus('mandatory')
ifvce_rate5k8x2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate5k8x2.setStatus('mandatory')
ifvce_broadcast_dir = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 36), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('tX', 1), ('rX', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceBroadcastDir.setStatus('mandatory')
ifvce_broadcast_pvc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 300))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceBroadcastPvc.setStatus('mandatory')
ifvce_analog_link_dwn_busy = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('broadcast', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceAnalogLinkDwnBusy.setStatus('mandatory')
ifvce_speed_dial_num = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 39), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceSpeedDialNum.setStatus('mandatory')
ifvce_r2_extended_digit_src = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('map', 1), ('user', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceR2ExtendedDigitSrc.setStatus('mandatory')
ifvce_r2_group2_digit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(0, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceR2Group2Digit.setStatus('mandatory')
ifvce_r2_complete_digit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceR2CompleteDigit.setStatus('mandatory')
ifvce_r2_busy_digit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 43), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceR2BusyDigit.setStatus('mandatory')
ifvce_rate8kx3 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate8kx3.setStatus('mandatory')
ifvce_rate6kx1 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 46), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate6kx1.setStatus('mandatory')
ifvce_rate6kx2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate6kx2.setStatus('mandatory')
ifvce_rate6kx3 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 48), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate6kx3.setStatus('mandatory')
ifvce_rate4k8x1 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 49), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate4k8x1.setStatus('mandatory')
ifvce_rate4k8x2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 50), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate4k8x2.setStatus('mandatory')
ifvce_d_talk_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 51), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 2, 3, 4, 5, 6, 7, 26, 254, 255))).clone(namedValues=named_values(('db-12', 8), ('db-11', 9), ('db-10', 10), ('db-9', 11), ('db-8', 12), ('db-7', 13), ('db-6', 14), ('db-5', 15), ('db-4', 16), ('db-3', 17), ('db-2', 18), ('db-1', 19), ('db0', 20), ('db1', 21), ('db2', 22), ('db3', 23), ('db4', 24), ('db5', 25), ('db6', 1), ('db7', 2), ('db8', 3), ('db9', 4), ('db10', 5), ('db11', 6), ('db12', 7), ('disabled', 26), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceDTalkThreshold.setStatus('mandatory')
ifvce_tone_energy_detec = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 52), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('yes', 1), ('no', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceToneEnergyDetec.setStatus('mandatory')
ifvce_extended_digit_src = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 53), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('map', 1), ('user', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceExtendedDigitSrc.setStatus('mandatory')
ifvce_dtmf_on_time = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 54), integer32().subtype(subtypeSpec=value_range_constraint(20, 50))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceDtmfOnTime.setStatus('mandatory')
ifvce_enable_dtmf_on_time = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 55), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceEnableDtmfOnTime.setStatus('mandatory')
iflan_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iflanNumber.setStatus('mandatory')
iflan_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2))
if mibBuilder.loadTexts:
iflanTable.setStatus('mandatory')
iflan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'iflanIndex'))
if mibBuilder.loadTexts:
iflanEntry.setStatus('mandatory')
iflan_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iflanIndex.setStatus('mandatory')
iflan_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iflanDesc.setStatus('mandatory')
iflan_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 13, 14, 15, 16, 254, 255))).clone(namedValues=named_values(('off', 1), ('token-ring', 13), ('ethernet-auto', 14), ('ethernet-802p3', 15), ('ethernet-v2', 16), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanProtocol.setStatus('mandatory')
iflan_speed = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('tr-4-Mbps', 1), ('tr-16-Mbps', 2), ('eth-10-Mbps', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanSpeed.setStatus('mandatory')
iflan_priority = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iflanPriority.setStatus('mandatory')
iflan_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iflanCost.setStatus('mandatory')
iflan_phys_addr = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanPhysAddr.setStatus('mandatory')
iflan_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 8), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpAddress.setStatus('mandatory')
iflan_subnet_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 9), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanSubnetMask.setStatus('mandatory')
iflan_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(128, 8192))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanMaxFrame.setStatus('mandatory')
iflan_eth__link_integrity = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setLabel('iflanEth-LinkIntegrity').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanEth_LinkIntegrity.setStatus('mandatory')
iflan_tr__monitor = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setLabel('iflanTr-Monitor').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanTr_Monitor.setStatus('mandatory')
iflan_tr__etr = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setLabel('iflanTr-Etr').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanTr_Etr.setStatus('mandatory')
iflan_tr__ring_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 15), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setLabel('iflanTr-RingNumber').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanTr_RingNumber.setStatus('mandatory')
iflan_ip_rip = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('disable', 1), ('v1', 2), ('v2-broadcast', 3), ('v2-multicast', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpRip.setStatus('mandatory')
iflan_ipx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpxRip.setStatus('mandatory')
iflan_ipx_sap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpxSap.setStatus('mandatory')
iflan_ipx_net_num = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 19), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpxNetNum.setStatus('mandatory')
iflan_ipx_lan_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('ethernet-802p2', 1), ('ethernet-snap', 2), ('ethernet-802p3', 3), ('ethernet-ii', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpxLanType.setStatus('mandatory')
iflan_ospf_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfEnable.setStatus('mandatory')
iflan_ospf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 22), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfAreaId.setStatus('mandatory')
iflan_ospf_priority = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfPriority.setStatus('mandatory')
iflan_ospf_transit_delay = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfTransitDelay.setStatus('mandatory')
iflan_ospf_retransmit_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfRetransmitInt.setStatus('mandatory')
iflan_ospf_hello_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfHelloInt.setStatus('mandatory')
iflan_ospf_dead_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 27), integer32().subtype(subtypeSpec=value_range_constraint(1, 2000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfDeadInt.setStatus('mandatory')
iflan_ospf_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 28), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfPassword.setStatus('mandatory')
iflan_ospf_metric_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 29), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfMetricCost.setStatus('mandatory')
iflan_ip_rip_tx_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('duplex', 1), ('tx-only', 2), ('rx-only', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpRipTxRx.setStatus('mandatory')
iflan_ip_rip_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('none', 1), ('simple', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpRipAuthType.setStatus('mandatory')
iflan_ip_rip_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 32), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpRipPassword.setStatus('mandatory')
pu_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
puNumber.setStatus('mandatory')
pu_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2))
if mibBuilder.loadTexts:
puTable.setStatus('mandatory')
pu_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'puIndex'))
if mibBuilder.loadTexts:
puEntry.setStatus('mandatory')
pu_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
puIndex.setStatus('mandatory')
pu_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 254, 255))).clone(namedValues=named_values(('off', 1), ('sdlc-llc', 2), ('sdlc-sdlc', 3), ('sdlc-dlsw', 4), ('sdlc-links', 5), ('llc-dlsw', 6), ('llc-links', 7), ('dlsw-links', 8), ('sdlc-ban', 9), ('sdlc-bnn', 10), ('llc-ban', 11), ('llc-bnn', 12), ('dlsw-ban', 13), ('dlsw-bnn', 14), ('ban-link', 15), ('bnn-link', 16), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puMode.setStatus('mandatory')
pu_active = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puActive.setStatus('mandatory')
pu_delay_before_conn_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setLabel('puDelayBeforeConn-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDelayBeforeConn_s.setStatus('mandatory')
pu_role = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('secondary', 1), ('primary', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puRole.setStatus('mandatory')
pu_sdlc_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcPort.setStatus('mandatory')
pu_sdlc_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcAddress.setStatus('mandatory')
pu_sdlc_port2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcPort2.setStatus('mandatory')
pu_sdlc_address2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcAddress2.setStatus('mandatory')
pu_sdlc_timeout_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(100, 30000))).setLabel('puSdlcTimeout-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcTimeout_ms.setStatus('mandatory')
pu_sdlc_retry = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcRetry.setStatus('mandatory')
pu_sdlc_window = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(1, 7))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcWindow.setStatus('mandatory')
pu_sdlc_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 13), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcMaxFrame.setStatus('mandatory')
pu_llc_da = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 14), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcDa.setStatus('mandatory')
pu_llc_tr__routing = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('trsp', 1), ('src', 2), ('not-applicable', 254), ('not-available', 255)))).setLabel('puLlcTr-Routing').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcTr_Routing.setStatus('mandatory')
pu_llc_ssap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcSsap.setStatus('mandatory')
pu_llc_dsap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 17), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcDsap.setStatus('mandatory')
pu_llc_timeout_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(100, 30000))).setLabel('puLlcTimeout-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcTimeout_ms.setStatus('mandatory')
pu_llc_retry = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcRetry.setStatus('mandatory')
pu_llc_window = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcWindow.setStatus('mandatory')
pu_llc_dynamic_window = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcDynamicWindow.setStatus('mandatory')
pu_llc_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 23), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcMaxFrame.setStatus('mandatory')
pu_dls_da = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDlsDa.setStatus('mandatory')
pu_dls_ssap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 25), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDlsSsap.setStatus('mandatory')
pu_dls_dsap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 26), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDlsDsap.setStatus('mandatory')
pu_dls_ip_src = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 27), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDlsIpSrc.setStatus('mandatory')
pu_dls_ip_dst = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 28), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDlsIpDst.setStatus('mandatory')
pu_dls_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 29), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDlsMaxFrame.setStatus('mandatory')
pu_link_remote_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 30), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLinkRemoteUnit.setStatus('mandatory')
pu_link_class_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 31), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLinkClassNumber.setStatus('mandatory')
pu_link_rem_pu = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 32), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLinkRemPu.setStatus('mandatory')
pu_xid = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('manual', 3), ('auto', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puXid.setStatus('mandatory')
pu_xid_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 34), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puXidId.setStatus('mandatory')
pu_xid_format = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 35), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puXidFormat.setStatus('mandatory')
pu_xid_pu_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 36), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puXidPuType.setStatus('mandatory')
pu_bnn_pvc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 37), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBnnPvc.setStatus('mandatory')
pu_bnn_fid = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('fID2', 1), ('fID4', 2), ('aPPN', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBnnFid.setStatus('mandatory')
pu_ban_da = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 39), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanDa.setStatus('mandatory')
pu_ban_bnn_ssap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 40), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnSsap.setStatus('mandatory')
pu_ban_bnn_dsap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 41), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnDsap.setStatus('mandatory')
pu_ban_bnn_timeout_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(100, 30000))).setLabel('puBanBnnTimeout-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnTimeout_ms.setStatus('mandatory')
pu_ban_bnn_retry = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 43), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnRetry.setStatus('mandatory')
pu_ban_bnn_window = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 44), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnWindow.setStatus('mandatory')
pu_ban_bnn_nw = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 45), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnNw.setStatus('mandatory')
pu_ban_bnn_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 46), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnMaxFrame.setStatus('mandatory')
pu_ban_routing = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('transparent', 1), ('source', 2), ('source-a', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanRouting.setStatus('mandatory')
schedule_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scheduleNumber.setStatus('mandatory')
schedule_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2))
if mibBuilder.loadTexts:
scheduleTable.setStatus('mandatory')
schedule_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'schedulePeriod'))
if mibBuilder.loadTexts:
scheduleEntry.setStatus('mandatory')
schedule_period = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
schedulePeriod.setStatus('mandatory')
schedule_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
scheduleEnable.setStatus('mandatory')
schedule_day = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 254, 255))).clone(namedValues=named_values(('all', 1), ('sunday', 2), ('monday', 3), ('tuesday', 4), ('wednesday', 5), ('thursday', 6), ('friday', 7), ('saturday', 8), ('workday', 9), ('weekend', 10), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
scheduleDay.setStatus('mandatory')
schedule_begin_time = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 4), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
scheduleBeginTime.setStatus('mandatory')
schedule_end_time = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 5), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
scheduleEndTime.setStatus('mandatory')
schedule_port1 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort1.setStatus('mandatory')
schedule_port2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort2.setStatus('mandatory')
schedule_port3 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort3.setStatus('mandatory')
schedule_port4 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort4.setStatus('mandatory')
schedule_port5 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort5.setStatus('mandatory')
schedule_port6 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort6.setStatus('mandatory')
schedule_port7 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort7.setStatus('mandatory')
schedule_port8 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort8.setStatus('mandatory')
bridge_enable = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeEnable.setStatus('mandatory')
bridge_stp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeStpEnable.setStatus('mandatory')
bridge_lan_type = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('ethernet-auto', 1), ('ethernet-802p3', 2), ('ethernet-v2', 3), ('token-ring', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeLanType.setStatus('mandatory')
bridge_aging_time_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 4), integer32().subtype(subtypeSpec=value_range_constraint(10, 1000000))).setLabel('bridgeAgingTime-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeAgingTime_s.setStatus('mandatory')
bridge_hello_time_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 10))).setLabel('bridgeHelloTime-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeHelloTime_s.setStatus('mandatory')
bridge_max_age_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 6), integer32().subtype(subtypeSpec=value_range_constraint(6, 40))).setLabel('bridgeMaxAge-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeMaxAge_s.setStatus('mandatory')
bridge_forward_delay_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 7), integer32().subtype(subtypeSpec=value_range_constraint(4, 30))).setLabel('bridgeForwardDelay-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeForwardDelay_s.setStatus('mandatory')
bridge_priority = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgePriority.setStatus('mandatory')
bridge_tr__number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 9), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setLabel('bridgeTr-Number').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeTr_Number.setStatus('mandatory')
bridge_tr__ste_span = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('auto', 1), ('disable', 2), ('forced', 3), ('not-applicable', 254), ('not-available', 255)))).setLabel('bridgeTr-SteSpan').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeTr_SteSpan.setStatus('mandatory')
bridge_tr__max_hop = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setLabel('bridgeTr-MaxHop').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeTr_MaxHop.setStatus('mandatory')
phone_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
phoneNumber.setStatus('mandatory')
phone_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2))
if mibBuilder.loadTexts:
phoneTable.setStatus('mandatory')
phone_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'phoneIndex'))
if mibBuilder.loadTexts:
phoneEntry.setStatus('mandatory')
phone_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
phoneIndex.setStatus('mandatory')
phone_remote_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 2), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
phoneRemoteUnit.setStatus('mandatory')
phone_phone_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 3), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
phonePhoneNumber.setStatus('mandatory')
phone_next_hop = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 4), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
phoneNextHop.setStatus('mandatory')
phone_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
phoneCost.setStatus('mandatory')
filter_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
filterNumber.setStatus('mandatory')
filter_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2))
if mibBuilder.loadTexts:
filterTable.setStatus('mandatory')
filter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'filterIndex'))
if mibBuilder.loadTexts:
filterEntry.setStatus('mandatory')
filter_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
filterIndex.setStatus('mandatory')
filter_active = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
filterActive.setStatus('mandatory')
filter_definition = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1, 3), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
filterDefinition.setStatus('mandatory')
class_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
classNumber.setStatus('mandatory')
class_default_class = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
classDefaultClass.setStatus('mandatory')
class_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3))
if mibBuilder.loadTexts:
classTable.setStatus('mandatory')
class_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'classIndex'))
if mibBuilder.loadTexts:
classEntry.setStatus('mandatory')
class_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
classIndex.setStatus('mandatory')
class_weight = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
classWeight.setStatus('mandatory')
class_pref_route = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1, 3), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
classPrefRoute.setStatus('mandatory')
pvc_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pvcNumber.setStatus('mandatory')
pvc_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2))
if mibBuilder.loadTexts:
pvcTable.setStatus('mandatory')
pvc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'pvcIndex'))
if mibBuilder.loadTexts:
pvcEntry.setStatus('mandatory')
pvc_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pvcIndex.setStatus('mandatory')
pvc_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 7, 8, 9, 254, 255))).clone(namedValues=named_values(('off', 1), ('pvcr', 2), ('multiplex', 3), ('transp', 4), ('rfc-1490', 5), ('fp', 7), ('broadcast', 8), ('fp-multiplex', 9), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcMode.setStatus('mandatory')
pvc_dlci_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 1022))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcDlciAddress.setStatus('mandatory')
pvc_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcPort.setStatus('mandatory')
pvc_user_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcUserPort.setStatus('mandatory')
pvc_info_rate = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1200, 2000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcInfoRate.setStatus('mandatory')
pvc_priority = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pvcPriority.setStatus('mandatory')
pvc_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pvcCost.setStatus('mandatory')
pvc_remote_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 11), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcRemoteUnit.setStatus('mandatory')
pvc_timeout_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(1000, 30000))).setLabel('pvcTimeout-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcTimeout_ms.setStatus('mandatory')
pvc_retry = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcRetry.setStatus('mandatory')
pvc_compression = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcCompression.setStatus('mandatory')
pvc_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 15), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpAddress.setStatus('mandatory')
pvc_subnet_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 16), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcSubnetMask.setStatus('mandatory')
pvc_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(128, 8192))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcMaxFrame.setStatus('mandatory')
pvc_broadcast_group = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcBroadcastGroup.setStatus('mandatory')
pvc_brg_connection = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcBrgConnection.setStatus('mandatory')
pvc_ip_connection = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpConnection.setStatus('mandatory')
pvc_remote_pvc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 300))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcRemotePvc.setStatus('mandatory')
pvc_pvc_class = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcPvcClass.setStatus('mandatory')
pvc_network_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 23), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcNetworkPort.setStatus('mandatory')
pvc_ring_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcRingNumber.setStatus('mandatory')
pvc_ip_rip = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('disable', 1), ('v1', 2), ('v2-broadcast', 3), ('v2-multicast', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpRip.setStatus('mandatory')
pvc_burst_info_rate = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(1200, 2000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcBurstInfoRate.setStatus('mandatory')
pvc_user_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 27), integer32().subtype(subtypeSpec=value_range_constraint(0, 1022))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcUserDlci.setStatus('mandatory')
pvc_network_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 28), integer32().subtype(subtypeSpec=value_range_constraint(1, 1022))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcNetworkDlci.setStatus('mandatory')
pvc_ipx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpxRip.setStatus('mandatory')
pvc_ipx_sap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpxSap.setStatus('mandatory')
pvc_ipx_net_num = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 31), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpxNetNum.setStatus('mandatory')
pvc_ipx_connection = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpxConnection.setStatus('mandatory')
pvc_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4, 254, 255))).clone(namedValues=named_values(('dedicated', 2), ('answer', 3), ('call-backup', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcType.setStatus('mandatory')
pvc_backup_call_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setLabel('pvcBackupCall-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcBackupCall_s.setStatus('mandatory')
pvc_backup_hang_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setLabel('pvcBackupHang-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcBackupHang_s.setStatus('mandatory')
pvc_backup = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 36), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(15, 16, 254, 255))).clone(namedValues=named_values(('any', 15), ('all', 16), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcBackup.setStatus('mandatory')
pvc_ospf_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfEnable.setStatus('mandatory')
pvc_ospf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 38), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfAreaId.setStatus('mandatory')
pvc_ospf_transit_delay = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfTransitDelay.setStatus('mandatory')
pvc_ospf_retransmit_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 40), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfRetransmitInt.setStatus('mandatory')
pvc_ospf_hello_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfHelloInt.setStatus('mandatory')
pvc_ospf_dead_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(1, 2000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfDeadInt.setStatus('mandatory')
pvc_ospf_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 43), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfPassword.setStatus('mandatory')
pvc_ospf_metric_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 44), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfMetricCost.setStatus('mandatory')
pvc_proxy_addr = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 45), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcProxyAddr.setStatus('mandatory')
pvc_llc_connection = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 46), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcLlcConnection.setStatus('mandatory')
pvc_dial_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 47), integer32().subtype(subtypeSpec=value_range_constraint(30, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcDialTimeout.setStatus('mandatory')
pvc_max_channels = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 48), integer32().subtype(subtypeSpec=value_range_constraint(0, 10000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcMaxChannels.setStatus('mandatory')
pvc_hunt_forwarding_a_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 49), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcHuntForwardingAUnit.setStatus('mandatory')
pvc_hunt_forwarding_b_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 50), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcHuntForwardingBUnit.setStatus('mandatory')
pvc_remote_fp_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 51), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcRemoteFpUnit.setStatus('mandatory')
pvc_ip_rip_tx_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 52), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('duplex', 1), ('tx-only', 2), ('rx-only', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpRipTxRx.setStatus('mandatory')
pvc_ip_rip_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 53), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('none', 1), ('simple', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpRipAuthType.setStatus('mandatory')
pvc_ip_rip_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 54), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpRipPassword.setStatus('mandatory')
ipx_router_enable = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 11, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxRouterEnable.setStatus('mandatory')
ipx_internal_net_num = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 11, 2), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxInternalNetNum.setStatus('mandatory')
ip_router_enable = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 14, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipRouterEnable.setStatus('mandatory')
bootp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bootpEnable.setStatus('mandatory')
bootp_max_hops = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bootpMaxHops.setStatus('mandatory')
bootp_ip_dest_addr1 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bootpIpDestAddr1.setStatus('mandatory')
bootp_ip_dest_addr2 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bootpIpDestAddr2.setStatus('mandatory')
bootp_ip_dest_addr3 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bootpIpDestAddr3.setStatus('mandatory')
bootp_ip_dest_addr4 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bootpIpDestAddr4.setStatus('mandatory')
timep_time_zone_sign = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepTimeZoneSign.setStatus('mandatory')
timep_time_zone = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 720))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepTimeZone.setStatus('mandatory')
timep_daylight_saving = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepDaylightSaving.setStatus('mandatory')
timep_server_protocol = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('udp', 2), ('tcp', 3), ('both', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepServerProtocol.setStatus('mandatory')
timep_client_protocol = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('udp', 2), ('tcp', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepClientProtocol.setStatus('mandatory')
timep_server_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepServerIpAddress.setStatus('mandatory')
timep_client_update_interval = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepClientUpdateInterval.setStatus('mandatory')
timep_client_udp_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepClientUdpTimeout.setStatus('mandatory')
timep_client_udp_retransmissions = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 9), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepClientUdpRetransmissions.setStatus('mandatory')
timep_get_server_time_now = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepGetServerTimeNow.setStatus('mandatory')
ipstatic_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipstaticNumber.setStatus('mandatory')
ipstatic_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2))
if mibBuilder.loadTexts:
ipstaticTable.setStatus('mandatory')
ipstatic_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ipstaticIndex'))
if mibBuilder.loadTexts:
ipstaticEntry.setStatus('mandatory')
ipstatic_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipstaticIndex.setStatus('mandatory')
ipstatic_valid = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipstaticValid.setStatus('mandatory')
ipstatic_ip_dest = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipstaticIpDest.setStatus('mandatory')
ipstatic_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipstaticMask.setStatus('mandatory')
ipstatic_next_hop = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipstaticNextHop.setStatus('mandatory')
ospf_global = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1))
ospf_area = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2))
ospf_range = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3))
ospf_v_link = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4))
ospf_global_router_id = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfGlobalRouterId.setStatus('mandatory')
ospf_global_auto_v_link = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfGlobalAutoVLink.setStatus('mandatory')
ospf_global_rack_area_id = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfGlobalRackAreaId.setStatus('mandatory')
ospf_global_global_area_id = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfGlobalGlobalAreaId.setStatus('mandatory')
ospf_area_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNumber.setStatus('mandatory')
ospf_area_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2))
if mibBuilder.loadTexts:
ospfAreaTable.setStatus('mandatory')
ospf_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ospfAreaIndex'))
if mibBuilder.loadTexts:
ospfAreaEntry.setStatus('mandatory')
ospf_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIndex.setStatus('mandatory')
ospf_area_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfAreaAreaId.setStatus('mandatory')
ospf_area_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfAreaEnable.setStatus('mandatory')
ospf_area_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('none', 1), ('simple', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfAreaAuthType.setStatus('mandatory')
ospf_area_import_as_ext = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfAreaImportASExt.setStatus('mandatory')
ospf_area_stub_metric = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfAreaStubMetric.setStatus('mandatory')
ospf_range_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfRangeNumber.setStatus('mandatory')
ospf_range_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2))
if mibBuilder.loadTexts:
ospfRangeTable.setStatus('mandatory')
ospf_range_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ospfRangeIndex'))
if mibBuilder.loadTexts:
ospfRangeEntry.setStatus('mandatory')
ospf_range_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfRangeIndex.setStatus('mandatory')
ospf_range_net = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfRangeNet.setStatus('mandatory')
ospf_range_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfRangeMask.setStatus('mandatory')
ospf_range_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfRangeEnable.setStatus('mandatory')
ospf_range_status = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('don-t-adv', 1), ('advertise', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfRangeStatus.setStatus('mandatory')
ospf_range_add_to_area = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfRangeAddToArea.setStatus('mandatory')
ospf_v_link_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfVLinkNumber.setStatus('mandatory')
ospf_v_link_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2))
if mibBuilder.loadTexts:
ospfVLinkTable.setStatus('mandatory')
ospf_v_link_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ospfVLinkIndex'))
if mibBuilder.loadTexts:
ospfVLinkEntry.setStatus('mandatory')
ospf_v_link_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfVLinkIndex.setStatus('mandatory')
ospf_v_link_transit_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkTransitAreaId.setStatus('mandatory')
ospf_v_link_neighbor_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkNeighborRtrId.setStatus('mandatory')
ospf_v_link_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkEnable.setStatus('mandatory')
ospf_v_link_transit_delay = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkTransitDelay.setStatus('mandatory')
ospf_v_link_retransmit_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkRetransmitInt.setStatus('mandatory')
ospf_v_link_hello_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkHelloInt.setStatus('mandatory')
ospf_v_link_dead_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 2000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkDeadInt.setStatus('mandatory')
ospf_v_link_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 9), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkPassword.setStatus('mandatory')
ipxfilter_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxfilterNumber.setStatus('mandatory')
ipxfilter_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2))
if mibBuilder.loadTexts:
ipxfilterTable.setStatus('mandatory')
ipxfilter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ipxfilterIndex'))
if mibBuilder.loadTexts:
ipxfilterEntry.setStatus('mandatory')
ipxfilter_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxfilterIndex.setStatus('mandatory')
ipxfilter_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxfilterEnable.setStatus('mandatory')
ipxfilter_sap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxfilterSap.setStatus('mandatory')
ipxfilter_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('standard', 1), ('reverse', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxfilterType.setStatus('mandatory')
stat_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1))
if mibBuilder.loadTexts:
statAlarmTable.setStatus('mandatory')
stat_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statAlarmIndex'))
if mibBuilder.loadTexts:
statAlarmEntry.setStatus('mandatory')
stat_alarm_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmIndex.setStatus('mandatory')
stat_alarm_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmDesc.setStatus('mandatory')
stat_alarm_date = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmDate.setStatus('mandatory')
stat_alarm_time = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmTime.setStatus('mandatory')
stat_alarm_module = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmModule.setStatus('mandatory')
stat_alarm_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmAlarm.setStatus('mandatory')
stat_alarm_arg = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmArg.setStatus('mandatory')
stat_ifwan_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2))
if mibBuilder.loadTexts:
statIfwanTable.setStatus('mandatory')
stat_ifwan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statIfwanIndex'))
if mibBuilder.loadTexts:
statIfwanEntry.setStatus('mandatory')
stat_ifwan_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanIndex.setStatus('mandatory')
stat_ifwan_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanDesc.setStatus('mandatory')
stat_ifwan_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 18, 19, 24, 27, 28, 29, 254, 255))).clone(namedValues=named_values(('off', 1), ('p-sdlc', 2), ('s-sdlc', 3), ('hdlc', 4), ('ddcmp', 5), ('t-async', 6), ('r-async', 7), ('bsc', 8), ('cop', 9), ('pvcr', 10), ('passthru', 11), ('console', 12), ('fr-net', 17), ('fr-user', 18), ('ppp', 19), ('e1-trsp', 24), ('isdn-bri', 27), ('g703', 28), ('x25', 29), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanProtocol.setStatus('mandatory')
stat_ifwan_interface = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanInterface.setStatus('mandatory')
stat_ifwan_modem_signal = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanModemSignal.setStatus('mandatory')
stat_ifwan_speed = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanSpeed.setStatus('mandatory')
stat_ifwan_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanState.setStatus('mandatory')
stat_ifwan_mean_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 8), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanMeanTx.setStatus('mandatory')
stat_ifwan_mean_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 9), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanMeanRx.setStatus('mandatory')
stat_ifwan_peak_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 10), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanPeakTx.setStatus('mandatory')
stat_ifwan_peak_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 11), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanPeakRx.setStatus('mandatory')
stat_ifwan_bad_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanBadFrames.setStatus('mandatory')
stat_ifwan_bad_flags = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 13), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanBadFlags.setStatus('mandatory')
stat_ifwan_underruns = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanUnderruns.setStatus('mandatory')
stat_ifwan_retries = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanRetries.setStatus('mandatory')
stat_ifwan_restart = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanRestart.setStatus('mandatory')
stat_ifwan_frames_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanFramesTx.setStatus('mandatory')
stat_ifwan_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanFramesRx.setStatus('mandatory')
stat_ifwan_octets_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanOctetsTx.setStatus('mandatory')
stat_ifwan_octets_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanOctetsRx.setStatus('mandatory')
stat_ifwan_ovr_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanOvrFrames.setStatus('mandatory')
stat_ifwan_bad_octets = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanBadOctets.setStatus('mandatory')
stat_ifwan_ovr_octets = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanOvrOctets.setStatus('mandatory')
stat_ifwan_t1_e1_ess = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1ESS.setStatus('mandatory')
stat_ifwan_t1_e1_ses = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1SES.setStatus('mandatory')
stat_ifwan_t1_e1_sef = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1SEF.setStatus('mandatory')
stat_ifwan_t1_e1_uas = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1UAS.setStatus('mandatory')
stat_ifwan_t1_e1_css = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1CSS.setStatus('mandatory')
stat_ifwan_t1_e1_pcv = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1PCV.setStatus('mandatory')
stat_ifwan_t1_e1_les = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1LES.setStatus('mandatory')
stat_ifwan_t1_e1_bes = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 31), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1BES.setStatus('mandatory')
stat_ifwan_t1_e1_dm = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 32), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1DM.setStatus('mandatory')
stat_ifwan_t1_e1_lcv = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 33), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1LCV.setStatus('mandatory')
stat_ifwan_comp_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 34), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanCompErrs.setStatus('mandatory')
stat_ifwan_ch_overflows = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 35), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanChOverflows.setStatus('mandatory')
stat_ifwan_ch_aborts = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 36), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanChAborts.setStatus('mandatory')
stat_ifwan_ch_seq_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 37), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanChSeqErrs.setStatus('mandatory')
stat_ifwan_drop_insert = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 38), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanDropInsert.setStatus('mandatory')
stat_ifwan_trsp_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 39), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanTrspState.setStatus('mandatory')
stat_ifwan_trsp_last_error = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 40), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanTrspLastError.setStatus('mandatory')
stat_ifwan_q922_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 41), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanQ922State.setStatus('mandatory')
stat_iflan_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3))
if mibBuilder.loadTexts:
statIflanTable.setStatus('mandatory')
stat_iflan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statIflanIndex'))
if mibBuilder.loadTexts:
statIflanEntry.setStatus('mandatory')
stat_iflan_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanIndex.setStatus('mandatory')
stat_iflan_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 13, 14, 15, 16))).clone(namedValues=named_values(('off', 1), ('token-ring', 13), ('ethernet-auto', 14), ('ethernet-802p3', 15), ('ethernet-v2', 16)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanProtocol.setStatus('mandatory')
stat_iflan_speed = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('tr-4-Mbps', 1), ('tr-16-Mbps', 2), ('eth-10-Mbps', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanSpeed.setStatus('mandatory')
stat_iflan_connection_status = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanConnectionStatus.setStatus('mandatory')
stat_iflan_operating_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanOperatingMode.setStatus('mandatory')
stat_iflan_eth__interface = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 6), display_string()).setLabel('statIflanEth-Interface').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_Interface.setStatus('mandatory')
stat_iflan_mean_tx_kbps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 7), gauge32()).setLabel('statIflanMeanTx-kbps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanMeanTx_kbps.setStatus('mandatory')
stat_iflan_mean_rx_kbps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 8), gauge32()).setLabel('statIflanMeanRx-kbps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanMeanRx_kbps.setStatus('mandatory')
stat_iflan_peak_tx_kbps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 9), gauge32()).setLabel('statIflanPeakTx-kbps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanPeakTx_kbps.setStatus('mandatory')
stat_iflan_peak_rx_kbps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 10), gauge32()).setLabel('statIflanPeakRx-kbps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanPeakRx_kbps.setStatus('mandatory')
stat_iflan_retries = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanRetries.setStatus('mandatory')
stat_iflan_bad_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanBadFrames.setStatus('mandatory')
stat_iflan_bad_flags = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 13), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanBadFlags.setStatus('mandatory')
stat_iflan_tr__receive_congestion = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 14), counter32()).setLabel('statIflanTr-ReceiveCongestion').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanTr_ReceiveCongestion.setStatus('mandatory')
stat_iflan_eth__one_collision = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 15), counter32()).setLabel('statIflanEth-OneCollision').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_OneCollision.setStatus('mandatory')
stat_iflan_eth__two_collisions = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 16), counter32()).setLabel('statIflanEth-TwoCollisions').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_TwoCollisions.setStatus('mandatory')
stat_iflan_eth__three_and_more_col = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 17), counter32()).setLabel('statIflanEth-ThreeAndMoreCol').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_ThreeAndMoreCol.setStatus('mandatory')
stat_iflan_eth__deferred_trans = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 18), counter32()).setLabel('statIflanEth-DeferredTrans').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_DeferredTrans.setStatus('mandatory')
stat_iflan_eth__excessive_collision = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 19), counter32()).setLabel('statIflanEth-ExcessiveCollision').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_ExcessiveCollision.setStatus('mandatory')
stat_iflan_eth__late_collision = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 20), counter32()).setLabel('statIflanEth-LateCollision').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_LateCollision.setStatus('mandatory')
stat_iflan_eth__frame_check_seq = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 21), counter32()).setLabel('statIflanEth-FrameCheckSeq').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_FrameCheckSeq.setStatus('mandatory')
stat_iflan_eth__align = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 22), counter32()).setLabel('statIflanEth-Align').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_Align.setStatus('mandatory')
stat_iflan_eth__carrier_sense = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 23), counter32()).setLabel('statIflanEth-CarrierSense').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_CarrierSense.setStatus('mandatory')
stat_ifvce_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10))
if mibBuilder.loadTexts:
statIfvceTable.setStatus('mandatory')
stat_ifvce_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statIfvceIndex'))
if mibBuilder.loadTexts:
statIfvceEntry.setStatus('mandatory')
stat_ifvce_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceIndex.setStatus('mandatory')
stat_ifvce_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceDesc.setStatus('mandatory')
stat_ifvce_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('inactive', 0), ('idle', 1), ('pause', 2), ('local', 3), ('online', 4), ('disconnect', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceState.setStatus('mandatory')
stat_ifvce_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 21, 22, 23, 24, 26, 30))).clone(namedValues=named_values(('off', 1), ('acelp-8-kbs', 21), ('acelp-4-8-kbs', 22), ('pcm64k', 23), ('adpcm32k', 24), ('atc16k', 26), ('acelp-cn', 30)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceProtocol.setStatus('mandatory')
stat_ifvce_last_error = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('none', 0), ('incompatibility', 1), ('new-parameters', 2), ('rerouting', 3), ('state-fault', 4), ('unreachable', 5), ('disconnect', 6), ('port-closure', 7), ('no-destination', 8), ('pvc-closure', 9), ('too-many-calls', 10), ('class-mismatch', 11), ('algo-mismatch', 12)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceLastError.setStatus('mandatory')
stat_ifvce_fax_rate = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('none', 0), ('fx-2-4Kbps', 1), ('fx-4-8Kbps', 2), ('fx-7-2Kbps', 3), ('fx-9-6Kbps', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceFaxRate.setStatus('mandatory')
stat_ifvce_fax_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(255, 0, 1))).clone(namedValues=named_values(('none', 255), ('out-of-fax', 0), ('in-fax', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceFaxMode.setStatus('mandatory')
stat_ifvce_overruns = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceOverruns.setStatus('mandatory')
stat_ifvce_underruns = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceUnderruns.setStatus('mandatory')
stat_ifvce_dvc_port_in_use = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 10), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceDvcPortInUse.setStatus('mandatory')
stat_pu_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4))
if mibBuilder.loadTexts:
statPuTable.setStatus('mandatory')
stat_pu_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statPuIndex'))
if mibBuilder.loadTexts:
statPuEntry.setStatus('mandatory')
stat_pu_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuIndex.setStatus('mandatory')
stat_pu_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=named_values(('off', 1), ('sdlc-llc', 2), ('sdlc-sdlc', 3), ('sdlc-dlsw', 4), ('sdlc-links', 5), ('llc-dlsw', 6), ('llc-links', 7), ('dlsw-links', 8), ('sdlc-ban', 9), ('sdlc-bnn', 10), ('llc-ban', 11), ('llc-bnn', 12), ('dlsw-ban', 13), ('dlsw-bnn', 14), ('ban-link', 15), ('bnn-link', 16)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuMode.setStatus('mandatory')
stat_pu_connection_status = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuConnectionStatus.setStatus('mandatory')
stat_pu_comp_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuCompErrs.setStatus('mandatory')
stat_pu_ch_overflows = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuChOverflows.setStatus('mandatory')
stat_pu_ch_aborts = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuChAborts.setStatus('mandatory')
stat_pu_ch_seq_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuChSeqErrs.setStatus('mandatory')
stat_bridge = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5))
stat_bridge_bridge = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1))
stat_bridge_port = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2))
stat_bridge_bridge_address_discard = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeAddressDiscard.setStatus('mandatory')
stat_bridge_bridge_frame_discard = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeFrameDiscard.setStatus('mandatory')
stat_bridge_bridge_designated_root = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeDesignatedRoot.setStatus('mandatory')
stat_bridge_bridge_root_cost = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeRootCost.setStatus('mandatory')
stat_bridge_bridge_root_port = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeRootPort.setStatus('mandatory')
stat_bridge_bridge_frame_filtered = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeFrameFiltered.setStatus('mandatory')
stat_bridge_bridge_frame_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeFrameTimeout.setStatus('mandatory')
stat_bridge_port_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1))
if mibBuilder.loadTexts:
statBridgePortTable.setStatus('mandatory')
stat_bridge_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statBridgePortIndex'))
if mibBuilder.loadTexts:
statBridgePortEntry.setStatus('mandatory')
stat_bridge_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortIndex.setStatus('mandatory')
stat_bridge_port_destination = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortDestination.setStatus('mandatory')
stat_bridge_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortState.setStatus('mandatory')
stat_bridge_port_designated_root = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortDesignatedRoot.setStatus('mandatory')
stat_bridge_port_designated_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortDesignatedCost.setStatus('mandatory')
stat_bridge_port_designated_bridge = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortDesignatedBridge.setStatus('mandatory')
stat_bridge_port_designated_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortDesignatedPort.setStatus('mandatory')
stat_bridge_port_trsp_frame_in = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTrspFrameIn.setStatus('mandatory')
stat_bridge_port_trsp_frame_out = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 9), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTrspFrameOut.setStatus('mandatory')
stat_bridge_port_tr__spec_rte_frame_in = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 10), display_string()).setLabel('statBridgePortTr-SpecRteFrameIn').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_SpecRteFrameIn.setStatus('mandatory')
stat_bridge_port_tr__spec_rte_frame_out = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 11), display_string()).setLabel('statBridgePortTr-SpecRteFrameOut').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_SpecRteFrameOut.setStatus('mandatory')
stat_bridge_port_tr__all_rte_frame_in = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 12), display_string()).setLabel('statBridgePortTr-AllRteFrameIn').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_AllRteFrameIn.setStatus('mandatory')
stat_bridge_port_tr__all_rte_frame_out = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 13), display_string()).setLabel('statBridgePortTr-AllRteFrameOut').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_AllRteFrameOut.setStatus('mandatory')
stat_bridge_port_tr__single_rte_frame_in = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 14), display_string()).setLabel('statBridgePortTr-SingleRteFrameIn').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_SingleRteFrameIn.setStatus('mandatory')
stat_bridge_port_tr__single_rte_frame_out = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 15), display_string()).setLabel('statBridgePortTr-SingleRteFrameOut').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_SingleRteFrameOut.setStatus('mandatory')
stat_bridge_port_tr__segment_mismatch = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 16), display_string()).setLabel('statBridgePortTr-SegmentMismatch').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_SegmentMismatch.setStatus('mandatory')
stat_bridge_port_tr__segment_duplicate = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 17), display_string()).setLabel('statBridgePortTr-SegmentDuplicate').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_SegmentDuplicate.setStatus('mandatory')
stat_bridge_port_tr__hop_cnt_exceeded = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 18), display_string()).setLabel('statBridgePortTr-HopCntExceeded').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_HopCntExceeded.setStatus('mandatory')
stat_bridge_port_tr__frm_lng_exceeded = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 19), display_string()).setLabel('statBridgePortTr-FrmLngExceeded').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_FrmLngExceeded.setStatus('mandatory')
stat_pvc_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6))
if mibBuilder.loadTexts:
statPvcTable.setStatus('mandatory')
stat_pvc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statPvcIndex'))
if mibBuilder.loadTexts:
statPvcEntry.setStatus('mandatory')
stat_pvc_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcIndex.setStatus('mandatory')
stat_pvc_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcProtocol.setStatus('mandatory')
stat_pvc_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcMode.setStatus('mandatory')
stat_pvc_info_signal = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcInfoSignal.setStatus('mandatory')
stat_pvc_speed = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcSpeed.setStatus('mandatory')
stat_pvc_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcState.setStatus('mandatory')
stat_pvc_mean_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 7), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcMeanTx.setStatus('mandatory')
stat_pvc_mean_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 8), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcMeanRx.setStatus('mandatory')
stat_pvc_peak_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 9), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcPeakTx.setStatus('mandatory')
stat_pvc_peak_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 10), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcPeakRx.setStatus('mandatory')
stat_pvc_error = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcError.setStatus('mandatory')
stat_pvc_restart = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcRestart.setStatus('mandatory')
stat_pvc_frames_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcFramesTx.setStatus('mandatory')
stat_pvc_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcFramesRx.setStatus('mandatory')
stat_pvc_octets_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcOctetsTx.setStatus('mandatory')
stat_pvc_octets_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcOctetsRx.setStatus('mandatory')
stat_pvc_bad_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcBadFrames.setStatus('mandatory')
stat_pvc_ovr_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcOvrFrames.setStatus('mandatory')
stat_pvc_bad_octets = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcBadOctets.setStatus('mandatory')
stat_pvc_ovr_octets = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcOvrOctets.setStatus('mandatory')
stat_pvc_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 21), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcDlci.setStatus('mandatory')
stat_pvc_comp_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcCompErrs.setStatus('mandatory')
stat_pvc_ch_overflows = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcChOverflows.setStatus('mandatory')
stat_pvc_ch_aborts = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcChAborts.setStatus('mandatory')
stat_pvc_ch_seq_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 31), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcChSeqErrs.setStatus('mandatory')
stat_pvcr_route_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7))
if mibBuilder.loadTexts:
statPvcrRouteTable.setStatus('mandatory')
stat_pvcr_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statPvcrRouteName'), (0, 'CLEARTRAC7-MIB', 'statPvcrRouteNextHop'))
if mibBuilder.loadTexts:
statPvcrRouteEntry.setStatus('mandatory')
stat_pvcr_route_name = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcrRouteName.setStatus('mandatory')
stat_pvcr_route_valid = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcrRouteValid.setStatus('mandatory')
stat_pvcr_route_metric = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 3), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcrRouteMetric.setStatus('mandatory')
stat_pvcr_route_intrf = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcrRouteIntrf.setStatus('mandatory')
stat_pvcr_route_next_hop = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcrRouteNextHop.setStatus('mandatory')
stat_pvcr_route_age = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcrRouteAge.setStatus('mandatory')
stat_system = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20))
stat_system_alarm_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemAlarmNumber.setStatus('mandatory')
stat_system_mean_comp_rate = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemMeanCompRate.setStatus('mandatory')
stat_system_mean_decomp_rate = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemMeanDecompRate.setStatus('mandatory')
stat_system_peak_comp_rate = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemPeakCompRate.setStatus('mandatory')
stat_system_peak_decomp_rate = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemPeakDecompRate.setStatus('mandatory')
stat_system_sa = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 6), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemSa.setStatus('mandatory')
stat_system_sp = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 7), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemSp.setStatus('mandatory')
stat_system_na = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 8), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemNa.setStatus('mandatory')
stat_system_bia = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 9), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemBia.setStatus('mandatory')
stat_system_tr__nan = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 10), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setLabel('statSystemTr-Nan').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemTr_Nan.setStatus('mandatory')
stat_system_reset_counters = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
statSystemResetCounters.setStatus('mandatory')
stat_system_clear_alarms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
statSystemClearAlarms.setStatus('mandatory')
stat_system_clear_error_led = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
statSystemClearErrorLed.setStatus('mandatory')
stat_bootp = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21))
stat_bootp_nb_request_received = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpNbRequestReceived.setStatus('mandatory')
stat_bootp_nb_request_send = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpNbRequestSend.setStatus('mandatory')
stat_bootp_nb_reply_received = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpNbReplyReceived.setStatus('mandatory')
stat_bootp_nb_reply_send = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpNbReplySend.setStatus('mandatory')
stat_bootp_reply_with_invalid_giaddr = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpReplyWithInvalidGiaddr.setStatus('mandatory')
stat_bootp_hops_limit_exceed = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpHopsLimitExceed.setStatus('mandatory')
stat_bootp_request_received_on_port_bootpc = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpRequestReceivedOnPortBootpc.setStatus('mandatory')
stat_bootp_reply_received_on_port_bootpc = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpReplyReceivedOnPortBootpc.setStatus('mandatory')
stat_bootp_invalid_op_code_field = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpInvalidOpCodeField.setStatus('mandatory')
stat_bootp_cannot_route_frame = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpCannotRouteFrame.setStatus('mandatory')
stat_bootp_frame_too_small_to_be_a_bootp_frame = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpFrameTooSmallToBeABootpFrame.setStatus('mandatory')
stat_bootp_cannot_receive_and_forward_on_the_same_port = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpCannotReceiveAndForwardOnTheSamePort.setStatus('mandatory')
stat_grp = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22))
stat_grp_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statGrpNumber.setStatus('mandatory')
stat_grp_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2))
if mibBuilder.loadTexts:
statGrpTable.setStatus('mandatory')
stat_grp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statGrpIndex'))
if mibBuilder.loadTexts:
statGrpEntry.setStatus('mandatory')
stat_grp_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statGrpIndex.setStatus('mandatory')
stat_grp_dest_name = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statGrpDestName.setStatus('mandatory')
stat_grp_out_of_seq_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statGrpOutOfSeqErrs.setStatus('mandatory')
stat_grp_sorter_timeouts = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statGrpSorterTimeouts.setStatus('mandatory')
stat_grp_sorter_overruns = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statGrpSorterOverruns.setStatus('mandatory')
stat_timep = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23))
stat_time_nb_frame_received = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeNbFrameReceived.setStatus('mandatory')
stat_time_nb_frame_sent = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeNbFrameSent.setStatus('mandatory')
stat_time_nb_request_received = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeNbRequestReceived.setStatus('mandatory')
stat_time_nb_reply_sent = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeNbReplySent.setStatus('mandatory')
stat_time_nb_request_sent = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeNbRequestSent.setStatus('mandatory')
stat_time_nb_reply_received = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeNbReplyReceived.setStatus('mandatory')
stat_time_client_retransmissions = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeClientRetransmissions.setStatus('mandatory')
stat_time_client_sync_failures = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeClientSyncFailures.setStatus('mandatory')
stat_time_invalid_local_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeInvalidLocalIpAddress.setStatus('mandatory')
stat_time_invalid_port_numbers = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeInvalidPortNumbers.setStatus('mandatory')
stat_q922counters = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24))
stat_tx_retransmissions = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxRetransmissions.setStatus('mandatory')
stat_release_indications = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statReleaseIndications.setStatus('mandatory')
stat_establish_indications = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statEstablishIndications.setStatus('mandatory')
stat_link_established = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statLinkEstablished.setStatus('mandatory')
stat_tx_iframe_qdiscards = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxIframeQdiscards.setStatus('mandatory')
stat_rxframes = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxframes.setStatus('mandatory')
stat_txframes = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxframes.setStatus('mandatory')
stat_rx_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxBytes.setStatus('mandatory')
stat_tx_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxBytes.setStatus('mandatory')
stat_q922errors = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25))
stat_invalid_rx_sizes = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statInvalidRxSizes.setStatus('mandatory')
stat_missing_control_blocks = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statMissingControlBlocks.setStatus('mandatory')
stat_rx_acknowledge_expiry = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxAcknowledgeExpiry.setStatus('mandatory')
stat_tx_acknowledge_expiry = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxAcknowledgeExpiry.setStatus('mandatory')
stat_q933counters = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26))
stat_tx_setup_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxSetupMessages.setStatus('mandatory')
stat_rx_setup_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxSetupMessages.setStatus('mandatory')
stat_tx_call_proceeding_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxCallProceedingMessages.setStatus('mandatory')
stat_rx_call_proceeding_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxCallProceedingMessages.setStatus('mandatory')
stat_tx_connect_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxConnectMessages.setStatus('mandatory')
stat_rx_connect_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxConnectMessages.setStatus('mandatory')
stat_tx_release_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxReleaseMessages.setStatus('mandatory')
stat_rx_release_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxReleaseMessages.setStatus('mandatory')
stat_tx_release_complete_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxReleaseCompleteMessages.setStatus('mandatory')
stat_rx_release_complete_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxReleaseCompleteMessages.setStatus('mandatory')
stat_tx_disconnect_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxDisconnectMessages.setStatus('mandatory')
stat_rx_disconnect_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxDisconnectMessages.setStatus('mandatory')
stat_tx_status_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxStatusMessages.setStatus('mandatory')
stat_rx_status_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxStatusMessages.setStatus('mandatory')
stat_tx_status_enquiry_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxStatusEnquiryMessages.setStatus('mandatory')
stat_rx_status_enquiry_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxStatusEnquiryMessages.setStatus('mandatory')
stat_protocol_timeouts = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statProtocolTimeouts.setStatus('mandatory')
stat_svc_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27))
if mibBuilder.loadTexts:
statSvcTable.setStatus('mandatory')
stat_svc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statSvcIndex'))
if mibBuilder.loadTexts:
statSvcEntry.setStatus('mandatory')
stat_svc_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcIndex.setStatus('mandatory')
stat_svc_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcProtocol.setStatus('mandatory')
stat_svc_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcMode.setStatus('mandatory')
stat_svc_info_signal = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcInfoSignal.setStatus('mandatory')
stat_svc_speed = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcSpeed.setStatus('mandatory')
stat_svc_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcState.setStatus('mandatory')
stat_svc_mean_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 7), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcMeanTx.setStatus('mandatory')
stat_svc_mean_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 8), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcMeanRx.setStatus('mandatory')
stat_svc_peak_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 9), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcPeakTx.setStatus('mandatory')
stat_svc_peak_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 10), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcPeakRx.setStatus('mandatory')
stat_svc_error = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcError.setStatus('mandatory')
stat_svc_restart = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcRestart.setStatus('mandatory')
stat_svc_frames_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcFramesTx.setStatus('mandatory')
stat_svc_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcFramesRx.setStatus('mandatory')
stat_svc_octets_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcOctetsTx.setStatus('mandatory')
stat_svc_octets_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcOctetsRx.setStatus('mandatory')
stat_svc_bad_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcBadFrames.setStatus('mandatory')
stat_svc_ovr_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcOvrFrames.setStatus('mandatory')
stat_svc_bad_octets = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcBadOctets.setStatus('mandatory')
stat_svc_ovr_octets = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcOvrOctets.setStatus('mandatory')
stat_svc_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 21), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcDlci.setStatus('mandatory')
stat_ifcem_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28))
if mibBuilder.loadTexts:
statIfcemTable.setStatus('mandatory')
stat_ifcem_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statIfcemIndex'))
if mibBuilder.loadTexts:
statIfcemEntry.setStatus('mandatory')
stat_ifcem_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfcemIndex.setStatus('mandatory')
stat_ifcem_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfcemDesc.setStatus('mandatory')
stat_ifcem_clock_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfcemClockState.setStatus('mandatory')
connection_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 600)).setObjects(('CLEARTRAC7-MIB', 'puIndex'))
link_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 601)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
pvc_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 602)).setObjects(('CLEARTRAC7-MIB', 'pvcIndex'))
card_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 603)).setObjects(('CLEARTRAC7-MIB', 'sysTrapRackandPos'))
connection_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 604)).setObjects(('CLEARTRAC7-MIB', 'puIndex'))
link_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 605)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
pvc_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 606)).setObjects(('CLEARTRAC7-MIB', 'pvcIndex'))
cardup = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 607)).setObjects(('CLEARTRAC7-MIB', 'sysTrapRackandPos'))
period_started = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 608)).setObjects(('CLEARTRAC7-MIB', 'schedulePeriod'))
period_ended = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 609)).setObjects(('CLEARTRAC7-MIB', 'schedulePeriod'))
bad_dest_port = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 610)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
bad_dest_pvc = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 611)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
backup_call = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 612))
backup_hang = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 613))
manual_call = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 614))
manual_hang = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 615))
bond_trig = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 616))
bond_de_trig = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 617))
firmware_stored = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 618))
cfg_stored = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 619))
no_trap = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 620))
fatal_trap = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 621))
not_memory = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 622))
setup_reset = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 623))
bad_checksum = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 624))
fatal_msg = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 625))
no_msg = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 626))
both_ps_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 627))
one_ps_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 628))
both_fans_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 629))
one_or_more_fan_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 630))
accounting_file_full = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 631))
fr_link_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 665)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
fr_link_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 666)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
q922_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 667)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
q922_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 668)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
accounting_file_overflow = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 669))
mibBuilder.exportSymbols('CLEARTRAC7-MIB', timepClientUpdateInterval=timepClientUpdateInterval, statIflanSpeed=statIflanSpeed, ifvceHuntGroup=ifvceHuntGroup, statBridgePortDesignatedCost=statBridgePortDesignatedCost, statSvcPeakRx=statSvcPeakRx, statSvcDlci=statSvcDlci, backupHang=backupHang, phoneNumber=phoneNumber, statSystem=statSystem, ifvceNumber=ifvceNumber, ifwanTxStart=ifwanTxStart, puDlsDsap=puDlsDsap, ifvceRate5k8x2=ifvceRate5k8x2, ospfVLinkTable=ospfVLinkTable, ifwanPppAcceptableAccmChar=ifwanPppAcceptableAccmChar, statBridgePortTr_HopCntExceeded=statBridgePortTr_HopCntExceeded, sysPosTable=sysPosTable, ifwanMode=ifwanMode, statIfwanProtocol=statIfwanProtocol, ospfRangeMask=ospfRangeMask, statIfwanBadFrames=statIfwanBadFrames, statIfvceLastError=statIfvceLastError, filterNumber=filterNumber, statTxIframeQdiscards=statTxIframeQdiscards, ipstaticTable=ipstaticTable, ifvceRate6kx3=ifvceRate6kx3, statPvcBadFrames=statPvcBadFrames, ifwanFormat=ifwanFormat, ifwanProtocol=ifwanProtocol, statAlarmTable=statAlarmTable, slotPortInSlotEntry=slotPortInSlotEntry, frLinkUp=frLinkUp, proxyIndex=proxyIndex, ifvceProtocol=ifvceProtocol, slotPortInSlot=slotPortInSlot, ipxInternalNetNum=ipxInternalNetNum, iflanSpeed=iflanSpeed, timepClientProtocol=timepClientProtocol, ifwanSvcDisconnectTimeoutT305=ifwanSvcDisconnectTimeoutT305, iflanOspfMetricCost=iflanOspfMetricCost, statIfvceState=statIfvceState, ifwanTeiMode=ifwanTeiMode, pvcNetworkPort=pvcNetworkPort, ipaddr=ipaddr, intfType=intfType, ifvceLocalInbound=ifvceLocalInbound, ifwanPortToBack=ifwanPortToBack, iflanDesc=iflanDesc, phoneRemoteUnit=phoneRemoteUnit, ifwanSfCarrierId=ifwanSfCarrierId, ifwanT1E1Status=ifwanT1E1Status, statIfvceProtocol=statIfvceProtocol, sysSpeedDialNumLength=sysSpeedDialNumLength, statPuEntry=statPuEntry, pvcIpxNetNum=pvcIpxNetNum, puBanBnnNw=puBanBnnNw, ifwanDesc=ifwanDesc, statIfwanIndex=statIfwanIndex, sysSnmpTrapIpAddr3=sysSnmpTrapIpAddr3, statTimeNbFrameReceived=statTimeNbFrameReceived, ipRouterEnable=ipRouterEnable, sysClock=sysClock, ifvceToneOff_ms=ifvceToneOff_ms, bridgeTr_MaxHop=bridgeTr_MaxHop, ipstaticIpDest=ipstaticIpDest, iflanSubnetMask=iflanSubnetMask, iflanIpRip=iflanIpRip, statIfwanChOverflows=statIfwanChOverflows, statIfcemEntry=statIfcemEntry, ospfVLinkTransitAreaId=ospfVLinkTransitAreaId, ifwanRetry=ifwanRetry, bridgeMaxAge_s=bridgeMaxAge_s, filterDefinition=filterDefinition, intfNumInSlot=intfNumInSlot, iflanNumber=iflanNumber, sysPosIpAddr=sysPosIpAddr, statIfwanT1E1BES=statIfwanT1E1BES, timepGetServerTimeNow=timepGetServerTimeNow, statSystemSp=statSystemSp, statIfwanChSeqErrs=statIfwanChSeqErrs, linkDown=linkDown, badDestPvc=badDestPvc, pvcDown=pvcDown, pvcInfoRate=pvcInfoRate, statBootpCannotReceiveAndForwardOnTheSamePort=statBootpCannotReceiveAndForwardOnTheSamePort, puRole=puRole, statIflanEth_ThreeAndMoreCol=statIflanEth_ThreeAndMoreCol, ifwanDropSyncCounter=ifwanDropSyncCounter, ifwanOspfAreaId=ifwanOspfAreaId, statQ922counters=statQ922counters, firmwareStored=firmwareStored, statSvcOctetsTx=statSvcOctetsTx, statGrpTable=statGrpTable, scheduleEndTime=scheduleEndTime, statRxCallProceedingMessages=statRxCallProceedingMessages, statBridgePortTr_SpecRteFrameOut=statBridgePortTr_SpecRteFrameOut, ifwanTable=ifwanTable, puSdlcAddress2=puSdlcAddress2, statTimeNbReplyReceived=statTimeNbReplyReceived, ifwanFrameDelay=ifwanFrameDelay, iflanMaxFrame=iflanMaxFrame, statIfwanEntry=statIfwanEntry, statGrpOutOfSeqErrs=statGrpOutOfSeqErrs, statQ922errors=statQ922errors, statBridgeBridgeFrameTimeout=statBridgeBridgeFrameTimeout, intfModuleType=intfModuleType, statIfcemDesc=statIfcemDesc, proxyDefaultGateway=proxyDefaultGateway, puMode=puMode, ifvceRate6kx2=ifvceRate6kx2, backupCall=backupCall, statIfwanRetries=statIfwanRetries, ifvceActivationType=ifvceActivationType, iflanOspfPassword=iflanOspfPassword, ifwanPriority=ifwanPriority, ospfAreaAreaId=ospfAreaAreaId, ifvceDelDigits=ifvceDelDigits, puSdlcPort2=puSdlcPort2, ifwanDestExtNumber=ifwanDestExtNumber, ifvceRate6kx1=ifvceRate6kx1, statGrpSorterTimeouts=statGrpSorterTimeouts, ifwanLineBuild=ifwanLineBuild, puLlcDsap=puLlcDsap, q922Up=q922Up, ifwanNumber=ifwanNumber, manualHang=manualHang, ospfRangeNet=ospfRangeNet, ipxfilterEntry=ipxfilterEntry, statSystemNa=statSystemNa, statBridgePortEntry=statBridgePortEntry, ospfRangeNumber=ospfRangeNumber, ospfVLinkEntry=ospfVLinkEntry, puBnnFid=puBnnFid, ifwanOspfEnable=ifwanOspfEnable, statPuChAborts=statPuChAborts, intfNumInType=intfNumInType, ifvceRemotePort=ifvceRemotePort, linkUp=linkUp, statIflanTr_ReceiveCongestion=statIflanTr_ReceiveCongestion, statIfwanDesc=statIfwanDesc, sysDefaultGateway=sysDefaultGateway, pvcIpRipAuthType=pvcIpRipAuthType, ipxfilterNumber=ipxfilterNumber, statPuTable=statPuTable, ifvceR2Group2Digit=ifvceR2Group2Digit, sysHuntForwardingADLCI=sysHuntForwardingADLCI, statReleaseIndications=statReleaseIndications, sysDefaultIpMask=sysDefaultIpMask, ifwanEncodingLaw=ifwanEncodingLaw, sysDay=sysDay, iflanIpxNetNum=iflanIpxNetNum, ifvceFwdDigits=ifvceFwdDigits, statIfwanT1E1PCV=statIfwanT1E1PCV, statPvcrRouteValid=statPvcrRouteValid, pvcUserDlci=pvcUserDlci, ipxfilter=ipxfilter, statIflanEth_FrameCheckSeq=statIflanEth_FrameCheckSeq, statBridgePortTr_AllRteFrameOut=statBridgePortTr_AllRteFrameOut, puBanBnnSsap=puBanBnnSsap, timepServerProtocol=timepServerProtocol, ospfArea=ospfArea, statBridgePortTrspFrameOut=statBridgePortTrspFrameOut, statGrpNumber=statGrpNumber, bondTrig=bondTrig, sysName=sysName, statIfwanT1E1UAS=statIfwanT1E1UAS, statIfwanT1E1ESS=statIfwanT1E1ESS, pvcCost=pvcCost, ospfVLink=ospfVLink, statBridgeBridgeAddressDiscard=statBridgeBridgeAddressDiscard, statBridgePortState=statBridgePortState, statSystemPeakDecompRate=statSystemPeakDecompRate, ifvceDVCSilenceSuppress=ifvceDVCSilenceSuppress, statBootpNbRequestSend=statBootpNbRequestSend, intfSlotType=intfSlotType, sysPosProduct=sysPosProduct, statPvcRestart=statPvcRestart, pu=pu, puLlcDynamicWindow=puLlcDynamicWindow, statGrpEntry=statGrpEntry, ospfAreaStubMetric=ospfAreaStubMetric, ifwanX25Encapsulation=ifwanX25Encapsulation, statTxAcknowledgeExpiry=statTxAcknowledgeExpiry, statSvcOvrFrames=statSvcOvrFrames, sysLocation=sysLocation, statSvcMeanRx=statSvcMeanRx, ifwanOspfTransitDelay=ifwanOspfTransitDelay, sysRingFreq=sysRingFreq, iflanEth_LinkIntegrity=iflanEth_LinkIntegrity, pvcProxyAddr=pvcProxyAddr, classPrefRoute=classPrefRoute, ifwanGroupAddress=ifwanGroupAddress, scheduleEnable=scheduleEnable, phoneCost=phoneCost, statPvcPeakRx=statPvcPeakRx, sysLinkTimeout_s=sysLinkTimeout_s, timep=timep, iflanOspfAreaId=iflanOspfAreaId, pvcIpRipPassword=pvcIpRipPassword, statIflanPeakRx_kbps=statIflanPeakRx_kbps, statIfwanOvrFrames=statIfwanOvrFrames, ifvceSpeedDialNum=ifvceSpeedDialNum, ifwanPppAcceptMagicNum=ifwanPppAcceptMagicNum, pvcRingNumber=pvcRingNumber, pvcRemoteUnit=pvcRemoteUnit, statSystemTr_Nan=statSystemTr_Nan, statIflanEth_DeferredTrans=statIflanEth_DeferredTrans, ospfVLinkRetransmitInt=ospfVLinkRetransmitInt, puBnnPvc=puBnnPvc, statPvcOctetsTx=statPvcOctetsTx, statPvcError=statPvcError, statAlarmAlarm=statAlarmAlarm, statSvcEntry=statSvcEntry, notMemory=notMemory, stat=stat, pvcOspfMetricCost=pvcOspfMetricCost, sysPosId=sysPosId, pvcOspfPassword=pvcOspfPassword, iflanIpRipTxRx=iflanIpRipTxRx, statIfwanRestart=statIfwanRestart, bootpIpDestAddr2=bootpIpDestAddr2, statBridgePortTable=statBridgePortTable, ifvceInterface=ifvceInterface, connectionUp=connectionUp, ifvceRate8kx1=ifvceRate8kx1, ifvceRate8kx2=ifvceRate8kx2, statIfwanTable=statIfwanTable, ifwanTimeout=ifwanTimeout, bridgeLanType=bridgeLanType, puSdlcAddress=puSdlcAddress, intfSlot=intfSlot, statIflanOperatingMode=statIflanOperatingMode, statTxRetransmissions=statTxRetransmissions, ifwanDropSyncCharacter=ifwanDropSyncCharacter, ifwanSvcSetupTimeoutT303=ifwanSvcSetupTimeoutT303, ifvceSignaling=ifvceSignaling, ifvceBroadcastDir=ifvceBroadcastDir, statIfwanInterface=statIfwanInterface, ifvceDtmfOnTime=ifvceDtmfOnTime, statPvcrRouteEntry=statPvcrRouteEntry, statSystemBia=statSystemBia, ospfRange=ospfRange, mgmt=mgmt, statSystemClearErrorLed=statSystemClearErrorLed, ifwanSvcMaxTxTimeoutT200=ifwanSvcMaxTxTimeoutT200, iflanOspfDeadInt=iflanOspfDeadInt, ifwanPppSilent=ifwanPppSilent, statAlarmModule=statAlarmModule, puSdlcRetry=puSdlcRetry, statIfwanDropInsert=statIfwanDropInsert, intfTable=intfTable, ifwanIdleCode=ifwanIdleCode, ifwanPppNegociateAccm=ifwanPppNegociateAccm, ifwanIpRipPassword=ifwanIpRipPassword)
mibBuilder.exportSymbols('CLEARTRAC7-MIB', puDlsDa=puDlsDa, pvcMode=pvcMode, ifwanSvcAddressType=ifwanSvcAddressType, statPvcrRouteAge=statPvcrRouteAge, ifwanPppRequestedAccmChar=ifwanPppRequestedAccmChar, pvcOspfAreaId=pvcOspfAreaId, slotSlot=slotSlot, ifvceLinkDwnBusy=ifvceLinkDwnBusy, bridgeTr_SteSpan=bridgeTr_SteSpan, ifwanPppAcceptOldIpAddNeg=ifwanPppAcceptOldIpAddNeg, ipxRouterEnable=ipxRouterEnable, intf=intf, classNumber=classNumber, ifwanOspfDeadInt=ifwanOspfDeadInt, ipaddrNr=ipaddrNr, statPvcInfoSignal=statPvcInfoSignal, statIfwanBadOctets=statIfwanBadOctets, statBridgePortTr_AllRteFrameIn=statBridgePortTr_AllRteFrameIn, statSvcBadFrames=statSvcBadFrames, statIfvceFaxRate=statIfvceFaxRate, puLlcWindow=puLlcWindow, statBootpHopsLimitExceed=statBootpHopsLimitExceed, statBootpCannotRouteFrame=statBootpCannotRouteFrame, statTimeNbFrameSent=statTimeNbFrameSent, statAlarmIndex=statAlarmIndex, ifvceFxoTimeout_s=ifvceFxoTimeout_s, statIfcemTable=statIfcemTable, ifwanIpRip=ifwanIpRip, pvcIpxSap=pvcIpxSap, statIfwanCompErrs=statIfwanCompErrs, sysPosEntry=sysPosEntry, statIflanEntry=statIflanEntry, ifwanQsigPbxXy=ifwanQsigPbxXy, statRxReleaseCompleteMessages=statRxReleaseCompleteMessages, puSdlcTimeout_ms=puSdlcTimeout_ms, accountingFileFull=accountingFileFull, ospfAreaEnable=ospfAreaEnable, puBanBnnDsap=puBanBnnDsap, ifwanOspfMetricCost=ifwanOspfMetricCost, system=system, ifwanIpAddress=ifwanIpAddress, ospfAreaAuthType=ospfAreaAuthType, statPuConnectionStatus=statPuConnectionStatus, puDlsIpDst=puDlsIpDst, puBanBnnTimeout_ms=puBanBnnTimeout_ms, ipaddrAddr=ipaddrAddr, ifwanSync=ifwanSync, ifvceDTalkThreshold=ifvceDTalkThreshold, ifwanDsOSpeed_bps=ifwanDsOSpeed_bps, ifwanChannelCompressed=ifwanChannelCompressed, pvcIpRip=pvcIpRip, timepDaylightSaving=timepDaylightSaving, bootpEnable=bootpEnable, timepClientUdpRetransmissions=timepClientUdpRetransmissions, ifwanMultiframing=ifwanMultiframing, statIfvceUnderruns=statIfvceUnderruns, iflanOspfPriority=iflanOspfPriority, timepServerIpAddress=timepServerIpAddress, statIflanEth_Interface=statIflanEth_Interface, ifwanDigitNumber=ifwanDigitNumber, ifvceR2CompleteDigit=ifvceR2CompleteDigit, ifwanPppLocalMru=ifwanPppLocalMru, pvcIpRipTxRx=pvcIpRipTxRx, schedulePort7=schedulePort7, statBootpNbRequestReceived=statBootpNbRequestReceived, ifvceFaxModemRelay=ifvceFaxModemRelay, ospfVLinkEnable=ospfVLinkEnable, statIfwanMeanRx=statIfwanMeanRx, statPvcFramesRx=statPvcFramesRx, statSvcProtocol=statSvcProtocol, filterTable=filterTable, ospfRangeEntry=ospfRangeEntry, statBridgePortTr_SingleRteFrameIn=statBridgePortTr_SingleRteFrameIn, sysVoiceClass=sysVoiceClass, schedulePort1=schedulePort1, filterIndex=filterIndex, iflanIpxSap=iflanIpxSap, puDelayBeforeConn_s=puDelayBeforeConn_s, statIfvceTable=statIfvceTable, iflanIndex=iflanIndex, puLlcSsap=puLlcSsap, statRxBytes=statRxBytes, statSvcBadOctets=statSvcBadOctets, bondDeTrig=bondDeTrig, proxyEntry=proxyEntry, ifvceToneEnergyDetec=ifvceToneEnergyDetec, statPvcMode=statPvcMode, statTxStatusEnquiryMessages=statTxStatusEnquiryMessages, classTable=classTable, iflanIpRipAuthType=iflanIpRipAuthType, manualCall=manualCall, statSvcOvrOctets=statSvcOvrOctets, statGrpSorterOverruns=statGrpSorterOverruns, ifwanReportCycle=ifwanReportCycle, pvcRetry=pvcRetry, phoneTable=phoneTable, statIfwanPeakTx=statIfwanPeakTx, ifvceRate5k8x1=ifvceRate5k8x1, ospfAreaIndex=ospfAreaIndex, ifwanPppNegociateLocalMru=ifwanPppNegociateLocalMru, sysUnitRoutingVersion=sysUnitRoutingVersion, ifvceSilenceSuppress=ifvceSilenceSuppress, filterEntry=filterEntry, pvcUserPort=pvcUserPort, statPvcOctetsRx=statPvcOctetsRx, statBootpReplyReceivedOnPortBootpc=statBootpReplyReceivedOnPortBootpc, ipaddrTable=ipaddrTable, ifwanPppPeerMruUpTo=ifwanPppPeerMruUpTo, ifvceBroadcastPvc=ifvceBroadcastPvc, ifwanFallBackSpeed_bps=ifwanFallBackSpeed_bps, ipx=ipx, ifvceRate4k8x2=ifvceRate4k8x2, iflanTable=iflanTable, pvcEntry=pvcEntry, statTimeInvalidLocalIpAddress=statTimeInvalidLocalIpAddress, ifwanMsn2=ifwanMsn2, statIfwanChAborts=statIfwanChAborts, statRxStatusMessages=statRxStatusMessages, ifwanTxStartPass=ifwanTxStartPass, puBanBnnMaxFrame=puBanBnnMaxFrame, statQ933counters=statQ933counters, statRxReleaseMessages=statRxReleaseMessages, pvcRemoteFpUnit=pvcRemoteFpUnit, ifvceTable=ifvceTable, iflanIpxLanType=iflanIpxLanType, statAlarmDesc=statAlarmDesc, statBridgeBridgeDesignatedRoot=statBridgeBridgeDesignatedRoot, phoneNextHop=phoneNextHop, ifvceTeTimer_s=ifvceTeTimer_s, statPvcMeanRx=statPvcMeanRx, statPvcDlci=statPvcDlci, statTxframes=statTxframes, statPvcTable=statPvcTable, statTxCallProceedingMessages=statTxCallProceedingMessages, ifwanSvcReleaseTimeoutT308=ifwanSvcReleaseTimeoutT308, statPvcCompErrs=statPvcCompErrs, statBridgePortIndex=statBridgePortIndex, statSvcRestart=statSvcRestart, statRxDisconnectMessages=statRxDisconnectMessages, ifvceToneType=ifvceToneType, statPvcChAborts=statPvcChAborts, pvcNumber=pvcNumber, pvcBackupCall_s=pvcBackupCall_s, statInvalidRxSizes=statInvalidRxSizes, slotPortInSlotTable=slotPortInSlotTable, statSvcTable=statSvcTable, schedulePeriod=schedulePeriod, statPvcBadOctets=statPvcBadOctets, ifwanFraming=ifwanFraming, ospfRangeTable=ospfRangeTable, ipstaticEntry=ipstaticEntry, ifvceEnableDtmfOnTime=ifvceEnableDtmfOnTime, ospfAreaNumber=ospfAreaNumber, statTxReleaseCompleteMessages=statTxReleaseCompleteMessages, puBanRouting=puBanRouting, statBridgePortTr_SegmentMismatch=statBridgePortTr_SegmentMismatch, fatalTrap=fatalTrap, bridgeEnable=bridgeEnable, ifwanIpxSap=ifwanIpxSap, pvcOspfTransitDelay=pvcOspfTransitDelay, ospfVLinkDeadInt=ospfVLinkDeadInt, statBootpNbReplyReceived=statBootpNbReplyReceived, ifwanPppNegociatePeerMru=ifwanPppNegociatePeerMru, statPvcrRouteTable=statPvcrRouteTable, pvcPort=pvcPort, statSystemResetCounters=statSystemResetCounters, cfgStored=cfgStored, ifwanSvcStatusTimeoutT322=ifwanSvcStatusTimeoutT322, ifwanSubnetMask=ifwanSubnetMask, statPvcProtocol=statPvcProtocol, statSystemMeanCompRate=statSystemMeanCompRate, ifvceExtNumber=ifvceExtNumber, pvcMaxChannels=pvcMaxChannels, sysDesc=sysDesc, statPvcState=statPvcState, puNumber=puNumber, scheduleEntry=scheduleEntry, puXid=puXid, pvcOspfHelloInt=pvcOspfHelloInt, ifwanMaxChannels=ifwanMaxChannels, ifwanTerminating=ifwanTerminating, ifvceFwdType=ifvceFwdType, bootp=bootp, classDefaultClass=classDefaultClass, statIfwanModemSignal=statIfwanModemSignal, statPuChOverflows=statPuChOverflows, bridgeTr_Number=bridgeTr_Number, ospfGlobalRouterId=ospfGlobalRouterId, ifwan=ifwan, pysmi_class=pysmi_class, connectionDown=connectionDown, ifwanPppRemoteIpAddress=ifwanPppRemoteIpAddress, statIfwanUnderruns=statIfwanUnderruns, sysVoiceEncoding=sysVoiceEncoding, proxyNumber=proxyNumber, ifwanIndex=ifwanIndex, iflanCost=iflanCost, sysExtendedDigitsLength=sysExtendedDigitsLength, ifvceR2BusyDigit=ifvceR2BusyDigit, lucent=lucent, ifwanRemotePort=ifwanRemotePort, statIfwanOctetsRx=statIfwanOctetsRx, ifwanEntry=ifwanEntry, statIfwanFramesTx=statIfwanFramesTx, proxyComm=proxyComm, ipstaticIndex=ipstaticIndex, statIfwanT1E1LES=statIfwanT1E1LES, puSdlcPort=puSdlcPort, ifwanDialTimeout_s=ifwanDialTimeout_s, sysCountry=sysCountry, sysTransitDelay_s=sysTransitDelay_s, sysHuntForwardingBDLCI=sysHuntForwardingBDLCI, statIfvceDesc=statIfvceDesc, pvcTimeout_ms=pvcTimeout_ms, proxy=proxy, statIfwanState=statIfwanState, ifvceEntry=ifvceEntry, pvcBroadcastGroup=pvcBroadcastGroup, bootpIpDestAddr3=bootpIpDestAddr3, statBridgePortTrspFrameIn=statBridgePortTrspFrameIn, puActive=puActive, statBridgePortTr_FrmLngExceeded=statBridgePortTr_FrmLngExceeded, ifvcePulseMakeBreak_ms=ifvcePulseMakeBreak_ms, statAlarmEntry=statAlarmEntry, statIfwanMeanTx=statIfwanMeanTx, statBootpReplyWithInvalidGiaddr=statBootpReplyWithInvalidGiaddr, pvcOspfRetransmitInt=pvcOspfRetransmitInt, ifvceRemoteUnit=ifvceRemoteUnit, statIfwanT1E1SEF=statIfwanT1E1SEF, ifwanConnTimeout_s=ifwanConnTimeout_s, ifwanCompression=ifwanCompression, periodEnded=periodEnded, ifwanIpRipAuthType=ifwanIpRipAuthType, puXidId=puXidId, ifwanGainLimit=ifwanGainLimit, statBridgePortDesignatedPort=statBridgePortDesignatedPort, sysHuntForwardingAUnit=sysHuntForwardingAUnit, ifwanPppConfigRetries=ifwanPppConfigRetries, ifwanBodCall_s=ifwanBodCall_s, statSvcMode=statSvcMode, statBridgeBridgeFrameDiscard=statBridgeBridgeFrameDiscard, statSvcMeanTx=statSvcMeanTx, ifwanPppConfigRestartTimer=ifwanPppConfigRestartTimer, statMissingControlBlocks=statMissingControlBlocks, ifwanGroupPoll=ifwanGroupPoll, puTable=puTable, noTrap=noTrap, ipaddrEntry=ipaddrEntry, puLinkRemPu=puLinkRemPu, ifvceDVCLocalInbound=ifvceDVCLocalInbound, puBanBnnWindow=puBanBnnWindow, classIndex=classIndex, statPvcChOverflows=statPvcChOverflows, statIflanConnectionStatus=statIflanConnectionStatus)
mibBuilder.exportSymbols('CLEARTRAC7-MIB', setupReset=setupReset, ifwanTxHold_s=ifwanTxHold_s, badChecksum=badChecksum, sysDLCI=sysDLCI, ifwanSpeed_bps=ifwanSpeed_bps, ifwanClocking=ifwanClocking, ifvceDesc=ifvceDesc, statTxReleaseMessages=statTxReleaseMessages, ifwanPvcNumber=ifwanPvcNumber, statTimeNbReplySent=statTimeNbReplySent, bothFansUp=bothFansUp, ifwanCrc4=ifwanCrc4, statTimeClientSyncFailures=statTimeClientSyncFailures, statTxDisconnectMessages=statTxDisconnectMessages, cardDown=cardDown, statBridgePortDestination=statBridgePortDestination, sysPosNr=sysPosNr, schedulePort4=schedulePort4, phone=phone, bridgeAgingTime_s=bridgeAgingTime_s, statIfwanTrspLastError=statIfwanTrspLastError, sysRacksNr=sysRacksNr, statPvcSpeed=statPvcSpeed, ifwanIpxNetNum=ifwanIpxNetNum, statBridgeBridge=statBridgeBridge, pvcDlciAddress=pvcDlciAddress, statAlarmTime=statAlarmTime, statIflanProtocol=statIflanProtocol, statPvcMeanTx=statPvcMeanTx, pvcOspfEnable=pvcOspfEnable, statGrpDestName=statGrpDestName, ipstaticValid=ipstaticValid, ifwanHighPriorityTransparentClass=ifwanHighPriorityTransparentClass, ipstaticMask=ipstaticMask, ifvce=ifvce, sysVoiceHighestPriority=sysVoiceHighestPriority, ifwanFallBackSpeedEnable=ifwanFallBackSpeedEnable, statIflanBadFlags=statIflanBadFlags, iflanIpAddress=iflanIpAddress, iflanOspfEnable=iflanOspfEnable, statPvcOvrFrames=statPvcOvrFrames, bootpIpDestAddr1=bootpIpDestAddr1, statPvcrRouteNextHop=statPvcrRouteNextHop, puLinkRemoteUnit=puLinkRemoteUnit, proxyTrapIpAddr=proxyTrapIpAddr, sysRackId=sysRackId, bridge=bridge, statIfvceEntry=statIfvceEntry, statSystemAlarmNumber=statSystemAlarmNumber, ipstatic=ipstatic, ipstaticNumber=ipstaticNumber, statBootpNbReplySend=statBootpNbReplySend, ospfAreaTable=ospfAreaTable, proxyIpAddr=proxyIpAddr, pvcType=pvcType, sysThisPosId=sysThisPosId, iflanTr_Etr=iflanTr_Etr, statIfvceIndex=statIfvceIndex, statEstablishIndications=statEstablishIndications, schedule=schedule, filter=filter, classEntry=classEntry, statPvcrRouteIntrf=statPvcrRouteIntrf, ipaddrIfIndex=ipaddrIfIndex, puSdlcWindow=puSdlcWindow, ospfRangeEnable=ospfRangeEnable, statBridge=statBridge, sysDefaultIpAddr=sysDefaultIpAddr, puLlcTimeout_ms=puLlcTimeout_ms, statIfvceFaxMode=statIfvceFaxMode, statPuChSeqErrs=statPuChSeqErrs, statRxStatusEnquiryMessages=statRxStatusEnquiryMessages, statIflanMeanTx_kbps=statIflanMeanTx_kbps, ifwanLineCoding=ifwanLineCoding, statSystemMeanDecompRate=statSystemMeanDecompRate, statIflanIndex=statIflanIndex, ifwanPppNegociateIpAddress=ifwanPppNegociateIpAddress, ifwanSfType=ifwanSfType, sysAcceptLoop=sysAcceptLoop, bridgePriority=bridgePriority, statBridgePortTr_SegmentDuplicate=statBridgePortTr_SegmentDuplicate, pvcIpConnection=pvcIpConnection, schedulePort3=schedulePort3, pvcIpxConnection=pvcIpxConnection, fatalMsg=fatalMsg, sysVoiceClocking=sysVoiceClocking, iflan=iflan, ifwanMaxFrame=ifwanMaxFrame, puLlcDa=puLlcDa, ipstaticNextHop=ipstaticNextHop, statRxConnectMessages=statRxConnectMessages, ospfGlobalAutoVLink=ospfGlobalAutoVLink, bootpIpDestAddr4=bootpIpDestAddr4, ifwanMgmtInterface=ifwanMgmtInterface, ifwanBackupHang_s=ifwanBackupHang_s, ifwanChUse=ifwanChUse, pvcHuntForwardingBUnit=pvcHuntForwardingBUnit, cardup=cardup, ifwanCoding=ifwanCoding, pvcSubnetMask=pvcSubnetMask, statIfwanT1E1LCV=statIfwanT1E1LCV, statTxBytes=statTxBytes, slotIfIndex=slotIfIndex, statTimeNbRequestSent=statTimeNbRequestSent, iflanPriority=iflanPriority, ifwanRingNumber=ifwanRingNumber, statSystemSa=statSystemSa, ifwanInterface=ifwanInterface, filterActive=filterActive, puDlsSsap=puDlsSsap, ospfVLinkIndex=ospfVLinkIndex, statPvcFramesTx=statPvcFramesTx, pvcPriority=pvcPriority, sysHuntForwardingASvcAddress=sysHuntForwardingASvcAddress, ifvceIndex=ifvceIndex, ifwanPppAcceptAccmPeer=ifwanPppAcceptAccmPeer, puXidFormat=puXidFormat, sysPsMonitoring=sysPsMonitoring, sysTrapRackandPos=sysTrapRackandPos, statIfwanPeakRx=statIfwanPeakRx, statIflanEth_OneCollision=statIflanEth_OneCollision, ospfGlobal=ospfGlobal, statIflanRetries=statIflanRetries, statIfwanOvrOctets=statIfwanOvrOctets, sysVoiceLog=sysVoiceLog, ifvceLocalOutbound=ifvceLocalOutbound, pvcNetworkDlci=pvcNetworkDlci, pvcOspfDeadInt=pvcOspfDeadInt, iflanOspfHelloInt=iflanOspfHelloInt, statSystemPeakCompRate=statSystemPeakCompRate, statIfcemIndex=statIfcemIndex, ipxfilterType=ipxfilterType, ospfVLinkHelloInt=ospfVLinkHelloInt, iflanOspfRetransmitInt=iflanOspfRetransmitInt, slot=slot, iflanProtocol=iflanProtocol, schedulePort2=schedulePort2, ospfAreaEntry=ospfAreaEntry, sysBackplaneRipVersion=sysBackplaneRipVersion, pvcIpAddress=pvcIpAddress, statIflanPeakTx_kbps=statIflanPeakTx_kbps, pvcLlcConnection=pvcLlcConnection, statIflanBadFrames=statIflanBadFrames, statBridgePortTr_SingleRteFrameOut=statBridgePortTr_SingleRteFrameOut, puLlcMaxFrame=puLlcMaxFrame, periodStarted=periodStarted, statTxSetupMessages=statTxSetupMessages, statSvcOctetsRx=statSvcOctetsRx, ifvceDVCLocalOutbound=ifvceDVCLocalOutbound, intfDesc=intfDesc, statProtocolTimeouts=statProtocolTimeouts, q922Down=q922Down, ifwanBChannels=ifwanBChannels, ip=ip, ifwanSvcIframeRetransmissionsN200=ifwanSvcIframeRetransmissionsN200, statRxAcknowledgeExpiry=statRxAcknowledgeExpiry, ifwanT1E1InterBit=ifwanT1E1InterBit, phonePhoneNumber=phonePhoneNumber, ifwanEnquiryTimer_s=ifwanEnquiryTimer_s, ifvceRate8kx3=ifvceRate8kx3, statIfwanT1E1CSS=statIfwanT1E1CSS, statIfwanT1E1DM=statIfwanT1E1DM, ifvceRate4k8x1=ifvceRate4k8x1, statIfwanFramesRx=statIfwanFramesRx, pvcIndex=pvcIndex, pvcCompression=pvcCompression, statIflanEth_ExcessiveCollision=statIflanEth_ExcessiveCollision, ospf=ospf, bridgeStpEnable=bridgeStpEnable, ifwanBodLevel=ifwanBodLevel, ospfGlobalGlobalAreaId=ospfGlobalGlobalAreaId, ospfRangeIndex=ospfRangeIndex, puDlsIpSrc=puDlsIpSrc, intfEntry=intfEntry, ifwanIpxRip=ifwanIpxRip, ifwanOspfPassword=ifwanOspfPassword, pvc=pvc, statGrp=statGrp, ifwanQsigPbxAb=ifwanQsigPbxAb, ifvceFwdDelay_ms=ifvceFwdDelay_ms, pvcBackup=pvcBackup, ifwanIpRipTxRx=ifwanIpRipTxRx, statRxframes=statRxframes, ifwanSvcInactiveTimeoutT203=ifwanSvcInactiveTimeoutT203, statIflanEth_Align=statIflanEth_Align, ipaddrType=ipaddrType, ospfVLinkPassword=ospfVLinkPassword, iflanTr_Monitor=iflanTr_Monitor, ifvceAnalogLinkDwnBusy=ifvceAnalogLinkDwnBusy, statSvcPeakTx=statSvcPeakTx, iflanIpRipPassword=iflanIpRipPassword, sysSnmpTrapIpAddr4=sysSnmpTrapIpAddr4, ifwanTransparentClassNumber=ifwanTransparentClassNumber, puEntry=puEntry, statRxSetupMessages=statRxSetupMessages, statIflanEth_LateCollision=statIflanEth_LateCollision, pvcBrgConnection=pvcBrgConnection, iflanIpxRip=iflanIpxRip, ospfGlobalRackAreaId=ospfGlobalRackAreaId, statPvcIndex=statPvcIndex, badDestPort=badDestPort, statTxConnectMessages=statTxConnectMessages, statSvcFramesTx=statSvcFramesTx, scheduleNumber=scheduleNumber, ifwanT1E1LoopBack=ifwanT1E1LoopBack, ipxfilterIndex=ipxfilterIndex, statIflanEth_TwoCollisions=statIflanEth_TwoCollisions, sysDialTimer=sysDialTimer, sysSnmpTrapIpAddr1=sysSnmpTrapIpAddr1, schedulePort5=schedulePort5, ifwanOspfRetransmitInt=ifwanOspfRetransmitInt, ipaddrIndex=ipaddrIndex, ifwanPppAcceptIpAddress=ifwanPppAcceptIpAddress, statBootpFrameTooSmallToBeABootpFrame=statBootpFrameTooSmallToBeABootpFrame, statLinkEstablished=statLinkEstablished, sysHuntForwardingBUnit=sysHuntForwardingBUnit, ifwanModem=ifwanModem, phoneEntry=phoneEntry, statSvcFramesRx=statSvcFramesRx, statPuIndex=statPuIndex, puIndex=puIndex, ospfVLinkTransitDelay=ospfVLinkTransitDelay, ifwanSvcCallProceedingTimeoutT310=ifwanSvcCallProceedingTimeoutT310, intfIndex=intfIndex, ifwanIdle=ifwanIdle, ifvceMaxFaxModemRate=ifvceMaxFaxModemRate, pvcRemotePvc=pvcRemotePvc, ospfAreaImportASExt=ospfAreaImportASExt, bridgeHelloTime_s=bridgeHelloTime_s, statSvcError=statSvcError, timepTimeZoneSign=timepTimeZoneSign, ifwanExtNumber=ifwanExtNumber, ipxfilterTable=ipxfilterTable, statPvcEntry=statPvcEntry, intfSlotNumber=intfSlotNumber, statPvcChSeqErrs=statPvcChSeqErrs, statBootpInvalidOpCodeField=statBootpInvalidOpCodeField, ifvceR2ExtendedDigitSrc=ifvceR2ExtendedDigitSrc, puXidPuType=puXidPuType, ospfRangeStatus=ospfRangeStatus, onePsDown=onePsDown, statIfwanT1E1SES=statIfwanT1E1SES, statPvcPeakTx=statPvcPeakTx, statTimeInvalidPortNumbers=statTimeInvalidPortNumbers, schedulePort8=schedulePort8, statPvcrRouteName=statPvcrRouteName, puDlsMaxFrame=puDlsMaxFrame, statTimep=statTimep, intfNumber=intfNumber, statSvcSpeed=statSvcSpeed, pvcPvcClass=pvcPvcClass, cleartrac7=cleartrac7, statSvcIndex=statSvcIndex, sysPosRackId=sysPosRackId)
mibBuilder.exportSymbols('CLEARTRAC7-MIB', ifwanPppRemoteSubnetMask=ifwanPppRemoteSubnetMask, ifwanDialer=ifwanDialer, pvcHuntForwardingAUnit=pvcHuntForwardingAUnit, statIfvceDvcPortInUse=statIfvceDvcPortInUse, ifwanSvcNetworkAddress=ifwanSvcNetworkAddress, statTxStatusMessages=statTxStatusMessages, statBootpRequestReceivedOnPortBootpc=statBootpRequestReceivedOnPortBootpc, ipxfilterSap=ipxfilterSap, statBridgePortDesignatedRoot=statBridgePortDesignatedRoot, ifwanChExp=ifwanChExp, scheduleTable=scheduleTable, statSystemClearAlarms=statSystemClearAlarms, statBridgeBridgeFrameFiltered=statBridgeBridgeFrameFiltered, accountingFileOverflow=accountingFileOverflow, scheduleBeginTime=scheduleBeginTime, sysJitterBuf=sysJitterBuf, ifwanPollDelay_ms=ifwanPollDelay_ms, puLlcRetry=puLlcRetry, statAlarmDate=statAlarmDate, puLinkClassNumber=puLinkClassNumber, ifwanClassNumber=ifwanClassNumber, ospfVLinkNeighborRtrId=ospfVLinkNeighborRtrId, statPvcOvrOctets=statPvcOvrOctets, ifwanRxFlow=ifwanRxFlow, statIfwanTrspState=statIfwanTrspState, ifwanCllm=ifwanCllm, statAlarmArg=statAlarmArg, bridgeForwardDelay_s=bridgeForwardDelay_s, sysSnmpTrapIpAddr2=sysSnmpTrapIpAddr2, ifwanOspfHelloInt=ifwanOspfHelloInt, sysPsAndFansMonitoring=sysPsAndFansMonitoring, frLinkDown=frLinkDown, statIfwanOctetsTx=statIfwanOctetsTx, ifwanBodHang_s=ifwanBodHang_s, puBanDa=puBanDa, statIfwanBadFlags=statIfwanBadFlags, statPuMode=statPuMode, ifwanCondLMIPort=ifwanCondLMIPort, statBridgePortDesignatedBridge=statBridgePortDesignatedBridge, sysRingVolt=sysRingVolt, phoneIndex=phoneIndex, statTimeClientRetransmissions=statTimeClientRetransmissions, proxyTable=proxyTable, ifwanTxStartCop=ifwanTxStartCop, statIfwanQ922State=statIfwanQ922State, proxyIpMask=proxyIpMask, iflanOspfTransitDelay=iflanOspfTransitDelay, statBootp=statBootp, timepClientUdpTimeout=timepClientUdpTimeout, iflanEntry=iflanEntry, ifvceToneDetectRegen_s=ifvceToneDetectRegen_s, statIflanTable=statIflanTable, ospfRangeAddToArea=ospfRangeAddToArea, ospfVLinkNumber=ospfVLinkNumber, ifwanTxFlow=ifwanTxFlow, sysDate=sysDate, statPvcrRouteMetric=statPvcrRouteMetric, bothPsUp=bothPsUp, pvcMaxFrame=pvcMaxFrame, puBanBnnRetry=puBanBnnRetry, ifwanCellPacketization=ifwanCellPacketization, iflanTr_RingNumber=iflanTr_RingNumber, statBridgePortTr_SpecRteFrameIn=statBridgePortTr_SpecRteFrameIn, timepTimeZone=timepTimeZone, ifwanSignaling=ifwanSignaling, ifwanMsn3=ifwanMsn3, noMsg=noMsg, ifvceExtendedDigitSrc=ifvceExtendedDigitSrc, iflanPhysAddr=iflanPhysAddr, statBridgeBridgeRootCost=statBridgeBridgeRootCost, ipxfilterEnable=ipxfilterEnable, ifwanRemoteUnit=ifwanRemoteUnit, statTimeNbRequestReceived=statTimeNbRequestReceived, ifvceToneOn_ms=ifvceToneOn_ms, sysContact=sysContact, statIfcemClockState=statIfcemClockState, pvcDialTimeout=pvcDialTimeout, schedulePort6=schedulePort6, sysHuntForwardingBSvcAddress=sysHuntForwardingBSvcAddress, sysAutoSaveDelay=sysAutoSaveDelay, pvcTable=pvcTable, statBridgeBridgeRootPort=statBridgeBridgeRootPort, ifwanSfMode=ifwanSfMode, puLlcTr_Routing=puLlcTr_Routing, statIflanEth_CarrierSense=statIflanEth_CarrierSense, ifwanBackupCall_s=ifwanBackupCall_s, statSvcInfoSignal=statSvcInfoSignal, classWeight=classWeight, pvcBurstInfoRate=pvcBurstInfoRate, puSdlcMaxFrame=puSdlcMaxFrame, pvcUp=pvcUp, statIfwanSpeed=statIfwanSpeed, statIflanMeanRx_kbps=statIflanMeanRx_kbps, statGrpIndex=statGrpIndex, oneOrMoreFanDown=oneOrMoreFanDown, pvcIpxRip=pvcIpxRip, statSvcState=statSvcState, ifwanDuplex=ifwanDuplex, bootpMaxHops=bootpMaxHops, ifwanFlowControl=ifwanFlowControl, sysExtensionNumLength=sysExtensionNumLength, statPuCompErrs=statPuCompErrs, ifwanPppRequestMagicNum=ifwanPppRequestMagicNum, scheduleDay=scheduleDay, statIfvceOverruns=statIfvceOverruns, pvcBackupHang_s=pvcBackupHang_s, statBridgePort=statBridgePort, ifwanMsn1=ifwanMsn1) |
# -*- coding: utf-8 -*-
print ("Hello World!")
print ("Hello Again")
print ("I like Typing this.")
print ("This is fun.")
print ('Yay! Printing.')
print ("I'd much rather you 'not'.")
print ('I "said" do not touch this.') | print('Hello World!')
print('Hello Again')
print('I like Typing this.')
print('This is fun.')
print('Yay! Printing.')
print("I'd much rather you 'not'.")
print('I "said" do not touch this.') |
#!/usr/bin/env python
polyCorners = 4
poly_1_x = [22.017965, 22.017852, 22.016992, 22.017187]
poly_1_y = [85.432761, 85.433074, 85.432577, 85.432243]
poly_2_x = [22.017187, 22.016992, 22.015849, 22.015982]
poly_2_y = [85.432243, 85.432577, 85.431865, 85.431574]
poly_3_x = [22.015850, 22.015636, 22.015874, 22.016053]
poly_3_y = [85.431406, 85.43173, 85.431889, 85.431516]
def main():
point_M = (22.017603, 85.432641)
point_L = (22.016598, 85.432157)
point_O = (22.015838, 85.431621)
print("Does the point{} lie in the polygon? {}".format(str(point_O), pointInPolygon(point_O, poly_3_x, poly_3_y)))
def pointInPolygon(point, polyX, polyY):
i = 0
j = polyCorners-1
x = point[0]
y = point[1]
oddNodes = False
print(polyX)
print(polyY)
for i in range(0, polyCorners):
if((polyY[i]<y and polyY[j]>=y) or (polyY[j]<y and polyY[i]>=y)):
if (polyX[i]+(y-polyY[i])/(polyY[j]-polyY[i])*(polyX[j]-polyX[i])<x):
oddNodes = not oddNodes
j=i
return oddNodes
if __name__=="__main__":
main() | poly_corners = 4
poly_1_x = [22.017965, 22.017852, 22.016992, 22.017187]
poly_1_y = [85.432761, 85.433074, 85.432577, 85.432243]
poly_2_x = [22.017187, 22.016992, 22.015849, 22.015982]
poly_2_y = [85.432243, 85.432577, 85.431865, 85.431574]
poly_3_x = [22.01585, 22.015636, 22.015874, 22.016053]
poly_3_y = [85.431406, 85.43173, 85.431889, 85.431516]
def main():
point_m = (22.017603, 85.432641)
point_l = (22.016598, 85.432157)
point_o = (22.015838, 85.431621)
print('Does the point{} lie in the polygon? {}'.format(str(point_O), point_in_polygon(point_O, poly_3_x, poly_3_y)))
def point_in_polygon(point, polyX, polyY):
i = 0
j = polyCorners - 1
x = point[0]
y = point[1]
odd_nodes = False
print(polyX)
print(polyY)
for i in range(0, polyCorners):
if polyY[i] < y and polyY[j] >= y or (polyY[j] < y and polyY[i] >= y):
if polyX[i] + (y - polyY[i]) / (polyY[j] - polyY[i]) * (polyX[j] - polyX[i]) < x:
odd_nodes = not oddNodes
j = i
return oddNodes
if __name__ == '__main__':
main() |
print (True and True)
print (True and False)
print (False and True)
print (False and False)
print (True or True)
print (True or False)
print (False or True)
print (False or False)
| print(True and True)
print(True and False)
print(False and True)
print(False and False)
print(True or True)
print(True or False)
print(False or True)
print(False or False) |
#!/usr/bin/env python3
print("hello")
f = open('python file.txt', 'a+')
f.write("Hello")
f.close() | print('hello')
f = open('python file.txt', 'a+')
f.write('Hello')
f.close() |
class Person(dict):
def __init__(self, person_id, sex, phenotype, studies):
self.person_id = str(person_id)
self.sex = sex
self.phenotype = phenotype
self.studies = studies
def __repr__(self):
return f'Person("{self.person_id}", "{self.sex}", {self.phenotype}, {self.studies})'
def __str__(self):
return f'{self.person_id}\t{self.sex}\t{",".join(self.phenotype)}\t{",".join(self.studies)}'
def __hash__(self):
return hash(f'{self.person_id}')
def __eq__(self, other):
return hash(self) == hash(other)
def __gt__(self, other):
return self.person_id > other.person_id
| class Person(dict):
def __init__(self, person_id, sex, phenotype, studies):
self.person_id = str(person_id)
self.sex = sex
self.phenotype = phenotype
self.studies = studies
def __repr__(self):
return f'Person("{self.person_id}", "{self.sex}", {self.phenotype}, {self.studies})'
def __str__(self):
return f"{self.person_id}\t{self.sex}\t{','.join(self.phenotype)}\t{','.join(self.studies)}"
def __hash__(self):
return hash(f'{self.person_id}')
def __eq__(self, other):
return hash(self) == hash(other)
def __gt__(self, other):
return self.person_id > other.person_id |
A,B = map(int,input().split())
if A >= 13:
print(B)
elif A >= 6:
print(B//2)
else:
print(0)
| (a, b) = map(int, input().split())
if A >= 13:
print(B)
elif A >= 6:
print(B // 2)
else:
print(0) |
#SQL Server details
SQL_HOST = 'localhost'
SQL_USERNAME = 'root'
SQL_PASSWORD = ''
#Cache details - whether to call a URL once an ingestion script is finished
RESET_CACHE = False
RESET_CACHE_URL = 'http://example.com/visualization_reload/'
#Fab - configuration for deploying to a remote server
FAB_HOSTS = []
FAB_GITHUB_URL = 'https://github.com/UQ-UQx/injestor.git'
FAB_REMOTE_PATH = '/file/to/your/deployment/location'
#Ignored services
IGNORE_SERVICES = ['extractsample', 'personcourse']
#File output
OUTPUT_DIRECTORY = '/tmp' | sql_host = 'localhost'
sql_username = 'root'
sql_password = ''
reset_cache = False
reset_cache_url = 'http://example.com/visualization_reload/'
fab_hosts = []
fab_github_url = 'https://github.com/UQ-UQx/injestor.git'
fab_remote_path = '/file/to/your/deployment/location'
ignore_services = ['extractsample', 'personcourse']
output_directory = '/tmp' |
__description__ = 'Wordpress Two-Factor Authentication Brute-forcer'
__title__ = 'WPBiff'
__version_info__ = ('0', '1', '1')
__version__ = '.'.join(__version_info__)
__author__ = 'Gabor Szathmari'
__credits__ = ['Gabor Szathmari']
__maintainer__ = 'Gabor Szathmari'
__email__ = 'gszathmari@gmail.com'
__status__ = 'beta'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2015 Gabor Szathmari'
__website__ = 'http://github.com/gszathmari/wpbiff'
| __description__ = 'Wordpress Two-Factor Authentication Brute-forcer'
__title__ = 'WPBiff'
__version_info__ = ('0', '1', '1')
__version__ = '.'.join(__version_info__)
__author__ = 'Gabor Szathmari'
__credits__ = ['Gabor Szathmari']
__maintainer__ = 'Gabor Szathmari'
__email__ = 'gszathmari@gmail.com'
__status__ = 'beta'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2015 Gabor Szathmari'
__website__ = 'http://github.com/gszathmari/wpbiff' |
N = int(input())
NG = set([int(input()) for _ in range(3)])
if N in NG:
print("NO")
exit(0)
for _ in range(100):
if 0 <= N <= 3:
print("YES")
break
if N - 3 not in NG:
N -= 3
elif N - 2 not in NG:
N -= 2
elif N - 1 not in NG:
N -= 1
else:
print("NO")
| n = int(input())
ng = set([int(input()) for _ in range(3)])
if N in NG:
print('NO')
exit(0)
for _ in range(100):
if 0 <= N <= 3:
print('YES')
break
if N - 3 not in NG:
n -= 3
elif N - 2 not in NG:
n -= 2
elif N - 1 not in NG:
n -= 1
else:
print('NO') |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.